public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/colorgcc/
@ 2015-08-24 16:29 Patrice Clement
  0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2015-08-24 16:29 UTC (permalink / raw
  To: gentoo-commits

commit:     51ecda50a3702804638d12605dc987003ad3cb1a
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 24 17:25:51 2015 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Aug 24 17:29:10 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51ecda50

dev-util/colorgcc: Drop old.

Package-Manager: portage-2.2.18
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 dev-util/colorgcc/colorgcc-1.3.2-r4.ebuild | 63 -----------------------------
 dev-util/colorgcc/colorgcc-1.3.2-r5.ebuild | 65 ------------------------------
 2 files changed, 128 deletions(-)

diff --git a/dev-util/colorgcc/colorgcc-1.3.2-r4.ebuild b/dev-util/colorgcc/colorgcc-1.3.2-r4.ebuild
deleted file mode 100644
index cb6c9d3..0000000
--- a/dev-util/colorgcc/colorgcc-1.3.2-r4.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils
-
-DESCRIPTION="Adds color to gcc output"
-HOMEPAGE="http://schlueters.de/colorgcc.html"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ~hppa ~mips ppc sparc x86"
-IUSE=""
-
-DEPEND="dev-lang/perl"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	epatch \
-		"${FILESDIR}"/${P}-gentoo-one.patch \
-		"${FILESDIR}"/${P}-gentoo-two.patch
-}
-
-src_compile() { :; }
-
-src_install() {
-	dobin colorgcc || die
-	dodir /etc/colorgcc /usr/lib/colorgcc/bin
-	insinto /etc/colorgcc
-	doins colorgccrc || die
-	einfo "Scanning for compiler front-ends"
-	into /usr/lib/colorgcc/bin
-	for a in gcc cc c++ g++ ${CHOST}-gcc ${CHOST}-c++ ${CHOST}-g++ ; do
-		if [ -n "$(type -p ${a})" ]; then
-			dosym /usr/bin/colorgcc /usr/lib/colorgcc/bin/${a}
-		fi
-	done
-
-	dodoc CREDITS ChangeLog || die
-}
-
-pkg_postinst() {
-	echo
-	elog "If you have existing \$HOME/.colorgccrc files that set the location"
-	elog "of the compilers, you should remove those lines for maximum"
-	elog "flexibility.  The colorgcc script now knows how to pass the command"
-	elog "on to the next step in the PATH without manual tweaking, making it"
-	elog "easier to use with things like ccache and distcc on a conditional"
-	elog "basis.  You can tweak the /etc/colorgcc/colorgccrc file to change"
-	elog "the default settings for everyone (or copy this file as a basis for"
-	elog "a custom \$HOME/.colorgccrc file)."
-	elog
-	elog "NOTE: the symlinks for colorgcc are now located in"
-	elog "/usr/lib/colorgcc/bin *NOT* /usr/bin/wrappers.  You'll need to"
-	elog "change any PATH settings that referred to the old location."
-	echo
-	# portage won't delete the old symlinks for users that are upgrading
-	# because the old symlinks still point to /usr/bin/colorgcc which exists...
-	[ -d "${ROOT}"/usr/bin/wrappers ] && rm -fr "${ROOT}"/usr/bin/wrappers
-}

