public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pep517/
@ 2020-04-25  0:50 Alessandro Barbieri
  0 siblings, 0 replies; 6+ messages in thread
From: Alessandro Barbieri @ 2020-04-25  0:50 UTC (permalink / raw
  To: gentoo-commits

commit:     d8b23f9379b7ac1f4a3a2403dd942490103adfaa
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Apr 25 00:50:25 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Apr 25 00:50:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d8b23f93

dev-python/pep517: new package

doesn't install

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/pep517/Manifest            |  1 +
 dev-python/pep517/metadata.xml        | 18 +++++++++++++++++
 dev-python/pep517/pep517-0.8.2.ebuild | 38 +++++++++++++++++++++++++++++++++++
 3 files changed, 57 insertions(+)

diff --git a/dev-python/pep517/Manifest b/dev-python/pep517/Manifest
new file mode 100644
index 0000000..a21985f
--- /dev/null
+++ b/dev-python/pep517/Manifest
@@ -0,0 +1 @@
+DIST pep517-0.8.2.tar.gz 19057 BLAKE2B 44cecac9cb3542680d9f7f7e89d042313d9dcf00a49b94e589cde1918f62f3f527aec3f0c9afb039f280f072b46dbd78472ef197eec19fd7efd10b3573b7b2d5 SHA512 589af6465fe64ad04a8cf4af048df6a8e644423799b9ddd9f246fb314b5809c0415f7738a6c15280714a7454e53c7212c6a2f3f93d379204ee79b8832b53d307

diff --git a/dev-python/pep517/metadata.xml b/dev-python/pep517/metadata.xml
new file mode 100644
index 0000000..ae26236
--- /dev/null
+++ b/dev-python/pep517/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+  <longdescription lang="en">
+PEP 517 specifies a standard API for systems which build Python packages.
+
+This package contains wrappers around the hooks specified by PEP 517. It provides:
+
+    A mechanism to call the hooks in a subprocess, so they are isolated from the current process.
+    Fallbacks for the optional hooks, so that frontends can call the hooks without checking which are defined.
+    Higher-level functions which install the build dependencies into a temporary environment and build a wheel/sdist using them.
+  </longdescription>
+  <upstream>
+    <remote-id type="github">pypa/pep517</remote-id>
+    <remote-id type="pypi">pep517</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/pep517/pep517-0.8.2.ebuild b/dev-python/pep517/pep517-0.8.2.ebuild
new file mode 100644
index 0000000..d606c6d
--- /dev/null
+++ b/dev-python/pep517/pep517-0.8.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{6,7} )
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+
+inherit distutils-r1
+
+DESCRIPTION="standard API for systems which build Python packages"
+HOMEPAGE="
+	https://github.com/pypa/pep517
+	https://pypi.org/project/pep517
+"
+SRC_URI="https://github.com/pypa/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+	>=dev-python/flit_core-2[${PYTHON_USEDEP}]
+	<dev-python/flit_core-3[${PYTHON_USEDEP}]
+	dev-python/toml[${PYTHON_USEDEP}]
+
+	$(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_{6,7})
+	$(python_gen_cond_dep 'dev-python/zipp[${PYTHON_USEDEP}]' python3_{6,7})
+"
+DEPEND="
+	${RDEPEND}
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pep517/
@ 2020-04-25 19:45 Alessandro Barbieri
  0 siblings, 0 replies; 6+ messages in thread
