* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2010-04-18 20:33 Harald van Dijk (truedfx)
0 siblings, 0 replies; 11+ messages in thread
From: Harald van Dijk (truedfx) @ 2010-04-18 20:33 UTC (permalink / raw
To: gentoo-commits
truedfx 10/04/18 20:33:15
Modified: ChangeLog
Added: icon-9.5.0.ebuild
Log:
Version bump, bug #314949
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.40 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.39&r2=1.40
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog 14 Apr 2010 19:44:51 -0000 1.39
+++ ChangeLog 18 Apr 2010 20:33:15 -0000 1.40
@@ -1,6 +1,12 @@
# ChangeLog for dev-lang/icon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.39 2010/04/14 19:44:51 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.40 2010/04/18 20:33:15 truedfx Exp $
+
+*icon-9.5.0 (18 Apr 2010)
+
+ 18 Apr 2010; Harald van Dijk <truedfx@gentoo.org> +icon-9.5.0.ebuild,
+ +files/icon-9.5.0-flags.patch:
+ Version bump, bug #314949
14 Apr 2010; Harald van Dijk <truedfx@gentoo.org>
files/icon-9.4.3-flags.patch:
1.1 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.1&content-type=text/plain
Index: icon-9.5.0.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.1 2010/04/18 20:33:15 truedfx Exp $
inherit eutils flag-o-matic multilib toolchain-funcs
MY_PV=${PV//./}
SRC_URI="http://www.cs.arizona.edu/icon/ftp/packages/unix/icon-v${MY_PV}src.tgz"
HOMEPAGE="http://www.cs.arizona.edu/icon/"
DESCRIPTION="very high level language"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
DEPEND="X? ( x11-proto/xextproto
x11-proto/xproto
x11-libs/libX11
x11-libs/libXpm
x11-libs/libXt )
sys-devel/gcc"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-flags.patch
# do not prestrip files
find "${S}"/src -name 'Makefile' | xargs sed -i -e "/strip/d" || die
}
src_compile() {
# select the right compile target. Note there are many platforms
# available
local mytarget;
if [[ ${CHOST} == *-darwin* ]]; then
mytarget="macintosh"
else
mytarget="linux"
fi
if use X; then
emake X-Configure name=${mytarget} -j1 || die
else
emake Configure name=${mytarget} -j1 || die
fi
append-flags $(test-flags -fno-strict-aliasing -fwrapv)
emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "Make Failed"
}
src_test() {
make Samples || die "Samples failed"
make Test || die "Test failed"
}
src_install() {
dodir /usr
dodir /usr/bin
dodir /usr/$(get_libdir)
make Install dest="${D}/usr/$(get_libdir)/icon" || die "Make install failed"
dosym /usr/$(get_libdir)/icon/bin/icont /usr/bin/icont
dosym /usr/$(get_libdir)/icon/bin/iconx /usr/bin/iconx
dosym /usr/$(get_libdir)/icon/bin/icon /usr/bin/icon
dosym /usr/$(get_libdir)/icon/bin/vib /usr/bin/vib
cd "${S}/man/man1"
doman icont.1
doman icon.1
rm -rf "${D}"/usr/$(get_libdir)/icon/man
cd "${S}/doc"
dodoc *.txt *.sed ../README
# dohtml ignores all anything except .html files, no use here
mkdir -p "${D}"/usr/share/doc/${PF}/html
cp -dpR *.htm *.gif *.jpg *.css "${D}"/usr/share/doc/${PF}/html
rm -rf "${D}"/usr/$(get_libdir)/icon/{doc,README}
# optional Icon Programming Library
if use iplsrc; then
cd "${S}"
dodir /usr/$(get_libdir)/icon/ipl
rm ipl/BuildBin
rm ipl/BuildExe
rm ipl/CheckAll
rm ipl/Makefile
insinto /usr/$(get_libdir)/icon
doins -r ipl
fi
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2010-09-19 17:42 Raul Porcel (armin76)
0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2010-09-19 17:42 UTC (permalink / raw
To: gentoo-commits
armin76 10/09/19 17:42:20
Modified: icon-9.5.0.ebuild ChangeLog
Log:
Add ~s390 wrt #316195
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.2 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.1&r2=1.2
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- icon-9.5.0.ebuild 18 Apr 2010 20:33:15 -0000 1.1
+++ icon-9.5.0.ebuild 19 Sep 2010 17:42:20 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.1 2010/04/18 20:33:15 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.2 2010/09/19 17:42:20 armin76 Exp $
inherit eutils flag-o-matic multilib toolchain-funcs
@@ -11,7 +11,7 @@
LICENSE="as-is"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
1.46 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.45&r2=1.46
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog 19 May 2010 20:05:01 -0000 1.45
+++ ChangeLog 19 Sep 2010 17:42:20 -0000 1.46
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.45 2010/05/19 20:05:01 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.46 2010/09/19 17:42:20 armin76 Exp $
+
+ 19 Sep 2010; Raúl Porcel <armin76@gentoo.org> icon-9.5.0.ebuild:
+ Add ~s390 wrt #316195
19 May 2010; Raúl Porcel <armin76@gentoo.org> icon-9.4.3-r5.ebuild:
alpha/ia64/sparc stable wrt #274174
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2012-10-04 15:21 Christoph Junghans (ottxor)
0 siblings, 0 replies; 11+ messages in thread
From: Christoph Junghans (ottxor) @ 2012-10-04 15:21 UTC (permalink / raw
To: gentoo-commits
ottxor 12/10/04 15:21:19
Modified: icon-9.5.0.ebuild ChangeLog
Log:
added prefix support (bug #433832)
(Portage version: 2.2.0_alpha135/cvs/Linux i686)
Revision Changes Path
1.3 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.2&r2=1.3
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- icon-9.5.0.ebuild 19 Sep 2010 17:42:20 -0000 1.2
+++ icon-9.5.0.ebuild 4 Oct 2012 15:21:19 -0000 1.3
@@ -1,6 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.2 2010/09/19 17:42:20 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.3 2012/10/04 15:21:19 ottxor Exp $
+
+EAPI=4
inherit eutils flag-o-matic multilib toolchain-funcs
@@ -11,7 +13,7 @@
LICENSE="as-is"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
@@ -21,19 +23,16 @@
x11-libs/libX11
x11-libs/libXpm
x11-libs/libXt )
- sys-devel/gcc"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
+ || ( sys-devel/gcc sys-devel/gcc-apple )"
+src_prepare() {
epatch "${FILESDIR}"/${P}-flags.patch
# do not prestrip files
find "${S}"/src -name 'Makefile' | xargs sed -i -e "/strip/d" || die
}
-src_compile() {
+src_configure() {
# select the right compile target. Note there are many platforms
# available
local mytarget;
@@ -49,9 +48,18 @@
emake Configure name=${mytarget} -j1 || die
fi
+ # sanitise the Makedefs file generated by Configure
+ sed -i \
+ -e 's:-L/usr/X11R6/lib64::g' \
+ -e 's:-L/usr/X11R6/lib::g' \
+ -e 's:-I/usr/X11R6/include::g' \
+ Makedefs || die "sed of Makedefs failed"
+
append-flags $(test-flags -fno-strict-aliasing -fwrapv)
+}
- emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "Make Failed"
+src_compile() {
+ emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
}
src_test() {
@@ -73,14 +81,14 @@
cd "${S}/man/man1"
doman icont.1
doman icon.1
- rm -rf "${D}"/usr/$(get_libdir)/icon/man
+ rm -rf "${ED}"/usr/$(get_libdir)/icon/man
cd "${S}/doc"
dodoc *.txt *.sed ../README
# dohtml ignores all anything except .html files, no use here
- mkdir -p "${D}"/usr/share/doc/${PF}/html
- cp -dpR *.htm *.gif *.jpg *.css "${D}"/usr/share/doc/${PF}/html
- rm -rf "${D}"/usr/$(get_libdir)/icon/{doc,README}
+ mkdir -p "${ED}"/usr/share/doc/${PF}/html
+ cp -dpR *.htm *.gif *.jpg *.css "${ED}"/usr/share/doc/${PF}/html
+ rm -rf "${ED}"/usr/$(get_libdir)/icon/{doc,README}
# optional Icon Programming Library
if use iplsrc; then
1.47 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.46&r2=1.47
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog 19 Sep 2010 17:42:20 -0000 1.46
+++ ChangeLog 4 Oct 2012 15:21:19 -0000 1.47
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.46 2010/09/19 17:42:20 armin76 Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.47 2012/10/04 15:21:19 ottxor Exp $
+
+ 04 Oct 2012; Christoph Junghans <ottxor@gentoo.org> icon-9.5.0.ebuild:
+ added prefix support (bug #433832)
19 Sep 2010; Raúl Porcel <armin76@gentoo.org> icon-9.5.0.ebuild:
Add ~s390 wrt #316195
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2013-02-09 9:08 Fabian Groffen (grobian)
0 siblings, 0 replies; 11+ messages in thread
From: Fabian Groffen (grobian) @ 2013-02-09 9:08 UTC (permalink / raw
To: gentoo-commits
grobian 13/02/09 09:08:13
Modified: icon-9.5.0.ebuild ChangeLog
Log:
Fix install location for Prefix
(Portage version: 2.2.01.21688-prefix/cvs/Darwin i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Revision Changes Path
1.5 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.4&r2=1.5
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- icon-9.5.0.ebuild 2 Dec 2012 06:19:45 -0000 1.4
+++ icon-9.5.0.ebuild 9 Feb 2013 09:08:13 -0000 1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.4 2012/12/02 06:19:45 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.5 2013/02/09 09:08:13 grobian Exp $
EAPI=4
@@ -72,7 +72,7 @@
dodir /usr/bin
dodir /usr/$(get_libdir)
- make Install dest="${D}/usr/$(get_libdir)/icon" || die "Make install failed"
+ make Install dest="${ED}/usr/$(get_libdir)/icon" || die "Make install failed"
dosym /usr/$(get_libdir)/icon/bin/icont /usr/bin/icont
dosym /usr/$(get_libdir)/icon/bin/iconx /usr/bin/iconx
dosym /usr/$(get_libdir)/icon/bin/icon /usr/bin/icon
1.50 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.49&r2=1.50
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog 2 Dec 2012 06:19:45 -0000 1.49
+++ ChangeLog 9 Feb 2013 09:08:13 -0000 1.50
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.49 2012/12/02 06:19:45 radhermit Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.50 2013/02/09 09:08:13 grobian Exp $
+
+ 09 Feb 2013; Fabian Groffen <grobian@gentoo.org> icon-9.5.0.ebuild:
+ Fix install location for Prefix
02 Dec 2012; Tim Harder <radhermit@gentoo.org> icon-9.4.3-r5.ebuild,
icon-9.5.0.ebuild:
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2014-02-11 14:55 Akinori Hattori (hattya)
0 siblings, 0 replies; 11+ messages in thread
From: Akinori Hattori (hattya) @ 2014-02-11 14:55 UTC (permalink / raw
To: gentoo-commits
hattya 14/02/11 14:55:00
Modified: icon-9.5.0.ebuild ChangeLog
Log:
ia64 stable wrt bug #470260
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
Revision Changes Path
1.7 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.6&r2=1.7
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- icon-9.5.0.ebuild 8 Feb 2014 14:54:30 -0000 1.6
+++ icon-9.5.0.ebuild 11 Feb 2014 14:55:00 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.6 2014/02/08 14:54:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.7 2014/02/11 14:55:00 hattya Exp $
EAPI=4
@@ -13,7 +13,7 @@
LICENSE="public-domain HPND"
SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
1.52 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 8 Feb 2014 14:54:30 -0000 1.51
+++ ChangeLog 11 Feb 2014 14:55:00 -0000 1.52
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.51 2014/02/08 14:54:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.52 2014/02/11 14:55:00 hattya Exp $
+
+ 11 Feb 2014; Akinori Hattori <hattya@gentoo.org> icon-9.5.0.ebuild:
+ ia64 stable wrt bug #470260
08 Feb 2014; Jeroen Roovers <jer@gentoo.org> icon-9.5.0.ebuild:
Stable for HPPA (bug #470260).
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2014-02-24 1:28 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 11+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2014-02-24 1:28 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 14/02/24 01:28:23
Modified: icon-9.5.0.ebuild ChangeLog
Log:
x86 stable wrt bug #470260
(Portage version: 2.2.7/cvs/Linux i686, RepoMan options: --ignore-arches, signed Manifest commit with key 0x4F1A2555EA71991D!)
Revision Changes Path
1.8 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.7&r2=1.8
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- icon-9.5.0.ebuild 11 Feb 2014 14:55:00 -0000 1.7
+++ icon-9.5.0.ebuild 24 Feb 2014 01:28:23 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.7 2014/02/11 14:55:00 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.8 2014/02/24 01:28:23 phajdan.jr Exp $
EAPI=4
@@ -13,7 +13,7 @@
LICENSE="public-domain HPND"
SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
1.53 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.52&r2=1.53
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog 11 Feb 2014 14:55:00 -0000 1.52
+++ ChangeLog 24 Feb 2014 01:28:23 -0000 1.53
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.52 2014/02/11 14:55:00 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.53 2014/02/24 01:28:23 phajdan.jr Exp $
+
+ 24 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> icon-9.5.0.ebuild:
+ x86 stable wrt bug #470260
11 Feb 2014; Akinori Hattori <hattya@gentoo.org> icon-9.5.0.ebuild:
ia64 stable wrt bug #470260
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2014-03-01 23:39 Pacho Ramos (pacho)
0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-01 23:39 UTC (permalink / raw
To: gentoo-commits
pacho 14/03/01 23:39:36
Modified: icon-9.5.0.ebuild ChangeLog
Log:
amd64 stable, bug #470260
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.9 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.8&r2=1.9
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- icon-9.5.0.ebuild 24 Feb 2014 01:28:23 -0000 1.8
+++ icon-9.5.0.ebuild 1 Mar 2014 23:39:36 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.8 2014/02/24 01:28:23 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.9 2014/03/01 23:39:36 pacho Exp $
EAPI=4
@@ -13,7 +13,7 @@
LICENSE="public-domain HPND"
SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 hppa ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
1.54 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.53&r2=1.54
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog 24 Feb 2014 01:28:23 -0000 1.53
+++ ChangeLog 1 Mar 2014 23:39:36 -0000 1.54
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.53 2014/02/24 01:28:23 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.54 2014/03/01 23:39:36 pacho Exp $
+
+ 01 Mar 2014; Pacho Ramos <pacho@gentoo.org> icon-9.5.0.ebuild:
+ amd64 stable, bug #470260
24 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> icon-9.5.0.ebuild:
x86 stable wrt bug #470260
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2014-03-05 15:21 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-05 15:21 UTC (permalink / raw
To: gentoo-commits
ago 14/03/05 15:21:55
Modified: icon-9.5.0.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #470260
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.9&r2=1.10
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- icon-9.5.0.ebuild 1 Mar 2014 23:39:36 -0000 1.9
+++ icon-9.5.0.ebuild 5 Mar 2014 15:21:54 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.9 2014/03/01 23:39:36 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.10 2014/03/05 15:21:54 ago Exp $
EAPI=4
@@ -13,7 +13,7 @@
LICENSE="public-domain HPND"
SLOT="0"
-KEYWORDS="~alpha amd64 hppa ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 hppa ia64 ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
1.55 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.54&r2=1.55
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog 1 Mar 2014 23:39:36 -0000 1.54
+++ ChangeLog 5 Mar 2014 15:21:54 -0000 1.55
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.54 2014/03/01 23:39:36 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.55 2014/03/05 15:21:54 ago Exp $
+
+ 05 Mar 2014; Agostino Sarubbo <ago@gentoo.org> icon-9.5.0.ebuild:
+ Stable for ppc, wrt bug #470260
01 Mar 2014; Pacho Ramos <pacho@gentoo.org> icon-9.5.0.ebuild:
amd64 stable, bug #470260
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2014-03-06 10:31 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-06 10:31 UTC (permalink / raw
To: gentoo-commits
ago 14/03/06 10:31:04
Modified: icon-9.5.0.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #470260
(Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.11 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.10&r2=1.11
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- icon-9.5.0.ebuild 5 Mar 2014 15:21:54 -0000 1.10
+++ icon-9.5.0.ebuild 6 Mar 2014 10:31:04 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.10 2014/03/05 15:21:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.11 2014/03/06 10:31:04 ago Exp $
EAPI=4
@@ -13,7 +13,7 @@
LICENSE="public-domain HPND"
SLOT="0"
-KEYWORDS="~alpha amd64 hppa ia64 ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
1.56 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.55&r2=1.56
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog 5 Mar 2014 15:21:54 -0000 1.55
+++ ChangeLog 6 Mar 2014 10:31:04 -0000 1.56
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.55 2014/03/05 15:21:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.56 2014/03/06 10:31:04 ago Exp $
+
+ 06 Mar 2014; Agostino Sarubbo <ago@gentoo.org> icon-9.5.0.ebuild:
+ Stable for ppc64, wrt bug #470260
05 Mar 2014; Agostino Sarubbo <ago@gentoo.org> icon-9.5.0.ebuild:
Stable for ppc, wrt bug #470260
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2014-03-12 9:55 Agostino Sarubbo (ago)
0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-12 9:55 UTC (permalink / raw
To: gentoo-commits
ago 14/03/12 09:55:44
Modified: icon-9.5.0.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #470260
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.12 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.11&r2=1.12
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- icon-9.5.0.ebuild 6 Mar 2014 10:31:04 -0000 1.11
+++ icon-9.5.0.ebuild 12 Mar 2014 09:55:44 -0000 1.12
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.11 2014/03/06 10:31:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.12 2014/03/12 09:55:44 ago Exp $
EAPI=4
@@ -13,7 +13,7 @@
LICENSE="public-domain HPND"
SLOT="0"
-KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
1.57 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.56&r2=1.57
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog 6 Mar 2014 10:31:04 -0000 1.56
+++ ChangeLog 12 Mar 2014 09:55:44 -0000 1.57
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.56 2014/03/06 10:31:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.57 2014/03/12 09:55:44 ago Exp $
+
+ 12 Mar 2014; Agostino Sarubbo <ago@gentoo.org> icon-9.5.0.ebuild:
+ Stable for sparc, wrt bug #470260
06 Mar 2014; Agostino Sarubbo <ago@gentoo.org> icon-9.5.0.ebuild:
Stable for ppc64, wrt bug #470260
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog
@ 2014-06-19 16:19 Tobias Klausmann (klausman)
0 siblings, 0 replies; 11+ messages in thread
From: Tobias Klausmann (klausman) @ 2014-06-19 16:19 UTC (permalink / raw
To: gentoo-commits
klausman 14/06/19 16:19:18
Modified: icon-9.5.0.ebuild ChangeLog
Log:
Stable on alpha, bug #470260
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)
Revision Changes Path
1.13 dev-lang/icon/icon-9.5.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild?r1=1.12&r2=1.13
Index: icon-9.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- icon-9.5.0.ebuild 12 Mar 2014 09:55:44 -0000 1.12
+++ icon-9.5.0.ebuild 19 Jun 2014 16:19:18 -0000 1.13
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.12 2014/03/12 09:55:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.5.0.ebuild,v 1.13 2014/06/19 16:19:18 klausman Exp $
EAPI=4
@@ -13,7 +13,7 @@
LICENSE="public-domain HPND"
SLOT="0"
-KEYWORDS="~alpha amd64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="X iplsrc"
S="${WORKDIR}/icon-v${MY_PV}src"
1.58 dev-lang/icon/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.58&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?rev=1.58&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/icon/ChangeLog?r1=1.57&r2=1.58
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog 12 Mar 2014 09:55:44 -0000 1.57
+++ ChangeLog 19 Jun 2014 16:19:18 -0000 1.58
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/icon
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.57 2014/03/12 09:55:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/ChangeLog,v 1.58 2014/06/19 16:19:18 klausman Exp $
+
+ 19 Jun 2014; Tobias Klausmann <klausman@gentoo.org> icon-9.5.0.ebuild:
+ Stable on alpha, bug #470260
12 Mar 2014; Agostino Sarubbo <ago@gentoo.org> icon-9.5.0.ebuild:
Stable for sparc, wrt bug #470260
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2014-06-19 16:19 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-19 16:19 [gentoo-commits] gentoo-x86 commit in dev-lang/icon: icon-9.5.0.ebuild ChangeLog Tobias Klausmann (klausman)
-- strict thread matches above, loose matches on Subject: below --
2014-03-12 9:55 Agostino Sarubbo (ago)
2014-03-06 10:31 Agostino Sarubbo (ago)
2014-03-05 15:21 Agostino Sarubbo (ago)
2014-03-01 23:39 Pacho Ramos (pacho)
2014-02-24 1:28 PaweA Hajdan (phajdan.jr)
2014-02-11 14:55 Akinori Hattori (hattya)
2013-02-09 9:08 Fabian Groffen (grobian)
2012-10-04 15:21 Christoph Junghans (ottxor)
2010-09-19 17:42 Raul Porcel (armin76)
2010-04-18 20:33 Harald van Dijk (truedfx)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox