* [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/
@ 2015-06-03 10:21 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2015-06-03 10:21 UTC (permalink / raw
To: gentoo-commits
commit: aedf1a2eec2399ccab179a70adcf640935f9ba0b
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sun May 31 07:50:17 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun May 31 07:50:17 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=aedf1a2e
dev-python/pickleshare: Initial ebuild (required for >dev-python/ipython-3.1.0)
Package-Manager: portage-2.2.18
dev-python/pickleshare/ChangeLog | 10 +++++++
dev-python/pickleshare/metadata.xml | 14 +++++++++
dev-python/pickleshare/pickleshare-0.5.ebuild | 1 +
dev-python/pickleshare/pickleshare-9999.ebuild | 39 ++++++++++++++++++++++++++
4 files changed, 64 insertions(+)
diff --git a/dev-python/pickleshare/ChangeLog b/dev-python/pickleshare/ChangeLog
new file mode 100644
index 0000000..1f9401c
--- /dev/null
+++ b/dev-python/pickleshare/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-python/pickleshare
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*pickleshare-0.5 (31 May 2015)
+*pickleshare-9999 (31 May 2015)
+
+ 31 May 2015; Marius Brehler <marbre@linux.sungazer.de> +metadata.xml,
+ +pickleshare-0.5.ebuild, +pickleshare-9999.ebuild:
+ Initial ebuild (required for >dev-python/ipython-3.1.0)
diff --git a/dev-python/pickleshare/metadata.xml b/dev-python/pickleshare/metadata.xml
new file mode 100644
index 0000000..6cdedef
--- /dev/null
+++ b/dev-python/pickleshare/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sci</herd>
+ <longdescription>
+ Like shelve, a PickleShareDB object acts like a normal dictionary.
+ Unlike shelve, many processes can access the database
+ simultaneously. Changing a value in database is immediately visible
+ to other processes accessing the same database.
+ Concurrency is possible because the values are stored in separate
+ files. Hence the "database" is a directory where all files are
+ governed by PickleShare.
+ </longdescription>
+</pkgmetadata>
diff --git a/dev-python/pickleshare/pickleshare-0.5.ebuild b/dev-python/pickleshare/pickleshare-0.5.ebuild
new file mode 120000
index 0000000..16ddbe4
--- /dev/null
+++ b/dev-python/pickleshare/pickleshare-0.5.ebuild
@@ -0,0 +1 @@
+pickleshare-9999.ebuild
\ No newline at end of file
diff --git a/dev-python/pickleshare/pickleshare-9999.ebuild b/dev-python/pickleshare/pickleshare-9999.ebuild
new file mode 100644
index 0000000..5c56ccb
--- /dev/null
+++ b/dev-python/pickleshare/pickleshare-9999.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="A small 'shelve' like datastore with concurrency support"
+HOMEPAGE="https://github.com/pickleshare/pickleshare"
+
+if [ ${PV} == "9999" ] ; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/${PN}/${PN}.git git://github.com/${PN}/${PN}.git"
+else
+ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+ KEYWORDS="~amd64"
+ # test_pickleshare.py is not included in the pickleshare-0.5 source
+ # we fetched from pipy
+ RESTRICT="test"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+ dev-python/path-py[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+ distutils_install_for_testing
+ cd "${TEST_DIR}"/lib || die
+ cp "${S}"/test_pickleshare.py "${TEST_DIR}"/lib/ || die
+ py.test || die
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/
@ 2015-09-21 19:05 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2015-09-21 19:05 UTC (permalink / raw
To: gentoo-commits
commit: 3f63a63c09e3362f7365d7057df70e85e6315e5c
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Sep 21 18:07:40 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Sep 21 18:07:40 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3f63a63c
dev-python/pickleshare: Add ~x86 to KEYWORDS
Package-Manager: portage-2.2.20.1
dev-python/pickleshare/ChangeLog | 4 ++++
dev-python/pickleshare/pickleshare-9999.ebuild | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/dev-python/pickleshare/ChangeLog b/dev-python/pickleshare/ChangeLog
index 166f32e..d7c56ec 100644
--- a/dev-python/pickleshare/ChangeLog
+++ b/dev-python/pickleshare/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+ 21 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
+ pickleshare-9999.ebuild:
+ dev-python/pickleshare: Add ~x86 to KEYWORDS
+
05 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
dev-python/pickleshare: Add github to remote-id in metadata.xml
diff --git a/dev-python/pickleshare/pickleshare-9999.ebuild b/dev-python/pickleshare/pickleshare-9999.ebuild
index eaebb15..c295d4e 100644
--- a/dev-python/pickleshare/pickleshare-9999.ebuild
+++ b/dev-python/pickleshare/pickleshare-9999.ebuild
@@ -16,7 +16,7 @@ if [ ${PV} == "9999" ] ; then
EGIT_REPO_URI="https://github.com/${PN}/${PN}.git git://github.com/${PN}/${PN}.git"
else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~x86"
# test_pickleshare.py is not included in the pickleshare-0.5 source
# we fetched from pipy
RESTRICT="test"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/
@ 2015-10-21 13:44 Justin Lecher
0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2015-10-21 13:44 UTC (permalink / raw
To: gentoo-commits
commit: fcf57df2b6cf158135f7690772ac74b045e62baa
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 21 09:51:23 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Oct 21 09:51:23 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fcf57df2
dev-python/pickleshare: Add python3.5 support
Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/pickleshare/pickleshare-0.5.ebuild | 19 +++++++------------
dev-python/pickleshare/pickleshare-9999.ebuild | 17 ++++-------------
2 files changed, 11 insertions(+), 25 deletions(-)
diff --git a/dev-python/pickleshare/pickleshare-0.5.ebuild b/dev-python/pickleshare/pickleshare-0.5.ebuild
index c295d4e..7fd09f4 100644
--- a/dev-python/pickleshare/pickleshare-0.5.ebuild
+++ b/dev-python/pickleshare/pickleshare-0.5.ebuild
@@ -4,26 +4,17 @@
EAPI=5
-PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
inherit distutils-r1
DESCRIPTION="A small 'shelve' like datastore with concurrency support"
HOMEPAGE="https://github.com/pickleshare/pickleshare"
-
-if [ ${PV} == "9999" ] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/${PN}/${PN}.git git://github.com/${PN}/${PN}.git"
-else
- SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
- # test_pickleshare.py is not included in the pickleshare-0.5 source
- # we fetched from pipy
- RESTRICT="test"
-fi
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
+KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="
@@ -31,6 +22,10 @@ RDEPEND="
DEPEND="${RDEPEND}
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+# test_pickleshare.py is not included in the pickleshare-0.5 source
+# we fetched from pipy
+RESTRICT="test"
+
python_test() {
distutils_install_for_testing
cd "${TEST_DIR}"/lib || die
diff --git a/dev-python/pickleshare/pickleshare-9999.ebuild b/dev-python/pickleshare/pickleshare-9999.ebuild
index c295d4e..1ae333c 100644
--- a/dev-python/pickleshare/pickleshare-9999.ebuild
+++ b/dev-python/pickleshare/pickleshare-9999.ebuild
@@ -4,26 +4,17 @@
EAPI=5
-PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-inherit distutils-r1
+inherit distutils-r1 git-r3
DESCRIPTION="A small 'shelve' like datastore with concurrency support"
HOMEPAGE="https://github.com/pickleshare/pickleshare"
-
-if [ ${PV} == "9999" ] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/${PN}/${PN}.git git://github.com/${PN}/${PN}.git"
-else
- SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
- # test_pickleshare.py is not included in the pickleshare-0.5 source
- # we fetched from pipy
- RESTRICT="test"
-fi
+EGIT_REPO_URI="https://github.com/${PN}/${PN}.git git://github.com/${PN}/${PN}.git"
LICENSE="MIT"
SLOT="0"
+KEYWORDS=""
IUSE="test"
RDEPEND="
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/
@ 2015-11-28 17:58 Marius Brehler
0 siblings, 0 replies; 7+ messages in thread
From: Marius Brehler @ 2015-11-28 17:58 UTC (permalink / raw
To: gentoo-commits
commit: 04c2bc173aaa41cacba0665080c2502b5fa1cf5b
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Nov 28 17:47:12 2015 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Sat Nov 28 17:47:12 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=04c2bc17
dev-python/pickleshare: Moved to tree
Package-Manager: portage-2.2.20.1
dev-python/pickleshare/ChangeLog | 4 ++++
dev-python/pickleshare/pickleshare-0.5.ebuild | 34 ---------------------------
2 files changed, 4 insertions(+), 34 deletions(-)
diff --git a/dev-python/pickleshare/ChangeLog b/dev-python/pickleshare/ChangeLog
index d7c56ec..52d018e 100644
--- a/dev-python/pickleshare/ChangeLog
+++ b/dev-python/pickleshare/ChangeLog
@@ -2,6 +2,10 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+ 28 Nov 2015; Marius Brehler <marbre@linux.sungazer.de> -Manifest,
+ -pickleshare-0.5.ebuild:
+ dev-python/pickleshare: Moved to tree
+
21 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
pickleshare-9999.ebuild:
dev-python/pickleshare: Add ~x86 to KEYWORDS
diff --git a/dev-python/pickleshare/pickleshare-0.5.ebuild b/dev-python/pickleshare/pickleshare-0.5.ebuild
deleted file mode 100644
index 7fd09f4..0000000
--- a/dev-python/pickleshare/pickleshare-0.5.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="A small 'shelve' like datastore with concurrency support"
-HOMEPAGE="https://github.com/pickleshare/pickleshare"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="
- dev-python/path-py[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-# test_pickleshare.py is not included in the pickleshare-0.5 source
-# we fetched from pipy
-RESTRICT="test"
-
-python_test() {
- distutils_install_for_testing
- cd "${TEST_DIR}"/lib || die
- cp "${S}"/test_pickleshare.py "${TEST_DIR}"/lib/ || die
- py.test || die
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/
@ 2016-05-18 7:05 Marius Brehler
0 siblings, 0 replies; 7+ messages in thread
From: Marius Brehler @ 2016-05-18 7:05 UTC (permalink / raw
To: gentoo-commits
commit: 50c2ca440db5911e3e13441d5dd8a1a33ea35829
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed May 18 06:32:44 2016 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Wed May 18 06:32:44 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=50c2ca44
dev-python/pickleshare: Bump to EAPI=6
Package-Manager: portage-2.2.28
dev-python/pickleshare/pickleshare-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pickleshare/pickleshare-9999.ebuild b/dev-python/pickleshare/pickleshare-9999.ebuild
index 1ae333c..f0ebb1a 100644
--- a/dev-python/pickleshare/pickleshare-9999.ebuild
+++ b/dev-python/pickleshare/pickleshare-9999.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/
@ 2017-01-03 10:31 Marius Brehler
0 siblings, 0 replies; 7+ messages in thread
From: Marius Brehler @ 2017-01-03 10:31 UTC (permalink / raw
To: gentoo-commits
commit: fe1bb607e14805d16a8642e0dde875a062e858ac
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Jan 3 10:28:56 2017 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Jan 3 10:28:56 2017 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fe1bb607
dev-python/pickleshare: Drop python3_3
Package-Manager: portage-2.3.0
dev-python/pickleshare/pickleshare-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pickleshare/pickleshare-9999.ebuild b/dev-python/pickleshare/pickleshare-9999.ebuild
index f0ebb1a..6b16483 100644
--- a/dev-python/pickleshare/pickleshare-9999.ebuild
+++ b/dev-python/pickleshare/pickleshare-9999.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
inherit distutils-r1 git-r3
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/
@ 2020-09-21 23:41 Aisha Tammy
0 siblings, 0 replies; 7+ messages in thread
From: Aisha Tammy @ 2020-09-21 23:41 UTC (permalink / raw
To: gentoo-commits
commit: 7ade6038cc6267b433f9b5ce9c419e7fbd9aa445
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Mon Sep 21 23:41:21 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Mon Sep 21 23:41:33 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7ade6038
dev-python/pickleshare: drop package
present in ::gentoo
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/pickleshare/metadata.xml | 20 ------------------
dev-python/pickleshare/pickleshare-9999.ebuild | 29 --------------------------
2 files changed, 49 deletions(-)
diff --git a/dev-python/pickleshare/metadata.xml b/dev-python/pickleshare/metadata.xml
deleted file mode 100644
index 4898921bd..000000000
--- a/dev-python/pickleshare/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription>
-Like shelve, a PickleShareDB object acts like a normal dictionary.
-Unlike shelve, many processes can access the database
-simultaneously. Changing a value in database is immediately visible
-to other processes accessing the same database.
-Concurrency is possible because the values are stored in separate
-files. Hence the "database" is a directory where all files are
-governed by PickleShare.
-</longdescription>
- <upstream>
- <remote-id type="github">pickleshare/pickleshare</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pickleshare/pickleshare-9999.ebuild b/dev-python/pickleshare/pickleshare-9999.ebuild
deleted file mode 100644
index 95306c174..000000000
--- a/dev-python/pickleshare/pickleshare-9999.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="A small 'shelve' like datastore with concurrency support"
-HOMEPAGE="https://github.com/pickleshare/pickleshare"
-EGIT_REPO_URI="https://github.com/${PN}/${PN}.git git://github.com/${PN}/${PN}.git"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-
-RDEPEND="
- dev-python/path-py[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
- distutils_install_for_testing
- cd "${TEST_DIR}"/lib || die
- cp "${S}"/test_pickleshare.py "${TEST_DIR}"/lib/ || die
- py.test || die
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2020-09-21 23:41 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-21 23:41 [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/ Aisha Tammy
-- strict thread matches above, loose matches on Subject: below --
2017-01-03 10:31 Marius Brehler
2016-05-18 7:05 Marius Brehler
2015-11-28 17:58 Marius Brehler
2015-10-21 13:44 Justin Lecher
2015-09-21 19:05 Justin Lecher
2015-06-03 10:21 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox