public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-make: ChangeLog gnustep-make-2.0.4.ebuild
@ 2008-01-09 12:58 Bernard Cafarelli (voyageur)
  0 siblings, 0 replies; 6+ messages in thread
From: Bernard Cafarelli (voyageur) @ 2008-01-09 12:58 UTC (permalink / raw
  To: gentoo-commits

voyageur    08/01/09 12:58:45

  Modified:             ChangeLog
  Added:                gnustep-make-2.0.4.ebuild
  Log:
  Version bump
  (Portage version: 2.1.4_rc14)

Revision  Changes    Path
1.60                 gnustep-base/gnustep-make/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?r1=1.59&r2=1.60

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	8 Dec 2007 20:11:58 -0000	1.59
+++ ChangeLog	9 Jan 2008 12:58:44 -0000	1.60
@@ -1,6 +1,12 @@
 # ChangeLog for gnustep-base/gnustep-make
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.59 2007/12/08 20:11:58 voyageur Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.60 2008/01/09 12:58:44 voyageur Exp $
+
+*gnustep-make-2.0.4 (09 Jan 2008)
+
+  09 Jan 2008; Bernard Cafarelli <voyageur@gentoo.org>
+  +gnustep-make-2.0.4.ebuild:
+  Version bump
 
   08 Dec 2007; Bernard Cafarelli <voyageur@gentoo.org> -files/gnustep.csh,
   -files/gnustep.sh, -gnustep-make-1.12.0-r1.ebuild,



1.1                  gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.1&content-type=text/plain

Index: gnustep-make-2.0.4.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.1 2008/01/09 12:58:44 voyageur Exp $

inherit gnustep-base eutils

DESCRIPTION="GNUstep Makefile Package"

HOMEPAGE="http://www.gnustep.org"
SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
SLOT="0"
LICENSE="GPL-2"

DEPEND="${GNUSTEP_CORE_DEPEND}
	>=sys-devel/make-3.75"
RDEPEND="${DEPEND}"

pkg_setup() {
	gnustep-base_pkg_setup

	if ! built_with_use sys-devel/gcc objc; then
		ewarn "gcc must be compiled with Objective-C support! See the objc USE flag."
		die "ObjC support not available"
	fi
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/${PN}-2.0.1-destdir.patch
}

src_compile() {
	local myconf
	myconf="--prefix=${GNUSTEP_PREFIX} --with-layout=gnustep"
	myconf="$myconf --with-config-file=/etc/GNUstep/GNUstep.conf"
	myconf="$myconf --enable-native-objc-exceptions"
	econf $myconf || die "configure failed"

	emake
	# Prepare doc here (needed when no gnustep-make is already installed)
	if use doc ; then
		# If a gnustep-1 environment is set
		unset GNUSTEP_MAKEFILES
		cd Documentation
		emake -j1 all install || die "doc make has failed"
		cd ..
	fi
}

src_install() {
	# Get GNUSTEP_* variables
	. ./GNUstep.conf

	local make_eval="-j1"
	use debug || make_eval="${make_eval} debug=no"
	make_eval="${make_eval} verbose=yes"

	emake ${make_eval} DESTDIR="${D}" install || die "install has failed"

	# Copy the documentation
	if use doc ; then
		dodir ${GNUSTEP_SYSTEM_LIBRARY}
		cp -r Documentation/tmp-installation/System/Library/Documentation \
			"${D}"${GNUSTEP_SYSTEM_LIBRARY}
	fi

	exeinto /etc/profile.d
	doexe "${FILESDIR}"/gnustep-2.sh
	doexe "${FILESDIR}"/gnustep-2.csh

	dodir /etc/env.d
	cat <<- EOF > "${D}"/etc/env.d/99gnustep
PATH=${GNUSTEP_SYSTEM_TOOLS}:${GNUSTEP_LOCAL_TOOLS}
ROOTPATH=${GNUSTEP_SYSTEM_TOOLS}:${GNUSTEP_LOCAL_TOOLS}
LDPATH=${GNUSTEP_SYSTEM_LIBRARIES}:${GNUSTEP_LOCAL_LIBRARIES}
MANPATH=${GNUSTEP_SYSTEM_DOC_MAN}:${GNUSTEP_LOCAL_DOC_MAN}
INFOPATH=${GNUSTEP_SYSTEM_DOC_INFO}:${GNUSTEP_LOCAL_DOC_INFO}
INFODIR=${GNUSTEP_SYSTEM_DOC_INFO}:${GNUSTEP_LOCAL_DOC_INFO}
EOF
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-make: ChangeLog gnustep-make-2.0.4.ebuild
@ 2008-03-21 11:29 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-03-21 11:29 UTC (permalink / raw
  To: gentoo-commits

opfer       08/03/21 11:29:58

  Modified:             ChangeLog gnustep-make-2.0.4.ebuild
  Log:
  stable x86, bug 207381
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.68                 gnustep-base/gnustep-make/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	19 Mar 2008 16:12:29 -0000	1.67
+++ ChangeLog	21 Mar 2008 11:29:58 -0000	1.68
@@ -1,6 +1,10 @@
 # ChangeLog for gnustep-base/gnustep-make
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.67 2008/03/19 16:12:29 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.68 2008/03/21 11:29:58 opfer Exp $
+
+  21 Mar 2008; Christian Faulhammer <opfer@gentoo.org>
+  gnustep-make-2.0.4.ebuild:
+  stable x86, bug 207381
 
 *gnustep-make-2.0.5 (19 Mar 2008)
 



1.2                  gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?r1=1.1&r2=1.2

Index: gnustep-make-2.0.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gnustep-make-2.0.4.ebuild	9 Jan 2008 12:58:44 -0000	1.1
+++ gnustep-make-2.0.4.ebuild	21 Mar 2008 11:29:58 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.1 2008/01/09 12:58:44 voyageur Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.2 2008/03/21 11:29:58 opfer Exp $
 
 inherit gnustep-base eutils
 
@@ -8,7 +8,7 @@
 
 HOMEPAGE="http://www.gnustep.org"
 SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 SLOT="0"
 LICENSE="GPL-2"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-make: ChangeLog gnustep-make-2.0.4.ebuild
@ 2008-03-22 17:01 Santiago M. Mola (coldwind)
  0 siblings, 0 replies; 6+ messages in thread
From: Santiago M. Mola (coldwind) @ 2008-03-22 17:01 UTC (permalink / raw
  To: gentoo-commits

coldwind    08/03/22 17:01:10

  Modified:             ChangeLog gnustep-make-2.0.4.ebuild
  Log:
  amd64 stable wrt bug #207381, second round.
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.69                 gnustep-base/gnustep-make/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	21 Mar 2008 11:29:58 -0000	1.68
+++ ChangeLog	22 Mar 2008 17:01:10 -0000	1.69
@@ -1,6 +1,10 @@
 # ChangeLog for gnustep-base/gnustep-make
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.68 2008/03/21 11:29:58 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.69 2008/03/22 17:01:10 coldwind Exp $
+
+  22 Mar 2008; Santiago M. Mola <coldwind@gentoo.org>
+  gnustep-make-2.0.4.ebuild:
+  amd64 stable wrt bug #207381, second round.
 
   21 Mar 2008; Christian Faulhammer <opfer@gentoo.org>
   gnustep-make-2.0.4.ebuild:



1.3                  gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?r1=1.2&r2=1.3

Index: gnustep-make-2.0.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnustep-make-2.0.4.ebuild	21 Mar 2008 11:29:58 -0000	1.2
+++ gnustep-make-2.0.4.ebuild	22 Mar 2008 17:01:10 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.2 2008/03/21 11:29:58 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.3 2008/03/22 17:01:10 coldwind Exp $
 
 inherit gnustep-base eutils
 
@@ -8,7 +8,7 @@
 
 HOMEPAGE="http://www.gnustep.org"
 SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 SLOT="0"
 LICENSE="GPL-2"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-make: ChangeLog gnustep-make-2.0.4.ebuild
@ 2008-03-23 18:22 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2008-03-23 18:22 UTC (permalink / raw
  To: gentoo-commits

armin76     08/03/23 18:22:26

  Modified:             ChangeLog gnustep-make-2.0.4.ebuild
  Log:
  sparc stable wrt #207381
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.70                 gnustep-base/gnustep-make/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	22 Mar 2008 17:01:10 -0000	1.69
+++ ChangeLog	23 Mar 2008 18:22:25 -0000	1.70
@@ -1,6 +1,9 @@
 # ChangeLog for gnustep-base/gnustep-make
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.69 2008/03/22 17:01:10 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.70 2008/03/23 18:22:25 armin76 Exp $
+
+  23 Mar 2008; Raúl Porcel <armin76@gentoo.org> gnustep-make-2.0.4.ebuild:
+  sparc stable wrt #207381
 
   22 Mar 2008; Santiago M. Mola <coldwind@gentoo.org>
   gnustep-make-2.0.4.ebuild:



1.4                  gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?r1=1.3&r2=1.4

Index: gnustep-make-2.0.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnustep-make-2.0.4.ebuild	22 Mar 2008 17:01:10 -0000	1.3
+++ gnustep-make-2.0.4.ebuild	23 Mar 2008 18:22:25 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.3 2008/03/22 17:01:10 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.4 2008/03/23 18:22:25 armin76 Exp $
 
 inherit gnustep-base eutils
 
@@ -8,7 +8,7 @@
 
 HOMEPAGE="http://www.gnustep.org"
 SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 SLOT="0"
 LICENSE="GPL-2"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-make: ChangeLog gnustep-make-2.0.4.ebuild
@ 2008-03-23 18:32 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-03-23 18:32 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/03/23 18:32:20

  Modified:             ChangeLog gnustep-make-2.0.4.ebuild
  Log:
  Stable on ppc wrt bug 207381
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.71                 gnustep-base/gnustep-make/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	23 Mar 2008 18:22:25 -0000	1.70
+++ ChangeLog	23 Mar 2008 18:32:20 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for gnustep-base/gnustep-make
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.70 2008/03/23 18:22:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.71 2008/03/23 18:32:20 nixnut Exp $
+
+  23 Mar 2008; nixnut <nixnut@gentoo.org> gnustep-make-2.0.4.ebuild:
+  Stable on ppc wrt bug 207381
 
   23 Mar 2008; Raúl Porcel <armin76@gentoo.org> gnustep-make-2.0.4.ebuild:
   sparc stable wrt #207381



1.5                  gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?r1=1.4&r2=1.5

Index: gnustep-make-2.0.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gnustep-make-2.0.4.ebuild	23 Mar 2008 18:22:25 -0000	1.4
+++ gnustep-make-2.0.4.ebuild	23 Mar 2008 18:32:20 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.4 2008/03/23 18:22:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.5 2008/03/23 18:32:20 nixnut Exp $
 
 inherit gnustep-base eutils
 
@@ -8,7 +8,7 @@
 
 HOMEPAGE="http://www.gnustep.org"
 SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ppc ~ppc64 sparc x86 ~x86-fbsd"
 SLOT="0"
 LICENSE="GPL-2"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-make: ChangeLog gnustep-make-2.0.4.ebuild
@ 2008-05-12 15:17 Markus Rothe (corsair)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Rothe (corsair) @ 2008-05-12 15:17 UTC (permalink / raw
  To: gentoo-commits

corsair     08/05/12 15:17:28

  Modified:             ChangeLog gnustep-make-2.0.4.ebuild
  Log:
  Stable on ppc64
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.72                 gnustep-base/gnustep-make/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	23 Mar 2008 18:32:20 -0000	1.71
+++ ChangeLog	12 May 2008 15:17:27 -0000	1.72
@@ -1,6 +1,9 @@
 # ChangeLog for gnustep-base/gnustep-make
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.71 2008/03/23 18:32:20 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/ChangeLog,v 1.72 2008/05/12 15:17:27 corsair Exp $
+
+  12 May 2008; Markus Rothe <corsair@gentoo.org> gnustep-make-2.0.4.ebuild:
+  Stable on ppc64
 
   23 Mar 2008; nixnut <nixnut@gentoo.org> gnustep-make-2.0.4.ebuild:
   Stable on ppc wrt bug 207381



1.6                  gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild?r1=1.5&r2=1.6

Index: gnustep-make-2.0.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gnustep-make-2.0.4.ebuild	23 Mar 2008 18:32:20 -0000	1.5
+++ gnustep-make-2.0.4.ebuild	12 May 2008 15:17:27 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.5 2008/03/23 18:32:20 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-make/gnustep-make-2.0.4.ebuild,v 1.6 2008/05/12 15:17:27 corsair Exp $
 
 inherit gnustep-base eutils
 
@@ -8,7 +8,7 @@
 
 HOMEPAGE="http://www.gnustep.org"
 SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz"
-KEYWORDS="~alpha amd64 ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ppc ppc64 sparc x86 ~x86-fbsd"
 SLOT="0"
 LICENSE="GPL-2"
 



-- 
gentoo-commits@lists.gentoo.org mailing list



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

end of thread, other threads:[~2008-05-12 15:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-21 11:29 [gentoo-commits] gentoo-x86 commit in gnustep-base/gnustep-make: ChangeLog gnustep-make-2.0.4.ebuild Christian Faulhammer (opfer)
  -- strict thread matches above, loose matches on Subject: below --
2008-05-12 15:17 Markus Rothe (corsair)
2008-03-23 18:32 Gysbert Wassenaar (nixnut)
2008-03-23 18:22 Raul Porcel (armin76)
2008-03-22 17:01 Santiago M. Mola (coldwind)
2008-01-09 12:58 Bernard Cafarelli (voyageur)

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