Gentoo Archives: gentoo-commits

From: Andrew Savchenko <bircoph@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/picklemagic/
Date: Sun, 10 May 2020 13:07:20
Message-Id: 1589116023.ef13696202fe08a42f03060fd1f5e7703dfbfb69.bircoph@gentoo
1 commit: ef13696202fe08a42f03060fd1f5e7703dfbfb69
2 Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 10 13:03:51 2020 +0000
4 Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
5 CommitDate: Sun May 10 13:07:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef136962
7
8 dev-python/picklemagic: fix Gentoo repo QA warnings
9
10 Package-Manager: Portage-2.3.82, Repoman-2.3.20
11 Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
12
13 dev-python/picklemagic/metadata.xml | 7 +++++++
14 dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild | 5 ++++-
15 2 files changed, 11 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-python/picklemagic/metadata.xml b/dev-python/picklemagic/metadata.xml
18 index cea503d75e3..1027055fe7b 100644
19 --- a/dev-python/picklemagic/metadata.xml
20 +++ b/dev-python/picklemagic/metadata.xml
21 @@ -7,6 +7,13 @@
22 </maintainer>
23 <longdescription>
24 A set of modules for analyzing and playing with the mechanics of python pickles.
25 + Features:
26 + * Forgiving: Extracts as much data as possible from the pickle, even if class definitions are unavailable.
27 + * Safe: You can safely unpickle data structures from unknown sources
28 + * Easy to use: Tools are provided which make it possible to code around the unpickled datastructures as if they were created from the actual class definitions.
29 + * Customizeable: Most functionality is easily subclassable to suit your needs.
30 + * Create pickles as if you were writing python: Via a few constructs it's possible to create custom pickles with the ease of writing normal python.
31 + * Works in both python 2 and 3
32 </longdescription>
33 <upstream>
34 <remote-id type="github">CensoredUsername/picklemagic</remote-id>
35
36 diff --git a/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
37 index 983b5bc2640..66c0a794e6b 100644
38 --- a/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
39 +++ b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
40 @@ -8,13 +8,16 @@ inherit python-r1
41
42 SRC_URI="https://dev.gentoo.org/~bircoph/distfiles/${P}.tar.xz"
43 KEYWORDS="~amd64 ~x86"
44 -DESCRIPTION="A library for analysing python pickles safely "
45 +DESCRIPTION="A library for analysing python pickles safely"
46 HOMEPAGE="https://github.com/CensoredUsername/picklemagic"
47 LICENSE="WTFPL-2"
48 SLOT="0"
49 IUSE="doc"
50
51 BDEPEND="doc? ( dev-python/sphinx )"
52 +DEPEND="${PYTHON_DEPS}"
53 +RDEPEND="${DEPEND}"
54 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
55
56 src_compile() {
57 use doc && emake -C doc html