* [gentoo-commits] repo/gentoo:master commit in: dev-python/pgmagick/
@ 2015-12-22 14:21 Ian Delaney
0 siblings, 0 replies; 3+ messages in thread
From: Ian Delaney @ 2015-12-22 14:21 UTC (permalink / raw
To: gentoo-commits
commit: 27fb9d59113ca61af75cc6a2200983af5e663b05
Author: Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 22 14:19:12 2015 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Tue Dec 22 14:21:10 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27fb9d59
dev-python/pgmagick: bump to vn. 0.6, added py3.4 py3.5 support
Package-Manager: portage-2.2.24
dev-python/pgmagick/Manifest | 1 +
dev-python/pgmagick/pgmagick-0.6.ebuild | 40 +++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-python/pgmagick/Manifest b/dev-python/pgmagick/Manifest
index 8a900c2..4d216e8 100644
--- a/dev-python/pgmagick/Manifest
+++ b/dev-python/pgmagick/Manifest
@@ -1,2 +1,3 @@
DIST pgmagick-0.5.10.tar.gz 39826 SHA256 89274107200a84e56e0fc4f6c482fd3b865d28c820c6d3e81cdbd4089e2dd233 SHA512 a5b05c50e8ffd61dc84547d7dcba7d47b4d31d19b00c372eac84324faa9b88194ef3283224a60ce0bc17fa1de8f22cec188dc03388fb119ace7c4b6c6eab875f WHIRLPOOL aeaee541af0ebc6f474fc20a5b38d635cd27602594602d7132ab96cc11172509fa5218e71719a46792a7dfe63872a30ef11019c92eb0d0bb433a468de59b7494
DIST pgmagick-0.5.11.tar.gz 39872 SHA256 83d611bb516eb2465a0167463f427f3fbdd6fa4efa1b8a24caa64fcec6bc8b3d SHA512 6b53204319538ca05e25e601135c47acfffb8af7f062c567875ad5740daf0d30263aefe7180a478d605b98922a7f3e5a2ae1f56d01b2e5f1d5c6b4b34fb6d44f WHIRLPOOL f53bacd57521bddea70564fbe934de918dc1563859656804c4d1d5e941e9c23869c4636b047ceab6baff726b83040a45849f5e4eabdb805198aa5bc694021358
+DIST pgmagick-0.6.tar.gz 40593 SHA256 9e315c17edcc10adeae05aac49b6082a5aca8937822d207563858875c814186b SHA512 b6c80ebfe0361e0a1b54a9cb8fc8102db0aa56347f4c8842cd8745f6beab1b01e1f51b1084fb51718db4b96b560aa220e103395d42d300017a17a9adf52bd294 WHIRLPOOL d3d19bbf62b40a1f05cdd5404af456a3de988b361b8e160ec272c93bc118b3d45cf348c1bda86fbfc0087d3bc1dc099db978e87bdea1a916af5fd3292439c973
diff --git a/dev-python/pgmagick/pgmagick-0.6.ebuild b/dev-python/pgmagick/pgmagick-0.6.ebuild
new file mode 100644
index 0000000..f9c6f4f
--- /dev/null
+++ b/dev-python/pgmagick/pgmagick-0.6.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Yet another boost.python based wrapper for GraphicsMagick"
+HOMEPAGE="https://pypi.python.org/pypi/pgmagick/ https://bitbucket.org/hhatto/pgmagick/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="media-gfx/graphicsmagick[cxx]
+ dev-libs/boost:=[python,${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( ${RDEPEND}
+ media-fonts/corefonts )"
+
+python_test() {
+ # The tests are written for py2 only, however there is only
+ # one test, test_pgmagick_libinfo.py
+ # Need to adjust the one test to py3 syntax
+ if python_is_python3; then
+ sed -e 's: libinfo.version:(libinfo.version):' \
+ -e 's: libinfo.library:(libinfo.library):' \
+ -i test/test_pgmagick_libinfo.py || die
+ fi
+
+ for test in test/test_*.py; do
+ "${PYTHON}" $test || die "test $test failed under ${EPYTHON}"
+ done
+ # As long as the order of pythons are not agon changed, this will suffice
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pgmagick/
@ 2017-09-04 11:46 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2017-09-04 11:46 UTC (permalink / raw
To: gentoo-commits
commit: eb629a5e3ae7ffe9f1335b94756787bed8c6093a
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 4 11:42:42 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Sep 4 11:46:07 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb629a5e
dev-python/pgmagick: Remove old
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-python/pgmagick/Manifest | 1 -
dev-python/pgmagick/pgmagick-0.6.ebuild | 39 ---------------------------------
2 files changed, 40 deletions(-)
diff --git a/dev-python/pgmagick/Manifest b/dev-python/pgmagick/Manifest
index dfd8bb5a7ce..ce1fde07315 100644
--- a/dev-python/pgmagick/Manifest
+++ b/dev-python/pgmagick/Manifest
@@ -1,2 +1 @@
DIST pgmagick-0.6.7.tar.gz 357392 SHA256 c84a5eaa275d7b156376289c38e569bf99d85bc568967e40e014c41c688f2a39 SHA512 0a8812457c0803a1b7ca228c77691ebfb1d51689acfce7a3c36a3b10f16020cc6e4814808985b38a79fe1ecbe77cf29f4ed6b7bf813ecaa72545127919c59c7c WHIRLPOOL 41e2ad56aa0635a3663ce312e38e71454c6840c0708c83875d070c8356c9f3fdbddfe64fd632b46fad35a9989c695575bb8f0435530aefcccdf8e7a8c1c7806c
-DIST pgmagick-0.6.tar.gz 40593 SHA256 9e315c17edcc10adeae05aac49b6082a5aca8937822d207563858875c814186b SHA512 b6c80ebfe0361e0a1b54a9cb8fc8102db0aa56347f4c8842cd8745f6beab1b01e1f51b1084fb51718db4b96b560aa220e103395d42d300017a17a9adf52bd294 WHIRLPOOL d3d19bbf62b40a1f05cdd5404af456a3de988b361b8e160ec272c93bc118b3d45cf348c1bda86fbfc0087d3bc1dc099db978e87bdea1a916af5fd3292439c973
diff --git a/dev-python/pgmagick/pgmagick-0.6.ebuild b/dev-python/pgmagick/pgmagick-0.6.ebuild
deleted file mode 100644
index c092f008a12..00000000000
--- a/dev-python/pgmagick/pgmagick-0.6.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Yet another boost.python based wrapper for GraphicsMagick"
-HOMEPAGE="https://pypi.python.org/pypi/pgmagick/ https://bitbucket.org/hhatto/pgmagick/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="media-gfx/graphicsmagick[cxx]
- dev-libs/boost:=[python,${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( ${RDEPEND}
- media-fonts/corefonts )"
-
-python_test() {
- # The tests are written for py2 only, however there is only
- # one test, test_pgmagick_libinfo.py
- # Need to adjust the one test to py3 syntax
- if python_is_python3; then
- sed -e 's: libinfo.version:(libinfo.version):' \
- -e 's: libinfo.library:(libinfo.library):' \
- -i test/test_pgmagick_libinfo.py || die
- fi
-
- for test in test/test_*.py; do
- "${PYTHON}" $test || die "test $test failed under ${EPYTHON}"
- done
- # As long as the order of pythons are not agon changed, this will suffice
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pgmagick/
@ 2017-09-04 11:46 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2017-09-04 11:46 UTC (permalink / raw
To: gentoo-commits
commit: 812c2b692fc08056c603830227cae7395550b02f
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 4 11:41:58 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Sep 4 11:46:02 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=812c2b69
dev-python/pgmagick: Bump to 0.6.7
Closes: https://bugs.gentoo.org/show_bug.cgi?id=580080
Closes: https://bugs.gentoo.org/show_bug.cgi?id=586072
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-python/pgmagick/Manifest | 1 +
dev-python/pgmagick/pgmagick-0.6.7.ebuild | 35 +++++++++++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/dev-python/pgmagick/Manifest b/dev-python/pgmagick/Manifest
index e2613021a2a..dfd8bb5a7ce 100644
--- a/dev-python/pgmagick/Manifest
+++ b/dev-python/pgmagick/Manifest
@@ -1 +1,2 @@
+DIST pgmagick-0.6.7.tar.gz 357392 SHA256 c84a5eaa275d7b156376289c38e569bf99d85bc568967e40e014c41c688f2a39 SHA512 0a8812457c0803a1b7ca228c77691ebfb1d51689acfce7a3c36a3b10f16020cc6e4814808985b38a79fe1ecbe77cf29f4ed6b7bf813ecaa72545127919c59c7c WHIRLPOOL 41e2ad56aa0635a3663ce312e38e71454c6840c0708c83875d070c8356c9f3fdbddfe64fd632b46fad35a9989c695575bb8f0435530aefcccdf8e7a8c1c7806c
DIST pgmagick-0.6.tar.gz 40593 SHA256 9e315c17edcc10adeae05aac49b6082a5aca8937822d207563858875c814186b SHA512 b6c80ebfe0361e0a1b54a9cb8fc8102db0aa56347f4c8842cd8745f6beab1b01e1f51b1084fb51718db4b96b560aa220e103395d42d300017a17a9adf52bd294 WHIRLPOOL d3d19bbf62b40a1f05cdd5404af456a3de988b361b8e160ec272c93bc118b3d45cf348c1bda86fbfc0087d3bc1dc099db978e87bdea1a916af5fd3292439c973
diff --git a/dev-python/pgmagick/pgmagick-0.6.7.ebuild b/dev-python/pgmagick/pgmagick-0.6.7.ebuild
new file mode 100644
index 00000000000..7e33e5a5ae0
--- /dev/null
+++ b/dev-python/pgmagick/pgmagick-0.6.7.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Yet another boost.python based wrapper for GraphicsMagick"
+HOMEPAGE="https://pypi.python.org/pypi/pgmagick/ https://bitbucket.org/hhatto/pgmagick/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+ media-gfx/graphicsmagick:=[cxx]
+ dev-libs/boost:=[python,${PYTHON_USEDEP}]"
+DEPEND="
+ ${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( media-fonts/corefonts )"
+
+python_test() {
+ cd test || die
+
+ local t
+ for t in test_*.py; do
+ "${EPYTHON}" "${t}" || die "test ${t} failed under ${EPYTHON}"
+ done
+ # As long as the order of python impls is not changed, this will suffice
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-09-04 11:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-22 14:21 [gentoo-commits] repo/gentoo:master commit in: dev-python/pgmagick/ Ian Delaney
-- strict thread matches above, loose matches on Subject: below --
2017-09-04 11:46 David Seifert
2017-09-04 11:46 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox