public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutterbug/
@ 2016-05-06 16:32 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2016-05-06 16:32 UTC (permalink / raw
  To: gentoo-commits

commit:     5a3cc3108312a8982db95c0615361a4b1fe46884
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May  6 16:21:27 2016 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May  6 16:32:05 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a3cc310

x11-misc/shutterbug: Fix global scope use* calls, #582206

Copy the solution for global scope use* calls from newer ebuilds.

 x11-misc/shutterbug/shutterbug-1.6.36.ebuild | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
index 89d7e03..0afa601 100644
--- a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
+++ b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
@@ -21,6 +21,8 @@ DEPEND="
 
 RDEPEND="${DEPEND}"
 
-FOXCONF="$(use_enable jpeg) \
-	$(use_enable png) \
-	$(use_enable tiff)"
+src_configure() {
+	FOXCONF="$(use_enable jpeg) \
+		$(use_enable png) \
+		$(use_enable tiff)" fox_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutterbug/
@ 2016-05-07 21:49 Andreas Hüttel
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas Hüttel @ 2016-05-07 21:49 UTC (permalink / raw
  To: gentoo-commits

commit:     28602329502d907d0979c451b0e511c2c8fa5dd1
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat May  7 21:49:24 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat May  7 21:49:24 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28602329

Revert "x11-misc/shutterbug: Fix global scope use* calls, #582206" - repoman would have prevented more breakage

This reverts commit 5a3cc3108312a8982db95c0615361a4b1fe46884.

 x11-misc/shutterbug/shutterbug-1.6.36.ebuild | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
index 0afa601..89d7e03 100644
--- a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
+++ b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
@@ -21,8 +21,6 @@ DEPEND="
 
 RDEPEND="${DEPEND}"
 
-src_configure() {
-	FOXCONF="$(use_enable jpeg) \
-		$(use_enable png) \
-		$(use_enable tiff)" fox_src_configure
-}
+FOXCONF="$(use_enable jpeg) \
+	$(use_enable png) \
+	$(use_enable tiff)"


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutterbug/
@ 2016-06-05 18:33 Mike Gilbert
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert @ 2016-06-05 18:33 UTC (permalink / raw
  To: gentoo-commits

commit:     eea8527d29d175108d5c1d12eeb3d4f4f57f9b13
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  5 18:32:27 2016 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Jun  5 18:33:07 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eea8527d

x11-misc/shutterbug: move FOXCONF definition to src_compile

Bug: https://bugs.gentoo.org/582206

Package-Manager: portage-2.3.0_rc1_p14

 x11-misc/shutterbug/shutterbug-1.6.36.ebuild | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
index 89d7e03..7f82640 100644
--- a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
+++ b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -21,6 +21,8 @@ DEPEND="
 
 RDEPEND="${DEPEND}"
 
-FOXCONF="$(use_enable jpeg) \
-	$(use_enable png) \
-	$(use_enable tiff)"
+src_compile() {
+	FOXCONF="$(use_enable jpeg) \
+		$(use_enable png) \
+		$(use_enable tiff)" fox_src_compile
+}


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutterbug/
@ 2016-08-06 10:51 Pacho Ramos
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos @ 2016-08-06 10:51 UTC (permalink / raw
  To: gentoo-commits

commit:     6187a7d2461d8a9a254d66ef0fc4ec62a360a87a
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  6 10:47:56 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Aug  6 10:47:56 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6187a7d2

x11-misc/shutterbug: Cleanup per bug #150215

Package-Manager: portage-2.3.0

 x11-misc/shutterbug/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/x11-misc/shutterbug/metadata.xml b/x11-misc/shutterbug/metadata.xml
index e311790..097975e 100644
--- a/x11-misc/shutterbug/metadata.xml
+++ b/x11-misc/shutterbug/metadata.xml
@@ -1,8 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>mabi@gentoo.org</email>
-		<name>Matti Bickel</name>
-	</maintainer>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutterbug/
@ 2016-10-27  0:56 Chris Reffett
  0 siblings, 0 replies; 6+ messages in thread
From: Chris Reffett @ 2016-10-27  0:56 UTC (permalink / raw
  To: gentoo-commits

commit:     eda2b9ad4435e411fc257ac3a8c4aaf7b5aec584
Author:     Chris Reffett <creffett <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 00:40:45 2016 +0000
Commit:     Chris Reffett <creffett <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 00:54:25 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eda2b9ad

x11-misc/shutterbug: Remove old EAPI-1 ebuild

Package-Manager: portage-2.3.2

 x11-misc/shutterbug/Manifest                 |  1 -
 x11-misc/shutterbug/shutterbug-1.6.36.ebuild | 28 ----------------------------
 2 files changed, 29 deletions(-)

diff --git a/x11-misc/shutterbug/Manifest b/x11-misc/shutterbug/Manifest
index be8d2e7..334523b 100644
--- a/x11-misc/shutterbug/Manifest
+++ b/x11-misc/shutterbug/Manifest
@@ -1,4 +1,3 @@
-DIST fox-1.6.36.tar.gz 4344694 SHA256 cf8f4d09e104d6b3c425df3ce5b3bd54ed4c8095389f742f81370aba16169dff SHA512 2985404d6b2122159e9859d3490a154b75429bb1cf9d9920155f454012ef88fbd005548db0e68d55826d7b9d68ec745bccd14e27a8ff13bdbf5c8357f47ccdc0 WHIRLPOOL 74af19f2d041b785e88799b1fc8aad5c94efa30e53b9fecd0e8bfb6abff58c3930ef28e91d3199d79acacb100d2281ad7497bc1656556ef0d78daa109f90c860
 DIST fox-1.7.45.tar.gz 5254563 SHA256 78f2b5f609a52d21da08e693d45b8eeb9d4ceed52ad86e451ef4485f2375c829 SHA512 ec8acf0eb0b1882254f7df2abdcb87445992fc9fb8165afcc08b8dd52a718cb31953849efc7a530bd682e6265687bdf4dc9fb5c930557b9405235182894684b0 WHIRLPOOL 08808e67e0e31c7389b1d4ac097d7d707fb48a925df233021913bc80363002c0c4ce19c8630f4bd5c87ebb5bc5c010dc7f3260f415dfa5b60390c5aae316de78
 DIST fox-1.7.47.tar.gz 5271135 SHA256 7f1de8566b88b0010137ea1172168d53494d2d14bfa03fe32f7796146a31a2a3 SHA512 8802c7a21ba35b48a638fb87354da3de54c82ebdd3f931a601f55473fe1f7c16bfa2df253e8531af2058665d9b6f31adf52f6973c2d94f435cc90ac112af22ed WHIRLPOOL fbcf4540b268e95fa4d70ed335d8f499ec46e18390cdc090c98c21b4be5ff3ec576439265cfcf8b90c037fed7937c3a5f19f8544db1906cf86a3f255b8092d62
 DIST fox-1.7.49.tar.gz 5336321 SHA256 2435c56cde3ba6617c638af4f3bac39e8f4d5dd5a5c6d0805d274c7ba05c520c SHA512 da6c3478370f1e72091675e49f8458a6722eca4735bf89052b2b7ef02f4e74ee41f10c9fcc39a24a1571dd0bb1cdf779e9dea5bf15be20722ca783c9d59eb6e9 WHIRLPOOL 53ad3d34e57507702fc2ac9bd7b446021a99e3dff5b337cda090a670b06d4733abce2bbca88a7586e8af2d00f16ee84b0bd3c42f66fd6e430cc6d342bb76b1ff

diff --git a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild b/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
deleted file mode 100644
index 7f82640..00000000
--- a/x11-misc/shutterbug/shutterbug-1.6.36.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="1"
-
-inherit fox
-
-DESCRIPTION="Screenshot utility based on the FOX Toolkit"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ppc ppc64 ~sparc x86"
-IUSE="jpeg png tiff"
-
-DEPEND="
-	x11-libs/fox:1.6
-	jpeg? ( virtual/jpeg )
-	png? ( media-libs/libpng:0 )
-	tiff? ( media-libs/tiff:0 )"
-
-RDEPEND="${DEPEND}"
-
-src_compile() {
-	FOXCONF="$(use_enable jpeg) \
-		$(use_enable png) \
-		$(use_enable tiff)" fox_src_compile
-}


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutterbug/
@ 2017-02-21  8:14 David Seifert
  0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2017-02-21  8:14 UTC (permalink / raw
  To: gentoo-commits

commit:     0a609f67412e65604232c38b59fa827bd23fa9a2
Author:     Harri Nieminen <moikkis <AT> gmail <DOT> com>
AuthorDate: Mon Feb 20 09:16:17 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Feb 21 08:13:15 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a609f67

x11-misc/shutterbug: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4043

 x11-misc/shutterbug/Manifest                 |  2 --
 x11-misc/shutterbug/shutterbug-1.7.45.ebuild | 28 --------------------------
 x11-misc/shutterbug/shutterbug-1.7.47.ebuild | 30 ----------------------------
 3 files changed, 60 deletions(-)

diff --git a/x11-misc/shutterbug/Manifest b/x11-misc/shutterbug/Manifest
index 334523b2cf..8307d9d481 100644
--- a/x11-misc/shutterbug/Manifest
+++ b/x11-misc/shutterbug/Manifest
@@ -1,3 +1 @@
-DIST fox-1.7.45.tar.gz 5254563 SHA256 78f2b5f609a52d21da08e693d45b8eeb9d4ceed52ad86e451ef4485f2375c829 SHA512 ec8acf0eb0b1882254f7df2abdcb87445992fc9fb8165afcc08b8dd52a718cb31953849efc7a530bd682e6265687bdf4dc9fb5c930557b9405235182894684b0 WHIRLPOOL 08808e67e0e31c7389b1d4ac097d7d707fb48a925df233021913bc80363002c0c4ce19c8630f4bd5c87ebb5bc5c010dc7f3260f415dfa5b60390c5aae316de78
-DIST fox-1.7.47.tar.gz 5271135 SHA256 7f1de8566b88b0010137ea1172168d53494d2d14bfa03fe32f7796146a31a2a3 SHA512 8802c7a21ba35b48a638fb87354da3de54c82ebdd3f931a601f55473fe1f7c16bfa2df253e8531af2058665d9b6f31adf52f6973c2d94f435cc90ac112af22ed WHIRLPOOL fbcf4540b268e95fa4d70ed335d8f499ec46e18390cdc090c98c21b4be5ff3ec576439265cfcf8b90c037fed7937c3a5f19f8544db1906cf86a3f255b8092d62
 DIST fox-1.7.49.tar.gz 5336321 SHA256 2435c56cde3ba6617c638af4f3bac39e8f4d5dd5a5c6d0805d274c7ba05c520c SHA512 da6c3478370f1e72091675e49f8458a6722eca4735bf89052b2b7ef02f4e74ee41f10c9fcc39a24a1571dd0bb1cdf779e9dea5bf15be20722ca783c9d59eb6e9 WHIRLPOOL 53ad3d34e57507702fc2ac9bd7b446021a99e3dff5b337cda090a670b06d4733abce2bbca88a7586e8af2d00f16ee84b0bd3c42f66fd6e430cc6d342bb76b1ff

diff --git a/x11-misc/shutterbug/shutterbug-1.7.45.ebuild b/x11-misc/shutterbug/shutterbug-1.7.45.ebuild
deleted file mode 100644
index ea12864b16..0000000000
--- a/x11-misc/shutterbug/shutterbug-1.7.45.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit fox
-
-DESCRIPTION="Screenshot utility based on the FOX Toolkit"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="+jpeg +png +tiff"
-
-DEPEND="
-	x11-libs/fox:1.7
-	jpeg? ( virtual/jpeg )
-	png? ( media-libs/libpng:0 )
-	tiff? ( media-libs/tiff:0 )"
-
-RDEPEND="${DEPEND}"
-
-src_configure() {
-	FOXCONF="$(use_enable jpeg) \
-		$(use_enable png) \
-		$(use_enable tiff)" fox_src_configure
-}

diff --git a/x11-misc/shutterbug/shutterbug-1.7.47.ebuild b/x11-misc/shutterbug/shutterbug-1.7.47.ebuild
deleted file mode 100644
index f5b2e70358..0000000000
--- a/x11-misc/shutterbug/shutterbug-1.7.47.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit fox
-
-DESCRIPTION="Screenshot utility based on the FOX Toolkit"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="+jpeg +png +tiff"
-
-DEPEND="
-	x11-libs/fox:1.7
-	x11-libs/libICE
-	x11-libs/libSM
-	jpeg? ( virtual/jpeg )
-	png? ( media-libs/libpng:0 )
-	tiff? ( media-libs/tiff:0 )"
-
-RDEPEND="${DEPEND}"
-
-src_configure() {
-	FOXCONF="$(use_enable jpeg) \
-		$(use_enable png) \
-		$(use_enable tiff)" fox_src_configure
-}


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

end of thread, other threads:[~2017-02-21  8:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-07 21:49 [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutterbug/ Andreas Hüttel
  -- strict thread matches above, loose matches on Subject: below --
2017-02-21  8:14 David Seifert
2016-10-27  0:56 Chris Reffett
2016-08-06 10:51 Pacho Ramos
2016-06-05 18:33 Mike Gilbert
2016-05-06 16:32 Michał Górny

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