diff --git a/dev-util/colorgcc/colorgcc-1.3.2-r5.ebuild b/dev-util/colorgcc/colorgcc-1.3.2-r5.ebuild
deleted file mode 100644
index 9b65985..0000000
--- a/dev-util/colorgcc/colorgcc-1.3.2-r5.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=3
-inherit eutils
-
-DESCRIPTION="Adds color to gcc output"
-HOMEPAGE="http://schlueters.de/colorgcc.html"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 hppa ~mips ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE=""
-
-DEPEND="dev-lang/perl"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	epatch \
-		"${FILESDIR}"/${P}-gentoo-one.patch \
-		"${FILESDIR}"/${P}-gentoo-two.patch \
-		"${FILESDIR}"/${P}-note.patch
-}
-
-src_configure() { :; }
-
-src_compile() { :; }
-
-src_install() {
-	dobin colorgcc || die
-	dodir /etc/colorgcc /usr/lib/colorgcc/bin
-	insinto /etc/colorgcc
-	doins colorgccrc || die
-	einfo "Scanning for compiler front-ends"
-	into /usr/lib/colorgcc/bin
-	for a in gcc cc c++ g++ ${CHOST}-gcc ${CHOST}-c++ ${CHOST}-g++ ; do
-		if [ -n "$(type -p ${a})" ]; then
-			dosym /usr/bin/colorgcc /usr/lib/colorgcc/bin/${a}
-		fi
-	done
-
-	dodoc CREDITS ChangeLog || die
-}
-
-pkg_postinst() {
-	echo
-	elog "If you have existing \$HOME/.colorgccrc files that set the location"
-	elog "of the compilers, you should remove those lines for maximum"
-	elog "flexibility.  The colorgcc script now knows how to pass the command"
-	elog "on to the next step in the PATH without manual tweaking, making it"
-	elog "easier to use with things like ccache and distcc on a conditional"
-	elog "basis.  You can tweak the /etc/colorgcc/colorgccrc file to change"
-	elog "the default settings for everyone (or copy this file as a basis for"
-	elog "a custom \$HOME/.colorgccrc file)."
-	elog
-	elog "NOTE: the symlinks for colorgcc are now located in"
-	elog "/usr/lib/colorgcc/bin *NOT* /usr/bin/wrappers.  You'll need to"
-	elog "change any PATH settings that referred to the old location."
-	echo
-	# portage won't delete the old symlinks for users that are upgrading
-	# because the old symlinks still point to /usr/bin/colorgcc which exists...
-	[ -d "${EROOT}"/usr/bin/wrappers ] && rm -fr "${EROOT}"/usr/bin/wrappers
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/colorgcc/
@ 2015-08-24 16:29 Patrice Clement
  0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2015-08-24 16:29 UTC (permalink / raw
  To: gentoo-commits

commit:     ceebdc13d07075e63bd4736c08dc2f16f340f264
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 24 17:14:36 2015 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Aug 24 17:29:06 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceebdc13

dev-util/colorgcc: Stable for amd64. Stable for the remaining arches using the ALLARCHES policy.

Package-Manager: portage-2.2.18
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild b/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild
index dc53b77..9a3b3f4 100644
--- a/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild
+++ b/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 hppa mips ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE=""
 
 DEPEND="dev-lang/perl"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/colorgcc/
@ 2015-08-24 16:29 Patrice Clement
  0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2015-08-24 16:29 UTC (permalink / raw
  To: gentoo-commits

commit:     d7faf6832de565eea3db599e8da1f2b9dffa2573
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 24 17:13:19 2015 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Aug 24 17:29:02 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7faf683

dev-util/colorgcc: EAPI 5 bump. Update HOMEPAGE and fixes bug 385761.

Package-Manager: portage-2.2.18
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild | 61 ++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

diff --git a/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild b/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild
new file mode 100644
index 0000000..dc53b77
--- /dev/null
+++ b/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils
+
+DESCRIPTION="Perl script to colorise the gcc output."
+HOMEPAGE="http://schlueters.de/colorgcc.html"
+SRC_URI="mirror://gentoo/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE=""
+
+DEPEND="dev-lang/perl"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	epatch \
+		"${FILESDIR}"/${P}-gentoo-one.patch \
+		"${FILESDIR}"/${P}-gentoo-two.patch \
+		"${FILESDIR}"/${P}-note.patch
+}
+
+src_install() {
+	dobin colorgcc || die
+	dodir /etc/colorgcc /usr/lib/colorgcc/bin
+	insinto /etc/colorgcc
+	doins colorgccrc || die
+	einfo "Scanning for compiler front-ends"
+	into /usr/lib/colorgcc/bin
+	for a in gcc cc c++ g++ ${CHOST}-gcc ${CHOST}-c++ ${CHOST}-g++ ; do
+		if [ -n "$(type -p ${a})" ]; then
+			dosym /usr/bin/colorgcc /usr/lib/colorgcc/bin/${a}
+		fi
+	done
+
+	dodoc CREDITS ChangeLog || die
+}
+
+pkg_postinst() {
+	echo
+	elog "If you have existing \$HOME/.colorgccrc files that set the location"
+	elog "of the compilers, you should remove those lines for maximum"
+	elog "flexibility.  The colorgcc script now knows how to pass the command"
+	elog "on to the next step in the PATH without manual tweaking, making it"
+	elog "easier to use with things like ccache and distcc on a conditional"
+	elog "basis.  You can tweak the /etc/colorgcc/colorgccrc file to change"
+	elog "the default settings for everyone (or copy this file as a basis for"
+	elog "a custom \$HOME/.colorgccrc file)."
+	elog
+	elog "NOTE: the symlinks for colorgcc are now located in"
+	elog "/usr/lib/colorgcc/bin *NOT* /usr/bin/wrappers.  You'll need to"
+	elog "change any PATH settings that referred to the old location."
+	echo
+	# portage won't delete the old symlinks for users that are upgrading
+	# because the old symlinks still point to /usr/bin/colorgcc which exists...
+	[ -d "${EROOT}"/usr/bin/wrappers ] && rm -fr "${EROOT}"/usr/bin/wrappers
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/colorgcc/
@ 2016-07-21 19:19 Patrice Clement
  0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2016-07-21 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     9c2dcd119d00d26a28874281e5a0846a08d94841
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 21 19:16:42 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Jul 21 19:19:34 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c2dcd11

dev-util/colorgcc: Clean up old.

Package-Manager: portage-2.2.28

 dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild | 61 ------------------------------
 1 file changed, 61 deletions(-)

diff --git a/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild b/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild
deleted file mode 100644
index 9a3b3f4..0000000
--- a/dev-util/colorgcc/colorgcc-1.3.2-r6.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="Perl script to colorise the gcc output."
-HOMEPAGE="http://schlueters.de/colorgcc.html"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 hppa mips ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE=""
-
-DEPEND="dev-lang/perl"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-	epatch \
-		"${FILESDIR}"/${P}-gentoo-one.patch \
-		"${FILESDIR}"/${P}-gentoo-two.patch \
-		"${FILESDIR}"/${P}-note.patch
-}
-
-src_install() {
-	dobin colorgcc || die
-	dodir /etc/colorgcc /usr/lib/colorgcc/bin
-	insinto /etc/colorgcc
-	doins colorgccrc || die
-	einfo "Scanning for compiler front-ends"
-	into /usr/lib/colorgcc/bin
-	for a in gcc cc c++ g++ ${CHOST}-gcc ${CHOST}-c++ ${CHOST}-g++ ; do
-		if [ -n "$(type -p ${a})" ]; then
-			dosym /usr/bin/colorgcc /usr/lib/colorgcc/bin/${a}
-		fi
-	done
-
-	dodoc CREDITS ChangeLog || die
-}
-
-pkg_postinst() {
-	echo
-	elog "If you have existing \$HOME/.colorgccrc files that set the location"
-	elog "of the compilers, you should remove those lines for maximum"
-	elog "flexibility.  The colorgcc script now knows how to pass the command"
-	elog "on to the next step in the PATH without manual tweaking, making it"
-	elog "easier to use with things like ccache and distcc on a conditional"
-	elog "basis.  You can tweak the /etc/colorgcc/colorgccrc file to change"
-	elog "the default settings for everyone (or copy this file as a basis for"
-	elog "a custom \$HOME/.colorgccrc file)."
-	elog
-	elog "NOTE: the symlinks for colorgcc are now located in"
-	elog "/usr/lib/colorgcc/bin *NOT* /usr/bin/wrappers.  You'll need to"
-	elog "change any PATH settings that referred to the old location."
-	echo
-	# portage won't delete the old symlinks for users that are upgrading
-	# because the old symlinks still point to /usr/bin/colorgcc which exists...
-	[ -d "${EROOT}"/usr/bin/wrappers ] && rm -fr "${EROOT}"/usr/bin/wrappers
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/colorgcc/
@ 2016-07-21 19:19 Patrice Clement
  0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2016-07-21 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     360801aac57f8e571f42ecb981d769f014b37763
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 21 19:13:39 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Jul 21 19:18:58 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360801aa

dev-util/colorgcc: Stable for amd64. Retroactively mark stable for the remaining arches using the ALLARCHES policy.

Also tidy up ebuild a bit.

Package-Manager: portage-2.2.28

 dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild | 31 ++++++++++++++++--------------
 1 file changed, 17 insertions(+), 14 deletions(-)

diff --git a/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild b/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
index 2a18254..8693fd4 100644
--- a/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
+++ b/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
-
 EAPI=5
+
 inherit eutils
 
 DESCRIPTION="Perl script to colorise the gcc output."
@@ -11,7 +11,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 hppa mips ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE=""
 
 DEPEND="dev-lang/perl"
@@ -29,19 +29,19 @@ src_prepare() {
 }
 
 src_install() {
-	dobin colorgcc || die
-	dodir /etc/colorgcc /usr/lib/colorgcc/bin
-	insinto /etc/colorgcc
-	doins colorgccrc || die
+	dobin "${PN}"
+	dodir "/etc/${PN}" "/usr/lib/${PN}/bin"
+	insinto "/etc/${PN}"
+	doins "${PN}rc"
 	einfo "Scanning for compiler front-ends"
-	into /usr/lib/colorgcc/bin
-	for a in gcc cc c++ g++ ${CHOST}-gcc ${CHOST}-c++ ${CHOST}-g++ ; do
-		if [ -n "$(type -p ${a})" ]; then
-			dosym /usr/bin/colorgcc /usr/lib/colorgcc/bin/${a}
-		fi
+	into "/usr/lib/${PN}/bin"
+	local COMPILERS=( gcc cc c++ g++ ${CHOST}-gcc ${CHOST}-c++ ${CHOST}-g++ )
+	for c in "${COMPILERS[@]}"; do
+		[[ -n "$(type -p ${c})" ]] && \
+			dosym "/usr/bin/${PN}" "/usr/lib/${PN}/bin/${c}"
 	done
 
-	dodoc CREDITS ChangeLog || die
+	dodoc CREDITS ChangeLog
 }
 
 pkg_postinst() {
@@ -59,7 +59,10 @@ pkg_postinst() {
 	elog "/usr/lib/colorgcc/bin *NOT* /usr/bin/wrappers.  You'll need to"
 	elog "change any PATH settings that referred to the old location."
 	echo
+
 	# portage won't delete the old symlinks for users that are upgrading
 	# because the old symlinks still point to /usr/bin/colorgcc which exists...
-	[ -d "${EROOT}"/usr/bin/wrappers ] && rm -fr "${EROOT}"/usr/bin/wrappers
+	if [[ -d "${EROOT}"/usr/bin/wrappers ]]; then
+		rm -frv "${EROOT}"/usr/bin/wrappers || die
+	fi
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/colorgcc/
@ 2017-01-28 14:35 Mart Raudsepp
  0 siblings, 0 replies; 8+ messages in thread
From: Mart Raudsepp @ 2017-01-28 14:35 UTC (permalink / raw
  To: gentoo-commits

commit:     d6fbf229a9c251e2f984584e3d8a15b6847542fe
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 28 14:34:58 2017 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Jan 28 14:34:58 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6fbf229

dev-util/colorgcc: Drop to ~mips; mips doesn't do stable keywords right now

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild b/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
index 8693fd4..fda7336 100644
--- a/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
+++ b/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="alpha amd64 hppa mips ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE=""
 
 DEPEND="dev-lang/perl"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/colorgcc/
@ 2017-11-25 14:19 Patrick Lauer
  0 siblings, 0 replies; 8+ messages in thread
From: Patrick Lauer @ 2017-11-25 14:19 UTC (permalink / raw
  To: gentoo-commits

commit:     854eb346c5965bb69b4b77f330dde782d5f5b789
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 14:10:23 2017 +0000
Commit:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 14:19:04 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=854eb346

dev-util/colorgcc: Whitespace

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild b/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
index 3b6bbf7c782..35ac497be83 100644
--- a/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
+++ b/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
@@ -1,5 +1,6 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
+
 EAPI=5
 
 inherit eutils


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/colorgcc/
@ 2022-02-02 10:48 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-02-02 10:48 UTC (permalink / raw
  To: gentoo-commits

commit:     ffdb43093ce4d9363d362b8369b60b1a32474f72
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  2 10:48:07 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb  2 10:48:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffdb4309

dev-util/colorgcc: Stabilize 1.3.2-r7 hppa, #832536

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild b/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
index 5843b51a93c8..5632536ed64d 100644
--- a/dev-util/colorgcc/colorgcc-1.3.2-r7.ebuild
+++ b/dev-util/colorgcc/colorgcc-1.3.2-r7.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
@@ -9,7 +9,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~mips ppc sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 hppa ~mips ppc sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 
 DEPEND="dev-lang/perl"
 RDEPEND="${DEPEND}"


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

end of thread, other threads:[~2022-02-02 10:48 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-24 16:29 [gentoo-commits] repo/gentoo:master commit in: dev-util/colorgcc/ Patrice Clement
  -- strict thread matches above, loose matches on Subject: below --
2015-08-24 16:29 Patrice Clement
2015-08-24 16:29 Patrice Clement
2016-07-21 19:19 Patrice Clement
2016-07-21 19:19 Patrice Clement
2017-01-28 14:35 Mart Raudsepp
2017-11-25 14:19 Patrick Lauer
2022-02-02 10:48 Sam James

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