public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-05-12 11:40 Ian Delaney
  0 siblings, 0 replies; 51+ messages in thread
From: Ian Delaney @ 2016-05-12 11:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e6cc592f399a806de8896d04260366de8a893a90
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Wed May 11 04:51:02 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Thu May 12 11:39:36 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6cc592f

dev-python/rebulk: new package

Python library that performs advanced searches in strings.
Required for the upcoming guessit verbump to 2.0.5.

Package-Manager: portage-2.2.28

Signed-off-by: Ian Delaney <idella4 <AT> gentoo.org>

 dev-python/rebulk/Manifest            |  1 +
 dev-python/rebulk/metadata.xml        | 16 ++++++++++++++
 dev-python/rebulk/rebulk-0.7.2.ebuild | 41 +++++++++++++++++++++++++++++++++++
 dev-python/rebulk/rebulk-9999.ebuild  | 41 +++++++++++++++++++++++++++++++++++
 4 files changed, 99 insertions(+)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
new file mode 100644
index 0000000..576720f
--- /dev/null
+++ b/dev-python/rebulk/Manifest
@@ -0,0 +1 @@
+DIST rebulk-0.7.2.tar.gz 254345 SHA256 ee4c75819c6d0eeedb531fb22c214e50f303ccc4703f27db1f993cd082ed5a20 SHA512 2855b6f754dd258e5e0ba8264cd6993c08fed141fb8b61f88b43beadea9acfcfeb54443c8708fa98de44f2c199dd900e6c9669dc616713dd61d873779f1df2f5 WHIRLPOOL a814772e5d34d6890b1435d652992a9b898435c4075619660351988d1ba955723a8440b8bde6a0c3e6547a465a9b040d085059a7938509a4edc9d7a21318148a

diff --git a/dev-python/rebulk/metadata.xml b/dev-python/rebulk/metadata.xml
new file mode 100644
index 0000000..da5a8b1
--- /dev/null
+++ b/dev-python/rebulk/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>itumaykin+gentoo@gmail.com</email>
+		<name>Coacher</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">Toilal/rebulk</remote-id>
+		<remote-id type="pypi">rebulk</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/rebulk/rebulk-0.7.2.ebuild b/dev-python/rebulk/rebulk-0.7.2.ebuild
new file mode 100644
index 0000000..0f97f9d
--- /dev/null
+++ b/dev-python/rebulk/rebulk-0.7.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	esetup.py test
+}

diff --git a/dev-python/rebulk/rebulk-9999.ebuild b/dev-python/rebulk/rebulk-9999.ebuild
new file mode 100644
index 0000000..09e7776
--- /dev/null
+++ b/dev-python/rebulk/rebulk-9999.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1 git-r3
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
+EGIT_REPO_URI="git://github.com/Toilal/${PN}.git"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	esetup.py test
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-05-31  7:51 Patrice Clement
  0 siblings, 0 replies; 51+ messages in thread
