public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.6.2.ebuild
@ 2013-06-26 22:20 Tim Harder (radhermit)
  0 siblings, 0 replies; 5+ messages in thread
From: Tim Harder (radhermit) @ 2013-06-26 22:20 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/06/26 22:20:08

  Modified:             ChangeLog
  Added:                fpc-2.6.2.ebuild
  Log:
  Version bump, fix configuration files (bug #416641).
  
  (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.59                 dev-lang/fpc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.59&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.59&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.58&r2=1.59

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	9 Jul 2012 21:29:15 -0000	1.58
+++ ChangeLog	26 Jun 2013 22:20:08 -0000	1.59
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/fpc
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.58 2012/07/09 21:29:15 ulm Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.59 2013/06/26 22:20:08 radhermit Exp $
+
+*fpc-2.6.2 (26 Jun 2013)
+
+  26 Jun 2013; Tim Harder <radhermit@gentoo.org> +fpc-2.6.2.ebuild:
+  Version bump, fix configuration files (bug #416641).
 
   09 Jul 2012; Ulrich Müller <ulm@gentoo.org> fpc-2.2.0-r1.ebuild,
   fpc-2.2.0.ebuild, fpc-2.2.2-r1.ebuild, fpc-2.2.4-r2.ebuild, fpc-2.4.0.ebuild,



1.1                  dev-lang/fpc/fpc-2.6.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.1&content-type=text/plain

Index: fpc-2.6.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.1 2013/06/26 22:20:08 radhermit Exp $

EAPI=5

HOMEPAGE="http://www.freepascal.org/"
DESCRIPTION="Free Pascal Compiler"
SRC_URI="mirror://sourceforge/freepascal/fpcbuild-${PV}.tar.gz
	amd64? ( mirror://sourceforge/freepascal/${P}.x86_64-linux.tar )
	arm? ( mirror://sourceforge/freepascal/${P}.arm-linux.tar )
	ppc? ( mirror://sourceforge/freepascal/${P}.powerpc-linux.tar )
	ppc64? ( mirror://sourceforge/freepascal/${P}.powerpc64-linux.tar )
	sparc? ( mirror://sourceforge/freepascal/${PN}-2.2.4.sparc-linux.tar )
	x86? ( mirror://sourceforge/freepascal/${P}.i386-linux.tar )
	doc? ( mirror://sourceforge/freepascal/Documentation/${PV}/doc-html.tar.gz -> ${P}-doc-html.tar.gz
		http://dev.gentoo.org/~radhermit/distfiles/${P}-fpctoc.htx.bz2 )"

SLOT="0"
LICENSE="GPL-2 LGPL-2.1-with-linking-exception"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
IUSE="doc ide source"

RDEPEND="ide? ( !dev-lang/fpc-ide )"

RESTRICT="strip" #269221

S=${WORKDIR}/fpcbuild-${PV}/fpcsrc

src_unpack() {
	case ${ARCH} in
	amd64)	FPC_ARCH="x86_64"    PV_BIN=${PV} ;;
	arm)	FPC_ARCH="arm"       PV_BIN=${PV} ;;
	ppc)	FPC_ARCH="powerpc"   PV_BIN=${PV} ;;
	ppc64)	FPC_ARCH="powerpc64" PV_BIN=${PV} ;;
	sparc)	FPC_ARCH="sparc"     PV_BIN=2.2.4 ;;
	x86)	FPC_ARCH="i386"      PV_BIN=${PV} ;;
	*)	die "This ebuild doesn't support ${ARCH}." ;;
	esac

	unpack ${A}

	tar -xf ${P}.${FPC_ARCH}-linux/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!"
}

src_prepare() {
	find "${WORKDIR}" -name Makefile -exec sed -i -e 's/ -Xs / /g' {} + || die

	# let the pkg manager compress man files
	sed -i '/find man.* gzip /d' "${WORKDIR}"/fpcbuild-${PV}/install/man/Makefile || die
}

set_pp() {
	case ${ARCH} in
	amd64)	FPC_ARCH="x64" ;;
	arm)	FPC_ARCH="arm" ;;
	ppc)	FPC_ARCH="ppc" ;;
	ppc64)	FPC_ARCH="ppc64" ;;
	sparc)	FPC_ARCH="sparc" ;;
	x86)	FPC_ARCH="386" ;;
	*)	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

	# Save new compiler from cleaning...
	cp "${S}"/compiler/ppc${FPC_ARCH} "${S}"/ppc${FPC_ARCH}.new || die

	# ...rebuild with current version...
	emake -j1 PP="${S}"/ppc${FPC_ARCH}.new compiler_cycle

	# ..and clean up afterwards
	rm "${S}"/ppc${FPC_ARCH}.new || die

	# Using the new compiler.
	set_pp new

	emake -j1 PP="${pp}" rtl_clean

	emake -j1 PP="${pp}" rtl packages_all utils

	if use ide ; then
		cd "${S}"/ide || die
		emake -j1 PP="${pp}"
	fi
}

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/${PF} \
		INSTALL_MANDIR="${D}"/usr/share/man \
		INSTALL_SOURCEDIR="${D}"/usr/lib/fpc/${PV}/source

	emake -j1 "$@" compiler_install rtl_install packages_install utils_install

	dosym ../lib/fpc/${PV}/ppc${FPC_ARCH} /usr/bin/ppc${FPC_ARCH}

	cd "${S}"/../install/doc || die
	emake -j1 "$@" installdoc

	cd "${S}"/../install/man || die
	emake -j1 "$@" installman

	if use doc ; then
		cd "${S}"/../../doc || die
		dodoc -r *
		newdoc "${WORKDIR}"/${P}-fpctoc.htx fpctoc.htx
		docompress -x /usr/share/doc/${PF}/fpctoc.htx
	fi

	if use ide ; then
		cd "${S}"/ide
		emake -j1 "$@" install
	fi

	if use source ; then
		cd "${S}" || die
		shift
		emake -j1 PP="${D}"/usr/bin/ppc${FPC_ARCH} "$@" sourceinstall
		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

	sed -i "s:${D}::g" "${D}"/etc/fpc.cfg || die

	if use ide ; then
		sed -e "s:${D}::g" \
			-i "${D}"/etc/fppkg.cfg \
			-i "${D}"/etc/fppkg/* \
			-i "${D}"/usr/lib/fpc/${PV}/ide/text/fp*.cfg \
			|| die
	fi

	rm -r "${D}"/usr/lib/fpc/lexyacc || die
}

pkg_postinst() {
	if [[ -z ${REPLACING_VERSIONS} ]] && use ide; then
		einfo "To read the documentation in the fpc IDE, enable the doc USE flag"
		einfo "and add /usr/share/doc/${PF}/fpctoc.htx to the Help Files list."
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.6.2.ebuild
@ 2013-07-29 20:11 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2013-07-29 20:11 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/07/29 20:11:12

  Modified:             ChangeLog fpc-2.6.2.ebuild
  Log:
  die hard on gnu gold linker wrt #475210
  
  (Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.61                 dev-lang/fpc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	26 Jun 2013 22:47:51 -0000	1.60
+++ ChangeLog	29 Jul 2013 20:11:12 -0000	1.61
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/fpc
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.60 2013/06/26 22:47:51 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.61 2013/07/29 20:11:12 hasufell Exp $
+
+  29 Jul 2013; Julian Ospald <hasufell@gentoo.org> fpc-2.6.2.ebuild:
+  die hard on gnu gold linker wrt #475210
 
 *fpc-2.6.0-r1 (26 Jun 2013)
 



1.2                  dev-lang/fpc/fpc-2.6.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?r1=1.1&r2=1.2

Index: fpc-2.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fpc-2.6.2.ebuild	26 Jun 2013 22:20:08 -0000	1.1
+++ fpc-2.6.2.ebuild	29 Jul 2013 20:11:12 -0000	1.2
@@ -1,9 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.1 2013/06/26 22:20:08 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.2 2013/07/29 20:11:12 hasufell Exp $
 
 EAPI=5
 
+inherit toolchain-funcs
+
 HOMEPAGE="http://www.freepascal.org/"
 DESCRIPTION="Free Pascal Compiler"
 SRC_URI="mirror://sourceforge/freepascal/fpcbuild-${PV}.tar.gz
@@ -27,6 +29,17 @@
 
 S=${WORKDIR}/fpcbuild-${PV}/fpcsrc
 
+pkg_pretend() {
+	if [[ ${MERGE_TYPE} != binary ]]; then
+		# Bug 475210
+		if $(tc-getLD) --version | grep -q "GNU gold"; then
+			eerror "fpc does not function correctly when built with the gold linker."
+			eerror "Please select the bfd linker with binutils-config."
+			die "GNU gold detected"
+		fi
+	fi
+}
+
 src_unpack() {
 	case ${ARCH} in
 	amd64)	FPC_ARCH="x86_64"    PV_BIN=${PV} ;;





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

* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.6.2.ebuild
@ 2013-07-30 21:16 Tim Harder (radhermit)
  0 siblings, 0 replies; 5+ messages in thread
From: Tim Harder (radhermit) @ 2013-07-30 21:16 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/07/30 21:16:06

  Modified:             ChangeLog fpc-2.6.2.ebuild
  Log:
  Respect AS (bug #478792).
  
  (Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.62                 dev-lang/fpc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	29 Jul 2013 20:11:12 -0000	1.61
+++ ChangeLog	30 Jul 2013 21:16:05 -0000	1.62
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/fpc
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.61 2013/07/29 20:11:12 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.62 2013/07/30 21:16:05 radhermit Exp $
+
+  30 Jul 2013; Tim Harder <radhermit@gentoo.org> fpc-2.6.2.ebuild:
+  Respect AS (bug #478792).
 
   29 Jul 2013; Julian Ospald <hasufell@gentoo.org> fpc-2.6.2.ebuild:
   die hard on gnu gold linker wrt #475210



1.3                  dev-lang/fpc/fpc-2.6.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?r1=1.2&r2=1.3

Index: fpc-2.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fpc-2.6.2.ebuild	29 Jul 2013 20:11:12 -0000	1.2
+++ fpc-2.6.2.ebuild	30 Jul 2013 21:16:06 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.2 2013/07/29 20:11:12 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.3 2013/07/30 21:16:06 radhermit Exp $
 
 EAPI=5
 
@@ -88,13 +88,13 @@
 	# Using the bootstrap compiler.
 	set_pp bootstrap
 
-	emake -j1 PP="${pp}" compiler_cycle
+	emake -j1 PP="${pp}" compiler_cycle AS="$(tc-getAS)"
 
 	# Save new compiler from cleaning...
 	cp "${S}"/compiler/ppc${FPC_ARCH} "${S}"/ppc${FPC_ARCH}.new || die
 
 	# ...rebuild with current version...
-	emake -j1 PP="${S}"/ppc${FPC_ARCH}.new compiler_cycle
+	emake -j1 PP="${S}"/ppc${FPC_ARCH}.new AS="$(tc-getAS)" compiler_cycle
 
 	# ..and clean up afterwards
 	rm "${S}"/ppc${FPC_ARCH}.new || die
@@ -102,13 +102,13 @@
 	# Using the new compiler.
 	set_pp new
 
-	emake -j1 PP="${pp}" rtl_clean
+	emake -j1 PP="${pp}" AS="$(tc-getAS)" rtl_clean
 
-	emake -j1 PP="${pp}" rtl packages_all utils
+	emake -j1 PP="${pp}" AS="$(tc-getAS)" rtl packages_all utils
 
 	if use ide ; then
 		cd "${S}"/ide || die
-		emake -j1 PP="${pp}"
+		emake -j1 PP="${pp}" AS="$(tc-getAS)"
 	fi
 }
 





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

* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.6.2.ebuild
@ 2013-09-06 18:11 Tim Harder (radhermit)
  0 siblings, 0 replies; 5+ messages in thread
From: Tim Harder (radhermit) @ 2013-09-06 18:11 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/09/06 18:11:24

  Modified:             ChangeLog fpc-2.6.2.ebuild
  Log:
  Update sparc bootstrap compiler (bug #483980).
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.65                 dev-lang/fpc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	4 Sep 2013 07:57:26 -0000	1.64
+++ ChangeLog	6 Sep 2013 18:11:24 -0000	1.65
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/fpc
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.64 2013/09/04 07:57:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.65 2013/09/06 18:11:24 radhermit Exp $
+
+  06 Sep 2013; Tim Harder <radhermit@gentoo.org> fpc-2.6.2.ebuild:
+  Update sparc bootstrap compiler (bug #483980).
 
   04 Sep 2013; Agostino Sarubbo <ago@gentoo.org> fpc-2.6.2.ebuild:
   Stable for ppc, wrt bug #478690



1.6                  dev-lang/fpc/fpc-2.6.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?r1=1.5&r2=1.6

Index: fpc-2.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fpc-2.6.2.ebuild	4 Sep 2013 07:57:26 -0000	1.5
+++ fpc-2.6.2.ebuild	6 Sep 2013 18:11:24 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.5 2013/09/04 07:57:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.6 2013/09/06 18:11:24 radhermit Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 	arm? ( mirror://sourceforge/freepascal/${P}.arm-linux.tar )
 	ppc? ( mirror://sourceforge/freepascal/${P}.powerpc-linux.tar )
 	ppc64? ( mirror://sourceforge/freepascal/${P}.powerpc64-linux.tar )
-	sparc? ( mirror://sourceforge/freepascal/${PN}-2.2.4.sparc-linux.tar )
+	sparc? ( mirror://sourceforge/freepascal/${P}.sparc-linux.tar )
 	x86? ( mirror://sourceforge/freepascal/${P}.i386-linux.tar )
 	doc? ( mirror://sourceforge/freepascal/Documentation/${PV}/doc-html.tar.gz -> ${P}-doc-html.tar.gz
 		http://dev.gentoo.org/~radhermit/distfiles/${P}-fpctoc.htx.bz2 )"
@@ -46,7 +46,7 @@
 	arm)	FPC_ARCH="arm"       PV_BIN=${PV} ;;
 	ppc)	FPC_ARCH="powerpc"   PV_BIN=${PV} ;;
 	ppc64)	FPC_ARCH="powerpc64" PV_BIN=${PV} ;;
-	sparc)	FPC_ARCH="sparc"     PV_BIN=2.2.4 ;;
+	sparc)	FPC_ARCH="sparc"     PV_BIN=${PV} ;;
 	x86)	FPC_ARCH="i386"      PV_BIN=${PV} ;;
 	*)	die "This ebuild doesn't support ${ARCH}." ;;
 	esac





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

* [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.6.2.ebuild
@ 2013-10-26 23:21 Julian Ospald (hasufell)
  0 siblings, 0 replies; 5+ messages in thread
From: Julian Ospald (hasufell) @ 2013-10-26 23:21 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/10/26 23:21:20

  Modified:             ChangeLog fpc-2.6.2.ebuild
  Log:
  stable on x86 wrt #478690
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.66                 dev-lang/fpc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	6 Sep 2013 18:11:24 -0000	1.65
+++ ChangeLog	26 Oct 2013 23:21:20 -0000	1.66
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/fpc
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.65 2013/09/06 18:11:24 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/ChangeLog,v 1.66 2013/10/26 23:21:20 hasufell Exp $
+
+  26 Oct 2013; Julian Ospald <hasufell@gentoo.org> fpc-2.6.2.ebuild:
+  stable on x86 wrt #478690
 
   06 Sep 2013; Tim Harder <radhermit@gentoo.org> fpc-2.6.2.ebuild:
   Update sparc bootstrap compiler (bug #483980).



1.7                  dev-lang/fpc/fpc-2.6.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild?r1=1.6&r2=1.7

Index: fpc-2.6.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- fpc-2.6.2.ebuild	6 Sep 2013 18:11:24 -0000	1.6
+++ fpc-2.6.2.ebuild	26 Oct 2013 23:21:20 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.6 2013/09/06 18:11:24 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/fpc/fpc-2.6.2.ebuild,v 1.7 2013/10/26 23:21:20 hasufell Exp $
 
 EAPI=5
 
@@ -20,7 +20,7 @@
 
 SLOT="0"
 LICENSE="GPL-2 LGPL-2.1-with-linking-exception"
-KEYWORDS="amd64 ~arm ppc ~sparc ~x86"
+KEYWORDS="amd64 ~arm ppc ~sparc x86"
 IUSE="doc ide source"
 
 RDEPEND="ide? ( !dev-lang/fpc-ide )"





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

end of thread, other threads:[~2013-10-26 23:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-06 18:11 [gentoo-commits] gentoo-x86 commit in dev-lang/fpc: ChangeLog fpc-2.6.2.ebuild Tim Harder (radhermit)
  -- strict thread matches above, loose matches on Subject: below --
2013-10-26 23:21 Julian Ospald (hasufell)
2013-07-30 21:16 Tim Harder (radhermit)
2013-07-29 20:11 Julian Ospald (hasufell)
2013-06-26 22:20 Tim Harder (radhermit)

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