public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-09-05 21:02 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-09-05 21:02 UTC (permalink / raw
  To: gentoo-commits

commit:     7b22cbbc4ba554e90f31ac0ed122182503321f3d
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  5 21:01:16 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Sep  5 21:01:40 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b22cbbc

dev-python/stormpath: add version 2.1.1

Package-Manager: portage-2.2.20.1

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.1.1.ebuild | 50 +++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 3c85105..25c04ea 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,2 +1,3 @@
 DIST stormpath-2.0.8.tar.gz 4326469 SHA256 9f6ad7e7b210024915e2139b2ed395a7c0fff6ca49ad3cdf58dc8f214d080c70 SHA512 661714fac02528111bb01e30f8c16b1d8701fe894b21d803958331819ce145a9ec03864111b861286224b33aaf56ca68ddcef2b67cd0003c498cd007ce375a03 WHIRLPOOL 12e6f7ec559a654ab59d34106d85d98ada4c7e3dee6fcec6cad0a2500608e962289d73a50e6ce6d81122c43f0f53b30d861203c8a976ac7bdbdab1cd8f5db6be
 DIST stormpath-2.0.9.tar.gz 4325976 SHA256 ba93f1f9f6b98db2eb2671d2b3285fdd15f8b2e6d3bce899f240576018f216ae SHA512 b50fa11e8fecf4909a8a1014963c80e7e2dde4db37e1f4681c2a116933d59f5b5ea32901cfde97b24398d8074db8b04121b2a7715d86b6b2eb78eb288465114c WHIRLPOOL 6290d5844d35158cc46f1810b6f83e41c443164cff4512caeeb38e562b04f448c1ac1b608b2cda4abd348f91319e4e8fbb3b195ba31a8fb415ba80f0ed7c5937
+DIST stormpath-2.1.1.tar.gz 4326557 SHA256 94600e8368f2fbe06adea5fddc8f4b7a479f7a89a0a35a46f58f7c796286e5f4 SHA512 7548aff63e5f04718d4d4887a1177f6f0cf3cc8cb9588e17f7563bae9c6dc5897a968ee2c4e189b6d9100ef16ec7e34e524c4cd3c5112845c0619876ca6d5505 WHIRLPOOL 33db1d8e52d24581a1fe7220b4329479142772939d1df76d52a46d47db6219890fde3204655dd65851d43b38e2427cd32df894392948482d85554772b9f12bbf

diff --git a/dev-python/stormpath/stormpath-2.1.1.ebuild b/dev-python/stormpath/stormpath-2.1.1.ebuild
new file mode 100644
index 0000000..539c56c
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.1.1.ebuild
@@ -0,0 +1,50 @@
+# 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 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test || die "tests failed under ${EPYTYHON}"
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2018-06-26 18:09 Pacho Ramos
  0 siblings, 0 replies; 29+ messages in thread
From: Pacho Ramos @ 2018-06-26 18:09 UTC (permalink / raw
  To: gentoo-commits

commit:     2a187c001cc0d4139b296424ad50cf3599bed2bb
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 26 17:56:48 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Jun 26 18:09:26 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a187c00

dev-python/stormpath: Support python3.6

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/stormpath/stormpath-2.4.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/stormpath/stormpath-2.4.5.ebuild b/dev-python/stormpath/stormpath-2.4.5.ebuild
index 506294b5f5a..55a6f039182 100644
--- a/dev-python/stormpath/stormpath-2.4.5.ebuild
+++ b/dev-python/stormpath/stormpath-2.4.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 
 inherit distutils-r1 vcs-snapshot
 


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2018-03-10 14:56 Pacho Ramos
  0 siblings, 0 replies; 29+ messages in thread
From: Pacho Ramos @ 2018-03-10 14:56 UTC (permalink / raw
  To: gentoo-commits

commit:     3e17dc7130cbce24c3a4ebf3b2c0dba5e991ee75
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 10 14:45:56 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Mar 10 14:53:53 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e17dc71

dev-python/stormpath: Update maintainer due to bug #502560

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-python/stormpath/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/dev-python/stormpath/metadata.xml b/dev-python/stormpath/metadata.xml
index 202e1fb9e19..c0f81a4cf37 100644
--- a/dev-python/stormpath/metadata.xml
+++ b/dev-python/stormpath/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>alunduil@gentoo.org</email>
-		<name>Alex Brandt</name>
-	</maintainer>
 	<upstream>
 		<remote-id type="github">stormpath/stormpath-sdk-python</remote-id>
 		<remote-id type="pypi">stormpath</remote-id>


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2018-03-10 14:56 Pacho Ramos
  0 siblings, 0 replies; 29+ messages in thread
From: Pacho Ramos @ 2018-03-10 14:56 UTC (permalink / raw
  To: gentoo-commits

commit:     8fced083f563e755a24fdf9fd17ced29ba01a07a
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 10 14:46:09 2018 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Mar 10 14:53:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fced083

dev-python/stormpath: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-python/stormpath/Manifest               |  2 --
 dev-python/stormpath/stormpath-2.4.2.ebuild | 50 -----------------------------
 dev-python/stormpath/stormpath-2.4.4.ebuild | 50 -----------------------------
 3 files changed, 102 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 336ef9352d6..0c3828f1537 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1 @@
-DIST stormpath-2.4.2.tar.gz 4345932 BLAKE2B 43cfa19ceae44f06a990b1c6efe487c4d954c62de6fdc01ee9c4541b654823b25351c87d324af55f5fe22ab050a942ac5498df0a72e7fe0f779c718b3b118cc7 SHA512 0b63308f179f83e409c24dabd75b96b0384b0eae4f729c1351e16c1158a61548c218e94e6d68fab196b6166e67a9132173205d52d03af334d690315f7756efff
-DIST stormpath-2.4.4.tar.gz 4347668 BLAKE2B 70efec986b51d6892948a2f8d47217702e84fc09a8a9ae6ae66d5f3e52fdd80935983fa41b451fb055274833298e73d6e301d41428b7311e7c4bb3c8fe018b2f SHA512 41c06dc8c96f363493777e4d65a559d12af0b4fc85e5bdd1a799d7191f24d06e4c1bad5364771e5aff5788e896a4d8bc5dd9209243f558062444da5201e21747
 DIST stormpath-2.4.5.tar.gz 3821801 BLAKE2B 6ad3433c86046d6ea16b3b714e26d612b418a9b690fed4f5de6bd8563196b98fbac8dadbc1b781183cab03079d9bf227adf35685bae7c3c76162178837bc7cee SHA512 8bf3ad45cabd9c16a615f3303a4253d7f81bfb39a9c1542bc9662be54075f85013624e9ace7ec6ae7a81ef3ebb6864919458bbeca685879a8623ab7fb13cfbb4

diff --git a/dev-python/stormpath/stormpath-2.4.2.ebuild b/dev-python/stormpath/stormpath-2.4.2.ebuild
deleted file mode 100644
index 6d6ea046e43..00000000000
--- a/dev-python/stormpath/stormpath-2.4.2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}

diff --git a/dev-python/stormpath/stormpath-2.4.4.ebuild b/dev-python/stormpath/stormpath-2.4.4.ebuild
deleted file mode 100644
index b470140f20b..00000000000
--- a/dev-python/stormpath/stormpath-2.4.4.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	<=dev-python/oauthlib-1.0.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	esetup.py docs
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2017-10-04  8:57 Michał Górny
  0 siblings, 0 replies; 29+ messages in thread
From: Michał Górny @ 2017-10-04  8:57 UTC (permalink / raw
  To: gentoo-commits

commit:     09857296e7156a353d18d923f8f8a734e7fb9805
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  4 07:24:26 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct  4 08:56:49 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09857296

dev-python/stormpath: Strip empty metadata.xml elements

 dev-python/stormpath/metadata.xml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-python/stormpath/metadata.xml b/dev-python/stormpath/metadata.xml
index 483357ecc1c..202e1fb9e19 100644
--- a/dev-python/stormpath/metadata.xml
+++ b/dev-python/stormpath/metadata.xml
@@ -5,8 +5,6 @@
 		<email>alunduil@gentoo.org</email>
 		<name>Alex Brandt</name>
 	</maintainer>
-	<longdescription lang="en">
-	</longdescription>
 	<upstream>
 		<remote-id type="github">stormpath/stormpath-sdk-python</remote-id>
 		<remote-id type="pypi">stormpath</remote-id>


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2017-09-25 13:37 Pacho Ramos
  0 siblings, 0 replies; 29+ messages in thread
From: Pacho Ramos @ 2017-09-25 13:37 UTC (permalink / raw
  To: gentoo-commits

commit:     78af9a2c6e5ea6fd000e5f60f7c7b95f3f5b7e00
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 25 13:35:31 2017 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Mon Sep 25 13:36:57 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78af9a2c

dev-python/stormpath: Support newer python

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-python/stormpath/stormpath-2.4.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/stormpath/stormpath-2.4.5.ebuild b/dev-python/stormpath/stormpath-2.4.5.ebuild
index b470140f20b..506294b5f5a 100644
--- a/dev-python/stormpath/stormpath-2.4.5.ebuild
+++ b/dev-python/stormpath/stormpath-2.4.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_4 )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit distutils-r1 vcs-snapshot
 


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-10-01 22:30 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-10-01 22:30 UTC (permalink / raw
  To: gentoo-commits

commit:     0cce63463d54dceddfaae4ceebbafcc92fdd3c47
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  1 22:25:58 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Oct  1 22:29:50 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cce6346

dev-python/stormpath: remove version 2.4.1

Package-Manager: portage-2.3.1

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.4.1.ebuild | 51 -----------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index dd9de5c..d0e5556 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.4.1.tar.gz 4345634 SHA256 5c07c27ff08527920878e7a350bd6532198e066badf929d70d46937684399e64 SHA512 50fbe12015b3dcc70c13de65d0a594684bb605f24f3aaf60bb51b7ff9e01346e6dece994ebccf790e58fe66c90aad252c4ef4c33b24f1b98172e1634fb733b95 WHIRLPOOL 332080e7c6c2ec7535e8eb51e132ac3df7f18fc65565e25b769f25cd5cd7d65c4b1d28da0c2b186250d8b58b6618bb5b27ccd1c1e6148365ad1139c7d5d39f4f
 DIST stormpath-2.4.2.tar.gz 4345932 SHA256 17fb42c24c39830bb39589eff757e3b5c9d09d74c88dba520fa1031b5785e3ff SHA512 0b63308f179f83e409c24dabd75b96b0384b0eae4f729c1351e16c1158a61548c218e94e6d68fab196b6166e67a9132173205d52d03af334d690315f7756efff WHIRLPOOL 536a5899ba68788cd8a4b7c1acebf5126a301e52643da3e66fa7bd26f23b38c3a58adf271db03fa1eb92332c4bac83a4cb434027684c7b46ee53c1de5d69eaca
 DIST stormpath-2.4.4.tar.gz 4347668 SHA256 6630abba74bc5de5f295b78fd1c32a60a9d1f3b09863ce4353ea568a99fc175c SHA512 41c06dc8c96f363493777e4d65a559d12af0b4fc85e5bdd1a799d7191f24d06e4c1bad5364771e5aff5788e896a4d8bc5dd9209243f558062444da5201e21747 WHIRLPOOL a9277465fb21d127c7b75f4836ee89b5c98203b68af12b46bb9cb82842a79c7f8c6fc82533b677bd2815d8e5d88007ea44dc82cc8c40af3fe2fbca5883a2cb89
 DIST stormpath-2.4.5.tar.gz 3821801 SHA256 93446387a369483d219db9a1f760743fe97c19fe09f1a1ab6c074f576ff31f22 SHA512 8bf3ad45cabd9c16a615f3303a4253d7f81bfb39a9c1542bc9662be54075f85013624e9ace7ec6ae7a81ef3ebb6864919458bbeca685879a8623ab7fb13cfbb4 WHIRLPOOL ebff05e9bc7346a034d8c3ae643fa65629e29425db7067d8a995b7b63fd8c24d3c987134a03f9bb1817c783a636fa7a5987bdf47d81f7330db0ee9704be6a062

diff --git a/dev-python/stormpath/stormpath-2.4.1.ebuild b/dev-python/stormpath/stormpath-2.4.1.ebuild
deleted file mode 100644
index 8248d4f..00000000
--- a/dev-python/stormpath/stormpath-2.4.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-10-01 22:30 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-10-01 22:30 UTC (permalink / raw
  To: gentoo-commits

commit:     24ce286aaf0d67e986ae9a1277b72b2770e49b00
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  1 22:12:56 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Oct  1 22:29:43 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ce286a

dev-python/stormpath: add version 2.4.5

Package-Manager: portage-2.3.1

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.4.5.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 97f20a8..dd9de5c 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.4.1.tar.gz 4345634 SHA256 5c07c27ff08527920878e7a350bd6532198e066badf929d70d46937684399e64 SHA512 50fbe12015b3dcc70c13de65d0a594684bb605f24f3aaf60bb51b7ff9e01346e6dece994ebccf790e58fe66c90aad252c4ef4c33b24f1b98172e1634fb733b95 WHIRLPOOL 332080e7c6c2ec7535e8eb51e132ac3df7f18fc65565e25b769f25cd5cd7d65c4b1d28da0c2b186250d8b58b6618bb5b27ccd1c1e6148365ad1139c7d5d39f4f
 DIST stormpath-2.4.2.tar.gz 4345932 SHA256 17fb42c24c39830bb39589eff757e3b5c9d09d74c88dba520fa1031b5785e3ff SHA512 0b63308f179f83e409c24dabd75b96b0384b0eae4f729c1351e16c1158a61548c218e94e6d68fab196b6166e67a9132173205d52d03af334d690315f7756efff WHIRLPOOL 536a5899ba68788cd8a4b7c1acebf5126a301e52643da3e66fa7bd26f23b38c3a58adf271db03fa1eb92332c4bac83a4cb434027684c7b46ee53c1de5d69eaca
 DIST stormpath-2.4.4.tar.gz 4347668 SHA256 6630abba74bc5de5f295b78fd1c32a60a9d1f3b09863ce4353ea568a99fc175c SHA512 41c06dc8c96f363493777e4d65a559d12af0b4fc85e5bdd1a799d7191f24d06e4c1bad5364771e5aff5788e896a4d8bc5dd9209243f558062444da5201e21747 WHIRLPOOL a9277465fb21d127c7b75f4836ee89b5c98203b68af12b46bb9cb82842a79c7f8c6fc82533b677bd2815d8e5d88007ea44dc82cc8c40af3fe2fbca5883a2cb89
+DIST stormpath-2.4.5.tar.gz 3821801 SHA256 93446387a369483d219db9a1f760743fe97c19fe09f1a1ab6c074f576ff31f22 SHA512 8bf3ad45cabd9c16a615f3303a4253d7f81bfb39a9c1542bc9662be54075f85013624e9ace7ec6ae7a81ef3ebb6864919458bbeca685879a8623ab7fb13cfbb4 WHIRLPOOL ebff05e9bc7346a034d8c3ae643fa65629e29425db7067d8a995b7b63fd8c24d3c987134a03f9bb1817c783a636fa7a5987bdf47d81f7330db0ee9704be6a062

diff --git a/dev-python/stormpath/stormpath-2.4.5.ebuild b/dev-python/stormpath/stormpath-2.4.5.ebuild
new file mode 100644
index 00000000..82cb332
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.4.5.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	<=dev-python/oauthlib-1.0.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	esetup.py docs
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-08-13 15:48 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-08-13 15:48 UTC (permalink / raw
  To: gentoo-commits

commit:     4430fe9e8d721bf9fb97245f2acd791a57163365
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 13 15:47:58 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Aug 13 15:47:58 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4430fe9e

dev-python/stormpath: remove version 2.4.0

Package-Manager: portage-2.3.0

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.4.0.ebuild | 51 -----------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 4c436e2..97f20a8 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.4.0.tar.gz 4345415 SHA256 4c3ee97bf630f0fb9237bccedfd4c41997a47599d76d319cfb84e95d7ec26db6 SHA512 4086c03b745427fa59d6b3739da38822781587d9d55bb0ea142dc70b9dd38ca98e8fdfbb167af6944440e7241ba63b2a2f58130b48789998fa3e263f11326a2b WHIRLPOOL 3425301a9c1858f5a602196be53e7a61961922786356f54f9fa3f033bb1b6460ad9ff32e4e0f2252e8b8220bd129fae5b8613771466f015e797b86d263391000
 DIST stormpath-2.4.1.tar.gz 4345634 SHA256 5c07c27ff08527920878e7a350bd6532198e066badf929d70d46937684399e64 SHA512 50fbe12015b3dcc70c13de65d0a594684bb605f24f3aaf60bb51b7ff9e01346e6dece994ebccf790e58fe66c90aad252c4ef4c33b24f1b98172e1634fb733b95 WHIRLPOOL 332080e7c6c2ec7535e8eb51e132ac3df7f18fc65565e25b769f25cd5cd7d65c4b1d28da0c2b186250d8b58b6618bb5b27ccd1c1e6148365ad1139c7d5d39f4f
 DIST stormpath-2.4.2.tar.gz 4345932 SHA256 17fb42c24c39830bb39589eff757e3b5c9d09d74c88dba520fa1031b5785e3ff SHA512 0b63308f179f83e409c24dabd75b96b0384b0eae4f729c1351e16c1158a61548c218e94e6d68fab196b6166e67a9132173205d52d03af334d690315f7756efff WHIRLPOOL 536a5899ba68788cd8a4b7c1acebf5126a301e52643da3e66fa7bd26f23b38c3a58adf271db03fa1eb92332c4bac83a4cb434027684c7b46ee53c1de5d69eaca
 DIST stormpath-2.4.4.tar.gz 4347668 SHA256 6630abba74bc5de5f295b78fd1c32a60a9d1f3b09863ce4353ea568a99fc175c SHA512 41c06dc8c96f363493777e4d65a559d12af0b4fc85e5bdd1a799d7191f24d06e4c1bad5364771e5aff5788e896a4d8bc5dd9209243f558062444da5201e21747 WHIRLPOOL a9277465fb21d127c7b75f4836ee89b5c98203b68af12b46bb9cb82842a79c7f8c6fc82533b677bd2815d8e5d88007ea44dc82cc8c40af3fe2fbca5883a2cb89

diff --git a/dev-python/stormpath/stormpath-2.4.0.ebuild b/dev-python/stormpath/stormpath-2.4.0.ebuild
deleted file mode 100644
index 1885b70..0000000
--- a/dev-python/stormpath/stormpath-2.4.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	<=dev-python/oauthlib-1.0.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-08-13 15:48 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-08-13 15:48 UTC (permalink / raw
  To: gentoo-commits

commit:     2961a32774cd9e766ec631390993f3d97eb66c76
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 13 15:45:49 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Aug 13 15:45:49 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2961a327

dev-python/stormpath: add version 2.4.4

Package-Manager: portage-2.3.0

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.4.4.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 4729957..4c436e2 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.4.0.tar.gz 4345415 SHA256 4c3ee97bf630f0fb9237bccedfd4c41997a47599d76d319cfb84e95d7ec26db6 SHA512 4086c03b745427fa59d6b3739da38822781587d9d55bb0ea142dc70b9dd38ca98e8fdfbb167af6944440e7241ba63b2a2f58130b48789998fa3e263f11326a2b WHIRLPOOL 3425301a9c1858f5a602196be53e7a61961922786356f54f9fa3f033bb1b6460ad9ff32e4e0f2252e8b8220bd129fae5b8613771466f015e797b86d263391000
 DIST stormpath-2.4.1.tar.gz 4345634 SHA256 5c07c27ff08527920878e7a350bd6532198e066badf929d70d46937684399e64 SHA512 50fbe12015b3dcc70c13de65d0a594684bb605f24f3aaf60bb51b7ff9e01346e6dece994ebccf790e58fe66c90aad252c4ef4c33b24f1b98172e1634fb733b95 WHIRLPOOL 332080e7c6c2ec7535e8eb51e132ac3df7f18fc65565e25b769f25cd5cd7d65c4b1d28da0c2b186250d8b58b6618bb5b27ccd1c1e6148365ad1139c7d5d39f4f
 DIST stormpath-2.4.2.tar.gz 4345932 SHA256 17fb42c24c39830bb39589eff757e3b5c9d09d74c88dba520fa1031b5785e3ff SHA512 0b63308f179f83e409c24dabd75b96b0384b0eae4f729c1351e16c1158a61548c218e94e6d68fab196b6166e67a9132173205d52d03af334d690315f7756efff WHIRLPOOL 536a5899ba68788cd8a4b7c1acebf5126a301e52643da3e66fa7bd26f23b38c3a58adf271db03fa1eb92332c4bac83a4cb434027684c7b46ee53c1de5d69eaca
+DIST stormpath-2.4.4.tar.gz 4347668 SHA256 6630abba74bc5de5f295b78fd1c32a60a9d1f3b09863ce4353ea568a99fc175c SHA512 41c06dc8c96f363493777e4d65a559d12af0b4fc85e5bdd1a799d7191f24d06e4c1bad5364771e5aff5788e896a4d8bc5dd9209243f558062444da5201e21747 WHIRLPOOL a9277465fb21d127c7b75f4836ee89b5c98203b68af12b46bb9cb82842a79c7f8c6fc82533b677bd2815d8e5d88007ea44dc82cc8c40af3fe2fbca5883a2cb89

diff --git a/dev-python/stormpath/stormpath-2.4.4.ebuild b/dev-python/stormpath/stormpath-2.4.4.ebuild
new file mode 100644
index 0000000..82cb332
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.4.4.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	<=dev-python/oauthlib-1.0.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	esetup.py docs
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-07-30 15:03 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-07-30 15:03 UTC (permalink / raw
  To: gentoo-commits

commit:     ae482460cdebaa1627dd6f14faf312f9fc78fcfe
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 30 15:00:09 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Jul 30 15:00:09 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae482460

dev-python/stormpath: add version 2.4.2

Package-Manager: portage-2.3.0

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.4.2.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index d2a2401..33cd9ed 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.3.1.tar.gz 4346382 SHA256 cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9 WHIRLPOOL 91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70
 DIST stormpath-2.4.0.tar.gz 4345415 SHA256 4c3ee97bf630f0fb9237bccedfd4c41997a47599d76d319cfb84e95d7ec26db6 SHA512 4086c03b745427fa59d6b3739da38822781587d9d55bb0ea142dc70b9dd38ca98e8fdfbb167af6944440e7241ba63b2a2f58130b48789998fa3e263f11326a2b WHIRLPOOL 3425301a9c1858f5a602196be53e7a61961922786356f54f9fa3f033bb1b6460ad9ff32e4e0f2252e8b8220bd129fae5b8613771466f015e797b86d263391000
 DIST stormpath-2.4.1.tar.gz 4345634 SHA256 5c07c27ff08527920878e7a350bd6532198e066badf929d70d46937684399e64 SHA512 50fbe12015b3dcc70c13de65d0a594684bb605f24f3aaf60bb51b7ff9e01346e6dece994ebccf790e58fe66c90aad252c4ef4c33b24f1b98172e1634fb733b95 WHIRLPOOL 332080e7c6c2ec7535e8eb51e132ac3df7f18fc65565e25b769f25cd5cd7d65c4b1d28da0c2b186250d8b58b6618bb5b27ccd1c1e6148365ad1139c7d5d39f4f
+DIST stormpath-2.4.2.tar.gz 4345932 SHA256 17fb42c24c39830bb39589eff757e3b5c9d09d74c88dba520fa1031b5785e3ff SHA512 0b63308f179f83e409c24dabd75b96b0384b0eae4f729c1351e16c1158a61548c218e94e6d68fab196b6166e67a9132173205d52d03af334d690315f7756efff WHIRLPOOL 536a5899ba68788cd8a4b7c1acebf5126a301e52643da3e66fa7bd26f23b38c3a58adf271db03fa1eb92332c4bac83a4cb434027684c7b46ee53c1de5d69eaca

diff --git a/dev-python/stormpath/stormpath-2.4.2.ebuild b/dev-python/stormpath/stormpath-2.4.2.ebuild
new file mode 100644
index 0000000..8248d4f
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.4.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-07-30 15:03 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-07-30 15:03 UTC (permalink / raw
  To: gentoo-commits

commit:     030624b497fd129b09b68de4f13d348425415f66
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 30 15:03:29 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Jul 30 15:03:29 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=030624b4

dev-python/stormpath: remove version 2.3.1

Package-Manager: portage-2.3.0

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.3.1.ebuild | 51 -----------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 33cd9ed..4729957 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.3.1.tar.gz 4346382 SHA256 cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9 WHIRLPOOL 91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70
 DIST stormpath-2.4.0.tar.gz 4345415 SHA256 4c3ee97bf630f0fb9237bccedfd4c41997a47599d76d319cfb84e95d7ec26db6 SHA512 4086c03b745427fa59d6b3739da38822781587d9d55bb0ea142dc70b9dd38ca98e8fdfbb167af6944440e7241ba63b2a2f58130b48789998fa3e263f11326a2b WHIRLPOOL 3425301a9c1858f5a602196be53e7a61961922786356f54f9fa3f033bb1b6460ad9ff32e4e0f2252e8b8220bd129fae5b8613771466f015e797b86d263391000
 DIST stormpath-2.4.1.tar.gz 4345634 SHA256 5c07c27ff08527920878e7a350bd6532198e066badf929d70d46937684399e64 SHA512 50fbe12015b3dcc70c13de65d0a594684bb605f24f3aaf60bb51b7ff9e01346e6dece994ebccf790e58fe66c90aad252c4ef4c33b24f1b98172e1634fb733b95 WHIRLPOOL 332080e7c6c2ec7535e8eb51e132ac3df7f18fc65565e25b769f25cd5cd7d65c4b1d28da0c2b186250d8b58b6618bb5b27ccd1c1e6148365ad1139c7d5d39f4f
 DIST stormpath-2.4.2.tar.gz 4345932 SHA256 17fb42c24c39830bb39589eff757e3b5c9d09d74c88dba520fa1031b5785e3ff SHA512 0b63308f179f83e409c24dabd75b96b0384b0eae4f729c1351e16c1158a61548c218e94e6d68fab196b6166e67a9132173205d52d03af334d690315f7756efff WHIRLPOOL 536a5899ba68788cd8a4b7c1acebf5126a301e52643da3e66fa7bd26f23b38c3a58adf271db03fa1eb92332c4bac83a4cb434027684c7b46ee53c1de5d69eaca

diff --git a/dev-python/stormpath/stormpath-2.3.1.ebuild b/dev-python/stormpath/stormpath-2.3.1.ebuild
deleted file mode 100644
index 8248d4f..0000000
--- a/dev-python/stormpath/stormpath-2.3.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-07-16 14:26 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-07-16 14:26 UTC (permalink / raw
  To: gentoo-commits

commit:     9af6174c2de949d53b6f71e1d58d1e4bef506829
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 16 14:25:28 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Jul 16 14:25:51 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af6174c

dev-python/stormpath: remove version 2.1.6

Package-Manager: portage-2.3.0

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.1.6.ebuild | 51 -----------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index b55e5d7..d2a2401 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.1.6.tar.gz 4339678 SHA256 47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611 WHIRLPOOL c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b
 DIST stormpath-2.3.1.tar.gz 4346382 SHA256 cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9 WHIRLPOOL 91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70
 DIST stormpath-2.4.0.tar.gz 4345415 SHA256 4c3ee97bf630f0fb9237bccedfd4c41997a47599d76d319cfb84e95d7ec26db6 SHA512 4086c03b745427fa59d6b3739da38822781587d9d55bb0ea142dc70b9dd38ca98e8fdfbb167af6944440e7241ba63b2a2f58130b48789998fa3e263f11326a2b WHIRLPOOL 3425301a9c1858f5a602196be53e7a61961922786356f54f9fa3f033bb1b6460ad9ff32e4e0f2252e8b8220bd129fae5b8613771466f015e797b86d263391000
 DIST stormpath-2.4.1.tar.gz 4345634 SHA256 5c07c27ff08527920878e7a350bd6532198e066badf929d70d46937684399e64 SHA512 50fbe12015b3dcc70c13de65d0a594684bb605f24f3aaf60bb51b7ff9e01346e6dece994ebccf790e58fe66c90aad252c4ef4c33b24f1b98172e1634fb733b95 WHIRLPOOL 332080e7c6c2ec7535e8eb51e132ac3df7f18fc65565e25b769f25cd5cd7d65c4b1d28da0c2b186250d8b58b6618bb5b27ccd1c1e6148365ad1139c7d5d39f4f

diff --git a/dev-python/stormpath/stormpath-2.1.6.ebuild b/dev-python/stormpath/stormpath-2.1.6.ebuild
deleted file mode 100644
index e6bdfe5..0000000
--- a/dev-python/stormpath/stormpath-2.1.6.ebuild
+++ /dev/null
@@ -1,51 +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 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-07-16 14:26 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-07-16 14:26 UTC (permalink / raw
  To: gentoo-commits

commit:     76456c655b071aa464acc35952859cdebdb6f013
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 16 14:22:16 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Jul 16 14:25:51 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76456c65

dev-python/stormpath: add version 2.4.1

Package-Manager: portage-2.3.0

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.4.1.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index d6b7e32..b55e5d7 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.1.6.tar.gz 4339678 SHA256 47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611 WHIRLPOOL c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b
 DIST stormpath-2.3.1.tar.gz 4346382 SHA256 cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9 WHIRLPOOL 91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70
 DIST stormpath-2.4.0.tar.gz 4345415 SHA256 4c3ee97bf630f0fb9237bccedfd4c41997a47599d76d319cfb84e95d7ec26db6 SHA512 4086c03b745427fa59d6b3739da38822781587d9d55bb0ea142dc70b9dd38ca98e8fdfbb167af6944440e7241ba63b2a2f58130b48789998fa3e263f11326a2b WHIRLPOOL 3425301a9c1858f5a602196be53e7a61961922786356f54f9fa3f033bb1b6460ad9ff32e4e0f2252e8b8220bd129fae5b8613771466f015e797b86d263391000
+DIST stormpath-2.4.1.tar.gz 4345634 SHA256 5c07c27ff08527920878e7a350bd6532198e066badf929d70d46937684399e64 SHA512 50fbe12015b3dcc70c13de65d0a594684bb605f24f3aaf60bb51b7ff9e01346e6dece994ebccf790e58fe66c90aad252c4ef4c33b24f1b98172e1634fb733b95 WHIRLPOOL 332080e7c6c2ec7535e8eb51e132ac3df7f18fc65565e25b769f25cd5cd7d65c4b1d28da0c2b186250d8b58b6618bb5b27ccd1c1e6148365ad1139c7d5d39f4f

diff --git a/dev-python/stormpath/stormpath-2.4.1.ebuild b/dev-python/stormpath/stormpath-2.4.1.ebuild
new file mode 100644
index 0000000..8248d4f
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.4.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-07-02 15:26 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-07-02 15:26 UTC (permalink / raw
  To: gentoo-commits

commit:     f14a28b1c16c1c769f5954a2257371350f8c0462
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 15:23:10 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 15:23:10 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f14a28b1

dev-python/stormpath: add version 2.4.0

Package-Manager: portage-2.3.0

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.4.0.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 4411481..938b606 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.1.5.tar.gz 4339093 SHA256 cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b11110700297beebb894b4d5301df97a836a4204622ea83af WHIRLPOOL 14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92
 DIST stormpath-2.1.6.tar.gz 4339678 SHA256 47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611 WHIRLPOOL c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b
 DIST stormpath-2.3.1.tar.gz 4346382 SHA256 cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9 WHIRLPOOL 91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70
+DIST stormpath-2.4.0.tar.gz 4345415 SHA256 4c3ee97bf630f0fb9237bccedfd4c41997a47599d76d319cfb84e95d7ec26db6 SHA512 4086c03b745427fa59d6b3739da38822781587d9d55bb0ea142dc70b9dd38ca98e8fdfbb167af6944440e7241ba63b2a2f58130b48789998fa3e263f11326a2b WHIRLPOOL 3425301a9c1858f5a602196be53e7a61961922786356f54f9fa3f033bb1b6460ad9ff32e4e0f2252e8b8220bd129fae5b8613771466f015e797b86d263391000

diff --git a/dev-python/stormpath/stormpath-2.4.0.ebuild b/dev-python/stormpath/stormpath-2.4.0.ebuild
new file mode 100644
index 0000000..1885b70
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.4.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	<=dev-python/oauthlib-1.0.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-07-02 15:26 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-07-02 15:26 UTC (permalink / raw
  To: gentoo-commits

commit:     0f73fdd7f0814ae56b5563694b653fe72f60603e
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 15:26:22 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 15:26:22 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f73fdd7

dev-python/stormpath: remove version 2.1.5

Package-Manager: portage-2.3.0

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.1.5.ebuild | 51 -----------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 938b606..d6b7e32 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.1.5.tar.gz 4339093 SHA256 cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b11110700297beebb894b4d5301df97a836a4204622ea83af WHIRLPOOL 14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92
 DIST stormpath-2.1.6.tar.gz 4339678 SHA256 47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611 WHIRLPOOL c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b
 DIST stormpath-2.3.1.tar.gz 4346382 SHA256 cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9 WHIRLPOOL 91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70
 DIST stormpath-2.4.0.tar.gz 4345415 SHA256 4c3ee97bf630f0fb9237bccedfd4c41997a47599d76d319cfb84e95d7ec26db6 SHA512 4086c03b745427fa59d6b3739da38822781587d9d55bb0ea142dc70b9dd38ca98e8fdfbb167af6944440e7241ba63b2a2f58130b48789998fa3e263f11326a2b WHIRLPOOL 3425301a9c1858f5a602196be53e7a61961922786356f54f9fa3f033bb1b6460ad9ff32e4e0f2252e8b8220bd129fae5b8613771466f015e797b86d263391000

diff --git a/dev-python/stormpath/stormpath-2.1.5.ebuild b/dev-python/stormpath/stormpath-2.1.5.ebuild
deleted file mode 100644
index e6bdfe5..0000000
--- a/dev-python/stormpath/stormpath-2.1.5.ebuild
+++ /dev/null
@@ -1,51 +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 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-04-24 15:17 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-04-24 15:17 UTC (permalink / raw
  To: gentoo-commits

commit:     5295d73d0ba6f3f24ffd0fa99fba75f653ad632c
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 24 15:16:43 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sun Apr 24 15:16:43 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5295d73d

dev-python/stormpath: remove version 2.1.4

Package-Manager: portage-2.2.28

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.1.4.ebuild | 51 -----------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 17b563e..4411481 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.1.4.tar.gz 4338169 SHA256 adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0 WHIRLPOOL 6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea
 DIST stormpath-2.1.5.tar.gz 4339093 SHA256 cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b11110700297beebb894b4d5301df97a836a4204622ea83af WHIRLPOOL 14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92
 DIST stormpath-2.1.6.tar.gz 4339678 SHA256 47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611 WHIRLPOOL c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b
 DIST stormpath-2.3.1.tar.gz 4346382 SHA256 cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9 WHIRLPOOL 91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70

diff --git a/dev-python/stormpath/stormpath-2.1.4.ebuild b/dev-python/stormpath/stormpath-2.1.4.ebuild
deleted file mode 100644
index e6bdfe5..0000000
--- a/dev-python/stormpath/stormpath-2.1.4.ebuild
+++ /dev/null
@@ -1,51 +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 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2016-04-24 15:17 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2016-04-24 15:17 UTC (permalink / raw
  To: gentoo-commits

commit:     47b1828835e54f73ac4579909b32a71ee5e98a43
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 24 15:14:06 2016 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sun Apr 24 15:14:06 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47b18288

dev-python/stormpath: add version 2.3.1

Package-Manager: portage-2.2.28

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.3.1.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 2bca960..17b563e 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.1.4.tar.gz 4338169 SHA256 adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0 WHIRLPOOL 6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea
 DIST stormpath-2.1.5.tar.gz 4339093 SHA256 cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b11110700297beebb894b4d5301df97a836a4204622ea83af WHIRLPOOL 14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92
 DIST stormpath-2.1.6.tar.gz 4339678 SHA256 47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611 WHIRLPOOL c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b
+DIST stormpath-2.3.1.tar.gz 4346382 SHA256 cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9 WHIRLPOOL 91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70

diff --git a/dev-python/stormpath/stormpath-2.3.1.ebuild b/dev-python/stormpath/stormpath-2.3.1.ebuild
new file mode 100644
index 0000000..8248d4f
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.3.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-12-12 19:41 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-12-12 19:41 UTC (permalink / raw
  To: gentoo-commits

commit:     a7085301ccd98504213526370000312a40bf42b2
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 12 19:40:23 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 19:40:23 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7085301

dev-python/stormpath: remove version 2.1.2

Package-Manager: portage-2.2.26

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.1.2.ebuild | 51 -----------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index fd42574..2bca960 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.1.2.tar.gz 4337164 SHA256 10f46c7ebb27274f61c4b550eb6fc58e54260fa0fb1f96a4b7fce530d789d11c SHA512 c3b3e93f4d5515df8e5ab94770c995a5e7912a53f58f05ca3a1f630c41fc0f76e39cf213dbfad8858d7bfe5f964f6d9cbfad9013de33e9a02e0484bd92a7957d WHIRLPOOL adfbf1cf071167a93989cd4d80039a4eb8c42a908075207a4db4db3a38c87e3b9470b9c1c02946e9481e52d875e836d0c77a72050de2a1f79fc78b5ed037dfe2
 DIST stormpath-2.1.4.tar.gz 4338169 SHA256 adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0 WHIRLPOOL 6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea
 DIST stormpath-2.1.5.tar.gz 4339093 SHA256 cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b11110700297beebb894b4d5301df97a836a4204622ea83af WHIRLPOOL 14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92
 DIST stormpath-2.1.6.tar.gz 4339678 SHA256 47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611 WHIRLPOOL c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b

diff --git a/dev-python/stormpath/stormpath-2.1.2.ebuild b/dev-python/stormpath/stormpath-2.1.2.ebuild
deleted file mode 100644
index e6bdfe5..0000000
--- a/dev-python/stormpath/stormpath-2.1.2.ebuild
+++ /dev/null
@@ -1,51 +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 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-12-12 19:41 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-12-12 19:41 UTC (permalink / raw
  To: gentoo-commits

commit:     92394dfa5faea8be768a95483778e0b6563192f0
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 12 19:36:13 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 19:36:31 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92394dfa

dev-python/stormpath: add version 2.1.6

Package-Manager: portage-2.2.26

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.1.6.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 6fc21b3..fd42574 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.1.2.tar.gz 4337164 SHA256 10f46c7ebb27274f61c4b550eb6fc58e54260fa0fb1f96a4b7fce530d789d11c SHA512 c3b3e93f4d5515df8e5ab94770c995a5e7912a53f58f05ca3a1f630c41fc0f76e39cf213dbfad8858d7bfe5f964f6d9cbfad9013de33e9a02e0484bd92a7957d WHIRLPOOL adfbf1cf071167a93989cd4d80039a4eb8c42a908075207a4db4db3a38c87e3b9470b9c1c02946e9481e52d875e836d0c77a72050de2a1f79fc78b5ed037dfe2
 DIST stormpath-2.1.4.tar.gz 4338169 SHA256 adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0 WHIRLPOOL 6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea
 DIST stormpath-2.1.5.tar.gz 4339093 SHA256 cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b11110700297beebb894b4d5301df97a836a4204622ea83af WHIRLPOOL 14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92
+DIST stormpath-2.1.6.tar.gz 4339678 SHA256 47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611 WHIRLPOOL c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b

diff --git a/dev-python/stormpath/stormpath-2.1.6.ebuild b/dev-python/stormpath/stormpath-2.1.6.ebuild
new file mode 100644
index 0000000..e6bdfe5
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.1.6.ebuild
@@ -0,0 +1,51 @@
+# 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 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-11-16 18:13 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-11-16 18:13 UTC (permalink / raw
  To: gentoo-commits

commit:     deded80ef52183371e13c0d1d2aa2b1d730a1f17
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 16 18:12:44 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Mon Nov 16 18:12:44 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deded80e

dev-python/stormpath: remove version 2.1.1

Package-Manager: portage-2.2.24

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.1.1.ebuild | 51 -----------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 289d94f..6fc21b3 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.1.1.tar.gz 4326557 SHA256 94600e8368f2fbe06adea5fddc8f4b7a479f7a89a0a35a46f58f7c796286e5f4 SHA512 7548aff63e5f04718d4d4887a1177f6f0cf3cc8cb9588e17f7563bae9c6dc5897a968ee2c4e189b6d9100ef16ec7e34e524c4cd3c5112845c0619876ca6d5505 WHIRLPOOL 33db1d8e52d24581a1fe7220b4329479142772939d1df76d52a46d47db6219890fde3204655dd65851d43b38e2427cd32df894392948482d85554772b9f12bbf
 DIST stormpath-2.1.2.tar.gz 4337164 SHA256 10f46c7ebb27274f61c4b550eb6fc58e54260fa0fb1f96a4b7fce530d789d11c SHA512 c3b3e93f4d5515df8e5ab94770c995a5e7912a53f58f05ca3a1f630c41fc0f76e39cf213dbfad8858d7bfe5f964f6d9cbfad9013de33e9a02e0484bd92a7957d WHIRLPOOL adfbf1cf071167a93989cd4d80039a4eb8c42a908075207a4db4db3a38c87e3b9470b9c1c02946e9481e52d875e836d0c77a72050de2a1f79fc78b5ed037dfe2
 DIST stormpath-2.1.4.tar.gz 4338169 SHA256 adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0 WHIRLPOOL 6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea
 DIST stormpath-2.1.5.tar.gz 4339093 SHA256 cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b11110700297beebb894b4d5301df97a836a4204622ea83af WHIRLPOOL 14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92

diff --git a/dev-python/stormpath/stormpath-2.1.1.ebuild b/dev-python/stormpath/stormpath-2.1.1.ebuild
deleted file mode 100644
index 8b395da..0000000
--- a/dev-python/stormpath/stormpath-2.1.1.ebuild
+++ /dev/null
@@ -1,51 +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 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-11-16 18:13 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-11-16 18:13 UTC (permalink / raw
  To: gentoo-commits

commit:     d7efd2e3e8977e8f159dd6c321f5a51fc18fc120
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 16 18:10:14 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Mon Nov 16 18:10:14 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7efd2e3

dev-python/stormpath: add version 2.1.5

Package-Manager: portage-2.2.24

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.1.5.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 98f4ff1..289d94f 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.1.1.tar.gz 4326557 SHA256 94600e8368f2fbe06adea5fddc8f4b7a479f7a89a0a35a46f58f7c796286e5f4 SHA512 7548aff63e5f04718d4d4887a1177f6f0cf3cc8cb9588e17f7563bae9c6dc5897a968ee2c4e189b6d9100ef16ec7e34e524c4cd3c5112845c0619876ca6d5505 WHIRLPOOL 33db1d8e52d24581a1fe7220b4329479142772939d1df76d52a46d47db6219890fde3204655dd65851d43b38e2427cd32df894392948482d85554772b9f12bbf
 DIST stormpath-2.1.2.tar.gz 4337164 SHA256 10f46c7ebb27274f61c4b550eb6fc58e54260fa0fb1f96a4b7fce530d789d11c SHA512 c3b3e93f4d5515df8e5ab94770c995a5e7912a53f58f05ca3a1f630c41fc0f76e39cf213dbfad8858d7bfe5f964f6d9cbfad9013de33e9a02e0484bd92a7957d WHIRLPOOL adfbf1cf071167a93989cd4d80039a4eb8c42a908075207a4db4db3a38c87e3b9470b9c1c02946e9481e52d875e836d0c77a72050de2a1f79fc78b5ed037dfe2
 DIST stormpath-2.1.4.tar.gz 4338169 SHA256 adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0 WHIRLPOOL 6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea
+DIST stormpath-2.1.5.tar.gz 4339093 SHA256 cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b11110700297beebb894b4d5301df97a836a4204622ea83af WHIRLPOOL 14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92

diff --git a/dev-python/stormpath/stormpath-2.1.5.ebuild b/dev-python/stormpath/stormpath-2.1.5.ebuild
new file mode 100644
index 0000000..e6bdfe5
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.1.5.ebuild
@@ -0,0 +1,51 @@
+# 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 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-11-07 20:41 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-11-07 20:41 UTC (permalink / raw
  To: gentoo-commits

commit:     5e4912cd90e7820c662bc96b19dbd0d1abfec606
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  7 20:36:26 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Nov  7 20:41:05 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e4912cd

dev-python/stormpath: add version 2.1.4

Package-Manager: portage-2.2.24

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.1.4.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 7fd0542..3814077 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.0.9.tar.gz 4325976 SHA256 ba93f1f9f6b98db2eb2671d2b3285fdd15f8b2e6d3bce899f240576018f216ae SHA512 b50fa11e8fecf4909a8a1014963c80e7e2dde4db37e1f4681c2a116933d59f5b5ea32901cfde97b24398d8074db8b04121b2a7715d86b6b2eb78eb288465114c WHIRLPOOL 6290d5844d35158cc46f1810b6f83e41c443164cff4512caeeb38e562b04f448c1ac1b608b2cda4abd348f91319e4e8fbb3b195ba31a8fb415ba80f0ed7c5937
 DIST stormpath-2.1.1.tar.gz 4326557 SHA256 94600e8368f2fbe06adea5fddc8f4b7a479f7a89a0a35a46f58f7c796286e5f4 SHA512 7548aff63e5f04718d4d4887a1177f6f0cf3cc8cb9588e17f7563bae9c6dc5897a968ee2c4e189b6d9100ef16ec7e34e524c4cd3c5112845c0619876ca6d5505 WHIRLPOOL 33db1d8e52d24581a1fe7220b4329479142772939d1df76d52a46d47db6219890fde3204655dd65851d43b38e2427cd32df894392948482d85554772b9f12bbf
 DIST stormpath-2.1.2.tar.gz 4337164 SHA256 10f46c7ebb27274f61c4b550eb6fc58e54260fa0fb1f96a4b7fce530d789d11c SHA512 c3b3e93f4d5515df8e5ab94770c995a5e7912a53f58f05ca3a1f630c41fc0f76e39cf213dbfad8858d7bfe5f964f6d9cbfad9013de33e9a02e0484bd92a7957d WHIRLPOOL adfbf1cf071167a93989cd4d80039a4eb8c42a908075207a4db4db3a38c87e3b9470b9c1c02946e9481e52d875e836d0c77a72050de2a1f79fc78b5ed037dfe2
+DIST stormpath-2.1.4.tar.gz 4338169 SHA256 adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0 WHIRLPOOL 6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea

diff --git a/dev-python/stormpath/stormpath-2.1.4.ebuild b/dev-python/stormpath/stormpath-2.1.4.ebuild
new file mode 100644
index 0000000..e6bdfe5
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.1.4.ebuild
@@ -0,0 +1,51 @@
+# 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 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-11-07 20:41 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-11-07 20:41 UTC (permalink / raw
  To: gentoo-commits

commit:     e6782e43ed598b0bc50e325995aa2687d6a965e4
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  7 20:40:35 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Nov  7 20:41:05 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6782e43

dev-python/stormpath: remove version 2.0.9

Package-Manager: portage-2.2.24

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.0.9.ebuild | 49 -----------------------------
 2 files changed, 50 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 3814077..98f4ff1 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.0.9.tar.gz 4325976 SHA256 ba93f1f9f6b98db2eb2671d2b3285fdd15f8b2e6d3bce899f240576018f216ae SHA512 b50fa11e8fecf4909a8a1014963c80e7e2dde4db37e1f4681c2a116933d59f5b5ea32901cfde97b24398d8074db8b04121b2a7715d86b6b2eb78eb288465114c WHIRLPOOL 6290d5844d35158cc46f1810b6f83e41c443164cff4512caeeb38e562b04f448c1ac1b608b2cda4abd348f91319e4e8fbb3b195ba31a8fb415ba80f0ed7c5937
 DIST stormpath-2.1.1.tar.gz 4326557 SHA256 94600e8368f2fbe06adea5fddc8f4b7a479f7a89a0a35a46f58f7c796286e5f4 SHA512 7548aff63e5f04718d4d4887a1177f6f0cf3cc8cb9588e17f7563bae9c6dc5897a968ee2c4e189b6d9100ef16ec7e34e524c4cd3c5112845c0619876ca6d5505 WHIRLPOOL 33db1d8e52d24581a1fe7220b4329479142772939d1df76d52a46d47db6219890fde3204655dd65851d43b38e2427cd32df894392948482d85554772b9f12bbf
 DIST stormpath-2.1.2.tar.gz 4337164 SHA256 10f46c7ebb27274f61c4b550eb6fc58e54260fa0fb1f96a4b7fce530d789d11c SHA512 c3b3e93f4d5515df8e5ab94770c995a5e7912a53f58f05ca3a1f630c41fc0f76e39cf213dbfad8858d7bfe5f964f6d9cbfad9013de33e9a02e0484bd92a7957d WHIRLPOOL adfbf1cf071167a93989cd4d80039a4eb8c42a908075207a4db4db3a38c87e3b9470b9c1c02946e9481e52d875e836d0c77a72050de2a1f79fc78b5ed037dfe2
 DIST stormpath-2.1.4.tar.gz 4338169 SHA256 adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0 WHIRLPOOL 6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea

diff --git a/dev-python/stormpath/stormpath-2.0.9.ebuild b/dev-python/stormpath/stormpath-2.0.9.ebuild
deleted file mode 100644
index ac212dd..0000000
--- a/dev-python/stormpath/stormpath-2.0.9.ebuild
+++ /dev/null
@@ -1,49 +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 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-11-01  0:28 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-11-01  0:28 UTC (permalink / raw
  To: gentoo-commits

commit:     3160d935ef2cc7c2004fde675b3ba6420041c744
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  1 00:20:57 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sun Nov  1 00:20:57 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3160d935

dev-python/stormpath: add version 2.1.2

Package-Manager: portage-2.2.23

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.1.2.ebuild | 51 +++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 25c04ea..79f9ba0 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.0.8.tar.gz 4326469 SHA256 9f6ad7e7b210024915e2139b2ed395a7c0fff6ca49ad3cdf58dc8f214d080c70 SHA512 661714fac02528111bb01e30f8c16b1d8701fe894b21d803958331819ce145a9ec03864111b861286224b33aaf56ca68ddcef2b67cd0003c498cd007ce375a03 WHIRLPOOL 12e6f7ec559a654ab59d34106d85d98ada4c7e3dee6fcec6cad0a2500608e962289d73a50e6ce6d81122c43f0f53b30d861203c8a976ac7bdbdab1cd8f5db6be
 DIST stormpath-2.0.9.tar.gz 4325976 SHA256 ba93f1f9f6b98db2eb2671d2b3285fdd15f8b2e6d3bce899f240576018f216ae SHA512 b50fa11e8fecf4909a8a1014963c80e7e2dde4db37e1f4681c2a116933d59f5b5ea32901cfde97b24398d8074db8b04121b2a7715d86b6b2eb78eb288465114c WHIRLPOOL 6290d5844d35158cc46f1810b6f83e41c443164cff4512caeeb38e562b04f448c1ac1b608b2cda4abd348f91319e4e8fbb3b195ba31a8fb415ba80f0ed7c5937
 DIST stormpath-2.1.1.tar.gz 4326557 SHA256 94600e8368f2fbe06adea5fddc8f4b7a479f7a89a0a35a46f58f7c796286e5f4 SHA512 7548aff63e5f04718d4d4887a1177f6f0cf3cc8cb9588e17f7563bae9c6dc5897a968ee2c4e189b6d9100ef16ec7e34e524c4cd3c5112845c0619876ca6d5505 WHIRLPOOL 33db1d8e52d24581a1fe7220b4329479142772939d1df76d52a46d47db6219890fde3204655dd65851d43b38e2427cd32df894392948482d85554772b9f12bbf
+DIST stormpath-2.1.2.tar.gz 4337164 SHA256 10f46c7ebb27274f61c4b550eb6fc58e54260fa0fb1f96a4b7fce530d789d11c SHA512 c3b3e93f4d5515df8e5ab94770c995a5e7912a53f58f05ca3a1f630c41fc0f76e39cf213dbfad8858d7bfe5f964f6d9cbfad9013de33e9a02e0484bd92a7957d WHIRLPOOL adfbf1cf071167a93989cd4d80039a4eb8c42a908075207a4db4db3a38c87e3b9470b9c1c02946e9481e52d875e836d0c77a72050de2a1f79fc78b5ed037dfe2

diff --git a/dev-python/stormpath/stormpath-2.1.2.ebuild b/dev-python/stormpath/stormpath-2.1.2.ebuild
new file mode 100644
index 0000000..e6bdfe5
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.1.2.ebuild
@@ -0,0 +1,51 @@
+# 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 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-11-01  0:28 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-11-01  0:28 UTC (permalink / raw
  To: gentoo-commits

commit:     cf6fe89e5fd18c25f9495c04b0d85138a2b49c01
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  1 00:27:56 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sun Nov  1 00:27:56 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf6fe89e

dev-python/stormpath: remove version 2.0.8

Package-Manager: portage-2.2.23

 dev-python/stormpath/Manifest               |  1 -
 dev-python/stormpath/stormpath-2.0.8.ebuild | 60 -----------------------------
 2 files changed, 61 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 79f9ba0..7fd0542 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.0.8.tar.gz 4326469 SHA256 9f6ad7e7b210024915e2139b2ed395a7c0fff6ca49ad3cdf58dc8f214d080c70 SHA512 661714fac02528111bb01e30f8c16b1d8701fe894b21d803958331819ce145a9ec03864111b861286224b33aaf56ca68ddcef2b67cd0003c498cd007ce375a03 WHIRLPOOL 12e6f7ec559a654ab59d34106d85d98ada4c7e3dee6fcec6cad0a2500608e962289d73a50e6ce6d81122c43f0f53b30d861203c8a976ac7bdbdab1cd8f5db6be
 DIST stormpath-2.0.9.tar.gz 4325976 SHA256 ba93f1f9f6b98db2eb2671d2b3285fdd15f8b2e6d3bce899f240576018f216ae SHA512 b50fa11e8fecf4909a8a1014963c80e7e2dde4db37e1f4681c2a116933d59f5b5ea32901cfde97b24398d8074db8b04121b2a7715d86b6b2eb78eb288465114c WHIRLPOOL 6290d5844d35158cc46f1810b6f83e41c443164cff4512caeeb38e562b04f448c1ac1b608b2cda4abd348f91319e4e8fbb3b195ba31a8fb415ba80f0ed7c5937
 DIST stormpath-2.1.1.tar.gz 4326557 SHA256 94600e8368f2fbe06adea5fddc8f4b7a479f7a89a0a35a46f58f7c796286e5f4 SHA512 7548aff63e5f04718d4d4887a1177f6f0cf3cc8cb9588e17f7563bae9c6dc5897a968ee2c4e189b6d9100ef16ec7e34e524c4cd3c5112845c0619876ca6d5505 WHIRLPOOL 33db1d8e52d24581a1fe7220b4329479142772939d1df76d52a46d47db6219890fde3204655dd65851d43b38e2427cd32df894392948482d85554772b9f12bbf
 DIST stormpath-2.1.2.tar.gz 4337164 SHA256 10f46c7ebb27274f61c4b550eb6fc58e54260fa0fb1f96a4b7fce530d789d11c SHA512 c3b3e93f4d5515df8e5ab94770c995a5e7912a53f58f05ca3a1f630c41fc0f76e39cf213dbfad8858d7bfe5f964f6d9cbfad9013de33e9a02e0484bd92a7957d WHIRLPOOL adfbf1cf071167a93989cd4d80039a4eb8c42a908075207a4db4db3a38c87e3b9470b9c1c02946e9481e52d875e836d0c77a72050de2a1f79fc78b5ed037dfe2

diff --git a/dev-python/stormpath/stormpath-2.0.8.ebuild b/dev-python/stormpath/stormpath-2.0.8.ebuild
deleted file mode 100644
index ba2db58..0000000
--- a/dev-python/stormpath/stormpath-2.0.8.ebuild
+++ /dev/null
@@ -1,60 +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 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? (
-		dev-python/sphinx[${PYTHON_USEDEP}]
-	)
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/pytest-cov[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-RDEPEND="
-	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_prepare_all() {
-	local PATCHES=(
-		"${FILESDIR}"/drop-test-module.patch
-	)
-
-	distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-	use doc && emake -C docs html
-}
-
-python_test() {
-	esetup.py test
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( docs/_build/html/. )
-
-	distutils-r1_python_install_all
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-09-11  7:53 Justin Lecher
  0 siblings, 0 replies; 29+ messages in thread
From: Justin Lecher @ 2015-09-11  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     9f44650e08a68f14223d57aa66fb055d1e01c497
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 11 07:08:48 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 11 07:53:18 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f44650e

dev-python/stormpath: Drop unncessary die

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/stormpath/stormpath-2.0.8.ebuild | 3 ++-
 dev-python/stormpath/stormpath-2.0.9.ebuild | 2 +-
 dev-python/stormpath/stormpath-2.1.1.ebuild | 3 ++-
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/dev-python/stormpath/stormpath-2.0.8.ebuild b/dev-python/stormpath/stormpath-2.0.8.ebuild
index 1a69f90..ba2db58 100644
--- a/dev-python/stormpath/stormpath-2.0.8.ebuild
+++ b/dev-python/stormpath/stormpath-2.0.8.ebuild
@@ -3,6 +3,7 @@
 # $Id$
 
 EAPI=5
+
 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
 
 inherit distutils-r1 vcs-snapshot
@@ -49,7 +50,7 @@ python_compile_all() {
 }
 
 python_test() {
-	esetup.py test || die "tests failed under ${EPYTYHON}"
+	esetup.py test
 }
 
 python_install_all() {

diff --git a/dev-python/stormpath/stormpath-2.0.9.ebuild b/dev-python/stormpath/stormpath-2.0.9.ebuild
index 084b5d1..ac212dd 100644
--- a/dev-python/stormpath/stormpath-2.0.9.ebuild
+++ b/dev-python/stormpath/stormpath-2.0.9.ebuild
@@ -39,7 +39,7 @@ python_compile_all() {
 }
 
 python_test() {
-	esetup.py test || die "tests failed under ${EPYTYHON}"
+	esetup.py test
 }
 
 python_install_all() {

diff --git a/dev-python/stormpath/stormpath-2.1.1.ebuild b/dev-python/stormpath/stormpath-2.1.1.ebuild
index 539c56c..8b395da 100644
--- a/dev-python/stormpath/stormpath-2.1.1.ebuild
+++ b/dev-python/stormpath/stormpath-2.1.1.ebuild
@@ -3,6 +3,7 @@
 # $Id$
 
 EAPI=5
+
 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
 
 inherit distutils-r1 vcs-snapshot
@@ -40,7 +41,7 @@ python_compile_all() {
 }
 
 python_test() {
-	esetup.py test || die "tests failed under ${EPYTYHON}"
+	esetup.py test
 }
 
 python_install_all() {


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-08-29 19:07 Alex Brandt
  0 siblings, 0 replies; 29+ messages in thread
From: Alex Brandt @ 2015-08-29 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     87be1248ad724745a87196ef5e187cb450f25d5e
Author:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 29 19:06:18 2015 +0000
Commit:     Alex Brandt <alunduil <AT> gentoo <DOT> org>
CommitDate: Sat Aug 29 19:06:18 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87be1248

dev-python/stormpath: add version 2.0.9

Package-Manager: portage-2.2.20.1

 dev-python/stormpath/Manifest               |  1 +
 dev-python/stormpath/stormpath-2.0.9.ebuild | 49 +++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 9ad4b51..3c85105 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1 +1,2 @@
 DIST stormpath-2.0.8.tar.gz 4326469 SHA256 9f6ad7e7b210024915e2139b2ed395a7c0fff6ca49ad3cdf58dc8f214d080c70 SHA512 661714fac02528111bb01e30f8c16b1d8701fe894b21d803958331819ce145a9ec03864111b861286224b33aaf56ca68ddcef2b67cd0003c498cd007ce375a03 WHIRLPOOL 12e6f7ec559a654ab59d34106d85d98ada4c7e3dee6fcec6cad0a2500608e962289d73a50e6ce6d81122c43f0f53b30d861203c8a976ac7bdbdab1cd8f5db6be
+DIST stormpath-2.0.9.tar.gz 4325976 SHA256 ba93f1f9f6b98db2eb2671d2b3285fdd15f8b2e6d3bce899f240576018f216ae SHA512 b50fa11e8fecf4909a8a1014963c80e7e2dde4db37e1f4681c2a116933d59f5b5ea32901cfde97b24398d8074db8b04121b2a7715d86b6b2eb78eb288465114c WHIRLPOOL 6290d5844d35158cc46f1810b6f83e41c443164cff4512caeeb38e562b04f448c1ac1b608b2cda4abd348f91319e4e8fbb3b195ba31a8fb415ba80f0ed7c5937

diff --git a/dev-python/stormpath/stormpath-2.0.9.ebuild b/dev-python/stormpath/stormpath-2.0.9.ebuild
new file mode 100644
index 0000000..084b5d1
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.0.9.ebuild
@@ -0,0 +1,49 @@
+# 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 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-cov[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+RDEPEND="
+	>=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+	>=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+	>=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+	>=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+	>=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test || die "tests failed under ${EPYTYHON}"
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+
+	distutils-r1_python_install_all
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/
@ 2015-08-16 15:10 Justin Lecher
  0 siblings, 0 replies; 29+ messages in thread
From: Justin Lecher @ 2015-08-16 15:10 UTC (permalink / raw
  To: gentoo-commits

commit:     2552b454f6ebe98f0d6242c656b01ecfa75cd2ff
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 16 15:01:26 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Aug 16 15:10:30 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2552b454

dev-python/stormpath: Updating remote-id in metadata.xml

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/stormpath/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-python/stormpath/metadata.xml b/dev-python/stormpath/metadata.xml
index 02be8c5..b9aa63f 100644
--- a/dev-python/stormpath/metadata.xml
+++ b/dev-python/stormpath/metadata.xml
@@ -7,4 +7,7 @@
 	</maintainer>
 	<longdescription lang="en">
 	</longdescription>
+	<upstream>
+		<remote-id type="github">stormpath/stormpath-sdk-python</remote-id>
+	</upstream>
 </pkgmetadata>


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

end of thread, other threads:[~2018-06-26 18:09 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-05 21:02 [gentoo-commits] repo/gentoo:master commit in: dev-python/stormpath/ Alex Brandt
  -- strict thread matches above, loose matches on Subject: below --
2018-06-26 18:09 Pacho Ramos
2018-03-10 14:56 Pacho Ramos
2018-03-10 14:56 Pacho Ramos
2017-10-04  8:57 Michał Górny
2017-09-25 13:37 Pacho Ramos
2016-10-01 22:30 Alex Brandt
2016-10-01 22:30 Alex Brandt
2016-08-13 15:48 Alex Brandt
2016-08-13 15:48 Alex Brandt
2016-07-30 15:03 Alex Brandt
2016-07-30 15:03 Alex Brandt
2016-07-16 14:26 Alex Brandt
2016-07-16 14:26 Alex Brandt
2016-07-02 15:26 Alex Brandt
2016-07-02 15:26 Alex Brandt
2016-04-24 15:17 Alex Brandt
2016-04-24 15:17 Alex Brandt
2015-12-12 19:41 Alex Brandt
2015-12-12 19:41 Alex Brandt
2015-11-16 18:13 Alex Brandt
2015-11-16 18:13 Alex Brandt
2015-11-07 20:41 Alex Brandt
2015-11-07 20:41 Alex Brandt
2015-11-01  0:28 Alex Brandt
2015-11-01  0:28 Alex Brandt
2015-09-11  7:53 Justin Lecher
2015-08-29 19:07 Alex Brandt
2015-08-16 15:10 Justin Lecher

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