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

commit:     2db41d8dd36beba0c565cfabaeb169f8ccb4f355
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri Apr 24 22:03:17 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Apr 25 00:37:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2db41d8d

dev-python/text-unidecode: new package

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

 dev-python/text-unidecode/Manifest                 |  1 +
 dev-python/text-unidecode/metadata.xml             | 15 ++++++++++
 .../text-unidecode/text-unidecode-1.3.ebuild       | 33 ++++++++++++++++++++++
 3 files changed, 49 insertions(+)

diff --git a/dev-python/text-unidecode/Manifest b/dev-python/text-unidecode/Manifest
new file mode 100644
index 0000000..7cf837a
--- /dev/null
+++ b/dev-python/text-unidecode/Manifest
@@ -0,0 +1 @@
+DIST text-unidecode-1.3.tar.gz 76885 BLAKE2B b783963b4fce6588d45d48a498de566c08df83ae62c72caf599648df195eb94b7c02090503590ab8c747af0d210847ddfbf0772289e170361914db20c049828e SHA512 aeaf0e79bd0545ca7a4fe700d5a7dac1d5900841fcfe8a5a568c84ba7d3bee5f75eaac0531f4a01d689a550ac5bc7e1acaeb8132293f220db8387fae2eb6a150

diff --git a/dev-python/text-unidecode/metadata.xml b/dev-python/text-unidecode/metadata.xml
new file mode 100644
index 0000000..3f17f6d
--- /dev/null
+++ b/dev-python/text-unidecode/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="pypi">text-unidecode</remote-id>
+    <maintainer status="unknown">
+      <email>kmike84@gmail.com</email>
+      <name>Mikhail Korobov</name>
+    </maintainer>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/text-unidecode/text-unidecode-1.3.ebuild b/dev-python/text-unidecode/text-unidecode-1.3.ebuild
new file mode 100644
index 0000000..496d2de
--- /dev/null
+++ b/dev-python/text-unidecode/text-unidecode-1.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
+inherit distutils-r1
+
+DESCRIPTION="The most basic Text::Unidecode port"
+HOMEPAGE="https://github.com/kmike/text-unidecode"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="|| ( Artistic GPL-1 GPL-2+ )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( dev-python/pytest )"
+RDEPEND=""
+
+python_prepare_all() {
+	sed -i '/pytest-runner/d' setup.py
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	distutils_install_for_testing
+	cd "${TEST_DIR}" || die
+	cp "${S}/test_unidecode.py" . || die
+	cp "${S}/setup.cfg" . || die
+	pytest || die "Tests fail with ${EPYTHON}"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/text-unidecode/
@ 2020-04-25 10:52 Andrew Ammerlaan
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2020-04-25 10:52 UTC (permalink / raw
  To: gentoo-commits

commit:     584bde557d54130bc1f2ccbb7905834ebcb78a3b
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Apr 25 10:48:36 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Apr 25 10:48:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=584bde55

dev-python/text-unidecode: pytest verbose (-vv)

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

 dev-python/text-unidecode/text-unidecode-1.3.ebuild | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-python/text-unidecode/text-unidecode-1.3.ebuild b/dev-python/text-unidecode/text-unidecode-1.3.ebuild
index 496d2de..cf75f07 100644
--- a/dev-python/text-unidecode/text-unidecode-1.3.ebuild
+++ b/dev-python/text-unidecode/text-unidecode-1.3.ebuild
@@ -13,12 +13,11 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 LICENSE="|| ( Artistic GPL-1 GPL-2+ )"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
-DEPEND="test? ( dev-python/pytest )"
 RDEPEND=""
 
+distutils_enable_tests pytest
+
 python_prepare_all() {
 	sed -i '/pytest-runner/d' setup.py
 	distutils-r1_python_prepare_all
@@ -29,5 +28,5 @@ python_test() {
 	cd "${TEST_DIR}" || die
 	cp "${S}/test_unidecode.py" . || die
 	cp "${S}/setup.cfg" . || die
-	pytest || die "Tests fail with ${EPYTHON}"
+	pytest -vv || die "Tests fail with ${EPYTHON}"
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/text-unidecode/
@ 2020-06-30  6:12 Ronny Gutbrod
  0 siblings, 0 replies; 3+ messages in thread
From: Ronny Gutbrod @ 2020-06-30  6:12 UTC (permalink / raw
  To: gentoo-commits

commit:     801c3023439304d483640e2ac392c65758d2b6fa
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Jun 30 06:10:36 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue Jun 30 06:10:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=801c3023

dev-python/text-unidecode: Remove, package is in ::gentoo.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 dev-python/text-unidecode/Manifest                 |  1 -
 dev-python/text-unidecode/metadata.xml             | 15 ----------
 .../text-unidecode/text-unidecode-1.3.ebuild       | 32 ----------------------
 3 files changed, 48 deletions(-)

diff --git a/dev-python/text-unidecode/Manifest b/dev-python/text-unidecode/Manifest
deleted file mode 100644
index 7cf837a..0000000
--- a/dev-python/text-unidecode/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST text-unidecode-1.3.tar.gz 76885 BLAKE2B b783963b4fce6588d45d48a498de566c08df83ae62c72caf599648df195eb94b7c02090503590ab8c747af0d210847ddfbf0772289e170361914db20c049828e SHA512 aeaf0e79bd0545ca7a4fe700d5a7dac1d5900841fcfe8a5a568c84ba7d3bee5f75eaac0531f4a01d689a550ac5bc7e1acaeb8132293f220db8387fae2eb6a150

diff --git a/dev-python/text-unidecode/metadata.xml b/dev-python/text-unidecode/metadata.xml
deleted file mode 100644
index 3f17f6d..0000000
--- a/dev-python/text-unidecode/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>lssndrbarbieri@gmail.com</email>
-    <name>Alessandro Barbieri</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="pypi">text-unidecode</remote-id>
-    <maintainer status="unknown">
-      <email>kmike84@gmail.com</email>
-      <name>Mikhail Korobov</name>
-    </maintainer>
-  </upstream>
-</pkgmetadata>

diff --git a/dev-python/text-unidecode/text-unidecode-1.3.ebuild b/dev-python/text-unidecode/text-unidecode-1.3.ebuild
deleted file mode 100644
index cf75f07..0000000
--- a/dev-python/text-unidecode/text-unidecode-1.3.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
-inherit distutils-r1
-
-DESCRIPTION="The most basic Text::Unidecode port"
-HOMEPAGE="https://github.com/kmike/text-unidecode"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( Artistic GPL-1 GPL-2+ )"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND=""
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-	sed -i '/pytest-runner/d' setup.py
-	distutils-r1_python_prepare_all
-}
-
-python_test() {
-	distutils_install_for_testing
-	cd "${TEST_DIR}" || die
-	cp "${S}/test_unidecode.py" . || die
-	cp "${S}/setup.cfg" . || die
-	pytest -vv || die "Tests fail with ${EPYTHON}"
-}


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

end of thread, other threads:[~2020-06-30  6:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-25 10:52 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/text-unidecode/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2020-06-30  6:12 Ronny Gutbrod
2020-04-25  0:37 Alessandro Barbieri

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