Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/olefile/
Date: Thu, 26 Jul 2018 20:00:46
Message-Id: 1532635229.dacc2876210a48f65a0f8db6e838b290e6d7873f.vdupras@gentoo
1 commit: dacc2876210a48f65a0f8db6e838b290e6d7873f
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 26 20:00:29 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 26 20:00:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dacc2876
7
8 dev-python/olefile: bump to 0.45.1
9
10 * EAPI 7
11 * Add python3_7
12 * Drop python3_4
13
14 Package-Manager: Portage-2.3.43, Repoman-2.3.10
15
16 dev-python/olefile/Manifest | 1 +
17 dev-python/olefile/olefile-0.45.1.ebuild | 29 +++++++++++++++++++++++++++++
18 2 files changed, 30 insertions(+)
19
20 diff --git a/dev-python/olefile/Manifest b/dev-python/olefile/Manifest
21 index c3ee87e8b99..765ba6aebf6 100644
22 --- a/dev-python/olefile/Manifest
23 +++ b/dev-python/olefile/Manifest
24 @@ -1 +1,2 @@
25 DIST olefile-0.44.tar.gz 57903 BLAKE2B 2df4078c147ff737b845fe4ca57b6520c39776efe6bac399b0b8acb4ca62f946a653f85ad0511f5fa42d8b544d539474d226fe144bc2604737f3b16e5edd5ff2 SHA512 92b6ad1bced5b2c8e5332a01e5a2e59527ec2303046d0babd665b0f02fe56966574eff56619de168c50f1ea40df2e61ce589ee61b634222146d049b129514c65
26 +DIST v0.45.1.tar.gz 97969 BLAKE2B 246198e69cde316f24a183fdf07872edf9b1db2a168571eedb7efdb91166d4ad2658acaaa90e733950e437ef5c6ab8d1bb275cd1b24283b95497e254a39c9b26 SHA512 72d40056cac1d9566aa8e32b7b5484f61958a689130e71fa86bc0b9fed98f27a8cf34b824971357d42ec3dfd2d5bfa86d0f212727ff91d8daa3967969ff576e9
27
28 diff --git a/dev-python/olefile/olefile-0.45.1.ebuild b/dev-python/olefile/olefile-0.45.1.ebuild
29 new file mode 100644
30 index 00000000000..73a28b8fd2c
31 --- /dev/null
32 +++ b/dev-python/olefile/olefile-0.45.1.ebuild
33 @@ -0,0 +1,29 @@
34 +# Copyright 1999-2018 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Python package to parse, read and write Microsoft OLE2 files"
44 +HOMEPAGE="https://www.decalage.info/olefile"
45 +SRC_URI="https://github.com/decalage2/${PN}/archive/v${PV}.tar.gz"
46 +
47 +LICENSE="BSD-2"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
50 +IUSE="doc"
51 +
52 +RDEPEND=""
53 +BDEPEND="
54 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
55 +
56 +python_compile_all() {
57 + if use doc; then
58 + emake -C doc html
59 + HTML_DOCS=( doc/_build/html/. )
60 + fi
61 +
62 +}