From: Patrice Clement @ 2016-05-31  7:51 UTC (permalink / raw
  To: gentoo-commits

commit:     81839b69bc26535ea77d6c1c9687eb4d7a5c1e5c
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Tue May 31 01:28:21 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue May 31 07:23:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81839b69

dev-python/rebulk: sort deps

Closes: https://github.com/gentoo/gentoo/pull/1562
Package-Manager: portage-2.3.0_rc1

Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 dev-python/rebulk/rebulk-0.7.2.ebuild | 2 +-
 dev-python/rebulk/rebulk-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/rebulk/rebulk-0.7.2.ebuild b/dev-python/rebulk/rebulk-0.7.2.ebuild
index 0f97f9d..2ca258c 100644
--- a/dev-python/rebulk/rebulk-0.7.2.ebuild
+++ b/dev-python/rebulk/rebulk-0.7.2.ebuild
@@ -21,8 +21,8 @@ RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	test? (
-		dev-python/pytest-runner[${PYTHON_USEDEP}]
 		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
 	)
 "
 

diff --git a/dev-python/rebulk/rebulk-9999.ebuild b/dev-python/rebulk/rebulk-9999.ebuild
index 09e7776..3ae8e3b 100644
--- a/dev-python/rebulk/rebulk-9999.ebuild
+++ b/dev-python/rebulk/rebulk-9999.ebuild
@@ -21,8 +21,8 @@ RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	test? (
-		dev-python/pytest-runner[${PYTHON_USEDEP}]
 		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
 	)
 "
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-08-22 14:09 Göktürk Yüksek
  0 siblings, 0 replies; 51+ messages in thread
From: Göktürk Yüksek @ 2016-08-22 14:09 UTC (permalink / raw
  To: gentoo-commits

commit:     01108d244f8b2b4a796706c62cb0ba3b2093ff71
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Tue Jul 26 15:14:05 2016 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Mon Aug 22 13:44:38 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01108d24

dev-python/rebulk: verbump to 0.7.3

Package-Manager: portage-2.3.0

 dev-python/rebulk/Manifest            |  1 +
 dev-python/rebulk/rebulk-0.7.3.ebuild | 41 +++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 576720f..f5b1659 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1 +1,2 @@
 DIST rebulk-0.7.2.tar.gz 254345 SHA256 ee4c75819c6d0eeedb531fb22c214e50f303ccc4703f27db1f993cd082ed5a20 SHA512 2855b6f754dd258e5e0ba8264cd6993c08fed141fb8b61f88b43beadea9acfcfeb54443c8708fa98de44f2c199dd900e6c9669dc616713dd61d873779f1df2f5 WHIRLPOOL a814772e5d34d6890b1435d652992a9b898435c4075619660351988d1ba955723a8440b8bde6a0c3e6547a465a9b040d085059a7938509a4edc9d7a21318148a
+DIST rebulk-0.7.3.tar.gz 254565 SHA256 1ee0f672be5cfeed793d294c1cfc078c254fb0966af59191e4f6a0785b3b1697 SHA512 9d1241c9ea4ce595d6bcc9ffbe7d43f91e4368d8a687b2907473be2a19a95dcd94e1a04669f753633736a3e691c7aae777af9b6ae964b487c75f763a84841a87 WHIRLPOOL 79a14cabbde87363913167a6429af2065e6ecc830a5fb680cc9c1c47f3d547b2faf25a564874015b8d6493a649536d025a80951af0c97bbf1765a489f4077d99

diff --git a/dev-python/rebulk/rebulk-0.7.3.ebuild b/dev-python/rebulk/rebulk-0.7.3.ebuild
new file mode 100644
index 0000000..2ca258c
--- /dev/null
+++ b/dev-python/rebulk/rebulk-0.7.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
+	)
+"
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	esetup.py test
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-08-22 14:10 Göktürk Yüksek
  0 siblings, 0 replies; 51+ messages in thread
From: Göktürk Yüksek @ 2016-08-22 14:10 UTC (permalink / raw
  To: gentoo-commits

commit:     2bafef730e634bbb6a29e2807e4ebdde0c899c65
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Sun Jul 31 10:59:33 2016 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Mon Aug 22 13:44:38 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bafef73

dev-python/rebulk: add Apache-2.0 to LICENSE

Upstream-commit: 7a87aeee6bb45c8a03753251e3a0b81a0b4eaad7

Package-Manager: portage-2.3.0

 dev-python/rebulk/rebulk-0.7.2.ebuild | 2 +-
 dev-python/rebulk/rebulk-0.7.3.ebuild | 2 +-
 dev-python/rebulk/rebulk-9999.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/rebulk/rebulk-0.7.2.ebuild b/dev-python/rebulk/rebulk-0.7.2.ebuild
index 2ca258c..aac7c2b 100644
--- a/dev-python/rebulk/rebulk-0.7.2.ebuild
+++ b/dev-python/rebulk/rebulk-0.7.2.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Python library that performs advanced searches in strings"
 HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-LICENSE="MIT"
+LICENSE="MIT Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="test"

diff --git a/dev-python/rebulk/rebulk-0.7.3.ebuild b/dev-python/rebulk/rebulk-0.7.3.ebuild
index 2ca258c..aac7c2b 100644
--- a/dev-python/rebulk/rebulk-0.7.3.ebuild
+++ b/dev-python/rebulk/rebulk-0.7.3.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Python library that performs advanced searches in strings"
 HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-LICENSE="MIT"
+LICENSE="MIT Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="test"

diff --git a/dev-python/rebulk/rebulk-9999.ebuild b/dev-python/rebulk/rebulk-9999.ebuild
index 3ae8e3b..3eb36b6 100644
--- a/dev-python/rebulk/rebulk-9999.ebuild
+++ b/dev-python/rebulk/rebulk-9999.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Python library that performs advanced searches in strings"
 HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
 EGIT_REPO_URI="git://github.com/Toilal/${PN}.git"
 
-LICENSE="MIT"
+LICENSE="MIT Apache-2.0"
 SLOT="0"
 KEYWORDS=""
 IUSE="test"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-09-11 12:24 David Seifert
  0 siblings, 0 replies; 51+ messages in thread
From: David Seifert @ 2016-09-11 12:24 UTC (permalink / raw
  To: gentoo-commits

commit:     66e05db796c93f873345b2c570f8d926d641b9d5
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Sun Sep 11 11:08:44 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Sep 11 12:23:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66e05db7

dev-python/rebulk: remove old

Package-Manager: portage-2.3.0

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-python/rebulk/Manifest            |  1 -
 dev-python/rebulk/rebulk-0.7.3.ebuild | 41 -----------------------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 8cc6027..ac1936a 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,3 +1,2 @@
 DIST rebulk-0.7.2.tar.gz 254345 SHA256 ee4c75819c6d0eeedb531fb22c214e50f303ccc4703f27db1f993cd082ed5a20 SHA512 2855b6f754dd258e5e0ba8264cd6993c08fed141fb8b61f88b43beadea9acfcfeb54443c8708fa98de44f2c199dd900e6c9669dc616713dd61d873779f1df2f5 WHIRLPOOL a814772e5d34d6890b1435d652992a9b898435c4075619660351988d1ba955723a8440b8bde6a0c3e6547a465a9b040d085059a7938509a4edc9d7a21318148a
-DIST rebulk-0.7.3.tar.gz 254565 SHA256 1ee0f672be5cfeed793d294c1cfc078c254fb0966af59191e4f6a0785b3b1697 SHA512 9d1241c9ea4ce595d6bcc9ffbe7d43f91e4368d8a687b2907473be2a19a95dcd94e1a04669f753633736a3e691c7aae777af9b6ae964b487c75f763a84841a87 WHIRLPOOL 79a14cabbde87363913167a6429af2065e6ecc830a5fb680cc9c1c47f3d547b2faf25a564874015b8d6493a649536d025a80951af0c97bbf1765a489f4077d99
 DIST rebulk-0.7.4.tar.gz 255137 SHA256 1bbea5ebcc18b70c5deb19ba6924fb76392d5130b0fe712e3af7a4e4bee18e21 SHA512 0a40e0acce286d45829451fe30efc1bece4924c349c81c377aacee26afe34f032ab6624207d9f6ebb4a3d6f4e2984d63a5601a3728b208045a9a33e0816c1ef2 WHIRLPOOL fe9a4468ceba020f199b89e8a6fa533e9345584dcb2a616f15187193f2145f99336c733fd9b8e9a8178d6ad73a8e3a20d6493a250fdafb3a29dde93695d5cb0d

diff --git a/dev-python/rebulk/rebulk-0.7.3.ebuild b/dev-python/rebulk/rebulk-0.7.3.ebuild
deleted file mode 100644
index aac7c2b..00000000
--- a/dev-python/rebulk/rebulk-0.7.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-runner[${PYTHON_USEDEP}]
-	)
-"
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	esetup.py test
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-09-11 12:24 David Seifert
  0 siblings, 0 replies; 51+ messages in thread
From: David Seifert @ 2016-09-11 12:24 UTC (permalink / raw
  To: gentoo-commits

commit:     a90abf5b2115e97aa95e24daaf9de6d2e26aacfd
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Sun Sep 11 11:06:38 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Sep 11 12:23:50 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a90abf5b

dev-python/rebulk: verbump to 0.7.4

Package-Manager: portage-2.3.0

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-python/rebulk/Manifest            |  1 +
 dev-python/rebulk/rebulk-0.7.4.ebuild | 41 +++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index f5b1659..8cc6027 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,2 +1,3 @@
 DIST rebulk-0.7.2.tar.gz 254345 SHA256 ee4c75819c6d0eeedb531fb22c214e50f303ccc4703f27db1f993cd082ed5a20 SHA512 2855b6f754dd258e5e0ba8264cd6993c08fed141fb8b61f88b43beadea9acfcfeb54443c8708fa98de44f2c199dd900e6c9669dc616713dd61d873779f1df2f5 WHIRLPOOL a814772e5d34d6890b1435d652992a9b898435c4075619660351988d1ba955723a8440b8bde6a0c3e6547a465a9b040d085059a7938509a4edc9d7a21318148a
 DIST rebulk-0.7.3.tar.gz 254565 SHA256 1ee0f672be5cfeed793d294c1cfc078c254fb0966af59191e4f6a0785b3b1697 SHA512 9d1241c9ea4ce595d6bcc9ffbe7d43f91e4368d8a687b2907473be2a19a95dcd94e1a04669f753633736a3e691c7aae777af9b6ae964b487c75f763a84841a87 WHIRLPOOL 79a14cabbde87363913167a6429af2065e6ecc830a5fb680cc9c1c47f3d547b2faf25a564874015b8d6493a649536d025a80951af0c97bbf1765a489f4077d99
+DIST rebulk-0.7.4.tar.gz 255137 SHA256 1bbea5ebcc18b70c5deb19ba6924fb76392d5130b0fe712e3af7a4e4bee18e21 SHA512 0a40e0acce286d45829451fe30efc1bece4924c349c81c377aacee26afe34f032ab6624207d9f6ebb4a3d6f4e2984d63a5601a3728b208045a9a33e0816c1ef2 WHIRLPOOL fe9a4468ceba020f199b89e8a6fa533e9345584dcb2a616f15187193f2145f99336c733fd9b8e9a8178d6ad73a8e3a20d6493a250fdafb3a29dde93695d5cb0d

diff --git a/dev-python/rebulk/rebulk-0.7.4.ebuild b/dev-python/rebulk/rebulk-0.7.4.ebuild
new file mode 100644
index 00000000..aac7c2b
--- /dev/null
+++ b/dev-python/rebulk/rebulk-0.7.4.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
+	)
+"
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	esetup.py test
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-09-20 21:12 David Seifert
  0 siblings, 0 replies; 51+ messages in thread
From: David Seifert @ 2016-09-20 21:12 UTC (permalink / raw
  To: gentoo-commits

commit:     e4d58a3507455721a1aaa200c1ecebd8416364e8
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Tue Sep 20 12:50:32 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Sep 20 21:10:30 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4d58a35

dev-python/rebulk: remove old

Closes: https://github.com/gentoo/gentoo/pull/2372
Package-Manager: portage-2.3.1

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-python/rebulk/Manifest            |  1 -
 dev-python/rebulk/rebulk-0.7.4.ebuild | 41 -----------------------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index d179e24..19ae173 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,3 +1,2 @@
 DIST rebulk-0.7.2.tar.gz 254345 SHA256 ee4c75819c6d0eeedb531fb22c214e50f303ccc4703f27db1f993cd082ed5a20 SHA512 2855b6f754dd258e5e0ba8264cd6993c08fed141fb8b61f88b43beadea9acfcfeb54443c8708fa98de44f2c199dd900e6c9669dc616713dd61d873779f1df2f5 WHIRLPOOL a814772e5d34d6890b1435d652992a9b898435c4075619660351988d1ba955723a8440b8bde6a0c3e6547a465a9b040d085059a7938509a4edc9d7a21318148a
-DIST rebulk-0.7.4.tar.gz 255137 SHA256 1bbea5ebcc18b70c5deb19ba6924fb76392d5130b0fe712e3af7a4e4bee18e21 SHA512 0a40e0acce286d45829451fe30efc1bece4924c349c81c377aacee26afe34f032ab6624207d9f6ebb4a3d6f4e2984d63a5601a3728b208045a9a33e0816c1ef2 WHIRLPOOL fe9a4468ceba020f199b89e8a6fa533e9345584dcb2a616f15187193f2145f99336c733fd9b8e9a8178d6ad73a8e3a20d6493a250fdafb3a29dde93695d5cb0d
 DIST rebulk-0.7.6.tar.gz 256070 SHA256 1357820b13460fc30ecdf58b7743b34da79f76bec954c21051da9eefab0e82cd SHA512 89dcaeecf559ab79c7d1d2f2f58d3f882e25517a95dacf2d1991d2035c40697cc0848bc28884b08ba7eb83d66ddc42b6f3d90133489ef45abef56ead260d95e5 WHIRLPOOL 466490082fbb1cbb57183ef9b5df7efd4449bb6dbff3fe91d730d9a4d44a9a85835caad4dece29be0be9f48485d6da2120db246c458858f507a706506da2211b

diff --git a/dev-python/rebulk/rebulk-0.7.4.ebuild b/dev-python/rebulk/rebulk-0.7.4.ebuild
deleted file mode 100644
index aac7c2b..00000000
--- a/dev-python/rebulk/rebulk-0.7.4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-runner[${PYTHON_USEDEP}]
-	)
-"
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	esetup.py test
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-09-20 21:12 David Seifert
  0 siblings, 0 replies; 51+ messages in thread
From: David Seifert @ 2016-09-20 21:12 UTC (permalink / raw
  To: gentoo-commits

commit:     ec8e7c97aa998b6ac1ab387ec461ae4c1d2fb3e2
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Tue Sep 20 12:48:22 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Sep 20 21:10:29 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec8e7c97

dev-python/rebulk: verbump to 0.7.6

Package-Manager: portage-2.3.1

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-python/rebulk/Manifest            |  1 +
 dev-python/rebulk/rebulk-0.7.6.ebuild | 41 +++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index ac1936a..d179e24 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,2 +1,3 @@
 DIST rebulk-0.7.2.tar.gz 254345 SHA256 ee4c75819c6d0eeedb531fb22c214e50f303ccc4703f27db1f993cd082ed5a20 SHA512 2855b6f754dd258e5e0ba8264cd6993c08fed141fb8b61f88b43beadea9acfcfeb54443c8708fa98de44f2c199dd900e6c9669dc616713dd61d873779f1df2f5 WHIRLPOOL a814772e5d34d6890b1435d652992a9b898435c4075619660351988d1ba955723a8440b8bde6a0c3e6547a465a9b040d085059a7938509a4edc9d7a21318148a
 DIST rebulk-0.7.4.tar.gz 255137 SHA256 1bbea5ebcc18b70c5deb19ba6924fb76392d5130b0fe712e3af7a4e4bee18e21 SHA512 0a40e0acce286d45829451fe30efc1bece4924c349c81c377aacee26afe34f032ab6624207d9f6ebb4a3d6f4e2984d63a5601a3728b208045a9a33e0816c1ef2 WHIRLPOOL fe9a4468ceba020f199b89e8a6fa533e9345584dcb2a616f15187193f2145f99336c733fd9b8e9a8178d6ad73a8e3a20d6493a250fdafb3a29dde93695d5cb0d
+DIST rebulk-0.7.6.tar.gz 256070 SHA256 1357820b13460fc30ecdf58b7743b34da79f76bec954c21051da9eefab0e82cd SHA512 89dcaeecf559ab79c7d1d2f2f58d3f882e25517a95dacf2d1991d2035c40697cc0848bc28884b08ba7eb83d66ddc42b6f3d90133489ef45abef56ead260d95e5 WHIRLPOOL 466490082fbb1cbb57183ef9b5df7efd4449bb6dbff3fe91d730d9a4d44a9a85835caad4dece29be0be9f48485d6da2120db246c458858f507a706506da2211b

diff --git a/dev-python/rebulk/rebulk-0.7.6.ebuild b/dev-python/rebulk/rebulk-0.7.6.ebuild
new file mode 100644
index 00000000..aac7c2b
--- /dev/null
+++ b/dev-python/rebulk/rebulk-0.7.6.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
+	)
+"
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	esetup.py test
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-12-05 20:22 Pacho Ramos
  0 siblings, 0 replies; 51+ messages in thread
From: Pacho Ramos @ 2016-12-05 20:22 UTC (permalink / raw
  To: gentoo-commits

commit:     d9cd5eed8123d999b97211c0d8904d9b0a88b977
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  5 20:15:07 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Mon Dec  5 20:22:43 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9cd5eed

dev-python/rebulk: x86 stable, bug #589570

Package-Manager: portage-2.3.2

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

diff --git a/dev-python/rebulk/rebulk-0.7.2.ebuild b/dev-python/rebulk/rebulk-0.7.2.ebuild
index c530dcf..7f3aee9 100644
--- a/dev-python/rebulk/rebulk-0.7.2.ebuild
+++ b/dev-python/rebulk/rebulk-0.7.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-12-10 23:04 David Seifert
  0 siblings, 0 replies; 51+ messages in thread
From: David Seifert @ 2016-12-10 23:04 UTC (permalink / raw
  To: gentoo-commits

commit:     40e139d3dbada15af2e57771f5011cf030031533
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Thu Dec  8 08:52:37 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 23:03:29 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e139d3

dev-python/rebulk: remove old

Package-Manager: portage-2.3.3

 dev-python/rebulk/Manifest            |  1 -
 dev-python/rebulk/rebulk-0.7.6.ebuild | 41 -----------------------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 15ebaa3..fed79e8 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,3 +1,2 @@
 DIST rebulk-0.7.2.tar.gz 254345 SHA256 ee4c75819c6d0eeedb531fb22c214e50f303ccc4703f27db1f993cd082ed5a20 SHA512 2855b6f754dd258e5e0ba8264cd6993c08fed141fb8b61f88b43beadea9acfcfeb54443c8708fa98de44f2c199dd900e6c9669dc616713dd61d873779f1df2f5 WHIRLPOOL a814772e5d34d6890b1435d652992a9b898435c4075619660351988d1ba955723a8440b8bde6a0c3e6547a465a9b040d085059a7938509a4edc9d7a21318148a
-DIST rebulk-0.7.6.tar.gz 256070 SHA256 1357820b13460fc30ecdf58b7743b34da79f76bec954c21051da9eefab0e82cd SHA512 89dcaeecf559ab79c7d1d2f2f58d3f882e25517a95dacf2d1991d2035c40697cc0848bc28884b08ba7eb83d66ddc42b6f3d90133489ef45abef56ead260d95e5 WHIRLPOOL 466490082fbb1cbb57183ef9b5df7efd4449bb6dbff3fe91d730d9a4d44a9a85835caad4dece29be0be9f48485d6da2120db246c458858f507a706506da2211b
 DIST rebulk-0.8.2.tar.gz 257147 SHA256 8c09901bda7b79a21d46faf489d67d017aa54d38bdabdb53f824068a6640401a SHA512 7abbeb1974102db4846759de6c797b9fb0b81a6ffe573d8a7590342da8ed5b4c006258407540be8563d51fb36ac2a148132e879586a200a923cfe93dcc715bee WHIRLPOOL e50c3ca72801a11f9d926ea42572c910fba1660cdf6827bd2a00755beb808711dd2718a433c983bf20792bd7a05faf3820eb3477dbb639fe170dae68779a28c9

diff --git a/dev-python/rebulk/rebulk-0.7.6.ebuild b/dev-python/rebulk/rebulk-0.7.6.ebuild
deleted file mode 100644
index aac7c2b..00000000
--- a/dev-python/rebulk/rebulk-0.7.6.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-runner[${PYTHON_USEDEP}]
-	)
-"
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	esetup.py test
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-12-10 23:04 David Seifert
  0 siblings, 0 replies; 51+ messages in thread
From: David Seifert @ 2016-12-10 23:04 UTC (permalink / raw
  To: gentoo-commits

commit:     15f3bf70fc3460b110a0478cc4a2f473acb10d66
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Thu Dec  8 08:53:49 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 23:03:30 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f3bf70

dev-python/rebulk: support both https and git repo URIs in 9999

Package-Manager: portage-2.3.3

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

diff --git a/dev-python/rebulk/rebulk-9999.ebuild b/dev-python/rebulk/rebulk-9999.ebuild
index 3eb36b6..8ec8efb 100644
--- a/dev-python/rebulk/rebulk-9999.ebuild
+++ b/dev-python/rebulk/rebulk-9999.ebuild
@@ -10,7 +10,7 @@ inherit distutils-r1 git-r3
 
 DESCRIPTION="Python library that performs advanced searches in strings"
 HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
-EGIT_REPO_URI="git://github.com/Toilal/${PN}.git"
+EGIT_REPO_URI=( {https,git}://github.com/Toilal/${PN}.git )
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2016-12-10 23:04 David Seifert
  0 siblings, 0 replies; 51+ messages in thread
From: David Seifert @ 2016-12-10 23:04 UTC (permalink / raw
  To: gentoo-commits

commit:     97e0194ab274ff452f40205a21f541320001f945
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Thu Dec  8 08:52:03 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 23:03:26 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e0194a

dev-python/rebulk: verbump to 0.8.2

Package-Manager: portage-2.3.3

 dev-python/rebulk/Manifest            |  1 +
 dev-python/rebulk/rebulk-0.8.2.ebuild | 41 +++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 19ae173..15ebaa3 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,2 +1,3 @@
 DIST rebulk-0.7.2.tar.gz 254345 SHA256 ee4c75819c6d0eeedb531fb22c214e50f303ccc4703f27db1f993cd082ed5a20 SHA512 2855b6f754dd258e5e0ba8264cd6993c08fed141fb8b61f88b43beadea9acfcfeb54443c8708fa98de44f2c199dd900e6c9669dc616713dd61d873779f1df2f5 WHIRLPOOL a814772e5d34d6890b1435d652992a9b898435c4075619660351988d1ba955723a8440b8bde6a0c3e6547a465a9b040d085059a7938509a4edc9d7a21318148a
 DIST rebulk-0.7.6.tar.gz 256070 SHA256 1357820b13460fc30ecdf58b7743b34da79f76bec954c21051da9eefab0e82cd SHA512 89dcaeecf559ab79c7d1d2f2f58d3f882e25517a95dacf2d1991d2035c40697cc0848bc28884b08ba7eb83d66ddc42b6f3d90133489ef45abef56ead260d95e5 WHIRLPOOL 466490082fbb1cbb57183ef9b5df7efd4449bb6dbff3fe91d730d9a4d44a9a85835caad4dece29be0be9f48485d6da2120db246c458858f507a706506da2211b
+DIST rebulk-0.8.2.tar.gz 257147 SHA256 8c09901bda7b79a21d46faf489d67d017aa54d38bdabdb53f824068a6640401a SHA512 7abbeb1974102db4846759de6c797b9fb0b81a6ffe573d8a7590342da8ed5b4c006258407540be8563d51fb36ac2a148132e879586a200a923cfe93dcc715bee WHIRLPOOL e50c3ca72801a11f9d926ea42572c910fba1660cdf6827bd2a00755beb808711dd2718a433c983bf20792bd7a05faf3820eb3477dbb639fe170dae68779a28c9

diff --git a/dev-python/rebulk/rebulk-0.8.2.ebuild b/dev-python/rebulk/rebulk-0.8.2.ebuild
new file mode 100644
index 00000000..aac7c2b
--- /dev/null
+++ b/dev-python/rebulk/rebulk-0.8.2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
+	)
+"
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	esetup.py test
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2017-01-16  9:49 Agostino Sarubbo
  0 siblings, 0 replies; 51+ messages in thread
From: Agostino Sarubbo @ 2017-01-16  9:49 UTC (permalink / raw
  To: gentoo-commits

commit:     8a4ff68092ce104e2f72111186e2ea634876ac25
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 09:49:16 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 09:49:16 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a4ff680

dev-python/rebulk: amd64 stable wrt bug #605776

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/rebulk-0.8.2.ebuild b/dev-python/rebulk/rebulk-0.8.2.ebuild
index aac7c2b..cd95bf8 100644
--- a/dev-python/rebulk/rebulk-0.8.2.ebuild
+++ b/dev-python/rebulk/rebulk-0.8.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2017-01-16 10:15 Agostino Sarubbo
  0 siblings, 0 replies; 51+ messages in thread
From: Agostino Sarubbo @ 2017-01-16 10:15 UTC (permalink / raw
  To: gentoo-commits

commit:     32136ddd09f709ce9f861b95a67e4b2d7477ae32
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 10:13:38 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 10:13:38 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32136ddd

dev-python/rebulk: x86 stable wrt bug #605776

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/rebulk-0.8.2.ebuild b/dev-python/rebulk/rebulk-0.8.2.ebuild
index cd95bf8..bae143b 100644
--- a/dev-python/rebulk/rebulk-0.8.2.ebuild
+++ b/dev-python/rebulk/rebulk-0.8.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2017-01-16 17:55 David Seifert
  0 siblings, 0 replies; 51+ messages in thread
From: David Seifert @ 2017-01-16 17:55 UTC (permalink / raw
  To: gentoo-commits

commit:     0ff9cd867c97d24d976c2999bc1e9082ced03272
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Mon Jan 16 11:06:59 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 17:55:17 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ff9cd86

dev-python/rebulk: remove old

Closes: https://github.com/gentoo/gentoo/pull/3500
Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/rebulk/Manifest            |  1 -
 dev-python/rebulk/rebulk-0.7.2.ebuild | 41 -----------------------------------
 2 files changed, 42 deletions(-)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index fed79e8..3c8efca 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,2 +1 @@
-DIST rebulk-0.7.2.tar.gz 254345 SHA256 ee4c75819c6d0eeedb531fb22c214e50f303ccc4703f27db1f993cd082ed5a20 SHA512 2855b6f754dd258e5e0ba8264cd6993c08fed141fb8b61f88b43beadea9acfcfeb54443c8708fa98de44f2c199dd900e6c9669dc616713dd61d873779f1df2f5 WHIRLPOOL a814772e5d34d6890b1435d652992a9b898435c4075619660351988d1ba955723a8440b8bde6a0c3e6547a465a9b040d085059a7938509a4edc9d7a21318148a
 DIST rebulk-0.8.2.tar.gz 257147 SHA256 8c09901bda7b79a21d46faf489d67d017aa54d38bdabdb53f824068a6640401a SHA512 7abbeb1974102db4846759de6c797b9fb0b81a6ffe573d8a7590342da8ed5b4c006258407540be8563d51fb36ac2a148132e879586a200a923cfe93dcc715bee WHIRLPOOL e50c3ca72801a11f9d926ea42572c910fba1660cdf6827bd2a00755beb808711dd2718a433c983bf20792bd7a05faf3820eb3477dbb639fe170dae68779a28c9

diff --git a/dev-python/rebulk/rebulk-0.7.2.ebuild b/dev-python/rebulk/rebulk-0.7.2.ebuild
deleted file mode 100644
index 7f3aee9..00000000
--- a/dev-python/rebulk/rebulk-0.7.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-runner[${PYTHON_USEDEP}]
-	)
-"
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	esetup.py test
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2017-05-05 14:59 Manuel Rüger
  0 siblings, 0 replies; 51+ messages in thread
From: Manuel Rüger @ 2017-05-05 14:59 UTC (permalink / raw
  To: gentoo-commits

commit:     cde5f42065a73cbff6fa8320ef64078ff949b305
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri May  5 14:59:33 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri May  5 14:59:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cde5f420

dev-python/rebulk: Add python3_6

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/rebulk/rebulk-0.8.2.ebuild | 2 +-
 dev-python/rebulk/rebulk-9999.ebuild  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/rebulk/rebulk-0.8.2.ebuild b/dev-python/rebulk/rebulk-0.8.2.ebuild
index 5f19529b2b7..4fbf9cb372d 100644
--- a/dev-python/rebulk/rebulk-0.8.2.ebuild
+++ b/dev-python/rebulk/rebulk-0.8.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit distutils-r1
 

diff --git a/dev-python/rebulk/rebulk-9999.ebuild b/dev-python/rebulk/rebulk-9999.ebuild
index c9299da078f..a4d9d0f5a46 100644
--- a/dev-python/rebulk/rebulk-9999.ebuild
+++ b/dev-python/rebulk/rebulk-9999.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=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit distutils-r1 git-r3
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2017-06-11  8:50 Michael Palimaka
  0 siblings, 0 replies; 51+ messages in thread
From: Michael Palimaka @ 2017-06-11  8:50 UTC (permalink / raw
  To: gentoo-commits

commit:     de078cee28c7f8d75f5098138ac160a2d79f44ae
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Sun Jun  4 18:24:37 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 08:50:14 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de078cee

dev-python/rebulk: verbump to 0.9.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/rebulk/Manifest            |  1 +
 dev-python/rebulk/rebulk-0.9.0.ebuild | 40 +++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 3c8efcaee76..0d80889b3e3 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1 +1,2 @@
 DIST rebulk-0.8.2.tar.gz 257147 SHA256 8c09901bda7b79a21d46faf489d67d017aa54d38bdabdb53f824068a6640401a SHA512 7abbeb1974102db4846759de6c797b9fb0b81a6ffe573d8a7590342da8ed5b4c006258407540be8563d51fb36ac2a148132e879586a200a923cfe93dcc715bee WHIRLPOOL e50c3ca72801a11f9d926ea42572c910fba1660cdf6827bd2a00755beb808711dd2718a433c983bf20792bd7a05faf3820eb3477dbb639fe170dae68779a28c9
+DIST rebulk-0.9.0.tar.gz 257342 SHA256 e0c69bdddccbba3ef881948ea96f1d62eda91201c306ea568a676507a30985eb SHA512 25a22b3a5f5519f6f8c10abf6a477f212c0500264cfdcc5a9be09d3818462a051b1a7cd78f94991c44ac6bcdc7435b9909e65de48d1bd8138989e0da98d10262 WHIRLPOOL 7b5e280c2598be73a6da96eda2c192698c94f3e8e8a57738f0527b119aa995e7ffb55bb0bfd1b81462b2e8043195e8cd84240df7b4d992374af0f5db674496cd

diff --git a/dev-python/rebulk/rebulk-0.9.0.ebuild b/dev-python/rebulk/rebulk-0.9.0.ebuild
new file mode 100644
index 00000000000..d2d95bd81f6
--- /dev/null
+++ b/dev-python/rebulk/rebulk-0.9.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
+	)
+"
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	esetup.py test
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2017-07-19 18:06 Tobias Klausmann
  0 siblings, 0 replies; 51+ messages in thread
From: Tobias Klausmann @ 2017-07-19 18:06 UTC (permalink / raw
  To: gentoo-commits

commit:     38de01153307295f3103b0ce9513dc2050c7ddbc
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 19 17:30:47 2017 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Wed Jul 19 18:05:44 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38de0115

dev-python/rebulk-0.9.0-r0: amd64 stable

Gentoo-Bug: 625414

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

diff --git a/dev-python/rebulk/rebulk-0.9.0.ebuild b/dev-python/rebulk/rebulk-0.9.0.ebuild
index d2d95bd81f6..712c0f8e7a6 100644
--- a/dev-python/rebulk/rebulk-0.9.0.ebuild
+++ b/dev-python/rebulk/rebulk-0.9.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2017-07-30  9:44 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2017-07-30  9:44 UTC (permalink / raw
  To: gentoo-commits

commit:     9b9e1d52c7cf789ef882cdef6dc088284de7d4dc
Author:     David Hicks <david <AT> hicks <DOT> id <DOT> au>
AuthorDate: Sat Jul 29 17:38:32 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 30 09:44:44 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b9e1d52

dev-python/rebulk: use HTTPS for GitHub

Package-Manager: Portage-2.3.6, Repoman-2.3.3

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

diff --git a/dev-python/rebulk/rebulk-9999.ebuild b/dev-python/rebulk/rebulk-9999.ebuild
index a4d9d0f5a46..50658d386ae 100644
--- a/dev-python/rebulk/rebulk-9999.ebuild
+++ b/dev-python/rebulk/rebulk-9999.ebuild
@@ -9,7 +9,7 @@ inherit distutils-r1 git-r3
 
 DESCRIPTION="Python library that performs advanced searches in strings"
 HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
-EGIT_REPO_URI=( {https,git}://github.com/Toilal/${PN}.git )
+EGIT_REPO_URI="https://github.com/Toilal/${PN}.git"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2017-08-19  0:31 Thomas Deutschmann
  0 siblings, 0 replies; 51+ messages in thread
From: Thomas Deutschmann @ 2017-08-19  0:31 UTC (permalink / raw
  To: gentoo-commits

commit:     a7930fa5ab42a774e85d3ba4bc1836d07424d548
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 19 00:22:05 2017 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Aug 19 00:30:46 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7930fa5

dev-python/rebulk: x86 stable (bug #625414)

Package-Manager: Portage-2.3.5, Repoman-2.3.2

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

diff --git a/dev-python/rebulk/rebulk-0.9.0.ebuild b/dev-python/rebulk/rebulk-0.9.0.ebuild
index 712c0f8e7a6..4fbf9cb372d 100644
--- a/dev-python/rebulk/rebulk-0.9.0.ebuild
+++ b/dev-python/rebulk/rebulk-0.9.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2018-02-07 19:22 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2018-02-07 19:22 UTC (permalink / raw
  To: gentoo-commits

commit:     fc792b26ce8806ab13ed6299e1e826e3f6c143a0
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Tue Feb  6 20:12:29 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb  7 19:22:10 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc792b26

dev-python/rebulk: remove old

Closes: https://github.com/gentoo/gentoo/pull/7098
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-python/rebulk/Manifest            |  1 -
 dev-python/rebulk/rebulk-0.8.2.ebuild | 40 -----------------------------------
 2 files changed, 41 deletions(-)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 27581879d70..e079271f18e 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,2 +1 @@
-DIST rebulk-0.8.2.tar.gz 257147 BLAKE2B ef907a6c6dcd3ab749e04080cb7b7405da640a2c3142f4754535ad2e166fc14e97765193c675ad406542cf08aaf797dbb40d466e344b1b68942de8cec2126409 SHA512 7abbeb1974102db4846759de6c797b9fb0b81a6ffe573d8a7590342da8ed5b4c006258407540be8563d51fb36ac2a148132e879586a200a923cfe93dcc715bee
 DIST rebulk-0.9.0.tar.gz 257342 BLAKE2B a08b2d74685eea35597331bb2ef3c48e8a9cddc39ad3821cb7f33b80a47184a21f813b339e9d64548b3003913178191075455a6f787ab80ffa2cb3bf7f0db35d SHA512 25a22b3a5f5519f6f8c10abf6a477f212c0500264cfdcc5a9be09d3818462a051b1a7cd78f94991c44ac6bcdc7435b9909e65de48d1bd8138989e0da98d10262

diff --git a/dev-python/rebulk/rebulk-0.8.2.ebuild b/dev-python/rebulk/rebulk-0.8.2.ebuild
deleted file mode 100644
index 4fbf9cb372d..00000000000
--- a/dev-python/rebulk/rebulk-0.8.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.python.org/pypi/rebulk"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-runner[${PYTHON_USEDEP}]
-	)
-"
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	esetup.py test
-}


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

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

commit:     4f706d881b1704ed50d28f396fb96db792ef65e1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  5 20:59:56 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb  5 21:21:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f706d88

dev-python/rebulk: Remove py2

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

 dev-python/rebulk/rebulk-0.9.0.ebuild | 2 +-
 dev-python/rebulk/rebulk-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/rebulk/rebulk-0.9.0.ebuild b/dev-python/rebulk/rebulk-0.9.0.ebuild
index 20f7e36ec36..4828cd9ec63 100644
--- a/dev-python/rebulk/rebulk-0.9.0.ebuild
+++ b/dev-python/rebulk/rebulk-0.9.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_6} )
+PYTHON_COMPAT=( python3_6 )
 
 inherit distutils-r1
 

diff --git a/dev-python/rebulk/rebulk-9999.ebuild b/dev-python/rebulk/rebulk-9999.ebuild
index b9f3215d179..88825450c60 100644
--- a/dev-python/rebulk/rebulk-9999.ebuild
+++ b/dev-python/rebulk/rebulk-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_6} )
+PYTHON_COMPAT=( python3_6 )
 
 inherit distutils-r1 git-r3
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2020-03-25 11:06 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2020-03-25 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     00f7e848d9bf36ee0297c2923c5f89743c38081c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 25 09:45:04 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 25 11:05:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00f7e848

dev-python/rebulk: Remove the live ebuild

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

 dev-python/rebulk/rebulk-9999.ebuild | 41 ------------------------------------
 1 file changed, 41 deletions(-)

diff --git a/dev-python/rebulk/rebulk-9999.ebuild b/dev-python/rebulk/rebulk-9999.ebuild
deleted file mode 100644
index 88825450c60..00000000000
--- a/dev-python/rebulk/rebulk-9999.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1 git-r3
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
-EGIT_REPO_URI="https://github.com/Toilal/${PN}.git"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS=""
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-runner[${PYTHON_USEDEP}]
-	)
-"
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	esetup.py test
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2020-03-25 11:06 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2020-03-25 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     0d1c3ddc055d312db85a1c0793ac9ea5eb3650b4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 25 09:44:30 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 25 11:05:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d1c3ddc

dev-python/rebulk: Enable py3.7

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

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

diff --git a/dev-python/rebulk/rebulk-0.9.0.ebuild b/dev-python/rebulk/rebulk-0.9.0.ebuild
index 4828cd9ec63..2fc79bb065d 100644
--- a/dev-python/rebulk/rebulk-0.9.0.ebuild
+++ b/dev-python/rebulk/rebulk-0.9.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2020-03-25 11:06 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2020-03-25 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     8e5fadc4dd6870249681858dd743498896a51231
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 25 09:44:42 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 25 11:05:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e5fadc4

dev-python/rebulk: Call pytest directly

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

 dev-python/rebulk/rebulk-0.9.0.ebuild | 15 ++-------------
 1 file changed, 2 insertions(+), 13 deletions(-)

diff --git a/dev-python/rebulk/rebulk-0.9.0.ebuild b/dev-python/rebulk/rebulk-0.9.0.ebuild
index 2fc79bb065d..d0df2d1455c 100644
--- a/dev-python/rebulk/rebulk-0.9.0.ebuild
+++ b/dev-python/rebulk/rebulk-0.9.0.ebuild
@@ -14,17 +14,10 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="MIT Apache-2.0"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
-		dev-python/pytest-runner[${PYTHON_USEDEP}]
-	)
-"
+
+distutils_enable_tests pytest
 
 python_prepare_all() {
 	# Remove base64-encoded zip archive with pytest.
@@ -35,7 +28,3 @@ python_prepare_all() {
 
 	distutils-r1_python_prepare_all
 }
-
-python_test() {
-	esetup.py test
-}


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

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

commit:     5e0bfdeef5d4348633d1479886d5f27704b58841
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May  3 06:41:38 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May  3 07:07:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e0bfdee

dev-python/rebulk: Bump to 2.0.1

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

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

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index e079271f18e..1682c45693d 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1 +1,2 @@
 DIST rebulk-0.9.0.tar.gz 257342 BLAKE2B a08b2d74685eea35597331bb2ef3c48e8a9cddc39ad3821cb7f33b80a47184a21f813b339e9d64548b3003913178191075455a6f787ab80ffa2cb3bf7f0db35d SHA512 25a22b3a5f5519f6f8c10abf6a477f212c0500264cfdcc5a9be09d3818462a051b1a7cd78f94991c44ac6bcdc7435b9909e65de48d1bd8138989e0da98d10262
+DIST rebulk-2.0.1.tar.gz 258115 BLAKE2B d19210911cf89cb7c371819e384da95c2159eb92abf9f027cbdf1803a18054c556e73364ae10c5bb0b5007cbdb2156b2118d22d6e278b6a02055bacbcbdbc322 SHA512 7d453b7ba952994dec3258aa95a3f6090e6f8afb5a674c1b5e54e036f41022b887d3d65d21f2023ae6e2596cce3baf52d33fc23708498a4f0aef26d3594c8289

diff --git a/dev-python/rebulk/rebulk-2.0.1.ebuild b/dev-python/rebulk/rebulk-2.0.1.ebuild
new file mode 100644
index 00000000000..65549c458c2
--- /dev/null
+++ b/dev-python/rebulk/rebulk-2.0.1.ebuild
@@ -0,0 +1,30 @@
+# 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 library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}


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

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

commit:     1dbc5dae8cf183d88788692fc204a0eb95a2e7b3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May  3 06:42:00 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May  3 07:07:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dbc5dae

dev-python/rebulk: Take it back to python@

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

 dev-python/rebulk/metadata.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/rebulk/metadata.xml b/dev-python/rebulk/metadata.xml
index c12ab7a6998..a513aaa33da 100644
--- a/dev-python/rebulk/metadata.xml
+++ b/dev-python/rebulk/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+		<name>Python</name>
+	</maintainer>
 	<upstream>
 		<remote-id type="github">Toilal/rebulk</remote-id>
 		<remote-id type="pypi">rebulk</remote-id>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2020-05-21  7:53 Agostino Sarubbo
  0 siblings, 0 replies; 51+ messages in thread
From: Agostino Sarubbo @ 2020-05-21  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     27236f365c4e7e4b12aafe9270e1c162640e7919
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May 21 07:52:56 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May 21 07:52:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27236f36

dev-python/rebulk: amd64 stable wrt bug #722222

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/rebulk-2.0.1.ebuild b/dev-python/rebulk/rebulk-2.0.1.ebuild
index 65549c458c2..4032af2c9cc 100644
--- a/dev-python/rebulk/rebulk-2.0.1.ebuild
+++ b/dev-python/rebulk/rebulk-2.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2020-05-21  8:06 Agostino Sarubbo
  0 siblings, 0 replies; 51+ messages in thread
From: Agostino Sarubbo @ 2020-05-21  8:06 UTC (permalink / raw
  To: gentoo-commits

commit:     2d23ce71c94c42e9f9420457c872083d07b9970d
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May 21 08:06:09 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May 21 08:06:09 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d23ce71

dev-python/rebulk: x86 stable wrt bug #722222

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/rebulk-2.0.1.ebuild b/dev-python/rebulk/rebulk-2.0.1.ebuild
index 4032af2c9cc..780383afe8d 100644
--- a/dev-python/rebulk/rebulk-2.0.1.ebuild
+++ b/dev-python/rebulk/rebulk-2.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
 


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

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

commit:     4b49aab03f752cf65c6ba3b17fb235da93a27ee2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  1 04:52:15 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug  2 06:45:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b49aab0

dev-python/rebulk: mark ALLARCHES

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/metadata.xml b/dev-python/rebulk/metadata.xml
index a513aaa33da..42103a2395f 100644
--- a/dev-python/rebulk/metadata.xml
+++ b/dev-python/rebulk/metadata.xml
@@ -5,6 +5,7 @@
 		<email>python@gentoo.org</email>
 		<name>Python</name>
 	</maintainer>
+	<stabilize-allarches/>
 	<upstream>
 		<remote-id type="github">Toilal/rebulk</remote-id>
 		<remote-id type="pypi">rebulk</remote-id>


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

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

commit:     7f46338fed1deb6ad76b252abe51adca251193e4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  1 02:44:18 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug  2 06:45:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f46338f

dev-python/rebulk: add Python 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/rebulk-2.0.1.ebuild b/dev-python/rebulk/rebulk-2.0.1.ebuild
index 780383afe8d..2d0556cbf7f 100644
--- a/dev-python/rebulk/rebulk-2.0.1.ebuild
+++ b/dev-python/rebulk/rebulk-2.0.1.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] 51+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2020-10-27  5:11 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2020-10-27  5:11 UTC (permalink / raw
  To: gentoo-commits

commit:     447b3981af50c91817cc91fc9a3595ca438523d8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 27 05:08:10 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 27 05:08:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=447b3981

dev-python/rebulk: Keyword 2.0.1 arm, #749927

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/rebulk-2.0.1.ebuild b/dev-python/rebulk/rebulk-2.0.1.ebuild
index 2d0556cbf7f..1a4384f3807 100644
--- a/dev-python/rebulk/rebulk-2.0.1.ebuild
+++ b/dev-python/rebulk/rebulk-2.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm x86"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2020-10-27 19:58 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2020-10-27 19:58 UTC (permalink / raw
  To: gentoo-commits

commit:     a8510d57e0aecc00bd43fe99113d8336b15ce4d9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 27 19:55:23 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 27 19:55:23 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8510d57

dev-python/rebulk: Keyword 2.0.1 arm64, #749927

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/rebulk-2.0.1.ebuild b/dev-python/rebulk/rebulk-2.0.1.ebuild
index 1a4384f3807..a1e0c8ec50a 100644
--- a/dev-python/rebulk/rebulk-2.0.1.ebuild
+++ b/dev-python/rebulk/rebulk-2.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2020-12-24  0:19 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2020-12-24  0:19 UTC (permalink / raw
  To: gentoo-commits

commit:     fe0935bd6d0646cc360dcd6a7431065bd7da6f44
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 24 00:15:39 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Dec 24 00:19:29 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe0935bd

dev-python/rebulk: Bump to 3.0.0

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

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

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 6af83f50253..9feac58b6a6 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1 +1,2 @@
 DIST rebulk-2.0.1.tar.gz 258115 BLAKE2B d19210911cf89cb7c371819e384da95c2159eb92abf9f027cbdf1803a18054c556e73364ae10c5bb0b5007cbdb2156b2118d22d6e278b6a02055bacbcbdbc322 SHA512 7d453b7ba952994dec3258aa95a3f6090e6f8afb5a674c1b5e54e036f41022b887d3d65d21f2023ae6e2596cce3baf52d33fc23708498a4f0aef26d3594c8289
+DIST rebulk-3.0.0.gh.tar.gz 252364 BLAKE2B 669f25fa4cf25d4de426552eafd1f3463c05e42eb6f587b8c15d0d319c9c81e515d8461c5c412bd89a483d619374af0a93849deb0ccb3af9ccd7617ebd908504 SHA512 eb474b8b8509f291938bc3c96ef591b8233a41b9eb28f7957f3d20e098140ac6d80a1337c6ff1c89eeea4c34f94eb37af811d2200a8f2a574fc93b8fa1ea3c5d

diff --git a/dev-python/rebulk/rebulk-3.0.0.ebuild b/dev-python/rebulk/rebulk-3.0.0.ebuild
new file mode 100644
index 00000000000..35dcb15832c
--- /dev/null
+++ b/dev-python/rebulk/rebulk-3.0.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
+SRC_URI="
+	https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2020-12-25 21:51 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2020-12-25 21:51 UTC (permalink / raw
  To: gentoo-commits

commit:     54d37d147d33a9dee25e9eafb7164ed2392c7c46
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 25 21:50:38 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 25 21:51:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d37d14

dev-python/rebulk: Bump to 3.0.1

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

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

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 9feac58b6a6..3f40831c065 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,2 +1,3 @@
 DIST rebulk-2.0.1.tar.gz 258115 BLAKE2B d19210911cf89cb7c371819e384da95c2159eb92abf9f027cbdf1803a18054c556e73364ae10c5bb0b5007cbdb2156b2118d22d6e278b6a02055bacbcbdbc322 SHA512 7d453b7ba952994dec3258aa95a3f6090e6f8afb5a674c1b5e54e036f41022b887d3d65d21f2023ae6e2596cce3baf52d33fc23708498a4f0aef26d3594c8289
 DIST rebulk-3.0.0.gh.tar.gz 252364 BLAKE2B 669f25fa4cf25d4de426552eafd1f3463c05e42eb6f587b8c15d0d319c9c81e515d8461c5c412bd89a483d619374af0a93849deb0ccb3af9ccd7617ebd908504 SHA512 eb474b8b8509f291938bc3c96ef591b8233a41b9eb28f7957f3d20e098140ac6d80a1337c6ff1c89eeea4c34f94eb37af811d2200a8f2a574fc93b8fa1ea3c5d
+DIST rebulk-3.0.1.gh.tar.gz 252585 BLAKE2B ff10847d9743972c65a6a5ae3efe77acf0364770c2998401ac08d22a829bc25caf1e0c2a7decd0c2546d2bceb05b094cbd9d9cfcc7127d433b8c30fd6084c5bb SHA512 21d022bb564a416885139aa673b3fc8b762817df12d8868a2a0e8d99cc813b781d04bad4372e5ac0dbbe6239d879c506639dd87c89f92faf078ff306239d6b6d

diff --git a/dev-python/rebulk/rebulk-3.0.1.ebuild b/dev-python/rebulk/rebulk-3.0.1.ebuild
new file mode 100644
index 00000000000..35dcb15832c
--- /dev/null
+++ b/dev-python/rebulk/rebulk-3.0.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
+SRC_URI="
+	https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2021-01-27  3:06 Sam James
  0 siblings, 0 replies; 51+ messages in thread
From: Sam James @ 2021-01-27  3:06 UTC (permalink / raw
  To: gentoo-commits

commit:     e0287d02fef32f29a496fc1e956671340005715b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 03:05:59 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 27 03:05:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0287d02

dev-python/rebulk: Stabilize 3.0.1 ALLARCHES, #767121

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/rebulk-3.0.1.ebuild b/dev-python/rebulk/rebulk-3.0.1.ebuild
index 35dcb15832c..6fe9df97fc3 100644
--- a/dev-python/rebulk/rebulk-3.0.1.ebuild
+++ b/dev-python/rebulk/rebulk-3.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 distutils_enable_tests pytest
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2021-01-27  9:00 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2021-01-27  9:00 UTC (permalink / raw
  To: gentoo-commits

commit:     173332bf318fd3d0d543222d4a699065d9781b2a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 08:58:22 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jan 27 08:58:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=173332bf

dev-python/rebulk: Remove old

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

 dev-python/rebulk/Manifest            |  2 --
 dev-python/rebulk/rebulk-2.0.1.ebuild | 30 ------------------------------
 dev-python/rebulk/rebulk-3.0.0.ebuild | 30 ------------------------------
 3 files changed, 62 deletions(-)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 3f40831c065..84de9254d1d 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,3 +1 @@
-DIST rebulk-2.0.1.tar.gz 258115 BLAKE2B d19210911cf89cb7c371819e384da95c2159eb92abf9f027cbdf1803a18054c556e73364ae10c5bb0b5007cbdb2156b2118d22d6e278b6a02055bacbcbdbc322 SHA512 7d453b7ba952994dec3258aa95a3f6090e6f8afb5a674c1b5e54e036f41022b887d3d65d21f2023ae6e2596cce3baf52d33fc23708498a4f0aef26d3594c8289
-DIST rebulk-3.0.0.gh.tar.gz 252364 BLAKE2B 669f25fa4cf25d4de426552eafd1f3463c05e42eb6f587b8c15d0d319c9c81e515d8461c5c412bd89a483d619374af0a93849deb0ccb3af9ccd7617ebd908504 SHA512 eb474b8b8509f291938bc3c96ef591b8233a41b9eb28f7957f3d20e098140ac6d80a1337c6ff1c89eeea4c34f94eb37af811d2200a8f2a574fc93b8fa1ea3c5d
 DIST rebulk-3.0.1.gh.tar.gz 252585 BLAKE2B ff10847d9743972c65a6a5ae3efe77acf0364770c2998401ac08d22a829bc25caf1e0c2a7decd0c2546d2bceb05b094cbd9d9cfcc7127d433b8c30fd6084c5bb SHA512 21d022bb564a416885139aa673b3fc8b762817df12d8868a2a0e8d99cc813b781d04bad4372e5ac0dbbe6239d879c506639dd87c89f92faf078ff306239d6b6d

diff --git a/dev-python/rebulk/rebulk-2.0.1.ebuild b/dev-python/rebulk/rebulk-2.0.1.ebuild
deleted file mode 100644
index a1e0c8ec50a..00000000000
--- a/dev-python/rebulk/rebulk-2.0.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}

diff --git a/dev-python/rebulk/rebulk-3.0.0.ebuild b/dev-python/rebulk/rebulk-3.0.0.ebuild
deleted file mode 100644
index 35dcb15832c..00000000000
--- a/dev-python/rebulk/rebulk-3.0.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
-SRC_URI="
-	https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}


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

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

commit:     fe234f72ad61969c30fdef35f70a83d276acbd7c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  5 18:07:36 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jun  5 18:10:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe234f72

dev-python/rebulk: Enable py3.10

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

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

diff --git a/dev-python/rebulk/rebulk-3.0.1.ebuild b/dev-python/rebulk/rebulk-3.0.1.ebuild
index 98ee604172f..40d18384be6 100644
--- a/dev-python/rebulk/rebulk-3.0.1.ebuild
+++ b/dev-python/rebulk/rebulk-3.0.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2021-11-05  9:25 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2021-11-05  9:25 UTC (permalink / raw
  To: gentoo-commits

commit:     30d658185f6b88acdce3cc0224c27f9f1dfaff26
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  5 09:23:52 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov  5 09:25:31 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30d65818

dev-python/rebulk: Bump to 3.1.0

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

 dev-python/rebulk/Manifest            |  1 +
 dev-python/rebulk/rebulk-3.1.0.ebuild | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 84de9254d1d..28a47e5c798 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1 +1,2 @@
 DIST rebulk-3.0.1.gh.tar.gz 252585 BLAKE2B ff10847d9743972c65a6a5ae3efe77acf0364770c2998401ac08d22a829bc25caf1e0c2a7decd0c2546d2bceb05b094cbd9d9cfcc7127d433b8c30fd6084c5bb SHA512 21d022bb564a416885139aa673b3fc8b762817df12d8868a2a0e8d99cc813b781d04bad4372e5ac0dbbe6239d879c506639dd87c89f92faf078ff306239d6b6d
+DIST rebulk-3.1.0.gh.tar.gz 252775 BLAKE2B 9624a02f8df950e3efa77c0fe7c3dfa083c255b10c118a571aa4f4fb8ee95f663f7ba45e66e77ec4c3fb801a6a1e8e369b04a6ec1323aeed6c8b13deb286614c SHA512 591bbfeef1d472722d6250cd35f308c0ac9c5f2dee77f4702f1d9fa1e41bb1a16bbf7c4aa634d0b4f43d7f9093bc1e2faa38edb0170212fea2502ff6a284fcab

diff --git a/dev-python/rebulk/rebulk-3.1.0.ebuild b/dev-python/rebulk/rebulk-3.1.0.ebuild
new file mode 100644
index 00000000000..02e8eac73d2
--- /dev/null
+++ b/dev-python/rebulk/rebulk-3.1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Python library that performs advanced searches in strings"
+HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
+SRC_URI="
+	https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="MIT Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	# Disable unconditional dependency on dev-python/pytest-runner.
+	sed -i -e "s|'pytest-runner'||g" setup.py || die
+
+	distutils-r1_python_prepare_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2021-12-10 12:11 Jakov Smolić
  0 siblings, 0 replies; 51+ messages in thread
From: Jakov Smolić @ 2021-12-10 12:11 UTC (permalink / raw
  To: gentoo-commits

commit:     6e9d1e1c659a0ac59a3cb44910c7b9358c51341f
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 10 12:11:50 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Dec 10 12:11:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e9d1e1c

dev-python/rebulk: Stabilize 3.1.0 ALLARCHES, #828750

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

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

diff --git a/dev-python/rebulk/rebulk-3.1.0.ebuild b/dev-python/rebulk/rebulk-3.1.0.ebuild
index 02e8eac73d2e..07104a1fea0b 100644
--- a/dev-python/rebulk/rebulk-3.1.0.ebuild
+++ b/dev-python/rebulk/rebulk-3.1.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 distutils_enable_tests pytest
 


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

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

commit:     5f07c2bba3a0aab8ccdcc65323cf681612b9151d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 10 15:50:28 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 10 17:11:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f07c2bb

dev-python/rebulk: drop 3.0.1

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

 dev-python/rebulk/Manifest            |  1 -
 dev-python/rebulk/rebulk-3.0.1.ebuild | 30 ------------------------------
 2 files changed, 31 deletions(-)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 28a47e5c7984..069eda8d1fc1 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,2 +1 @@
-DIST rebulk-3.0.1.gh.tar.gz 252585 BLAKE2B ff10847d9743972c65a6a5ae3efe77acf0364770c2998401ac08d22a829bc25caf1e0c2a7decd0c2546d2bceb05b094cbd9d9cfcc7127d433b8c30fd6084c5bb SHA512 21d022bb564a416885139aa673b3fc8b762817df12d8868a2a0e8d99cc813b781d04bad4372e5ac0dbbe6239d879c506639dd87c89f92faf078ff306239d6b6d
 DIST rebulk-3.1.0.gh.tar.gz 252775 BLAKE2B 9624a02f8df950e3efa77c0fe7c3dfa083c255b10c118a571aa4f4fb8ee95f663f7ba45e66e77ec4c3fb801a6a1e8e369b04a6ec1323aeed6c8b13deb286614c SHA512 591bbfeef1d472722d6250cd35f308c0ac9c5f2dee77f4702f1d9fa1e41bb1a16bbf7c4aa634d0b4f43d7f9093bc1e2faa38edb0170212fea2502ff6a284fcab

diff --git a/dev-python/rebulk/rebulk-3.0.1.ebuild b/dev-python/rebulk/rebulk-3.0.1.ebuild
deleted file mode 100644
index 40d18384be6f..000000000000
--- a/dev-python/rebulk/rebulk-3.0.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
-SRC_URI="
-	https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2022-05-19  7:32 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2022-05-19  7:32 UTC (permalink / raw
  To: gentoo-commits

commit:     bb055e083183558606e709cf2fc858c2096bf888
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 07:25:05 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu May 19 07:31:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb055e08

dev-python/rebulk: Use PEP517 build

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

 .../rebulk/{rebulk-3.1.0.ebuild => rebulk-3.1.0-r1.ebuild} | 14 ++++++++++----
 dev-python/rebulk/rebulk-3.1.0.ebuild                      |  2 +-
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/dev-python/rebulk/rebulk-3.1.0.ebuild b/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
similarity index 73%
copy from dev-python/rebulk/rebulk-3.1.0.ebuild
copy to dev-python/rebulk/rebulk-3.1.0-r1.ebuild
index 07104a1fea0b..584c608cc428 100644
--- a/dev-python/rebulk/rebulk-3.1.0.ebuild
+++ b/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
@@ -1,20 +1,26 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{8..10} )
+
 inherit distutils-r1
 
 DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
+HOMEPAGE="
+	https://github.com/Toilal/rebulk/
+	https://pypi.org/project/rebulk/
+"
 SRC_URI="
 	https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
+		-> ${P}.gh.tar.gz
+"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 distutils_enable_tests pytest
 

diff --git a/dev-python/rebulk/rebulk-3.1.0.ebuild b/dev-python/rebulk/rebulk-3.1.0.ebuild
index 07104a1fea0b..0b51e9b993f6 100644
--- a/dev-python/rebulk/rebulk-3.1.0.ebuild
+++ b/dev-python/rebulk/rebulk-3.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2022-05-19  7:32 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2022-05-19  7:32 UTC (permalink / raw
  To: gentoo-commits

commit:     6fbe3180ebca3a293574d8a3a9513aa37fcfee13
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 07:25:16 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu May 19 07:31:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fbe3180

dev-python/rebulk: Enable py3.11

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

 dev-python/rebulk/rebulk-3.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rebulk/rebulk-3.1.0-r1.ebuild b/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
index 584c608cc428..2c1ff280eec2 100644
--- a/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
+++ b/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2022-06-22 10:10 Agostino Sarubbo
  0 siblings, 0 replies; 51+ messages in thread
From: Agostino Sarubbo @ 2022-06-22 10:10 UTC (permalink / raw
  To: gentoo-commits

commit:     2543412005adce0f8cdf4b16c038b5b52c82ba75
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 22 10:08:07 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jun 22 10:08:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25434120

dev-python/rebulk: amd64/x86 stable (ALLARCHES policy) wrt bug #853403

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/rebulk/rebulk-3.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rebulk/rebulk-3.1.0-r1.ebuild b/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
index 2c1ff280eec2..83e6b774ff5a 100644
--- a/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
+++ b/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 distutils_enable_tests pytest
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2022-06-22 11:50 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2022-06-22 11:50 UTC (permalink / raw
  To: gentoo-commits

commit:     5b11dece386aa46808466cde051ccd63e26a8fe0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 22 11:40:29 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jun 22 11:50:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b11dece

dev-python/rebulk: Remove old

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

 dev-python/rebulk/rebulk-3.1.0.ebuild | 29 -----------------------------
 1 file changed, 29 deletions(-)

diff --git a/dev-python/rebulk/rebulk-3.1.0.ebuild b/dev-python/rebulk/rebulk-3.1.0.ebuild
deleted file mode 100644
index 0b51e9b993f6..000000000000
--- a/dev-python/rebulk/rebulk-3.1.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python library that performs advanced searches in strings"
-HOMEPAGE="https://github.com/Toilal/rebulk https://pypi.org/project/rebulk/"
-SRC_URI="
-	https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2023-02-19  4:32 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2023-02-19  4:32 UTC (permalink / raw
  To: gentoo-commits

commit:     432ba82ecdcdae75c435f9f7b0a379d6a2da3f16
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 04:19:49 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 19 04:19:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=432ba82e

dev-python/rebulk: Bump to 3.2.0

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

 dev-python/rebulk/Manifest            |  1 +
 dev-python/rebulk/rebulk-3.2.0.ebuild | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 069eda8d1fc1..2ac8ae77309a 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1 +1,2 @@
 DIST rebulk-3.1.0.gh.tar.gz 252775 BLAKE2B 9624a02f8df950e3efa77c0fe7c3dfa083c255b10c118a571aa4f4fb8ee95f663f7ba45e66e77ec4c3fb801a6a1e8e369b04a6ec1323aeed6c8b13deb286614c SHA512 591bbfeef1d472722d6250cd35f308c0ac9c5f2dee77f4702f1d9fa1e41bb1a16bbf7c4aa634d0b4f43d7f9093bc1e2faa38edb0170212fea2502ff6a284fcab
+DIST rebulk-3.2.0.gh.tar.gz 254923 BLAKE2B ea9501aa70d7842fecab8621ca7c58aed76dba419c46f92e0fc7fa7e300f0ac9d7a457fc3b6bd14d02296449e15c918d63be8060ab1df4a51fe77e383daf6c33 SHA512 17928a0fcf1a78a592289bb9c7c0ea48e8b4d93ccd77793065a51a54258c2af857e9da6955cad552fa53caf76a95ee002a789c35fe248a909971c8afc7b6dfa5

diff --git a/dev-python/rebulk/rebulk-3.2.0.ebuild b/dev-python/rebulk/rebulk-3.2.0.ebuild
new file mode 100644
index 000000000000..2040332eb271
--- /dev/null
+++ b/dev-python/rebulk/rebulk-3.2.0.ebuild
@@ -0,0 +1,32 @@
+# 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 library that performs advanced searches in strings"
+HOMEPAGE="
+	https://github.com/Toilal/rebulk/
+	https://pypi.org/project/rebulk/
+"
+SRC_URI="
+	https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	# Remove base64-encoded zip archive with pytest.
+	rm runtests.py || die
+
+	distutils-r1_python_prepare_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2023-03-24 20:27 Arthur Zamarin
  0 siblings, 0 replies; 51+ messages in thread
From: Arthur Zamarin @ 2023-03-24 20:27 UTC (permalink / raw
  To: gentoo-commits

commit:     0e18388970aec83a2e023ad3736b979a066fdb8f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 20:27:48 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 24 20:27:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e183889

dev-python/rebulk: Stabilize 3.2.0 ALLARCHES, #902935

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

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

diff --git a/dev-python/rebulk/rebulk-3.2.0.ebuild b/dev-python/rebulk/rebulk-3.2.0.ebuild
index 2040332eb271..aba7dddd55dc 100644
--- a/dev-python/rebulk/rebulk-3.2.0.ebuild
+++ b/dev-python/rebulk/rebulk-3.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 distutils_enable_tests pytest
 


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

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

commit:     31c1b5938d0fa9afd3f118c6ef44fd3585ef5042
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 25 04:52:37 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 25 05:01:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c1b593

dev-python/rebulk: Remove old

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

 dev-python/rebulk/Manifest               |  1 -
 dev-python/rebulk/rebulk-3.1.0-r1.ebuild | 35 --------------------------------
 2 files changed, 36 deletions(-)

diff --git a/dev-python/rebulk/Manifest b/dev-python/rebulk/Manifest
index 2ac8ae77309a..8cefaeb936ce 100644
--- a/dev-python/rebulk/Manifest
+++ b/dev-python/rebulk/Manifest
@@ -1,2 +1 @@
-DIST rebulk-3.1.0.gh.tar.gz 252775 BLAKE2B 9624a02f8df950e3efa77c0fe7c3dfa083c255b10c118a571aa4f4fb8ee95f663f7ba45e66e77ec4c3fb801a6a1e8e369b04a6ec1323aeed6c8b13deb286614c SHA512 591bbfeef1d472722d6250cd35f308c0ac9c5f2dee77f4702f1d9fa1e41bb1a16bbf7c4aa634d0b4f43d7f9093bc1e2faa38edb0170212fea2502ff6a284fcab
 DIST rebulk-3.2.0.gh.tar.gz 254923 BLAKE2B ea9501aa70d7842fecab8621ca7c58aed76dba419c46f92e0fc7fa7e300f0ac9d7a457fc3b6bd14d02296449e15c918d63be8060ab1df4a51fe77e383daf6c33 SHA512 17928a0fcf1a78a592289bb9c7c0ea48e8b4d93ccd77793065a51a54258c2af857e9da6955cad552fa53caf76a95ee002a789c35fe248a909971c8afc7b6dfa5

diff --git a/dev-python/rebulk/rebulk-3.1.0-r1.ebuild b/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
deleted file mode 100644
index fdf9eb3b75f7..000000000000
--- a/dev-python/rebulk/rebulk-3.1.0-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# 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 library that performs advanced searches in strings"
-HOMEPAGE="
-	https://github.com/Toilal/rebulk/
-	https://pypi.org/project/rebulk/
-"
-SRC_URI="
-	https://github.com/Toilal/rebulk/archive/v${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	# Remove base64-encoded zip archive with pytest.
-	rm runtests.py || die
-
-	# Disable unconditional dependency on dev-python/pytest-runner.
-	sed -i -e "s|'pytest-runner'||g" setup.py || die
-
-	distutils-r1_python_prepare_all
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2023-05-31 19:22 Arthur Zamarin
  0 siblings, 0 replies; 51+ messages in thread
From: Arthur Zamarin @ 2023-05-31 19:22 UTC (permalink / raw
  To: gentoo-commits

commit:     2feab26af887c6ab201aef97636da09b94399dae
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 16:47:26 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May 31 19:22:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2feab26a

dev-python/rebulk: enable py3.12

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

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

diff --git a/dev-python/rebulk/rebulk-3.2.0.ebuild b/dev-python/rebulk/rebulk-3.2.0.ebuild
index aba7dddd55dc..eafee9e3e351 100644
--- a/dev-python/rebulk/rebulk-3.2.0.ebuild
+++ b/dev-python/rebulk/rebulk-3.2.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2023-11-24 14:43 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2023-11-24 14:43 UTC (permalink / raw
  To: gentoo-commits

commit:     314153327d4ac06d471dcb9614c1586b06a8b359
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 24 14:43:28 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 24 14:43:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31415332

dev-python/rebulk: Stabilize 3.2.0 arm64, #918237

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

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

diff --git a/dev-python/rebulk/rebulk-3.2.0.ebuild b/dev-python/rebulk/rebulk-3.2.0.ebuild
index eafee9e3e351..12a6b132057a 100644
--- a/dev-python/rebulk/rebulk-3.2.0.ebuild
+++ b/dev-python/rebulk/rebulk-3.2.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm arm64 x86"
 
 distutils_enable_tests pytest
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/
@ 2024-05-18  8:59 Michał Górny
  0 siblings, 0 replies; 51+ messages in thread
From: Michał Górny @ 2024-05-18  8:59 UTC (permalink / raw
  To: gentoo-commits

commit:     8cd8523846bed0805547efa8f95ec023f2ecfe8a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 08:43:26 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 08:59:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd85238

dev-python/rebulk: Enable py3.13

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

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

diff --git a/dev-python/rebulk/rebulk-3.2.0.ebuild b/dev-python/rebulk/rebulk-3.2.0.ebuild
index 12a6b132057a..28396133b8b0 100644
--- a/dev-python/rebulk/rebulk-3.2.0.ebuild
+++ b/dev-python/rebulk/rebulk-3.2.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1
 


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

end of thread, other threads:[~2024-05-18  8:59 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-11 12:24 [gentoo-commits] repo/gentoo:master commit in: dev-python/rebulk/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2024-05-18  8:59 Michał Górny
2023-11-24 14:43 Michał Górny
2023-05-31 19:22 Arthur Zamarin
2023-03-25  5:02 Michał Górny
2023-03-24 20:27 Arthur Zamarin
2023-02-19  4:32 Michał Górny
2022-06-22 11:50 Michał Górny
2022-06-22 10:10 Agostino Sarubbo
2022-05-19  7:32 Michał Górny
2022-05-19  7:32 Michał Górny
2021-12-10 17:12 Arthur Zamarin
2021-12-10 12:11 Jakov Smolić
2021-11-05  9:25 Michał Górny
2021-06-05 18:10 Michał Górny
2021-01-27  9:00 Michał Górny
2021-01-27  3:06 Sam James
2020-12-25 21:51 Michał Górny
2020-12-24  0:19 Michał Górny
2020-10-27 19:58 Sam James
2020-10-27  5:11 Sam James
2020-08-02  6:46 Michał Górny
2020-08-02  6:46 Michał Górny
2020-05-21  8:06 Agostino Sarubbo
2020-05-21  7:53 Agostino Sarubbo
2020-05-03  7:08 Michał Górny
2020-05-03  7:08 Michał Górny
2020-03-25 11:06 Michał Górny
2020-03-25 11:06 Michał Górny
2020-03-25 11:06 Michał Górny
2020-02-05 21:21 Michał Górny
2018-02-07 19:22 Michał Górny
2017-08-19  0:31 Thomas Deutschmann
2017-07-30  9:44 Michał Górny
2017-07-19 18:06 Tobias Klausmann
2017-06-11  8:50 Michael Palimaka
2017-05-05 14:59 Manuel Rüger
2017-01-16 17:55 David Seifert
2017-01-16 10:15 Agostino Sarubbo
2017-01-16  9:49 Agostino Sarubbo
2016-12-10 23:04 David Seifert
2016-12-10 23:04 David Seifert
2016-12-10 23:04 David Seifert
2016-12-05 20:22 Pacho Ramos
2016-09-20 21:12 David Seifert
2016-09-20 21:12 David Seifert
2016-09-11 12:24 David Seifert
2016-08-22 14:10 Göktürk Yüksek
2016-08-22 14:09 Göktürk Yüksek
2016-05-31  7:51 Patrice Clement
2016-05-12 11:40 Ian Delaney

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