From: Alessandro Barbieri @ 2020-04-25 19:45 UTC (permalink / raw
  To: gentoo-commits

commit:     34e31abf9a611b49c50b8912567eeff1aa19dfc7
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Apr 25 19:44:11 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Apr 25 19:44:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=34e31abf

dev-python/pep517: now kind-a work

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/pep517/Manifest                                |  2 +-
 .../{pep517-0.8.2.ebuild => pep517-0.8.2-r1.ebuild}       | 15 +++++++++++++--
 2 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/dev-python/pep517/Manifest b/dev-python/pep517/Manifest
index a21985f..71f214b 100644
--- a/dev-python/pep517/Manifest
+++ b/dev-python/pep517/Manifest
@@ -1 +1 @@
-DIST pep517-0.8.2.tar.gz 19057 BLAKE2B 44cecac9cb3542680d9f7f7e89d042313d9dcf00a49b94e589cde1918f62f3f527aec3f0c9afb039f280f072b46dbd78472ef197eec19fd7efd10b3573b7b2d5 SHA512 589af6465fe64ad04a8cf4af048df6a8e644423799b9ddd9f246fb314b5809c0415f7738a6c15280714a7454e53c7212c6a2f3f93d379204ee79b8832b53d307
+DIST pep517-0.8.2.tar.gz 20440 BLAKE2B abddf5acec80ca49b45146c0017d5d0d062283fca1d19c76413f195b22cb804ce32952f2c17a9d2f98d8cf93e93b0b347cddd5086341a20022d7fb78218db354 SHA512 668569a26a4c21a1b8d6828a26bdcdab62b8c4d5fcaba8d9f9a4740e0fce7f071295e28d91349500b4c7be05ab2c2670986de18f01e2afafc1878101e5ef9af2

diff --git a/dev-python/pep517/pep517-0.8.2.ebuild b/dev-python/pep517/pep517-0.8.2-r1.ebuild
similarity index 68%
rename from dev-python/pep517/pep517-0.8.2.ebuild
rename to dev-python/pep517/pep517-0.8.2-r1.ebuild
index d606c6d..5db0ab1 100644
--- a/dev-python/pep517/pep517-0.8.2.ebuild
+++ b/dev-python/pep517/pep517-0.8.2-r1.ebuild
@@ -13,12 +13,13 @@ HOMEPAGE="
 	https://github.com/pypa/pep517
 	https://pypi.org/project/pep517
 "
-SRC_URI="https://github.com/pypa/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 RDEPEND="
 	>=dev-python/flit_core-2[${PYTHON_USEDEP}]
@@ -35,4 +36,14 @@ DEPEND="
 	)
 "
 
