public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2016-11-15 12:52 Michael Orlitzky
  0 siblings, 0 replies; 16+ messages in thread
From: Michael Orlitzky @ 2016-11-15 12:52 UTC (permalink / raw
  To: gentoo-commits

commit:     f0c9c075174acb6491e14ce2b1cf414339974da0
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 14 20:39:16 2016 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Nov 15 12:45:59 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0c9c075

dev-python/python-redmine: new python interface to the redmine API.

Package-Manager: portage-2.3.0

 dev-python/python-redmine/Manifest                 |  1 +
 dev-python/python-redmine/metadata.xml             | 12 ++++++
 .../python-redmine/python-redmine-1.5.1.ebuild     | 47 ++++++++++++++++++++++
 3 files changed, 60 insertions(+)

diff --git a/dev-python/python-redmine/Manifest b/dev-python/python-redmine/Manifest
new file mode 100644
index 00000000..49ec196
--- /dev/null
+++ b/dev-python/python-redmine/Manifest
@@ -0,0 +1 @@
+DIST python-redmine-1.5.1.tar.gz 465595 SHA256 8a2ba7292693579656434e74817f7308e24e76ca05cf179a7645420f1203edcd SHA512 51a5deaaccc401f31f2ba74ad164c9d9a7df90b200121664779f1eee4cb871a2fdd139509e6201abb6e5203a46e00b98ca5ddcccf88e7e3a2fb9f509ffc36665 WHIRLPOOL 0113cd703badb0d6c90b1d8d3744f1fcbb839a6c990337b7581607ba7c3dcada9d4f75864b810f18b866ba18f3c2a50c0160443b02dfe8387c694f250b007374

diff --git a/dev-python/python-redmine/metadata.xml b/dev-python/python-redmine/metadata.xml
new file mode 100644
index 00000000..53f98ba
--- /dev/null
+++ b/dev-python/python-redmine/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>mjo@gentoo.org</email>
+    <name>Michael Orlitzky</name>
+  </maintainer>
+
+  <upstream>
+    <remote-id type="pypi">python-redmine</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/python-redmine/python-redmine-1.5.1.ebuild b/dev-python/python-redmine/python-redmine-1.5.1.ebuild
new file mode 100644
index 00000000..d623990
--- /dev/null
+++ b/dev-python/python-redmine/python-redmine-1.5.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Python interface to the Redmine REST API"
+HOMEPAGE="https://github.com/maxtepkeev/python-redmine"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
+
+# This package bundles dev-python/requests, so setup.py won't check for
+# it. As a result, we don't need RDEPEND in DEPEND unconditionally.
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		${RDEPEND}
+		dev-python/coverage[${PYTHON_USEDEP}]
+		$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
+		dev-python/nose[${PYTHON_USEDEP}]
+	)"
+
+python_prepare_all() {
+	# Remove the bundled copy of dev-python/requests...
+	rm -r redmine/packages \
+		|| die 'failed to remove the bundled copy of dev-python/requests'
+
+	# and replace its local import statement with a global one.
+	sed -i 's/from .packages import requests/import requests/' \
+		redmine/__init__.py \
+		|| die 'failed to replace the dev-python/requests library import'
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	nosetests || die "tests failed under ${EPYTHON}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2017-05-15 14:02 Michael Orlitzky
  0 siblings, 0 replies; 16+ messages in thread
From: Michael Orlitzky @ 2017-05-15 14:02 UTC (permalink / raw
  To: gentoo-commits

commit:     7f82b8f0a6dd7d56237719391ef5596c8645a46b
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Mon May 15 13:36:32 2017 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Mon May 15 14:02:14 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f82b8f0

dev-python/python-redmine: new version 2.0.2.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/python-redmine/Manifest                             |  2 +-
 ...python-redmine-1.5.1.ebuild => python-redmine-2.0.2.ebuild} | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-python/python-redmine/Manifest b/dev-python/python-redmine/Manifest
index 49ec19618da..f4f5d146861 100644
--- a/dev-python/python-redmine/Manifest
+++ b/dev-python/python-redmine/Manifest
@@ -1 +1 @@
-DIST python-redmine-1.5.1.tar.gz 465595 SHA256 8a2ba7292693579656434e74817f7308e24e76ca05cf179a7645420f1203edcd SHA512 51a5deaaccc401f31f2ba74ad164c9d9a7df90b200121664779f1eee4cb871a2fdd139509e6201abb6e5203a46e00b98ca5ddcccf88e7e3a2fb9f509ffc36665 WHIRLPOOL 0113cd703badb0d6c90b1d8d3744f1fcbb839a6c990337b7581607ba7c3dcada9d4f75864b810f18b866ba18f3c2a50c0160443b02dfe8387c694f250b007374
+DIST python-redmine-2.0.2.tar.gz 559017 SHA256 e65a0213be1b3b246201e3f52e36ad0971a966f847e84c38f653e5f712bb98a1 SHA512 3f8e11315e8e2b4474e8b981bd801ef75857fe73e8ed18d27f64223703d18ea2061416ed38ea35c4a4460a4ccba167b41ab48e2489930181951e9e2a5f53ec12 WHIRLPOOL 7e2cfe63f67ce2a00145f7510b5e79cf010ec5a823f4d7298873cd800b32b557b08dfbf04bb31c49b4cf56a56b0d08f43ca5da121dc73c48ae63775752a2518a

diff --git a/dev-python/python-redmine/python-redmine-1.5.1.ebuild b/dev-python/python-redmine/python-redmine-2.0.2.ebuild
similarity index 83%
rename from dev-python/python-redmine/python-redmine-1.5.1.ebuild
rename to dev-python/python-redmine/python-redmine-2.0.2.ebuild
index cc542e53863..53c1001ea04 100644
--- a/dev-python/python-redmine/python-redmine-1.5.1.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.0.2.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=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
 
 inherit distutils-r1
 
@@ -30,12 +30,12 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 
 python_prepare_all() {
 	# Remove the bundled copy of dev-python/requests...
-	rm -r redmine/packages \
+	rm -r redminelib/packages/requests \
 		|| die 'failed to remove the bundled copy of dev-python/requests'
 
 	# and replace its local import statement with a global one.
-	sed -i 's/from .packages import requests/import requests/' \
-		redmine/__init__.py \
+	sed -i redminelib/packages/__init__.py \
+		-e 's/from . import requests/import requests/' \
 		|| die 'failed to replace the dev-python/requests library import'
 
 	distutils-r1_python_prepare_all


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

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

commit:     58e84f2ddc664a9cae045e43a7b28cf63aaabafa
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 17 07:38:47 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Mar 17 08:07:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58e84f2d

dev-python/python-redmine: Clean py2 deps up

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

 dev-python/python-redmine/python-redmine-2.0.2.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/python-redmine/python-redmine-2.0.2.ebuild b/dev-python/python-redmine/python-redmine-2.0.2.ebuild
index 81541fea58d..004a759abd1 100644
--- a/dev-python/python-redmine/python-redmine-2.0.2.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.0.2.ebuild
@@ -25,7 +25,6 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 	test? (
 		${RDEPEND}
 		dev-python/coverage[${PYTHON_USEDEP}]
-		$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
 		dev-python/nose[${PYTHON_USEDEP}]
 	)"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2020-04-26 10:17 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2020-04-26 10:17 UTC (permalink / raw
  To: gentoo-commits

commit:     0036c7ab16aa1267f8e527254cd4935a60aa93a1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 26 06:58:12 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Apr 26 10:16:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0036c7ab

dev-python/python-redmine: Enable py3.{7,8}, modernize

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

 dev-python/python-redmine/python-redmine-2.0.2.ebuild | 17 ++---------------
 1 file changed, 2 insertions(+), 15 deletions(-)

diff --git a/dev-python/python-redmine/python-redmine-2.0.2.ebuild b/dev-python/python-redmine/python-redmine-2.0.2.ebuild
index 004a759abd1..403396ebdef 100644
--- a/dev-python/python-redmine/python-redmine-2.0.2.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.0.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 
@@ -14,19 +14,10 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
 
-# This package bundles dev-python/requests, so setup.py won't check for
-# it. As a result, we don't need RDEPEND in DEPEND unconditionally.
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		${RDEPEND}
-		dev-python/coverage[${PYTHON_USEDEP}]
-		dev-python/nose[${PYTHON_USEDEP}]
-	)"
+distutils_enable_tests nose
 
 python_prepare_all() {
 	# Remove the bundled copy of dev-python/requests...
@@ -40,7 +31,3 @@ python_prepare_all() {
 
 	distutils-r1_python_prepare_all
 }
-
-python_test() {
-	nosetests || die "tests failed under ${EPYTHON}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2020-06-13 13:01 Michael Orlitzky
  0 siblings, 0 replies; 16+ messages in thread
From: Michael Orlitzky @ 2020-06-13 13:01 UTC (permalink / raw
  To: gentoo-commits

commit:     7846cebb0740711b3b874578493d79007543ea5c
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 13 13:00:13 2020 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Jun 13 13:00:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7846cebb

dev-python/python-redmine: new version 2.3.0.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 dev-python/python-redmine/Manifest                 |  2 +-
 .../python-redmine/python-redmine-2.0.2.ebuild     | 33 ----------------------
 .../python-redmine/python-redmine-2.3.0.ebuild     | 20 +++++++++++++
 3 files changed, 21 insertions(+), 34 deletions(-)

diff --git a/dev-python/python-redmine/Manifest b/dev-python/python-redmine/Manifest
index e3519bc1d4e..990b7f65b7c 100644
--- a/dev-python/python-redmine/Manifest
+++ b/dev-python/python-redmine/Manifest
@@ -1 +1 @@
-DIST python-redmine-2.0.2.tar.gz 559017 BLAKE2B 3bec44ec562f524f7f9b4903e51c1ecaf1f9c7d76e7bbdcd6edd95e7477e9038011336514ea5f75ec23880469331ec5a8b5417d44d032d7440234db1e7bf59ca SHA512 3f8e11315e8e2b4474e8b981bd801ef75857fe73e8ed18d27f64223703d18ea2061416ed38ea35c4a4460a4ccba167b41ab48e2489930181951e9e2a5f53ec12
+DIST python-redmine-2.3.0.tar.gz 67915 BLAKE2B ad31d63ec5bebd33ff436f04c40fd49e35a79751c353ba1e343bbb03048c2d1662ec8ffea5819561b675e366f8cbad48a0e0a0a59dcaa563a90301ad4f1eb1cf SHA512 a317743a561cde65c17356a317d3aed082149d648aaa7487858c8533ceb286d08b6610d742321f6593fef8b61b1a4526963ddffc4ab180a83795d66773154b70

diff --git a/dev-python/python-redmine/python-redmine-2.0.2.ebuild b/dev-python/python-redmine/python-redmine-2.0.2.ebuild
deleted file mode 100644
index 403396ebdef..00000000000
--- a/dev-python/python-redmine/python-redmine-2.0.2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python interface to the Redmine REST API"
-HOMEPAGE="https://github.com/maxtepkeev/python-redmine"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
-
-distutils_enable_tests nose
-
-python_prepare_all() {
-	# Remove the bundled copy of dev-python/requests...
-	rm -r redminelib/packages/requests \
-		|| die 'failed to remove the bundled copy of dev-python/requests'
-
-	# and replace its local import statement with a global one.
-	sed -i redminelib/packages/__init__.py \
-		-e 's/from . import requests/import requests/' \
-		|| die 'failed to replace the dev-python/requests library import'
-
-	distutils-r1_python_prepare_all
-}

diff --git a/dev-python/python-redmine/python-redmine-2.3.0.ebuild b/dev-python/python-redmine/python-redmine-2.3.0.ebuild
new file mode 100644
index 00000000000..493cc681473
--- /dev/null
+++ b/dev-python/python-redmine/python-redmine-2.3.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python interface to the Redmine REST API"
+HOMEPAGE="https://github.com/maxtepkeev/python-redmine"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=dev-python/requests-2.23.0[${PYTHON_USEDEP}]"
+
+distutils_enable_tests nose


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2020-08-02 22:04 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2020-08-02 22:04 UTC (permalink / raw
  To: gentoo-commits

commit:     191d7b3d640b1f4c0542f9c3b187958f9cf92c61
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  2 04:59:08 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Aug  2 22:04:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191d7b3d

dev-python/python-redmine: add Python 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/python-redmine/python-redmine-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-redmine/python-redmine-2.3.0.ebuild b/dev-python/python-redmine/python-redmine-2.3.0.ebuild
index 493cc681473..b36d8846ca8 100644
--- a/dev-python/python-redmine/python-redmine-2.3.0.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2021-05-22 10:52 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2021-05-22 10:52 UTC (permalink / raw
  To: gentoo-commits

commit:     99586f13fcffa8a2215b49750142d90ad349fba8
Author:     Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
AuthorDate: Fri May 21 13:37:21 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 22 10:52:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99586f13

dev-python/python-redmine: Mark ALLARCHES

Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/python-redmine/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/python-redmine/metadata.xml b/dev-python/python-redmine/metadata.xml
index 3a856b534c0..193539dd4b3 100644
--- a/dev-python/python-redmine/metadata.xml
+++ b/dev-python/python-redmine/metadata.xml
@@ -5,6 +5,7 @@
     <email>mjo@gentoo.org</email>
     <name>Michael Orlitzky</name>
   </maintainer>
+  <stabilize-allarches/>
   <upstream>
     <remote-id type="pypi">python-redmine</remote-id>
     <remote-id type="github">maxtepkeev/python-redmine</remote-id>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2021-05-22 10:52 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2021-05-22 10:52 UTC (permalink / raw
  To: gentoo-commits

commit:     af81113a5cb5fda9e50ef874482a98fc083717c2
Author:     Zamarin Arthur <arthurzam <AT> gmail <DOT> com>
AuthorDate: Fri May 21 13:37:01 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 22 10:52:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af81113a

dev-python/python-redmine: bump to python 3.10

passes tests

Signed-off-by: Zamarin Arthur <arthurzam <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/python-redmine/python-redmine-2.3.0.ebuild b/dev-python/python-redmine/python-redmine-2.3.0.ebuild
index f97519de916..8e9b4736084 100644
--- a/dev-python/python-redmine/python-redmine-2.3.0.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.3.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7..10} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2023-01-18  7:34 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2023-01-18  7:34 UTC (permalink / raw
  To: gentoo-commits

commit:     ebebeee1771d65f7fee1b51c36abcac107c26884
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 18 07:21:47 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jan 18 07:33:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebebeee1

dev-python/python-redmine: Bump to 2.4.0

Closes: https://bugs.gentoo.org/888263
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/python-redmine/Manifest                 |  1 +
 .../python-redmine/python-redmine-2.4.0.ebuild     | 30 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/python-redmine/Manifest b/dev-python/python-redmine/Manifest
index 990b7f65b7c7..23809691ce5e 100644
--- a/dev-python/python-redmine/Manifest
+++ b/dev-python/python-redmine/Manifest
@@ -1 +1,2 @@
 DIST python-redmine-2.3.0.tar.gz 67915 BLAKE2B ad31d63ec5bebd33ff436f04c40fd49e35a79751c353ba1e343bbb03048c2d1662ec8ffea5819561b675e366f8cbad48a0e0a0a59dcaa563a90301ad4f1eb1cf SHA512 a317743a561cde65c17356a317d3aed082149d648aaa7487858c8533ceb286d08b6610d742321f6593fef8b61b1a4526963ddffc4ab180a83795d66773154b70
+DIST python-redmine-2.4.0.tar.gz 67730 BLAKE2B 22c74ad194af9b56affab39de38b13a8f5a46e79b8ea8d9f9f47eb12c4ad4c91156db9ef0e8dfd013602b8cc06e0636a724ae34969f385dc9f8ffc63514ccc63 SHA512 afb03ca8a3bdacace3c12b7295ba08953ab2040971b57988deb9955df24e5ac1782a9b3fbf0f5070eb22c640e88f489cda12cdec38449f9e3bcf7189dc422642

diff --git a/dev-python/python-redmine/python-redmine-2.4.0.ebuild b/dev-python/python-redmine/python-redmine-2.4.0.ebuild
new file mode 100644
index 000000000000..b2161c074c88
--- /dev/null
+++ b/dev-python/python-redmine/python-redmine-2.4.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python interface to the Redmine REST API"
+HOMEPAGE="
+	https://github.com/maxtepkeev/python-redmine/
+	https://pypi.org/project/python-redmine/
+"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	>=dev-python/requests-2.28.2[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+	epytest -o addopts=
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2023-01-27 20:10 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2023-01-27 20:10 UTC (permalink / raw
  To: gentoo-commits

commit:     860a60964567f1f3b4e57da32671fa21b401af6d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 27 20:06:04 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 27 20:09:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=860a6096

dev-python/python-redmine: Remove old

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

 dev-python/python-redmine/Manifest                   |  1 -
 .../python-redmine/python-redmine-2.3.0.ebuild       | 20 --------------------
 2 files changed, 21 deletions(-)

diff --git a/dev-python/python-redmine/Manifest b/dev-python/python-redmine/Manifest
index 23809691ce5e..e754b6d19e35 100644
--- a/dev-python/python-redmine/Manifest
+++ b/dev-python/python-redmine/Manifest
@@ -1,2 +1 @@
-DIST python-redmine-2.3.0.tar.gz 67915 BLAKE2B ad31d63ec5bebd33ff436f04c40fd49e35a79751c353ba1e343bbb03048c2d1662ec8ffea5819561b675e366f8cbad48a0e0a0a59dcaa563a90301ad4f1eb1cf SHA512 a317743a561cde65c17356a317d3aed082149d648aaa7487858c8533ceb286d08b6610d742321f6593fef8b61b1a4526963ddffc4ab180a83795d66773154b70
 DIST python-redmine-2.4.0.tar.gz 67730 BLAKE2B 22c74ad194af9b56affab39de38b13a8f5a46e79b8ea8d9f9f47eb12c4ad4c91156db9ef0e8dfd013602b8cc06e0636a724ae34969f385dc9f8ffc63514ccc63 SHA512 afb03ca8a3bdacace3c12b7295ba08953ab2040971b57988deb9955df24e5ac1782a9b3fbf0f5070eb22c640e88f489cda12cdec38449f9e3bcf7189dc422642

diff --git a/dev-python/python-redmine/python-redmine-2.3.0.ebuild b/dev-python/python-redmine/python-redmine-2.3.0.ebuild
deleted file mode 100644
index 956d5fa521bc..000000000000
--- a/dev-python/python-redmine/python-redmine-2.3.0.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python interface to the Redmine REST API"
-HOMEPAGE="https://github.com/maxtepkeev/python-redmine"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND=">=dev-python/requests-2.23.0[${PYTHON_USEDEP}]"
-
-distutils_enable_tests nose


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2023-03-17 15:25 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2023-03-17 15:25 UTC (permalink / raw
  To: gentoo-commits

commit:     8720807901acb11b1c48c61cf523a8df286bac68
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 11:59:42 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 15:24:56 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87208079

dev-python/python-redmine: Use pypi.eclass

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

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

diff --git a/dev-python/python-redmine/python-redmine-2.4.0.ebuild b/dev-python/python-redmine/python-redmine-2.4.0.ebuild
index b2161c074c88..da55d3bf3c50 100644
--- a/dev-python/python-redmine/python-redmine-2.4.0.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.4.0.ebuild
@@ -4,16 +4,16 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
 PYTHON_COMPAT=( python3_{9..11} )
 
-inherit distutils-r1
+inherit distutils-r1 pypi
 
 DESCRIPTION="Python interface to the Redmine REST API"
 HOMEPAGE="
 	https://github.com/maxtepkeev/python-redmine/
 	https://pypi.org/project/python-redmine/
 "
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2023-11-05 17:00 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2023-11-05 17:00 UTC (permalink / raw
  To: gentoo-commits

commit:     e89eac190f0a49ee4fa87734f0f7205a272051ff
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  5 16:52:34 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Nov  5 17:00:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89eac19

dev-python/python-redmine: Enable py3.12

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

 dev-python/python-redmine/python-redmine-2.4.0.ebuild | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-python/python-redmine/python-redmine-2.4.0.ebuild b/dev-python/python-redmine/python-redmine-2.4.0.ebuild
index da55d3bf3c50..1492e5810aa4 100644
--- a/dev-python/python-redmine/python-redmine-2.4.0.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.4.0.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 
@@ -25,6 +25,12 @@ RDEPEND="
 
 distutils_enable_tests pytest
 
+src_prepare() {
+	# https://github.com/maxtepkeev/python-redmine/pull/332
+	sed -i -e 's:assertEquals:assertEqual:' tests/*.py || die
+	distutils-r1_src_prepare
+}
+
 python_test() {
 	epytest -o addopts=
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2023-11-23 19:38 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2023-11-23 19:38 UTC (permalink / raw
  To: gentoo-commits

commit:     1bd25ed53de3ef9c3de5348e8a324a459ad69a61
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 23 19:37:58 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Nov 23 19:37:58 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bd25ed5

dev-python/python-redmine: Keyword 2.4.0 arm64, #918027

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

 dev-python/python-redmine/python-redmine-2.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-redmine/python-redmine-2.4.0.ebuild b/dev-python/python-redmine/python-redmine-2.4.0.ebuild
index 1492e5810aa4..ab566a510d5b 100644
--- a/dev-python/python-redmine/python-redmine-2.4.0.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.4.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 RDEPEND="
 	>=dev-python/requests-2.28.2[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2024-03-31 19:07 Arthur Zamarin
  0 siblings, 0 replies; 16+ messages in thread
From: Arthur Zamarin @ 2024-03-31 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     bcbd76e35bf704b2b7acfda46e6bbc701953f359
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 31 18:23:16 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 31 18:46:53 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcbd76e3

dev-python/python-redmine: add 2.5.0

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

 dev-python/python-redmine/Manifest                 |  1 +
 .../python-redmine/python-redmine-2.5.0.ebuild     | 36 ++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/python-redmine/Manifest b/dev-python/python-redmine/Manifest
index e754b6d19e35..1b7da8ce29ba 100644
--- a/dev-python/python-redmine/Manifest
+++ b/dev-python/python-redmine/Manifest
@@ -1 +1,2 @@
 DIST python-redmine-2.4.0.tar.gz 67730 BLAKE2B 22c74ad194af9b56affab39de38b13a8f5a46e79b8ea8d9f9f47eb12c4ad4c91156db9ef0e8dfd013602b8cc06e0636a724ae34969f385dc9f8ffc63514ccc63 SHA512 afb03ca8a3bdacace3c12b7295ba08953ab2040971b57988deb9955df24e5ac1782a9b3fbf0f5070eb22c640e88f489cda12cdec38449f9e3bcf7189dc422642
+DIST python-redmine-2.5.0.tar.gz 73643 BLAKE2B aae400a68385fa98d454820081abacfabe69be473de8ee21feb47dfd8b3372cb0b8dfca168fc9daebd37da04a4fcca84235eb555262489dc1b717fd589dc849a SHA512 8c610efe5e4362ab27a33a04e78347e2962b9e766cea81c725b5b34bdff1d2c6a2e68e5d928b5aed97af569f5c6656dc2b39347a76cb371a3069bba3fd02c8e2

diff --git a/dev-python/python-redmine/python-redmine-2.5.0.ebuild b/dev-python/python-redmine/python-redmine-2.5.0.ebuild
new file mode 100644
index 000000000000..8219293367ea
--- /dev/null
+++ b/dev-python/python-redmine/python-redmine-2.5.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python interface to the Redmine REST API"
+HOMEPAGE="
+	https://github.com/maxtepkeev/python-redmine/
+	https://pypi.org/project/python-redmine/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+	>=dev-python/requests-2.28.2[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+	# https://github.com/maxtepkeev/python-redmine/pull/332
+	sed -i -e 's:assertEquals:assertEqual:' tests/*.py || die
+	distutils-r1_src_prepare
+}
+
+python_test() {
+	epytest -o addopts=
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2024-06-16 17:37 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2024-06-16 17:37 UTC (permalink / raw
  To: gentoo-commits

commit:     c857769a79262fff2bdad9942dd74853df5484e0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 16 17:14:46 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun 16 17:34:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c857769a

dev-python/python-redmine: Enable py3.13

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

 dev-python/python-redmine/python-redmine-2.5.0.ebuild | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/dev-python/python-redmine/python-redmine-2.5.0.ebuild b/dev-python/python-redmine/python-redmine-2.5.0.ebuild
index 8219293367ea..cc301f30f2df 100644
--- a/dev-python/python-redmine/python-redmine-2.5.0.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.5.0.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1 pypi
 
@@ -25,12 +25,6 @@ RDEPEND="
 
 distutils_enable_tests pytest
 
-src_prepare() {
-	# https://github.com/maxtepkeev/python-redmine/pull/332
-	sed -i -e 's:assertEquals:assertEqual:' tests/*.py || die
-	distutils-r1_src_prepare
-}
-
 python_test() {
 	epytest -o addopts=
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/
@ 2024-06-16 17:37 Michał Górny
  0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2024-06-16 17:37 UTC (permalink / raw
  To: gentoo-commits

commit:     c7f8618ca325520303135be3c694d50eb94cfcf4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 16 17:13:52 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun 16 17:34:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f8618c

dev-python/python-redmine: Remove old

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

 dev-python/python-redmine/Manifest                 |  1 -
 .../python-redmine/python-redmine-2.4.0.ebuild     | 36 ----------------------
 2 files changed, 37 deletions(-)

diff --git a/dev-python/python-redmine/Manifest b/dev-python/python-redmine/Manifest
index 1b7da8ce29ba..9ec00caf0c14 100644
--- a/dev-python/python-redmine/Manifest
+++ b/dev-python/python-redmine/Manifest
@@ -1,2 +1 @@
-DIST python-redmine-2.4.0.tar.gz 67730 BLAKE2B 22c74ad194af9b56affab39de38b13a8f5a46e79b8ea8d9f9f47eb12c4ad4c91156db9ef0e8dfd013602b8cc06e0636a724ae34969f385dc9f8ffc63514ccc63 SHA512 afb03ca8a3bdacace3c12b7295ba08953ab2040971b57988deb9955df24e5ac1782a9b3fbf0f5070eb22c640e88f489cda12cdec38449f9e3bcf7189dc422642
 DIST python-redmine-2.5.0.tar.gz 73643 BLAKE2B aae400a68385fa98d454820081abacfabe69be473de8ee21feb47dfd8b3372cb0b8dfca168fc9daebd37da04a4fcca84235eb555262489dc1b717fd589dc849a SHA512 8c610efe5e4362ab27a33a04e78347e2962b9e766cea81c725b5b34bdff1d2c6a2e68e5d928b5aed97af569f5c6656dc2b39347a76cb371a3069bba3fd02c8e2

diff --git a/dev-python/python-redmine/python-redmine-2.4.0.ebuild b/dev-python/python-redmine/python-redmine-2.4.0.ebuild
deleted file mode 100644
index ab566a510d5b..000000000000
--- a/dev-python/python-redmine/python-redmine-2.4.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python interface to the Redmine REST API"
-HOMEPAGE="
-	https://github.com/maxtepkeev/python-redmine/
-	https://pypi.org/project/python-redmine/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="
-	>=dev-python/requests-2.28.2[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-	# https://github.com/maxtepkeev/python-redmine/pull/332
-	sed -i -e 's:assertEquals:assertEqual:' tests/*.py || die
-	distutils-r1_src_prepare
-}
-
-python_test() {
-	epytest -o addopts=
-}


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

end of thread, other threads:[~2024-06-16 17:37 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-16 17:37 [gentoo-commits] repo/gentoo:master commit in: dev-python/python-redmine/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-06-16 17:37 Michał Górny
2024-03-31 19:07 Arthur Zamarin
2023-11-23 19:38 Michał Górny
2023-11-05 17:00 Michał Górny
2023-03-17 15:25 Michał Górny
2023-01-27 20:10 Michał Górny
2023-01-18  7:34 Michał Górny
2021-05-22 10:52 Michał Górny
2021-05-22 10:52 Michał Górny
2020-08-02 22:04 Sam James
2020-06-13 13:01 Michael Orlitzky
2020-04-26 10:17 Michał Górny
2020-03-17  8:08 Michał Górny
2017-05-15 14:02 Michael Orlitzky
2016-11-15 12:52 Michael Orlitzky

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