commit: ef13696202fe08a42f03060fd1f5e7703dfbfb69
Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Sun May 10 13:03:51 2020 +0000
Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Sun May 10 13:07:03 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef136962
dev-python/picklemagic: fix Gentoo repo QA warnings
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
dev-python/picklemagic/metadata.xml | 7 +++++++
dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild | 5 ++++-
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/dev-python/picklemagic/metadata.xml
b/dev-python/picklemagic/metadata.xml
index cea503d75e3..1027055fe7b 100644
--- a/dev-python/picklemagic/metadata.xml
+++ b/dev-python/picklemagic/metadata.xml
@@ -7,6 +7,13 @@
</maintainer>
<longdescription>
A set of modules for analyzing and playing with the mechanics
of python pickles.
+ Features:
+ * Forgiving: Extracts as much data as possible from the
pickle, even if class definitions are unavailable.
+ * Safe: You can safely unpickle data structures from
unknown sources
+ * 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.
+ * Customizeable: Most functionality is easily
subclassable to suit your needs.
+ * 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.
+ * Works in both python 2 and 3
</longdescription>
<upstream>
<remote-id
type="github">CensoredUsername/picklemagic</remote-id>
diff --git a/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
index 983b5bc2640..66c0a794e6b 100644
--- a/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
+++ b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
@@ -8,13 +8,16 @@ inherit python-r1
SRC_URI="https://dev.gentoo.org/~bircoph/distfiles/${P}.tar.xz"
KEYWORDS="~amd64 ~x86"
-DESCRIPTION="A library for analysing python pickles safely "
+DESCRIPTION="A library for analysing python pickles safely"
HOMEPAGE="https://github.com/CensoredUsername/picklemagic"
LICENSE="WTFPL-2"
SLOT="0"
IUSE="doc"
BDEPEND="doc? ( dev-python/sphinx )"
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="${DEPEND}"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
src_compile() {
use doc && emake -C doc html