* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.4.0.ebuild
@ 2010-01-16 10:38 Harald van Dijk (truedfx)
0 siblings, 0 replies; 5+ messages in thread
From: Harald van Dijk (truedfx) @ 2010-01-16 10:38 UTC (permalink / raw
To: gentoo-commits
truedfx 10/01/16 10:38:30
Modified: ChangeLog
Added: fpc-2.4.0.ebuild
Log:
Version bumps
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Revision Changes Path
1.50 dev-lang/fpc/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.49&r2=1.50
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog 22 Jul 2009 20:24:39 -0000 1.49
+++ ChangeLog 16 Jan 2010 10:38:29 -0000 1.50
@@ -1,6 +1,11 @@
# ChangeLog for dev-lang/fpc
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.49 2009/07/22 20:24:39 truedfx Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.50 2010/01/16 10:38:29 truedfx Exp $
+
+*fpc-2.4.0 (16 Jan 2010)
+
+ 16 Jan 2010; Harald van Dijk <truedfx@gentoo.org> +fpc-2.4.0.ebuild:
+ Version bump, bug #299525
*fpc-2.2.4-r2 (22 Jul 2009)
1.1 dev-lang/fpc/fpc-2.4.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.1&content-type=text/plain
Index: fpc-2.4.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/fpc/fpc-2.4.0.ebuild,v 1.1 2010/01/16 10:38:29 truedfx Exp $
EAPI=2
inherit eutils
RESTRICT="strip" #269221
S="${WORKDIR}/fpcbuild-${PV}/fpcsrc"
HOMEPAGE="http://www.freepascal.org/"
DESCRIPTION="Free Pascal Compiler"
SRC_URI="mirror://sourceforge/freepascal/fpcbuild-${PV}.tar.gz
amd64? ( mirror://sourceforge/freepascal/fpc-2.4.0.x86_64-linux.tar )
ppc? ( mirror://sourceforge/freepascal/fpc-2.4.0.powerpc-linux.tar )
sparc? ( mirror://sourceforge/freepascal/fpc-2.2.4.sparc-linux.tar )
x86? ( mirror://sourceforge/freepascal/fpc-2.4.0.i386-linux.tar )
doc? ( mirror://sourceforge/freepascal/Documentation/${PV}/doc-html.tar.gz -> fpc-${PV}-doc-html.tar.gz
mirror://gentoo/fpc-${PV}-fpctoc.htx.bz2 )"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1 LGPL-2.1-FPC"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc source"
DEPEND="!dev-lang/fpc-bin
!dev-lang/fpc-source"
RDEPEND="${DEPEND}"
#DEPEND="${DEPEND}
# >=sys-devel/binutils-2.19.1-r1"
src_unpack() {
case ${ARCH} in
amd64) FPC_ARCH="x86_64" PV_BIN=2.4.0 ;;
ppc) FPC_ARCH="powerpc" PV_BIN=2.4.0 ;;
sparc) FPC_ARCH="sparc" PV_BIN=2.2.4 ;;
x86) FPC_ARCH="i386" PV_BIN=2.4.0 ;;
*) die "This ebuild doesn't support ${ARCH}." ;;
esac
unpack ${A} || die "Unpacking ${A} failed!"
tar -xf binary.${FPC_ARCH}-linux.tar || die "Unpacking binary.${FPC_ARCH}-linux.tar failed!"
tar -xzf base.${FPC_ARCH}-linux.tar.gz || die "Unpacking base.${FPC_ARCH}-linux.tar.gz failed!"
#cd "${S}"
#sed -i -e 's/ -Xs / /g' $(find . -name Makefile) || die "sed failed"
}
set_pp() {
case ${ARCH} in
x86) FPC_ARCH="386" ;;
ppc) FPC_ARCH="ppc" ;;
amd64) FPC_ARCH="x64" ;;
sparc) FPC_ARCH="sparc" ;;
*) die "This ebuild doesn't support ${ARCH}." ;;
esac
case ${1} in
bootstrap) pp="${WORKDIR}"/lib/fpc/${PV_BIN}/ppc${FPC_ARCH} ;;
new) pp="${S}"/compiler/ppc${FPC_ARCH} ;;
*) die "set_pp: unknown argument: ${1}" ;;
esac
}
src_compile() {
local pp
# Using the bootstrap compiler.
set_pp bootstrap
emake -j1 PP="${pp}" compiler_cycle || die "make compiler_cycle failed!"
# Save new compiler from cleaning...
cp "${S}"/compiler/ppc${FPC_ARCH} "${S}"/ppc${FPC_ARCH}.new
# ...rebuild with current version...
emake -j1 PP="${S}"/ppc${FPC_ARCH}.new compiler_cycle || die "make compiler_cycle failed!"
# ..and clean up afterwards
rm "${S}"/ppc${FPC_ARCH}.new
# Using the new compiler.
set_pp new
emake -j1 PP="${pp}" rtl_clean || die "make rtl_clean failed"
emake -j1 PP="${pp}" rtl packages_all utils || die "make failed"
}
src_install() {
local pp
set_pp new
set -- PP="${pp}" FPCMAKE="${S}/utils/fpcm/fpcmake" \
INSTALL_PREFIX="${D}"usr \
INSTALL_DOCDIR="${D}"usr/share/doc/${P} \
INSTALL_MANDIR="${D}"usr/share/man \
INSTALL_SOURCEDIR="${D}"usr/lib/fpc/${PV}/source
emake -j1 "$@" compiler_install rtl_install packages_install \
utils_install || die "make install failed!"
dosym ../lib/fpc/${PV}/ppc${FPC_ARCH} /usr/bin/ppc${FPC_ARCH}
cd "${S}"/../install/doc
emake -j1 "$@" installdoc || die "make installdoc failed!"
cd "${S}"/../install/man
emake -j1 "$@" installman || die "make installman failed!"
if use doc ; then
cd "${S}"/../../doc || die
insinto /usr/share/doc/${P}
doins -r * || die "doins fpdocs failed"
newins "${WORKDIR}"/fpc-${PV}-fpctoc.htx fpctoc.htx || die "newins fpctoc.htx failed"
fi
if use source ; then
cd "${S}"
shift
emake -j1 PP="${D}"usr/bin/ppc${FPC_ARCH} "$@" sourceinstall || die "make sourceinstall failed!"
find "${D}"usr/lib/fpc/${PV}/source -name '*.o' -exec rm {} \;
fi
"${D}"usr/lib/fpc/${PV}/samplecfg "${D}"usr/lib/fpc/${PV} "${D}"etc || die "samplecfg failed"
sed -i -e "s:${D}:/:g" "${D}"etc/fpc.cfg || die "sed fpc.cfg failed"
rm -rf "${D}"usr/lib/fpc/lexyacc
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.4.0.ebuild
@ 2010-11-18 14:50 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-11-18 14:50 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 10/11/18 14:50:34
Modified: ChangeLog fpc-2.4.0.ebuild
Log:
x86 stable wrt bug #345663
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.51 dev-lang/fpc/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.50&r2=1.51
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog 16 Jan 2010 10:38:29 -0000 1.50
+++ ChangeLog 18 Nov 2010 14:50:34 -0000 1.51
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/fpc
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.50 2010/01/16 10:38:29 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.51 2010/11/18 14:50:34 phajdan.jr Exp $
+
+ 18 Nov 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> fpc-2.4.0.ebuild:
+ x86 stable wrt bug #345663
*fpc-2.4.0 (16 Jan 2010)
1.2 dev-lang/fpc/fpc-2.4.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?r1=1.1&r2=1.2
Index: fpc-2.4.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fpc-2.4.0.ebuild 16 Jan 2010 10:38:29 -0000 1.1
+++ fpc-2.4.0.ebuild 18 Nov 2010 14:50:34 -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/fpc/fpc-2.4.0.ebuild,v 1.1 2010/01/16 10:38:29 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v 1.2 2010/11/18 14:50:34 phajdan.jr Exp $
EAPI=2
@@ -22,7 +22,7 @@
SLOT="0"
LICENSE="GPL-2 LGPL-2.1 LGPL-2.1-FPC"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE="doc source"
DEPEND="!dev-lang/fpc-bin
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.4.0.ebuild
@ 2010-11-20 13:47 Markos Chandras (hwoarang)
0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-11-20 13:47 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/11/20 13:47:57
Modified: ChangeLog fpc-2.4.0.ebuild
Log:
Stable on amd64 wrt bug #345663
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Revision Changes Path
1.52 dev-lang/fpc/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 18 Nov 2010 14:50:34 -0000 1.51
+++ ChangeLog 20 Nov 2010 13:47:57 -0000 1.52
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/fpc
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.51 2010/11/18 14:50:34 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.52 2010/11/20 13:47:57 hwoarang Exp $
+
+ 20 Nov 2010; Markos Chandras <hwoarang@gentoo.org> fpc-2.4.0.ebuild:
+ Stable on amd64 wrt bug #345663
18 Nov 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> fpc-2.4.0.ebuild:
x86 stable wrt bug #345663
1.3 dev-lang/fpc/fpc-2.4.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?r1=1.2&r2=1.3
Index: fpc-2.4.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fpc-2.4.0.ebuild 18 Nov 2010 14:50:34 -0000 1.2
+++ fpc-2.4.0.ebuild 20 Nov 2010 13:47:57 -0000 1.3
@@ -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/fpc/fpc-2.4.0.ebuild,v 1.2 2010/11/18 14:50:34 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v 1.3 2010/11/20 13:47:57 hwoarang Exp $
EAPI=2
@@ -22,7 +22,7 @@
SLOT="0"
LICENSE="GPL-2 LGPL-2.1 LGPL-2.1-FPC"
-KEYWORDS="~amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
IUSE="doc source"
DEPEND="!dev-lang/fpc-bin
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.4.0.ebuild
@ 2011-01-13 20:49 Brent Baude (ranger)
0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2011-01-13 20:49 UTC (permalink / raw
To: gentoo-commits
ranger 11/01/13 20:49:41
Modified: ChangeLog fpc-2.4.0.ebuild
Log:
stable ppc, bug 345663
(Portage version: 2.1.9.25/cvs/Linux ppc64)
Revision Changes Path
1.53 dev-lang/fpc/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.52&r2=1.53
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog 20 Nov 2010 13:47:57 -0000 1.52
+++ ChangeLog 13 Jan 2011 20:49:41 -0000 1.53
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/fpc
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.52 2010/11/20 13:47:57 hwoarang Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.53 2011/01/13 20:49:41 ranger Exp $
+
+ 13 Jan 2011; Brent Baude <ranger@gentoo.org> fpc-2.4.0.ebuild:
+ stable ppc, bug 345663
20 Nov 2010; Markos Chandras <hwoarang@gentoo.org> fpc-2.4.0.ebuild:
Stable on amd64 wrt bug #345663
1.4 dev-lang/fpc/fpc-2.4.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?r1=1.3&r2=1.4
Index: fpc-2.4.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fpc-2.4.0.ebuild 20 Nov 2010 13:47:57 -0000 1.3
+++ fpc-2.4.0.ebuild 13 Jan 2011 20:49:41 -0000 1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v 1.3 2010/11/20 13:47:57 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v 1.4 2011/01/13 20:49:41 ranger Exp $
EAPI=2
@@ -22,7 +22,7 @@
SLOT="0"
LICENSE="GPL-2 LGPL-2.1 LGPL-2.1-FPC"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
IUSE="doc source"
DEPEND="!dev-lang/fpc-bin
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.4.0.ebuild
@ 2011-02-12 18:43 Raul Porcel (armin76)
0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2011-02-12 18:43 UTC (permalink / raw
To: gentoo-commits
armin76 11/02/12 18:43:24
Modified: ChangeLog fpc-2.4.0.ebuild
Log:
sparc stable wrt #345663
(Portage version: 2.1.9.25/cvs/Linux ia64)
Revision Changes Path
1.54 dev-lang/fpc/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.53&r2=1.54
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog 13 Jan 2011 20:49:41 -0000 1.53
+++ ChangeLog 12 Feb 2011 18:43:24 -0000 1.54
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/fpc
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.53 2011/01/13 20:49:41 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.54 2011/02/12 18:43:24 armin76 Exp $
+
+ 12 Feb 2011; Raúl Porcel <armin76@gentoo.org> fpc-2.4.0.ebuild:
+ sparc stable wrt #345663
13 Jan 2011; Brent Baude <ranger@gentoo.org> fpc-2.4.0.ebuild:
stable ppc, bug 345663
1.5 dev-lang/fpc/fpc-2.4.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild?r1=1.4&r2=1.5
Index: fpc-2.4.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fpc-2.4.0.ebuild 13 Jan 2011 20:49:41 -0000 1.4
+++ fpc-2.4.0.ebuild 12 Feb 2011 18:43:24 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v 1.4 2011/01/13 20:49:41 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.4.0.ebuild,v 1.5 2011/02/12 18:43:24 armin76 Exp $
EAPI=2
@@ -22,7 +22,7 @@
SLOT="0"
LICENSE="GPL-2 LGPL-2.1 LGPL-2.1-FPC"
-KEYWORDS="amd64 ppc ~sparc x86"
+KEYWORDS="amd64 ppc sparc x86"
IUSE="doc source"
DEPEND="!dev-lang/fpc-bin
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-02-12 18:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-16 10:38 [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.4.0.ebuild Harald van Dijk (truedfx)
-- strict thread matches above, loose matches on Subject: below --
2010-11-18 14:50 PaweA Hajdan (phajdan.jr)
2010-11-20 13:47 Markos Chandras (hwoarang)
2011-01-13 20:49 Brent Baude (ranger)
2011-02-12 18:43 Raul Porcel (armin76)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox