public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/picklemagic/
@ 2020-05-10 11:10 Andrew Savchenko
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Savchenko @ 2020-05-10 11:10 UTC (permalink / raw
  To: gentoo-commits

commit:     8a4b2930cb6420b1027376b18fb8abc89b318001
Author:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Sun May 10 10:52:33 2020 +0000
Commit:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Sun May 10 11:08:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a4b2930

dev-python/picklemagic: initial version

Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>

 dev-python/picklemagic/Manifest                    |  1 +
 dev-python/picklemagic/metadata.xml                | 14 +++++++++++
 .../picklemagic/picklemagic-0.0_pre20160415.ebuild | 27 ++++++++++++++++++++++
 3 files changed, 42 insertions(+)

diff --git a/dev-python/picklemagic/Manifest b/dev-python/picklemagic/Manifest
new file mode 100644
index 00000000000..f18140d20c1
--- /dev/null
+++ b/dev-python/picklemagic/Manifest
@@ -0,0 +1 @@
+DIST picklemagic-0.0_pre20160415.tar.xz 23364 BLAKE2B 07104393d41c68fabb26d642b6a78b5b5506322edc1322f6a0957c485c2681aafb388488b4d65d920102fb56839ebdeb82cbde909dae3d982311a3d776ca8aca SHA512 0b0866895df5f5f49462d75ad6a435f93796c60eae2442350ea0768872cc1938406b68f5ecb54e1583c245c6ac6d4feada32469184e24186adf78d002adfcd76

diff --git a/dev-python/picklemagic/metadata.xml b/dev-python/picklemagic/metadata.xml
new file mode 100644
index 00000000000..cea503d75e3
--- /dev/null
+++ b/dev-python/picklemagic/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>bircoph@gentoo.org</email>
+		<name>Andrew Savchenko</name>
+	</maintainer>
+	<longdescription>
+		A set of modules for analyzing and playing with the mechanics of python pickles.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">CensoredUsername/picklemagic</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
new file mode 100644
index 00000000000..983b5bc2640
--- /dev/null
+++ b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_{6,7,8}} )
+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 "
+HOMEPAGE="https://github.com/CensoredUsername/picklemagic"
+LICENSE="WTFPL-2"
+SLOT="0"
+IUSE="doc"
+
+BDEPEND="doc? ( dev-python/sphinx )"
+
+src_compile() {
+	use doc && emake -C doc html
+}
+
+src_install() {
+	default
+	python_foreach_impl python_domodule *.py
+	use doc && dodoc -r doc/build/html
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/picklemagic/
@ 2020-05-10 13:07 Andrew Savchenko
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Savchenko @ 2020-05-10 13:07 UTC (permalink / raw
  To: gentoo-commits

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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/picklemagic/
@ 2020-08-02  8:36 Michał Górny
  0 siblings, 0 replies; 4+ messages in thread
From: Michał Górny @ 2020-08-02  8:36 UTC (permalink / raw
  To: gentoo-commits

commit:     c3f47298549ef949487ece616629559641785e00
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  2 08:32:06 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug  2 08:36:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3f47298

dev-python/picklemagic: Remove py2.7

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
index 66c0a794e6b..b21a49749ad 100644
--- a/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
+++ b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_{6,7,8}} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 inherit python-r1
 
 SRC_URI="https://dev.gentoo.org/~bircoph/distfiles/${P}.tar.xz"


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/picklemagic/
@ 2021-10-15 17:18 Arthur Zamarin
  0 siblings, 0 replies; 4+ messages in thread
From: Arthur Zamarin @ 2021-10-15 17:18 UTC (permalink / raw
  To: gentoo-commits

commit:     0b500e566c8ec6425902f7c9c25d442e0087c5b6
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 15 17:17:55 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 15 17:18:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b500e56

dev-python/picklemagic: enable py3.9, enable py3.10, EAPI=8

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 .../picklemagic/picklemagic-0.0_pre20160415.ebuild       | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
index 4b64bc163b4..604ec09e47d 100644
--- a/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
+++ b/dev-python/picklemagic/picklemagic-0.0_pre20160415.ebuild
@@ -1,23 +1,23 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{8..10} )
 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"
 HOMEPAGE="https://github.com/CensoredUsername/picklemagic"
+SRC_URI="https://dev.gentoo.org/~bircoph/distfiles/${P}.tar.xz"
+
 LICENSE="WTFPL-2"
 SLOT="0"
+KEYWORDS="~amd64 ~x86"
 IUSE="doc"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 BDEPEND="doc? ( dev-python/sphinx )"
-DEPEND="${PYTHON_DEPS}"
-RDEPEND="${DEPEND}"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+RDEPEND="${PYTHON_DEPS}"
 
 src_compile() {
 	use doc && emake -C doc html


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-15 17:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-15 17:18 [gentoo-commits] repo/gentoo:master commit in: dev-python/picklemagic/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2020-08-02  8:36 Michał Górny
2020-05-10 13:07 Andrew Savchenko
2020-05-10 11:10 Andrew Savchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox