public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2022-02-01 20:41 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2022-02-01 20:41 UTC (permalink / raw
  To: gentoo-commits

commit:     deb427c10768078cfbd23a14eb9cb569bf7d5d94
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  1 18:58:55 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Feb  1 20:41:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deb427c1

dev-python/libpillowfight: fix test calls

Use better way to handle pytest C errors

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

 dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild
index 5e1ace91926e..62e40857072e 100644
--- a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.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=7
@@ -23,6 +23,7 @@ RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
 distutils_enable_tests nose
 
 python_prepare_all() {
+	ln -s "${S}"/tests "${T}"/tests || die
 	sed -e "/'nose>=1.0'/d" -i setup.py || die
 	cat > src/pillowfight/_version.h <<- EOF || die
 		#define INTERNAL_PILLOWFIGHT_VERSION "$(ver_cut 1-3)"
@@ -31,8 +32,6 @@ python_prepare_all() {
 }
 
 python_test() {
-	cp -r -l -n tests "${BUILD_DIR}/lib" || die
-	cd "${BUILD_DIR}/lib" || die
-	distutils-r1_python_test
-	rm -r tests || die
+	cd "${T}" || die
+	epytest "${S}"/tests -o addopts=
 }


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2024-05-18  5:50 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2024-05-18  5:50 UTC (permalink / raw
  To: gentoo-commits

commit:     0c267c0a73b92c5c7f5467eef1e2ec6f2d919964
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 05:41:40 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 05:50:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c267c0a

dev-python/libpillowfight: Enable py3.13

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

 dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
index 729c78ebf43d..40fbe6ee7378 100644
--- a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2023-06-03 16:27 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2023-06-03 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     190c1966f4268f731d697c49a52e1c0144ab413f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  3 15:46:27 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jun  3 16:27:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=190c1966

dev-python/libpillowfight: Simplify test logic

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

 dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
index fa61cfd2453e..729c78ebf43d 100644
--- a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
@@ -27,7 +27,6 @@ RDEPEND="
 distutils_enable_tests pytest
 
 python_prepare_all() {
-	ln -s "${S}"/tests "${T}"/tests || die
 	sed -e "/'nose>=1.0'/d" -i setup.py || die
 	cat > src/pillowfight/_version.h <<- EOF || die
 		#define INTERNAL_PILLOWFIGHT_VERSION "$(ver_cut 1-3)"
@@ -36,6 +35,5 @@ python_prepare_all() {
 }
 
 python_test() {
-	cd "${T}" || die
-	epytest "${S}"/tests -o addopts=
+	epytest tests -o addopts=
 }


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2023-06-03 16:27 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2023-06-03 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     27311a5e0116fa992ae3e5fd787753da4c94020c
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  3 15:45:07 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jun  3 16:27:16 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27311a5e

dev-python/libpillowfight: Enable py3.12

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

 dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
index fd434e4d3d34..fa61cfd2453e 100644
--- a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
@@ -3,8 +3,9 @@
 
 EAPI=8
 
+DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 
@@ -19,7 +20,9 @@ LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
+RDEPEND="
+	dev-python/pillow[${PYTHON_USEDEP}]
+"
 
 distutils_enable_tests pytest
 


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2023-02-01  7:58 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2023-02-01  7:58 UTC (permalink / raw
  To: gentoo-commits

commit:     b32db03a3c5f3c2b1a48632976836fa6772627ea
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  1 07:51:19 2023 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Wed Feb  1 07:58:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32db03a

dev-python/libpillowfight: update EAPI 7 -> 8

Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 dev-python/libpillowfight/Manifest                 |  1 +
 .../libpillowfight-0.3.0_p20210816-r1.ebuild       | 38 ++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index a08695322544..81038ebace55 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1 +1,2 @@
+DIST libpillowfight-0.3.0_p20210816.tar.bz2 87826271 BLAKE2B aa0a9c2800992b671940f0ed0c8d808c5ad870c724fbf0f4dad336d224e6d510b135052f2697a6a1d05bafb9f1969278962c625d5d0ffd997b2548e60b1dec2b SHA512 76b05d49e2ee9fc9dcc2c9342d312841c8d1520d8d2027bd12b6921f85bd92645f698a811ccf7bdeceba64f0b706d5fd2975f91c51db8ce87f1261793aee83cb
 DIST libpillowfight-0.3.0_p20210816.tar.gz 89491019 BLAKE2B 24a658ce461928750582560ef27fbc1ea233bb7c6290053bee7ab3437816fd0e9d7933e36a7a90c75706bdc17024200d16a17ec81c0c30563f043e6d15cc074e SHA512 a731a7d8c8492f5f6229315c8ff48bcdf215acd501d1a5f726f60d6417f77d04b702579d972aaa90f9d01d27b7b167b47f15f435c0fe79598aedb55ac397835b

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
new file mode 100644
index 000000000000..fd434e4d3d34
--- /dev/null
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816-r1.ebuild
@@ -0,0 +1,38 @@
+# 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
+
+COMMIT="50d965879eb89fdef9be09d6e934329486ff585d"
+
+DESCRIPTION="Small library containing various image processing algorithms"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork/libpillowfight"
+SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/${PN}/-/archive/${COMMIT}/${P}.tar.bz2"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	ln -s "${S}"/tests "${T}"/tests || die
+	sed -e "/'nose>=1.0'/d" -i setup.py || die
+	cat > src/pillowfight/_version.h <<- EOF || die
+		#define INTERNAL_PILLOWFIGHT_VERSION "$(ver_cut 1-3)"
+	EOF
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	cd "${T}" || die
+	epytest "${S}"/tests -o addopts=
+}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2022-10-30 20:28 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2022-10-30 20:28 UTC (permalink / raw
  To: gentoo-commits

commit:     4116d520d7eecfce6bcfc9e9d66aa84d6a09798e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 30 20:23:42 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 30 20:28:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4116d520

dev-python/libpillowfight: add gnome-gitlab upstream metadata

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

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

diff --git a/dev-python/libpillowfight/metadata.xml b/dev-python/libpillowfight/metadata.xml
index 534689778b6a..231c5364b135 100644
--- a/dev-python/libpillowfight/metadata.xml
+++ b/dev-python/libpillowfight/metadata.xml
@@ -7,5 +7,6 @@
   </maintainer>
   <upstream>
     <remote-id type="pypi">pypillowfight</remote-id>
+    <remote-id type="gnome-gitlab">World/OpenPaperwork/libpillowfight</remote-id>
   </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2022-07-02 11:39 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2022-07-02 11:39 UTC (permalink / raw
  To: gentoo-commits

commit:     94e790c90c895e11d1915449dc108db5f14488f8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 11:37:25 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 11:38:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94e790c9

dev-python/libpillowfight: fix test dependency

Closes: https://bugs.gentoo.org/832544
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild
index 62e40857072e..4d0c41bea140 100644
--- a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild
@@ -20,7 +20,7 @@ KEYWORDS="~amd64 ~x86"
 
 RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
 
-distutils_enable_tests nose
+distutils_enable_tests pytest
 
 python_prepare_all() {
 	ln -s "${S}"/tests "${T}"/tests || die


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2021-11-14  8:46 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2021-11-14  8:46 UTC (permalink / raw
  To: gentoo-commits

commit:     28abdb1fa77bece04d87a378f23a571a54f770f6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 14 08:44:36 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 08:46:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28abdb1f

dev-python/libpillowfight: Remove old

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

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

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index b37ea940102b..a08695322544 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1,2 +1 @@
 DIST libpillowfight-0.3.0_p20210816.tar.gz 89491019 BLAKE2B 24a658ce461928750582560ef27fbc1ea233bb7c6290053bee7ab3437816fd0e9d7933e36a7a90c75706bdc17024200d16a17ec81c0c30563f043e6d15cc074e SHA512 a731a7d8c8492f5f6229315c8ff48bcdf215acd501d1a5f726f60d6417f77d04b702579d972aaa90f9d01d27b7b167b47f15f435c0fe79598aedb55ac397835b
-DIST pypillowfight-0.3.0.tar.gz 41065 BLAKE2B 8e945bb5a96d7ebd610435fd868d12df371c29fbc26a9c57152988a990ad83daf70382bb94e8b5591144e18d6c54702c0a578ea5f29044fcdadd169effcf933c SHA512 2782030eabb665d20cf49de584220fb65417616c3a0e2a0376c91dc2c228b571768ea3a248ebd5ec4d244a1b825e98609a35b736f7f2fdbb3f674b08e891d9a7

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild
deleted file mode 100644
index 485fa0fa08f6..000000000000
--- a/dev-python/libpillowfight/libpillowfight-0.3.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_{7,8,9} )
-
-inherit distutils-r1
-
-MY_PN="pypillowfight"
-
-DESCRIPTION="Small library containing various image processing algorithms"
-HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork/libpillowfight"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-S=${WORKDIR}/${MY_PN}-${PV}
-
-python_prepare_all() {
-	sed -e "/'nose>=1.0'/d" -i setup.py || die
-	distutils-r1_python_prepare_all
-}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2021-11-03  9:08 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2021-11-03  9:08 UTC (permalink / raw
  To: gentoo-commits

commit:     9b96d2dfc7572357be8dbd92fc9302660c196129
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov  3 09:00:52 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov  3 09:08:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b96d2df

dev-python/libpillowfight: add 0.3.0_p20210816, enable tests

- Use new snapshot as the test suite was fixed to use correct images
- Use tarball from upstream repo to include tests
- enable tests
- enable py3.10

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

 dev-python/libpillowfight/Manifest                 |  1 +
 .../libpillowfight-0.3.0_p20210816.ebuild          | 38 ++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index 0255937587a..b37ea940102 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1 +1,2 @@
+DIST libpillowfight-0.3.0_p20210816.tar.gz 89491019 BLAKE2B 24a658ce461928750582560ef27fbc1ea233bb7c6290053bee7ab3437816fd0e9d7933e36a7a90c75706bdc17024200d16a17ec81c0c30563f043e6d15cc074e SHA512 a731a7d8c8492f5f6229315c8ff48bcdf215acd501d1a5f726f60d6417f77d04b702579d972aaa90f9d01d27b7b167b47f15f435c0fe79598aedb55ac397835b
 DIST pypillowfight-0.3.0.tar.gz 41065 BLAKE2B 8e945bb5a96d7ebd610435fd868d12df371c29fbc26a9c57152988a990ad83daf70382bb94e8b5591144e18d6c54702c0a578ea5f29044fcdadd169effcf933c SHA512 2782030eabb665d20cf49de584220fb65417616c3a0e2a0376c91dc2c228b571768ea3a248ebd5ec4d244a1b825e98609a35b736f7f2fdbb3f674b08e891d9a7

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild
new file mode 100644
index 00000000000..5e1ace91926
--- /dev/null
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0_p20210816.ebuild
@@ -0,0 +1,38 @@
+# 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
+
+COMMIT="50d965879eb89fdef9be09d6e934329486ff585d"
+
+DESCRIPTION="Small library containing various image processing algorithms"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork/libpillowfight"
+SRC_URI="https://gitlab.gnome.org/World/OpenPaperwork/${PN}/-/archive/${COMMIT}/${P}.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
+
+distutils_enable_tests nose
+
+python_prepare_all() {
+	sed -e "/'nose>=1.0'/d" -i setup.py || die
+	cat > src/pillowfight/_version.h <<- EOF || die
+		#define INTERNAL_PILLOWFIGHT_VERSION "$(ver_cut 1-3)"
+	EOF
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	cp -r -l -n tests "${BUILD_DIR}/lib" || die
+	cd "${BUILD_DIR}/lib" || die
+	distutils-r1_python_test
+	rm -r tests || die
+}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2020-12-29 16:42 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2020-12-29 16:42 UTC (permalink / raw
  To: gentoo-commits

commit:     17993377d4a975241f6b7d9bd783e6cfcb64af1f
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 29 16:38:21 2020 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Tue Dec 29 16:41:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17993377

dev-python/libpillowfight: update homepage and python

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 dev-python/libpillowfight/libpillowfight-0.3.0.ebuild | 4 ++--
 dev-python/libpillowfight/metadata.xml                | 1 -
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild
index b7074698be9..e2b9a36ffed 100644
--- a/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild
@@ -2,14 +2,14 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit distutils-r1
 
 MY_PN="pypillowfight"
 
 DESCRIPTION="Small library containing various image processing algorithms"
-HOMEPAGE="https://github.com/openpaperwork/libpillowfight"
+HOMEPAGE="https://gitlab.gnome.org/World/OpenPaperwork/libpillowfight"
 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="GPL-3"

diff --git a/dev-python/libpillowfight/metadata.xml b/dev-python/libpillowfight/metadata.xml
index c7823a9260d..7dfa43dc56a 100644
--- a/dev-python/libpillowfight/metadata.xml
+++ b/dev-python/libpillowfight/metadata.xml
@@ -7,6 +7,5 @@
   </maintainer>
   <upstream>
     <remote-id type="pypi">pypillowfight</remote-id>
-    <remote-id type="github">openpaperwork/libpillowfight</remote-id>
   </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2020-04-19 12:25 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2020-04-19 12:25 UTC (permalink / raw
  To: gentoo-commits

commit:     0b1680bc20dedc634224cb0af15778a283ff5b22
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 19 12:11:33 2020 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Sun Apr 19 12:25:19 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b1680bc

dev-python/libpillowfight: update python versions

Tested with paperwork

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

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

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild
index 372e56f7b49..b7074698be9 100644
--- a/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2020-03-27 21:06 Michał Górny
  0 siblings, 0 replies; 20+ messages in thread
From: Michał Górny @ 2020-03-27 21:06 UTC (permalink / raw
  To: gentoo-commits

commit:     36b8212ed91d5a01e9f0dba79cce16a0e7c38bb4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 27 20:53:15 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 27 20:53:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36b8212e

dev-python/libpillowfight: Remove redundant versions

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

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

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index 7cc0bc8efbe..0255937587a 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1,2 +1 @@
-DIST pypillowfight-0.2.4.tar.gz 39411 BLAKE2B a890305e3c1650274426faf92178ca0b3742c413deac236a5ac23cb5ce9be372085cebfd7189a5e16e6f2176b5850c865cbfc899a036aedfad58c5f5fe08502a SHA512 440b0faccb9f393126306afb2a060e5dab5e68a02822ad4846498a2a6b07013837642cfb818b669820b268342be3c5b0ebed81f1e3265e1f383d74c1cfb16187
 DIST pypillowfight-0.3.0.tar.gz 41065 BLAKE2B 8e945bb5a96d7ebd610435fd868d12df371c29fbc26a9c57152988a990ad83daf70382bb94e8b5591144e18d6c54702c0a578ea5f29044fcdadd169effcf933c SHA512 2782030eabb665d20cf49de584220fb65417616c3a0e2a0376c91dc2c228b571768ea3a248ebd5ec4d244a1b825e98609a35b736f7f2fdbb3f674b08e891d9a7

diff --git a/dev-python/libpillowfight/libpillowfight-0.2.4.ebuild b/dev-python/libpillowfight/libpillowfight-0.2.4.ebuild
deleted file mode 100644
index 1d041caad21..00000000000
--- a/dev-python/libpillowfight/libpillowfight-0.2.4.ebuild
+++ /dev/null
@@ -1,30 +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
-
-MY_PN="pypillowfight"
-
-DESCRIPTION="Small library containing various image processing algorithms"
-HOMEPAGE="https://github.com/openpaperwork/libpillowfight"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-S=${WORKDIR}/${MY_PN}-${PV}
-
-python_prepare_all() {
-	sed -e "/'nose>=1.0'/d" -i setup.py || die
-	distutils-r1_python_prepare_all
-}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2019-10-14 21:11 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2019-10-14 21:11 UTC (permalink / raw
  To: gentoo-commits

commit:     2615bce87f6a0cc264c9a5ee09ffdca50a253a7e
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 14 20:50:39 2019 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Mon Oct 14 21:04:01 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2615bce8

dev-python/libpillowfight: drop old

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 dev-python/libpillowfight/Manifest                 |  2 --
 .../libpillowfight/libpillowfight-0.2.2.ebuild     | 25 -------------------
 .../libpillowfight/libpillowfight-0.2.3-r1.ebuild  | 29 ----------------------
 3 files changed, 56 deletions(-)

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index e4715359902..0f318db4ad4 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1,3 +1 @@
-DIST libpillowfight-0.2.2.tar.gz 23125494 BLAKE2B b9620b0e574869d1efcc9449e09f281a5d2611ec15f144ee24b385b5f6f693f037c844904f0abc715d49125df7d1a27d6c433aed83b33371b3f07310be8288db SHA512 76dcaf9105b4dbbe427851d794e92ba023453e2d750ecdd4e3feb864534f9d99adb562b719b7c9af299ae16c0778b510ab96b4997cf9bcc6ea4c6f8f7471ae8a
-DIST pypillowfight-0.2.3.tar.gz 39416 BLAKE2B e216ddb1717189c142fc3d81d41c91855c52468e1af350d8f5db470f8901bd883223cad56dc8ced9cf61e90e511e0a5ef508ec6966a7f01a837e2bb0d393589f SHA512 6d3e35ed567d66060f5bf4307b0bd7d9ee5c3e7ec430e6e04ee6a1e83e18ff829a7681a85186e6b2151f043f66453c12a60e7cce56c0558da3d72f1fce155097
 DIST pypillowfight-0.2.4.tar.gz 39411 BLAKE2B a890305e3c1650274426faf92178ca0b3742c413deac236a5ac23cb5ce9be372085cebfd7189a5e16e6f2176b5850c865cbfc899a036aedfad58c5f5fe08502a SHA512 440b0faccb9f393126306afb2a060e5dab5e68a02822ad4846498a2a6b07013837642cfb818b669820b268342be3c5b0ebed81f1e3265e1f383d74c1cfb16187

diff --git a/dev-python/libpillowfight/libpillowfight-0.2.2.ebuild b/dev-python/libpillowfight/libpillowfight-0.2.2.ebuild
deleted file mode 100644
index 6392c37d0c8..00000000000
--- a/dev-python/libpillowfight/libpillowfight-0.2.2.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{5,6} )
-
-inherit distutils-r1
-
-DESCRIPTION="Small library containing various image processing algorithms"
-HOMEPAGE="https://github.com/openpaperwork/libpillowfight"
-SRC_URI="https://github.com/openpaperwork/libpillowfight/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
-	sed -e "/'nose>=1.0'/d" -i setup.py || die
-	distutils-r1_python_prepare_all
-}

diff --git a/dev-python/libpillowfight/libpillowfight-0.2.3-r1.ebuild b/dev-python/libpillowfight/libpillowfight-0.2.3-r1.ebuild
deleted file mode 100644
index 63b6ba1a372..00000000000
--- a/dev-python/libpillowfight/libpillowfight-0.2.3-r1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_{5,6} )
-
-inherit distutils-r1
-
-MY_PN="pypillowfight"
-
-DESCRIPTION="Small library containing various image processing algorithms"
-HOMEPAGE="https://github.com/openpaperwork/libpillowfight"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-S=${WORKDIR}/${MY_PN}-${PV}
-
-python_prepare_all() {
-	sed -e "/'nose>=1.0'/d" -i setup.py || die
-	distutils-r1_python_prepare_all
-}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2019-10-14 21:11 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2019-10-14 21:11 UTC (permalink / raw
  To: gentoo-commits

commit:     9da021dccaf32ea1618525850c214666d584329e
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 14 20:54:15 2019 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Mon Oct 14 21:04:02 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9da021dc

dev-python/libpillowfight: 0.3.0 bump

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

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

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index 0f318db4ad4..7cc0bc8efbe 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1 +1,2 @@
 DIST pypillowfight-0.2.4.tar.gz 39411 BLAKE2B a890305e3c1650274426faf92178ca0b3742c413deac236a5ac23cb5ce9be372085cebfd7189a5e16e6f2176b5850c865cbfc899a036aedfad58c5f5fe08502a SHA512 440b0faccb9f393126306afb2a060e5dab5e68a02822ad4846498a2a6b07013837642cfb818b669820b268342be3c5b0ebed81f1e3265e1f383d74c1cfb16187
+DIST pypillowfight-0.3.0.tar.gz 41065 BLAKE2B 8e945bb5a96d7ebd610435fd868d12df371c29fbc26a9c57152988a990ad83daf70382bb94e8b5591144e18d6c54702c0a578ea5f29044fcdadd169effcf933c SHA512 2782030eabb665d20cf49de584220fb65417616c3a0e2a0376c91dc2c228b571768ea3a248ebd5ec4d244a1b825e98609a35b736f7f2fdbb3f674b08e891d9a7

diff --git a/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild b/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild
new file mode 100644
index 00000000000..dd2d0d9959a
--- /dev/null
+++ b/dev-python/libpillowfight/libpillowfight-0.3.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{5,6,7} )
+
+inherit distutils-r1
+
+MY_PN="pypillowfight"
+
+DESCRIPTION="Small library containing various image processing algorithms"
+HOMEPAGE="https://github.com/openpaperwork/libpillowfight"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+S=${WORKDIR}/${MY_PN}-${PV}
+
+python_prepare_all() {
+	sed -e "/'nose>=1.0'/d" -i setup.py || die
+	distutils-r1_python_prepare_all
+}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2018-04-29 22:49 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2018-04-29 22:49 UTC (permalink / raw
  To: gentoo-commits

commit:     33049fda60c78c8c52f1e8086211a6c4cf978c9b
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 29 22:11:17 2018 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Sun Apr 29 22:12:44 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33049fda

dev-python/libpillowfight: 0.2.4 bump

Package-Manager: Portage-2.3.31, Repoman-2.3.9

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

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index cfdb5bd70d7..e4715359902 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1,2 +1,3 @@
 DIST libpillowfight-0.2.2.tar.gz 23125494 BLAKE2B b9620b0e574869d1efcc9449e09f281a5d2611ec15f144ee24b385b5f6f693f037c844904f0abc715d49125df7d1a27d6c433aed83b33371b3f07310be8288db SHA512 76dcaf9105b4dbbe427851d794e92ba023453e2d750ecdd4e3feb864534f9d99adb562b719b7c9af299ae16c0778b510ab96b4997cf9bcc6ea4c6f8f7471ae8a
 DIST pypillowfight-0.2.3.tar.gz 39416 BLAKE2B e216ddb1717189c142fc3d81d41c91855c52468e1af350d8f5db470f8901bd883223cad56dc8ced9cf61e90e511e0a5ef508ec6966a7f01a837e2bb0d393589f SHA512 6d3e35ed567d66060f5bf4307b0bd7d9ee5c3e7ec430e6e04ee6a1e83e18ff829a7681a85186e6b2151f043f66453c12a60e7cce56c0558da3d72f1fce155097
+DIST pypillowfight-0.2.4.tar.gz 39411 BLAKE2B a890305e3c1650274426faf92178ca0b3742c413deac236a5ac23cb5ce9be372085cebfd7189a5e16e6f2176b5850c865cbfc899a036aedfad58c5f5fe08502a SHA512 440b0faccb9f393126306afb2a060e5dab5e68a02822ad4846498a2a6b07013837642cfb818b669820b268342be3c5b0ebed81f1e3265e1f383d74c1cfb16187

diff --git a/dev-python/libpillowfight/libpillowfight-0.2.4.ebuild b/dev-python/libpillowfight/libpillowfight-0.2.4.ebuild
new file mode 100644
index 00000000000..b18a134d648
--- /dev/null
+++ b/dev-python/libpillowfight/libpillowfight-0.2.4.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+MY_PN="pypillowfight"
+
+DESCRIPTION="Small library containing various image processing algorithms"
+HOMEPAGE="https://github.com/openpaperwork/libpillowfight"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+S=${WORKDIR}/${MY_PN}-${PV}
+
+python_prepare_all() {
+	sed -e "/'nose>=1.0'/d" -i setup.py || die
+	distutils-r1_python_prepare_all
+}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2018-04-09 10:15 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2018-04-09 10:15 UTC (permalink / raw
  To: gentoo-commits

commit:     ca9c2a5db1f4786c4ea1006884012c8c6be34116
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  9 09:53:09 2018 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Mon Apr  9 10:15:14 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca9c2a5d

dev-python/libpillowfight: switch to pypi releases

Update metadata links

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/libpillowfight/Manifest                               | 2 +-
 ...ibpillowfight-0.2.3.ebuild => libpillowfight-0.2.3-r1.ebuild} | 9 +++++----
 dev-python/libpillowfight/metadata.xml                           | 3 ++-
 3 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index d98340a9421..cfdb5bd70d7 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1,2 +1,2 @@
 DIST libpillowfight-0.2.2.tar.gz 23125494 BLAKE2B b9620b0e574869d1efcc9449e09f281a5d2611ec15f144ee24b385b5f6f693f037c844904f0abc715d49125df7d1a27d6c433aed83b33371b3f07310be8288db SHA512 76dcaf9105b4dbbe427851d794e92ba023453e2d750ecdd4e3feb864534f9d99adb562b719b7c9af299ae16c0778b510ab96b4997cf9bcc6ea4c6f8f7471ae8a
-DIST libpillowfight-0.2.3.tar.gz 14567996 BLAKE2B 2b3f289f8a86b2b50004adb158dd992fd18bdaac17f21de6f3a9493c8a54a869a788a71d71257845de43f6fa048789944d1b49fd2da190919dad18db7f7d70d0 SHA512 a1098776157a2f552c84bc0e36d8d69ec59e2405bb351253ebf4c5c241fe1ce0de01fac20b4240d010d555afaf4d2c269adce8c89894ab301e14f8c891a744da
+DIST pypillowfight-0.2.3.tar.gz 39416 BLAKE2B e216ddb1717189c142fc3d81d41c91855c52468e1af350d8f5db470f8901bd883223cad56dc8ced9cf61e90e511e0a5ef508ec6966a7f01a837e2bb0d393589f SHA512 6d3e35ed567d66060f5bf4307b0bd7d9ee5c3e7ec430e6e04ee6a1e83e18ff829a7681a85186e6b2151f043f66453c12a60e7cce56c0558da3d72f1fce155097

diff --git a/dev-python/libpillowfight/libpillowfight-0.2.3.ebuild b/dev-python/libpillowfight/libpillowfight-0.2.3-r1.ebuild
similarity index 71%
rename from dev-python/libpillowfight/libpillowfight-0.2.3.ebuild
rename to dev-python/libpillowfight/libpillowfight-0.2.3-r1.ebuild
index 72af33a9a74..b18a134d648 100644
--- a/dev-python/libpillowfight/libpillowfight-0.2.3.ebuild
+++ b/dev-python/libpillowfight/libpillowfight-0.2.3-r1.ebuild
@@ -6,9 +6,11 @@ PYTHON_COMPAT=( python3_{4,5,6} )
 
 inherit distutils-r1
 
+MY_PN="pypillowfight"
+
 DESCRIPTION="Small library containing various image processing algorithms"
 HOMEPAGE="https://github.com/openpaperwork/libpillowfight"
-SRC_URI="https://github.com/openpaperwork/libpillowfight/archive/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -19,10 +21,9 @@ RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
 	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
 
+S=${WORKDIR}/${MY_PN}-${PV}
+
 python_prepare_all() {
 	sed -e "/'nose>=1.0'/d" -i setup.py || die
 	distutils-r1_python_prepare_all
-
-	# Upstream Makefile requires git checkout
-	echo "#define INTERNAL_PILLOWFIGHT_VERSION \"${PV}\"" > src/pillowfight/_version.h || die
 }

diff --git a/dev-python/libpillowfight/metadata.xml b/dev-python/libpillowfight/metadata.xml
index ce9bac02678..c7823a9260d 100644
--- a/dev-python/libpillowfight/metadata.xml
+++ b/dev-python/libpillowfight/metadata.xml
@@ -6,6 +6,7 @@
     <name>Bernard Cafarelli</name>
   </maintainer>
   <upstream>
-    <remote-id type="github">jflesch/libpillowfight</remote-id>
+    <remote-id type="pypi">pypillowfight</remote-id>
+    <remote-id type="github">openpaperwork/libpillowfight</remote-id>
   </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2018-04-06  8:59 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2018-04-06  8:59 UTC (permalink / raw
  To: gentoo-commits

commit:     1db1d79b0d548ed609296184143845dbcb517848
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  6 08:59:41 2018 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Fri Apr  6 08:59:53 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1db1d79b

dev-python/libpillowfight: 0.2.3 bump

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/libpillowfight/Manifest                 |  1 +
 .../libpillowfight/libpillowfight-0.2.3.ebuild     | 28 ++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index 557831ff7b1..d98340a9421 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1 +1,2 @@
 DIST libpillowfight-0.2.2.tar.gz 23125494 BLAKE2B b9620b0e574869d1efcc9449e09f281a5d2611ec15f144ee24b385b5f6f693f037c844904f0abc715d49125df7d1a27d6c433aed83b33371b3f07310be8288db SHA512 76dcaf9105b4dbbe427851d794e92ba023453e2d750ecdd4e3feb864534f9d99adb562b719b7c9af299ae16c0778b510ab96b4997cf9bcc6ea4c6f8f7471ae8a
+DIST libpillowfight-0.2.3.tar.gz 14567996 BLAKE2B 2b3f289f8a86b2b50004adb158dd992fd18bdaac17f21de6f3a9493c8a54a869a788a71d71257845de43f6fa048789944d1b49fd2da190919dad18db7f7d70d0 SHA512 a1098776157a2f552c84bc0e36d8d69ec59e2405bb351253ebf4c5c241fe1ce0de01fac20b4240d010d555afaf4d2c269adce8c89894ab301e14f8c891a744da

diff --git a/dev-python/libpillowfight/libpillowfight-0.2.3.ebuild b/dev-python/libpillowfight/libpillowfight-0.2.3.ebuild
new file mode 100644
index 00000000000..72af33a9a74
--- /dev/null
+++ b/dev-python/libpillowfight/libpillowfight-0.2.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Small library containing various image processing algorithms"
+HOMEPAGE="https://github.com/openpaperwork/libpillowfight"
+SRC_URI="https://github.com/openpaperwork/libpillowfight/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+	sed -e "/'nose>=1.0'/d" -i setup.py || die
+	distutils-r1_python_prepare_all
+
+	# Upstream Makefile requires git checkout
+	echo "#define INTERNAL_PILLOWFIGHT_VERSION \"${PV}\"" > src/pillowfight/_version.h || die
+}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2018-01-12 17:57 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2018-01-12 17:57 UTC (permalink / raw
  To: gentoo-commits

commit:     101ff6936a3fbc49ffae060937af54a901574ddb
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 12 17:50:55 2018 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 17:57:38 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=101ff693

dev-python/libpillowfight: drop old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/libpillowfight/Manifest                 |  1 -
 .../libpillowfight/libpillowfight-0.2.1.ebuild     | 25 ----------------------
 2 files changed, 26 deletions(-)

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index 7f747efd811..557831ff7b1 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1,2 +1 @@
-DIST libpillowfight-0.2.1.tar.gz 23125246 BLAKE2B 74af3c24cbe252ec66a0c2ab1431189509d1da34620df8f37898ec5b45d9c30651f37fdede72906d8ec690b32020c8a2a6d70a17ff6102a4e489e61cd008a127 SHA512 352f23daa2cce39395604f3c545773fec26b336ae17cea9148b8d6b7f61f0fcd314ab08e4fde8dff85531ecfa07fbee0fda90e3258c04c39cad397a775318d95
 DIST libpillowfight-0.2.2.tar.gz 23125494 BLAKE2B b9620b0e574869d1efcc9449e09f281a5d2611ec15f144ee24b385b5f6f693f037c844904f0abc715d49125df7d1a27d6c433aed83b33371b3f07310be8288db SHA512 76dcaf9105b4dbbe427851d794e92ba023453e2d750ecdd4e3feb864534f9d99adb562b719b7c9af299ae16c0778b510ab96b4997cf9bcc6ea4c6f8f7471ae8a

diff --git a/dev-python/libpillowfight/libpillowfight-0.2.1.ebuild b/dev-python/libpillowfight/libpillowfight-0.2.1.ebuild
deleted file mode 100644
index 1401864b5c3..00000000000
--- a/dev-python/libpillowfight/libpillowfight-0.2.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Small library containing various image processing algorithms"
-HOMEPAGE="https://github.com/jflesch/libpillowfight"
-SRC_URI="https://github.com/jflesch/libpillowfight/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
-	sed -e "/'nose>=1.0'/d" -i setup.py || die
-	distutils-r1_python_prepare_all
-}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2017-06-09 11:11 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2017-06-09 11:11 UTC (permalink / raw
  To: gentoo-commits

commit:     dd78e88cf1ab93644cb416ac5e599470e5144ccc
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  9 11:09:10 2017 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Fri Jun  9 11:11:05 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd78e88c

dev-python/libpillowfight: 0.2.2 bump

Update homepage and python compatibility

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/libpillowfight/Manifest                 |  1 +
 .../libpillowfight/libpillowfight-0.2.2.ebuild     | 25 ++++++++++++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
index 682c378b604..dbb57cf2790 100644
--- a/dev-python/libpillowfight/Manifest
+++ b/dev-python/libpillowfight/Manifest
@@ -1 +1,2 @@
 DIST libpillowfight-0.2.1.tar.gz 23125246 SHA256 9a00e3636c8ebb00c40c6b0e6f4e6eb5a7ea7618704fdee18e145687f08de13c SHA512 352f23daa2cce39395604f3c545773fec26b336ae17cea9148b8d6b7f61f0fcd314ab08e4fde8dff85531ecfa07fbee0fda90e3258c04c39cad397a775318d95 WHIRLPOOL cdde4f9a4de9ff80557f21229549fe10192d2819f2a737973619c3b17cc83fab0faf084aa4c291e5dba8ae5094317664533f236b9ac38fed657bf7efa38298c1
+DIST libpillowfight-0.2.2.tar.gz 23125494 SHA256 de49337c1975e548bcc557121e4e9a417cfbd4dacee79f3d9aa4e402de041c75 SHA512 76dcaf9105b4dbbe427851d794e92ba023453e2d750ecdd4e3feb864534f9d99adb562b719b7c9af299ae16c0778b510ab96b4997cf9bcc6ea4c6f8f7471ae8a WHIRLPOOL 8bd6c72dbcb73ff33e2f4d8f61ef8b78d5d9dad9aec3972f9c1eb00ce14ed7f98278b7f9de3c3a95f11c8ac0f24313c0d8d5675df66e24fb6ecfdf8a962758a4

diff --git a/dev-python/libpillowfight/libpillowfight-0.2.2.ebuild b/dev-python/libpillowfight/libpillowfight-0.2.2.ebuild
new file mode 100644
index 00000000000..ccb2ccc8455
--- /dev/null
+++ b/dev-python/libpillowfight/libpillowfight-0.2.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Small library containing various image processing algorithms"
+HOMEPAGE="https://github.com/openpaperwork/libpillowfight"
+SRC_URI="https://github.com/openpaperwork/libpillowfight/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+	sed -e "/'nose>=1.0'/d" -i setup.py || die
+	distutils-r1_python_prepare_all
+}


^ permalink raw reply related	[flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/
@ 2016-11-10 14:28 Bernard Cafarelli
  0 siblings, 0 replies; 20+ messages in thread
From: Bernard Cafarelli @ 2016-11-10 14:28 UTC (permalink / raw
  To: gentoo-commits

commit:     efb01b0526ad1c639571edab555ae0c03a72a460
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 10 14:25:54 2016 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Thu Nov 10 14:28:11 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efb01b05

dev-python/libpillowfight: initial commit

New dep for app-text/paperwork

Package-Manager: portage-2.3.2

 dev-python/libpillowfight/Manifest                 |  1 +
 .../libpillowfight/libpillowfight-0.2.1.ebuild     | 26 ++++++++++++++++++++++
 dev-python/libpillowfight/metadata.xml             | 11 +++++++++
 3 files changed, 38 insertions(+)

diff --git a/dev-python/libpillowfight/Manifest b/dev-python/libpillowfight/Manifest
new file mode 100644
index 00000000..682c378
--- /dev/null
+++ b/dev-python/libpillowfight/Manifest
@@ -0,0 +1 @@
+DIST libpillowfight-0.2.1.tar.gz 23125246 SHA256 9a00e3636c8ebb00c40c6b0e6f4e6eb5a7ea7618704fdee18e145687f08de13c SHA512 352f23daa2cce39395604f3c545773fec26b336ae17cea9148b8d6b7f61f0fcd314ab08e4fde8dff85531ecfa07fbee0fda90e3258c04c39cad397a775318d95 WHIRLPOOL cdde4f9a4de9ff80557f21229549fe10192d2819f2a737973619c3b17cc83fab0faf084aa4c291e5dba8ae5094317664533f236b9ac38fed657bf7efa38298c1

diff --git a/dev-python/libpillowfight/libpillowfight-0.2.1.ebuild b/dev-python/libpillowfight/libpillowfight-0.2.1.ebuild
new file mode 100644
index 00000000..d679cbc
--- /dev/null
+++ b/dev-python/libpillowfight/libpillowfight-0.2.1.ebuild
@@ -0,0 +1,26 @@
+# 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="Small library containing various image processing algorithms"
+HOMEPAGE="https://github.com/jflesch/libpillowfight"
+SRC_URI="https://github.com/jflesch/libpillowfight/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/pillow[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+	sed -e "/'nose>=1.0'/d" -i setup.py || die
+	distutils-r1_python_prepare_all
+}

diff --git a/dev-python/libpillowfight/metadata.xml b/dev-python/libpillowfight/metadata.xml
new file mode 100644
index 00000000..ce9bac0
--- /dev/null
+++ b/dev-python/libpillowfight/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>voyageur@gentoo.org</email>
+    <name>Bernard Cafarelli</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">jflesch/libpillowfight</remote-id>
+  </upstream>
+</pkgmetadata>


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

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

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-01 20:41 [gentoo-commits] repo/gentoo:master commit in: dev-python/libpillowfight/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-05-18  5:50 Michał Górny
2023-06-03 16:27 Michał Górny
2023-06-03 16:27 Michał Górny
2023-02-01  7:58 Bernard Cafarelli
2022-10-30 20:28 Arthur Zamarin
2022-07-02 11:39 Arthur Zamarin
2021-11-14  8:46 Michał Górny
2021-11-03  9:08 Arthur Zamarin
2020-12-29 16:42 Bernard Cafarelli
2020-04-19 12:25 Bernard Cafarelli
2020-03-27 21:06 Michał Górny
2019-10-14 21:11 Bernard Cafarelli
2019-10-14 21:11 Bernard Cafarelli
2018-04-29 22:49 Bernard Cafarelli
2018-04-09 10:15 Bernard Cafarelli
2018-04-06  8:59 Bernard Cafarelli
2018-01-12 17:57 Bernard Cafarelli
2017-06-09 11:11 Bernard Cafarelli
2016-11-10 14:28 Bernard Cafarelli

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