-distutils_enable_tests pytest
+src_prepare() {
+	sed -i 's|addopts=--flake8||' pytest.ini
+	default
+}
+
+python_test() {
+	pytest -vv \
+			--deselect tests/test_meta.py::test_classic_package		\
+			--deselect tests/test_meta.py::test_meta_output			\
+			--deselect tests/test_meta.py::test_meta_for_this_package || die
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pep517/
  2020-12-18 16:26 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-12-18 15:35 ` Andrew Ammerlaan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2020-12-18 15:35 UTC (permalink / raw
  To: gentoo-commits

commit:     c2b51dc1c62aa027f412c5096b89c32491d31fb9
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Dec 18 15:31:41 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Dec 18 15:31:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c2b51dc1

dev-python/pep517: version bump 0.9.1, add py3.8 and py3.9

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pep517/Manifest                                        | 2 +-
 dev-python/pep517/{pep517-0.8.2-r1.ebuild => pep517-0.9.1.ebuild} | 8 +++-----
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/dev-python/pep517/Manifest b/dev-python/pep517/Manifest
index 71f214ba..18a1a13e 100644
--- a/dev-python/pep517/Manifest
+++ b/dev-python/pep517/Manifest
@@ -1 +1 @@
-DIST pep517-0.8.2.tar.gz 20440 BLAKE2B abddf5acec80ca49b45146c0017d5d0d062283fca1d19c76413f195b22cb804ce32952f2c17a9d2f98d8cf93e93b0b347cddd5086341a20022d7fb78218db354 SHA512 668569a26a4c21a1b8d6828a26bdcdab62b8c4d5fcaba8d9f9a4740e0fce7f071295e28d91349500b4c7be05ab2c2670986de18f01e2afafc1878101e5ef9af2
+DIST pep517-0.9.1.tar.gz 23213 BLAKE2B 2108178a35baff87657a5e0cc7684adad28e53d57fb4066826a9f5d5b0d8910096d208a3ca159005fa7ca0dad5b172ec0080131d177d03db1b1bc37692379d5b SHA512 7c7d181d52a6d042ad432c4366021f9b2364c77193d99066668acd4c6967dab299644febf0dc4a6efb9a777a0aaae7df2687191cba3f3b93e6bf06ee0769a7df

diff --git a/dev-python/pep517/pep517-0.8.2-r1.ebuild b/dev-python/pep517/pep517-0.9.1.ebuild
similarity index 86%
rename from dev-python/pep517/pep517-0.8.2-r1.ebuild
rename to dev-python/pep517/pep517-0.9.1.ebuild
index f7255396..bc53b8ee 100644
--- a/dev-python/pep517/pep517-0.8.2-r1.ebuild
+++ b/dev-python/pep517/pep517-0.9.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="7"
 
-PYTHON_COMPAT=( python3_7 )
+PYTHON_COMPAT=( python3_{7,8,9} )
 DISTUTILS_USE_SETUPTOOLS=pyproject.toml
 
 inherit distutils-r1
@@ -18,12 +18,8 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
-	>=dev-python/flit_core-2[${PYTHON_USEDEP}]
-	<dev-python/flit_core-3[${PYTHON_USEDEP}]
 	dev-python/toml[${PYTHON_USEDEP}]
 
 	$(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_7)
@@ -36,6 +32,8 @@ DEPEND="
 	)
 "
 
+distutils_enable_tests pytest
+
 src_prepare() {
 	sed -i 's|addopts=--flake8||' pytest.ini
 	default


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pep517/
  2021-04-19  8:53 [gentoo-commits] repo/proj/guru:master commit in: dev-python/pep517/ Andrew Ammerlaan
@ 2021-04-19  8:53 ` Andrew Ammerlaan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2021-04-19  8:53 UTC (permalink / raw
  To: gentoo-commits

commit:     a4cb8d149e39c92425f5eb4e2cefc2f500e18616
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Apr 19 08:52:52 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Apr 19 08:52:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a4cb8d14

dev-python/pep517: add missing dep

Closes: https://bugs.gentoo.org/784056
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pep517/pep517-0.9.1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/pep517/pep517-0.9.1.ebuild b/dev-python/pep517/pep517-0.9.1.ebuild
index bc53b8eea..52e8ff9cd 100644
--- a/dev-python/pep517/pep517-0.9.1.ebuild
+++ b/dev-python/pep517/pep517-0.9.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"
@@ -29,6 +29,7 @@ DEPEND="
 	${RDEPEND}
 	test? (
 		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/testpath[${PYTHON_USEDEP}]
 	)
 "
 


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/pep517/
@ 2021-04-19  8:53 Andrew Ammerlaan
  2021-04-19  8:53 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
  0 siblings, 1 reply; 6+ messages in thread
From: Andrew Ammerlaan @ 2021-04-19  8:53 UTC (permalink / raw
  To: gentoo-commits

commit:     a4cb8d149e39c92425f5eb4e2cefc2f500e18616
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Apr 19 08:52:52 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Apr 19 08:52:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a4cb8d14

dev-python/pep517: add missing dep

Closes: https://bugs.gentoo.org/784056
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pep517/pep517-0.9.1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/pep517/pep517-0.9.1.ebuild b/dev-python/pep517/pep517-0.9.1.ebuild
index bc53b8eea..52e8ff9cd 100644
--- a/dev-python/pep517/pep517-0.9.1.ebuild
+++ b/dev-python/pep517/pep517-0.9.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"
@@ -29,6 +29,7 @@ DEPEND="
 	${RDEPEND}
 	test? (
 		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/testpath[${PYTHON_USEDEP}]
 	)
 "
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pep517/
@ 2021-12-01 19:39 Andrew Ammerlaan
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Ammerlaan @ 2021-12-01 19:39 UTC (permalink / raw
  To: gentoo-commits

commit:     374c8c03a6ef38d44ccebf9ec987979ab4535e13
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  1 19:38:21 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Dec  1 19:38:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=374c8c03

dev-python/pep517: remove duplicate

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 dev-python/pep517/Manifest            |  1 -
 dev-python/pep517/metadata.xml        | 18 -------------
 dev-python/pep517/pep517-0.9.1.ebuild | 48 -----------------------------------
 3 files changed, 67 deletions(-)

diff --git a/dev-python/pep517/Manifest b/dev-python/pep517/Manifest
deleted file mode 100644
index 18a1a13e0..000000000
--- a/dev-python/pep517/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pep517-0.9.1.tar.gz 23213 BLAKE2B 2108178a35baff87657a5e0cc7684adad28e53d57fb4066826a9f5d5b0d8910096d208a3ca159005fa7ca0dad5b172ec0080131d177d03db1b1bc37692379d5b SHA512 7c7d181d52a6d042ad432c4366021f9b2364c77193d99066668acd4c6967dab299644febf0dc4a6efb9a777a0aaae7df2687191cba3f3b93e6bf06ee0769a7df

diff --git a/dev-python/pep517/metadata.xml b/dev-python/pep517/metadata.xml
deleted file mode 100644
index ae262366c..000000000
--- a/dev-python/pep517/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-
-<pkgmetadata>
-  <longdescription lang="en">
-PEP 517 specifies a standard API for systems which build Python packages.
-
-This package contains wrappers around the hooks specified by PEP 517. It provides:
-
-    A mechanism to call the hooks in a subprocess, so they are isolated from the current process.
-    Fallbacks for the optional hooks, so that frontends can call the hooks without checking which are defined.
-    Higher-level functions which install the build dependencies into a temporary environment and build a wheel/sdist using them.
-  </longdescription>
-  <upstream>
-    <remote-id type="github">pypa/pep517</remote-id>
-    <remote-id type="pypi">pep517</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/dev-python/pep517/pep517-0.9.1.ebuild b/dev-python/pep517/pep517-0.9.1.ebuild
deleted file mode 100644
index 102c4905d..000000000
--- a/dev-python/pep517/pep517-0.9.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{8,9} )
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-
-inherit distutils-r1
-
-DESCRIPTION="standard API for systems which build Python packages"
-HOMEPAGE="
-	https://github.com/pypa/pep517
-	https://pypi.org/project/pep517
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-python/toml[${PYTHON_USEDEP}]
-
-	$(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' python3_7)
-	$(python_gen_cond_dep 'dev-python/zipp[${PYTHON_USEDEP}]' python3_7)
-"
-DEPEND="
-	${RDEPEND}
-	test? (
-		dev-python/mock[${PYTHON_USEDEP}]
-		dev-python/testpath[${PYTHON_USEDEP}]
-	)
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-	sed -i 's|addopts=--flake8||' pytest.ini
-	default
-}
-
-python_test() {
-	pytest -vv \
-			--deselect tests/test_meta.py::test_classic_package		\
-			--deselect tests/test_meta.py::test_meta_output			\
-			--deselect tests/test_meta.py::test_meta_for_this_package || die
-}


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

end of thread, other threads:[~2021-12-01 19:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-19  8:53 [gentoo-commits] repo/proj/guru:master commit in: dev-python/pep517/ Andrew Ammerlaan
2021-04-19  8:53 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2021-12-01 19:39 Andrew Ammerlaan
2020-12-18 16:26 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-12-18 15:35 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-25 19:45 Alessandro Barbieri
2020-04-25  0:50 Alessandro Barbieri

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