public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/cptutils/files/, media-gfx/cptutils/
Date: Wed, 26 Apr 2017 00:19:52 +0000 (UTC)	[thread overview]
Message-ID: <1493165975.369b1507317f9dac19b5400613db0c15513e2a00.radhermit@gentoo> (raw)

commit:     369b1507317f9dac19b5400613db0c15513e2a00
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 26 00:17:50 2017 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Wed Apr 26 00:19:35 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=369b1507

media-gfx/cptutils: version bump to 1.68

 media-gfx/cptutils/Manifest                        |  1 +
 media-gfx/cptutils/cptutils-1.68.ebuild            | 42 ++++++++++++++++++++++
 .../files/cptutils-1.68-parallel-make.patch        | 30 ++++++++++++++++
 3 files changed, 73 insertions(+)

diff --git a/media-gfx/cptutils/Manifest b/media-gfx/cptutils/Manifest
index 65228cf3230..adb4a8fc844 100644
--- a/media-gfx/cptutils/Manifest
+++ b/media-gfx/cptutils/Manifest
@@ -1,2 +1,3 @@
 DIST cptutils-1.63.tar.gz 617427 SHA256 c0ee2d1bcfb478a352a67b2e54123cd9cea25bf701144bd473e981f16dd20edf SHA512 341a3fa3c504febc00386c5644392987150f00ec707879caf3f5c02151a0c8b9c728f0aecb35a798537c9c8605da7f736a66a21d856cb0ae691b37d335fc0e02 WHIRLPOOL fbdedb7a58c5cedcd5a7f9e940a9522ae96c44b7e0c7dc61cf8477d517eccdf895c71a147ea35ff7787d82488bc5144664941177de24a3f2574e5dfca2e588d3
 DIST cptutils-1.66.tar.gz 618839 SHA256 5d3ead5aaa1974694c9158a96b2ab2bf749ee82255f2f2cd0f84db93dfef986f SHA512 ffd33b4b1b7f9b7fbb1ff690b5919317963a590c1f94e65c72dae4545128980829ad3d3c3e7b29bdaba5a971ff2846ec2201ab287a95abf4187053614a39296d WHIRLPOOL cea8db87a547be88fcb635097a299d4b6bf936566a34389925ad60b9c94fc7310bd3c01094ed755eae2b37bdbc07345d72cb761758d2685f65037b1098cea8af
+DIST cptutils-1.68.tar.gz 623381 SHA256 37bbf1657f8bbcd9f62213a52686e7c5ebd4a927ca0ea7cb3b8c302eecd7563f SHA512 e618ea4463a026c56c95e8e4a9bfb0f5d47825568e7f64885bcf3872d4411af4e1ff480f192c61d9d8c946a46100d148c849fd3768f3acd54b070aacdd8dc1cc WHIRLPOOL 0eef89ea10267523c634f4a0a0d2b6e378d8d5e7c20bb8e21605ea237c8ca3d4bf4fb8c19a69d34486f4a2f4b4a9de852615dd25fe28727ea2048b1fb80b0344

diff --git a/media-gfx/cptutils/cptutils-1.68.ebuild b/media-gfx/cptutils/cptutils-1.68.ebuild
new file mode 100644
index 00000000000..023f25c568e
--- /dev/null
+++ b/media-gfx/cptutils/cptutils-1.68.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-single-r1
+
+DESCRIPTION="A number of utilities for the manipulation of color gradient files"
+HOMEPAGE="http://soliton.vm.bytemark.co.uk/pub/jjg/en/code/cptutils/"
+SRC_URI="http://soliton.vm.bytemark.co.uk/pub/jjg/src/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+CDEPEND="dev-libs/libxml2:2
+	media-libs/libpng:0="
+RDEPEND="${CDEPEND}
+	${PYTHON_DEPS}"
+DEPEND="${CDEPEND}
+	test? (
+		app-text/xmlstarlet
+		>=dev-util/cunit-2.1_p3
+	)"
+
+PATCHES=( "${FILESDIR}"/${P}-parallel-make.patch )
+
+src_prepare() {
+	default
+	python_fix_shebang src/gradient-convert/gradient-convert.py
+}
+
+src_configure() {
+	econf $(use_enable test tests)
+}
+
+src_test() {
+	emake unit
+}

diff --git a/media-gfx/cptutils/files/cptutils-1.68-parallel-make.patch b/media-gfx/cptutils/files/cptutils-1.68-parallel-make.patch
new file mode 100644
index 00000000000..14bf506314e
--- /dev/null
+++ b/media-gfx/cptutils/files/cptutils-1.68-parallel-make.patch
@@ -0,0 +1,30 @@
+--- cptutils-1.68/Makefile.in
++++ cptutils-1.68/Makefile.in
+@@ -8,23 +8,22 @@
+ RUBBISH   = *~
+ CONFFILES = config.cache config.log config.status configure Makefile
+ DIST      = cptutils-$(VERSION)
+-MAKE_SRC  = $(MAKE) -C src
+ 
+ # targets
+ 
+ default : all
+ 
+ all :
+-	$(MAKE_SRC) all
++	$(MAKE) -C src all
+ 
+ install :
+-	$(MAKE_SRC) install
++	$(MAKE) -C src install
+ 
+ test check :
+-	$(MAKE_SRC) --quiet test
++	$(MAKE) -C src --quiet test
+ 
+ unit :
+-	$(MAKE_SRC) --quiet unit
++	$(MAKE) -C src --quiet unit
+ 
+ clean :
+ 	$(RM) $(RUBBISH)


             reply	other threads:[~2017-04-26  0:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-26  0:19 Tim Harder [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-08-31 12:02 [gentoo-commits] repo/gentoo:master commit in: media-gfx/cptutils/files/, media-gfx/cptutils/ Tim Harder
2019-11-10 21:19 Tim Harder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1493165975.369b1507317f9dac19b5400613db0c15513e2a00.radhermit@gentoo \
    --to=radhermit@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox