* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/redbaron/
@ 2020-05-02 13:03 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2020-05-02 13:03 UTC (permalink / raw
To: gentoo-commits
commit: 342d4d4a755c3fc0d09bf832325f3d596ba4b090
Author: Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Sat May 2 13:03:02 2020 +0000
Commit: Maciej Barć <xgqt <AT> protonmail <DOT> com>
CommitDate: Sat May 2 13:03:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=342d4d4a
dev-python/redbaron: new package; add version 0.9
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>
dev-python/redbaron/Manifest | 1 +
dev-python/redbaron/metadata.xml | 12 ++++++++++++
dev-python/redbaron/redbaron-0.9.ebuild | 32 ++++++++++++++++++++++++++++++++
3 files changed, 45 insertions(+)
diff --git a/dev-python/redbaron/Manifest b/dev-python/redbaron/Manifest
new file mode 100644
index 0000000..4ceb8d5
--- /dev/null
+++ b/dev-python/redbaron/Manifest
@@ -0,0 +1 @@
+DIST redbaron-0.9.tar.gz 708544 BLAKE2B e3314a29e66fe2e91ef28183f5e9f6c91117963bfffa0bcc1fb62602bc87b1c5fcf058ff545c3515e0de8077f70298aa788960e7409cbde6a0199701947786f6 SHA512 db99be12a1a0a3caab80f8b319d2966ffe5f80b15e5f838212bdb327c75c411ee273b4ff44dae76010165bd563275eb50c8c5b8d87284a493114224603e9cb25
diff --git a/dev-python/redbaron/metadata.xml b/dev-python/redbaron/metadata.xml
new file mode 100644
index 0000000..4345ad7
--- /dev/null
+++ b/dev-python/redbaron/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>xgqt@protonmail.com</email>
+ <name>Maciej Barć</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">PyCQA/redbaron</remote-id>
+ <remote-id type="pypi">redbaron</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.ebuild
new file mode 100644
index 0000000..e57d741
--- /dev/null
+++ b/dev-python/redbaron/redbaron-0.9.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="A FST for python to make writing refactoring code a realistic task"
+HOMEPAGE="https://redbaron.readthedocs.io/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ >=dev-python/baron-0.7[${PYTHON_USEDEP}]
+ dev-python/pygments[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+"
+
+python_test() {
+ # Remove "__pycache__". Reason: unique basename
+ rm -rfd "${S}"/tests/__pycache__ || die
+
+ # Skip tests. Reason: calls fixture "red" directly
+ rm "${S}"/tests/test_bounding_box.py || die
+
+ pytest -v || die "Tests fail with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/redbaron/
@ 2020-05-02 17:22 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2020-05-02 17:22 UTC (permalink / raw
To: gentoo-commits
commit: cb3ea41778c94e1508bfe94fac68e0c91c6db783
Author: Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Sat May 2 17:21:36 2020 +0000
Commit: Maciej Barć <xgqt <AT> protonmail <DOT> com>
CommitDate: Sat May 2 17:21:36 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cb3ea417
dev-python/redbaron: fix QA
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>
dev-python/redbaron/redbaron-0.9.ebuild | 22 ++++++++++++++++++----
1 file changed, 18 insertions(+), 4 deletions(-)
diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.ebuild
index e57d741..9f0e3e8 100644
--- a/dev-python/redbaron/redbaron-0.9.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.ebuild
@@ -8,25 +8,39 @@ PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="A FST for python to make writing refactoring code a realistic task"
-HOMEPAGE="https://redbaron.readthedocs.io/"
+HOMEPAGE="
+ https://redbaron.readthedocs.io/
+ https://github.com/PyCQA/redbaron
+"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64"
+IUSE="doc"
+DEPEND="
+ doc? (
+ dev-python/ipython[matplotlib,${PYTHON_USEDEP}]
+ dev-python/sphinx[${PYTHON_USEDEP}]
+ )
+"
RDEPEND="
>=dev-python/baron-0.7[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
"
-python_test() {
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs
+
+src_prepare() {
+ default
+
# Remove "__pycache__". Reason: unique basename
rm -rfd "${S}"/tests/__pycache__ || die
# Skip tests. Reason: calls fixture "red" directly
rm "${S}"/tests/test_bounding_box.py || die
-
- pytest -v || die "Tests fail with ${EPYTHON}"
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/redbaron/
@ 2020-05-03 8:33 Andrew Ammerlaan
0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-05-03 8:33 UTC (permalink / raw
To: gentoo-commits
commit: d13f0f8fd3051a2b6736a5f4911403d686179b6a
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun May 3 08:33:01 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun May 3 08:33:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d13f0f8f
dev-python/redbaron: put deps in distutils_enable_sphinx
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-python/redbaron/redbaron-0.9.ebuild | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.ebuild
index 9f0e3e8..1623ecc 100644
--- a/dev-python/redbaron/redbaron-0.9.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.ebuild
@@ -17,14 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64"
-IUSE="doc"
-DEPEND="
- doc? (
- dev-python/ipython[matplotlib,${PYTHON_USEDEP}]
- dev-python/sphinx[${PYTHON_USEDEP}]
- )
-"
RDEPEND="
>=dev-python/baron-0.7[${PYTHON_USEDEP}]
dev-python/pygments[${PYTHON_USEDEP}]
@@ -33,7 +26,7 @@ RDEPEND="
distutils_enable_tests pytest
-distutils_enable_sphinx docs
+distutils_enable_sphinx docs dev-python/ipython
src_prepare() {
default
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/redbaron/
2020-05-03 9:33 [gentoo-commits] repo/proj/guru:master commit in: dev-python/redbaron/ Andrew Ammerlaan
@ 2020-05-03 8:52 ` Andrew Ammerlaan
0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-05-03 8:52 UTC (permalink / raw
To: gentoo-commits
commit: 40036849cf873f3a043289217a91da2e7561e55e
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun May 3 08:43:05 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun May 3 08:43:05 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=40036849
dev-python/redbaron: use python_prepare_all
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-python/redbaron/redbaron-0.9.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.ebuild
index 1623ecc..c323226 100644
--- a/dev-python/redbaron/redbaron-0.9.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.ebuild
@@ -28,12 +28,12 @@ distutils_enable_tests pytest
distutils_enable_sphinx docs dev-python/ipython
-src_prepare() {
- default
-
+python_prepare_all() {
# Remove "__pycache__". Reason: unique basename
rm -rfd "${S}"/tests/__pycache__ || die
# Skip tests. Reason: calls fixture "red" directly
rm "${S}"/tests/test_bounding_box.py || die
+
+ distutils-r1_python_prepare_all
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/redbaron/
@ 2020-05-03 9:33 Andrew Ammerlaan
2020-05-03 8:52 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
0 siblings, 1 reply; 8+ messages in thread
From: Andrew Ammerlaan @ 2020-05-03 9:33 UTC (permalink / raw
To: gentoo-commits
commit: 40036849cf873f3a043289217a91da2e7561e55e
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun May 3 08:43:05 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun May 3 08:43:05 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=40036849
dev-python/redbaron: use python_prepare_all
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-python/redbaron/redbaron-0.9.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.ebuild
index 1623ecc..c323226 100644
--- a/dev-python/redbaron/redbaron-0.9.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.ebuild
@@ -28,12 +28,12 @@ distutils_enable_tests pytest
distutils_enable_sphinx docs dev-python/ipython
-src_prepare() {
- default
-
+python_prepare_all() {
# Remove "__pycache__". Reason: unique basename
rm -rfd "${S}"/tests/__pycache__ || die
# Skip tests. Reason: calls fixture "red" directly
rm "${S}"/tests/test_bounding_box.py || die
+
+ distutils-r1_python_prepare_all
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/redbaron/
@ 2020-09-28 7:04 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2020-09-28 7:04 UTC (permalink / raw
To: gentoo-commits
commit: c7cd0c35a1fab8fb6a82740042dca947bc740156
Author: Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Mon Sep 28 07:04:20 2020 +0000
Commit: Maciej Barć <xgqt <AT> protonmail <DOT> com>
CommitDate: Mon Sep 28 07:04:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c7cd0c35
dev-python/redbaron: bump to 0.9.2; add python3_8 impl compat
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>
dev-python/redbaron/Manifest | 1 +
dev-python/redbaron/{redbaron-0.9.ebuild => redbaron-0.9.2.ebuild} | 2 +-
dev-python/redbaron/redbaron-0.9.ebuild | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/dev-python/redbaron/Manifest b/dev-python/redbaron/Manifest
index 4ceb8d55..fc44a7a9 100644
--- a/dev-python/redbaron/Manifest
+++ b/dev-python/redbaron/Manifest
@@ -1 +1,2 @@
+DIST redbaron-0.9.2.tar.gz 709401 BLAKE2B 06be75576fafd9ca69fd4f46bbeead0c9a8691c49ab233a53e91e462f87a48e0fdd4b314bb23fa91fb60ea022fe535b89371fb1f82418240117d50e214125e45 SHA512 a91670b0c48ac399ea9a000be42f1d4d4451ec39b58b2a7029a3bcdf664136dab3ff8e81284b384ddabfb77a5fa43ce4d75041d3aed5685d451ab620dfa23e9a
DIST redbaron-0.9.tar.gz 708544 BLAKE2B e3314a29e66fe2e91ef28183f5e9f6c91117963bfffa0bcc1fb62602bc87b1c5fcf058ff545c3515e0de8077f70298aa788960e7409cbde6a0199701947786f6 SHA512 db99be12a1a0a3caab80f8b319d2966ffe5f80b15e5f838212bdb327c75c411ee273b4ff44dae76010165bd563275eb50c8c5b8d87284a493114224603e9cb25
diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.2.ebuild
similarity index 96%
copy from dev-python/redbaron/redbaron-0.9.ebuild
copy to dev-python/redbaron/redbaron-0.9.2.ebuild
index 198a05df..821273bf 100644
--- a/dev-python/redbaron/redbaron-0.9.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.2.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{7,8} )
inherit distutils-r1
diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.ebuild
index 198a05df..821273bf 100644
--- a/dev-python/redbaron/redbaron-0.9.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{7,8} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/redbaron/
@ 2020-11-11 22:27 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2020-11-11 22:27 UTC (permalink / raw
To: gentoo-commits
commit: c431f0f89489e12004941fdeff9238c82cfb989a
Author: Maciej Barć <xgqt <AT> protonmail <DOT> com>
AuthorDate: Wed Nov 11 22:27:05 2020 +0000
Commit: Maciej Barć <xgqt <AT> protonmail <DOT> com>
CommitDate: Wed Nov 11 22:27:05 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c431f0f8
dev-python/redbaron: bump python compat
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt <AT> protonmail.com>
dev-python/redbaron/redbaron-0.9.2.ebuild | 2 +-
dev-python/redbaron/redbaron-0.9.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/redbaron/redbaron-0.9.2.ebuild b/dev-python/redbaron/redbaron-0.9.2.ebuild
index 821273bf..af6cb27a 100644
--- a/dev-python/redbaron/redbaron-0.9.2.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.2.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.ebuild
index 821273bf..af6cb27a 100644
--- a/dev-python/redbaron/redbaron-0.9.ebuild
+++ b/dev-python/redbaron/redbaron-0.9.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/redbaron/
@ 2021-12-07 20:42 Maciej Barć
0 siblings, 0 replies; 8+ messages in thread
From: Maciej Barć @ 2021-12-07 20:42 UTC (permalink / raw
To: gentoo-commits
commit: 4ddd032ba46974e0aa8eadc2f3027a1a46460ed5
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 7 20:18:57 2021 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Dec 7 20:42:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4ddd032b
dev-python/redbaron: drop to maintainer-needed
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-python/redbaron/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/dev-python/redbaron/metadata.xml b/dev-python/redbaron/metadata.xml
index 7904b370c..325307d16 100644
--- a/dev-python/redbaron/metadata.xml
+++ b/dev-python/redbaron/metadata.xml
@@ -1,10 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>xgqt@riseup.net</email>
- <name>Maciej Barć</name>
- </maintainer>
+ <!-- maintainer-needed -->
<upstream>
<remote-id type="github">PyCQA/redbaron</remote-id>
<remote-id type="pypi">redbaron</remote-id>
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2021-12-07 20:42 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-03 9:33 [gentoo-commits] repo/proj/guru:master commit in: dev-python/redbaron/ Andrew Ammerlaan
2020-05-03 8:52 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2021-12-07 20:42 Maciej Barć
2020-11-11 22:27 Maciej Barć
2020-09-28 7:04 Maciej Barć
2020-05-03 8:33 Andrew Ammerlaan
2020-05-02 17:22 Maciej Barć
2020-05-02 13:03 Maciej Barć
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox