public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/pmake: ChangeLog pmake-1.111.3.1.ebuild
@ 2011-07-07 20:17 Alexis Ballier (aballier)
  0 siblings, 0 replies; 6+ messages in thread
From: Alexis Ballier (aballier) @ 2011-07-07 20:17 UTC (permalink / raw
  To: gentoo-commits

aballier    11/07/07 20:17:09

  Modified:             ChangeLog
  Added:                pmake-1.111.3.1.ebuild
  Log:
  bump to latest debian patchset, fix bug #367891
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.38                 sys-devel/pmake/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	23 Sep 2009 20:42:21 -0000	1.37
+++ ChangeLog	7 Jul 2011 20:17:09 -0000	1.38
@@ -1,6 +1,11 @@
 # ChangeLog for sys-devel/pmake
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.37 2009/09/23 20:42:21 patrick Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.38 2011/07/07 20:17:09 aballier Exp $
+
+*pmake-1.111.3.1 (07 Jul 2011)
+
+  07 Jul 2011; Alexis Ballier <aballier@gentoo.org> +pmake-1.111.3.1.ebuild:
+  bump to latest debian patchset, fix bug #367891
 
   23 Sep 2009; Patrick Lauer <patrick@gentoo.org> pmake-1.98.ebuild:
   Remove virtual/libc



1.1                  sys-devel/pmake/pmake-1.111.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.1&content-type=text/plain

Index: pmake-1.111.3.1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.1 2011/07/07 20:17:09 aballier Exp $

inherit eutils toolchain-funcs versionator

MY_P="${PN}-$(get_version_component_range 1-2)"
DEBIAN_SOURCE="${PN}_$(get_version_component_range 1-2).orig.tar.gz"
DEBIAN_PATCH="${PN}_$(replace_version_separator 2 '-').debian.tar.gz"

DESCRIPTION="BSD build tool to create programs in parallel. Debian's version of NetBSD's make"
HOMEPAGE="http://www.netbsd.org/"
SRC_URI="mirror://debian/pool/main/p/pmake/${DEBIAN_SOURCE}
	mirror://debian/pool/main/p/pmake/${DEBIAN_PATCH}"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE=""

RDEPEND=""
DEPEND=""

S="${WORKDIR}/${PN}"

src_unpack() {
	unpack ${A}
	cd "${S}"

	EPATCH_FORCE="yes" \
		EPATCH_OPTS="-g0 -E --no-backup-if-mismatch -p1" \
		EPATCH_SUFFIX="diff" \
		epatch "${WORKDIR}/debian/patches"

	# pmake makes the assumption that . and .. are the first two
	# entries in a directory, which doesn't always appear to be the
	# case on ext3...  (05 Apr 2004 agriffis)
	epatch "${FILESDIR}/${PN}-1.98-skipdots.patch"

	# Don't ignore ldflags
	epatch "${FILESDIR}/${PN}-1.111.1-ldflags.patch"
}

src_compile() {
	# The following CFLAGS are almost directly from Red Hat 8.0 and
	# debian/rules, so assume it's okay to void out the __COPYRIGHT
	# and __RCSID.  I've checked the source and don't see the point,
	# but whatever...  (07 Feb 2004 agriffis)
	CFLAGS="${CFLAGS} -Wall -Wno-unused -D_GNU_SOURCE \
		-DHAVE_STRERROR -DHAVE_STRDUP -DHAVE_SETENV \
		-D__COPYRIGHT\(x\)= -D__RCSID\(x\)= -I. \
		-DMACHINE=\\\"gentoo\\\" -DMACHINE_ARCH=\\\"$(tc-arch-kernel)\\\""
	if [[ "${USERLAND}" == "GNU" ]]; then
		CFLAGS="${CFLAGS} -D_PATH_DEFSYSPATH=\\\"/usr/share/mk/${PN}\\\""
	fi

	emake -f Makefile.boot \
		CC="$(tc-getCC)" \
		CFLAGS="${CFLAGS}" \
		|| die "make failed"
}

src_install() {
	# Don't install these on BSD, else they conflict
	if [[ "${USERLAND}" == "GNU" ]]; then
		insinto /usr/share/mk/${PN}
		doins mk/*
	fi

	newbin bmake pmake || die "newbin failed"
	dobin mkdep || die "dobin failed"
	mv make.1 pmake.1
	doman mkdep.1 pmake.1
	dodoc PSD.doc/tutorial.ms

	if [[ "${USERLAND}" == "BSD" ]]; then
		dosym pmake /usr/bin/make
		dosym pmake.1.gz /usr/share/man/man1/make.1.gz
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/pmake: ChangeLog pmake-1.111.3.1.ebuild
@ 2011-07-08 11:49 Thomas Kahle (tomka)
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Kahle (tomka) @ 2011-07-08 11:49 UTC (permalink / raw
  To: gentoo-commits

tomka       11/07/08 11:49:41

  Modified:             ChangeLog pmake-1.111.3.1.ebuild
  Log:
  x86 stable per bug 367891
  
  (Portage version: 2.1.10.3/cvs/Linux i686)

Revision  Changes    Path
1.39                 sys-devel/pmake/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	7 Jul 2011 20:17:09 -0000	1.38
+++ ChangeLog	8 Jul 2011 11:49:41 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/pmake
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.38 2011/07/07 20:17:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.39 2011/07/08 11:49:41 tomka Exp $
+
+  08 Jul 2011; Thomas Kahle <tomka@gentoo.org> pmake-1.111.3.1.ebuild:
+  x86 stable per bug 367891
 
 *pmake-1.111.3.1 (07 Jul 2011)
 



1.2                  sys-devel/pmake/pmake-1.111.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?r1=1.1&r2=1.2

Index: pmake-1.111.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pmake-1.111.3.1.ebuild	7 Jul 2011 20:17:09 -0000	1.1
+++ pmake-1.111.3.1.ebuild	8 Jul 2011 11:49:41 -0000	1.2
@@ -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/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.1 2011/07/07 20:17:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.2 2011/07/08 11:49:41 tomka Exp $
 
 inherit eutils toolchain-funcs versionator
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/pmake: ChangeLog pmake-1.111.3.1.ebuild
@ 2011-07-09  7:37 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 6+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-07-09  7:37 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/07/09 07:37:15

  Modified:             ChangeLog pmake-1.111.3.1.ebuild
  Log:
  ppc/ppc64 stable wrt #367891
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.40                 sys-devel/pmake/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	8 Jul 2011 11:49:41 -0000	1.39
+++ ChangeLog	9 Jul 2011 07:37:15 -0000	1.40
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/pmake
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.39 2011/07/08 11:49:41 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.40 2011/07/09 07:37:15 xarthisius Exp $
+
+  09 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> pmake-1.111.3.1.ebuild:
+  ppc/ppc64 stable wrt #367891
 
   08 Jul 2011; Thomas Kahle <tomka@gentoo.org> pmake-1.111.3.1.ebuild:
   x86 stable per bug 367891



1.3                  sys-devel/pmake/pmake-1.111.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?r1=1.2&r2=1.3

Index: pmake-1.111.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pmake-1.111.3.1.ebuild	8 Jul 2011 11:49:41 -0000	1.2
+++ pmake-1.111.3.1.ebuild	9 Jul 2011 07:37:15 -0000	1.3
@@ -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/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.2 2011/07/08 11:49:41 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.3 2011/07/09 07:37:15 xarthisius Exp $
 
 inherit eutils toolchain-funcs versionator
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/pmake: ChangeLog pmake-1.111.3.1.ebuild
@ 2011-07-10 10:31 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2011-07-10 10:31 UTC (permalink / raw
  To: gentoo-commits

maekke      11/07/10 10:31:45

  Modified:             ChangeLog pmake-1.111.3.1.ebuild
  Log:
  arm stable, bug #367891
  
  (Portage version: 2.1.10.4/cvs/Linux i686)

Revision  Changes    Path
1.41                 sys-devel/pmake/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	9 Jul 2011 07:37:15 -0000	1.40
+++ ChangeLog	10 Jul 2011 10:31:45 -0000	1.41
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/pmake
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.40 2011/07/09 07:37:15 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.41 2011/07/10 10:31:45 maekke Exp $
+
+  10 Jul 2011; Markus Meier <maekke@gentoo.org> pmake-1.111.3.1.ebuild:
+  arm stable, bug #367891
 
   09 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> pmake-1.111.3.1.ebuild:
   ppc/ppc64 stable wrt #367891



1.4                  sys-devel/pmake/pmake-1.111.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?r1=1.3&r2=1.4

Index: pmake-1.111.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pmake-1.111.3.1.ebuild	9 Jul 2011 07:37:15 -0000	1.3
+++ pmake-1.111.3.1.ebuild	10 Jul 2011 10:31:45 -0000	1.4
@@ -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/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.3 2011/07/09 07:37:15 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.4 2011/07/10 10:31:45 maekke Exp $
 
 inherit eutils toolchain-funcs versionator
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/pmake: ChangeLog pmake-1.111.3.1.ebuild
@ 2011-07-10 14:20 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 6+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-07-10 14:20 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/07/10 14:20:58

  Modified:             ChangeLog pmake-1.111.3.1.ebuild
  Log:
  Stable on amd64 wrt bug #367891
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.42                 sys-devel/pmake/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	10 Jul 2011 10:31:45 -0000	1.41
+++ ChangeLog	10 Jul 2011 14:20:58 -0000	1.42
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/pmake
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.41 2011/07/10 10:31:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.42 2011/07/10 14:20:58 hwoarang Exp $
+
+  10 Jul 2011; Markos Chandras <hwoarang@gentoo.org> pmake-1.111.3.1.ebuild:
+  Stable on amd64 wrt bug #367891
 
   10 Jul 2011; Markus Meier <maekke@gentoo.org> pmake-1.111.3.1.ebuild:
   arm stable, bug #367891



1.5                  sys-devel/pmake/pmake-1.111.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?r1=1.4&r2=1.5

Index: pmake-1.111.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pmake-1.111.3.1.ebuild	10 Jul 2011 10:31:45 -0000	1.4
+++ pmake-1.111.3.1.ebuild	10 Jul 2011 14:20:58 -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/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.4 2011/07/10 10:31:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.5 2011/07/10 14:20:58 hwoarang Exp $
 
 inherit eutils toolchain-funcs versionator
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=""






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

* [gentoo-commits] gentoo-x86 commit in sys-devel/pmake: ChangeLog pmake-1.111.3.1.ebuild
@ 2011-07-10 14:29 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2011-07-10 14:29 UTC (permalink / raw
  To: gentoo-commits

armin76     11/07/10 14:29:24

  Modified:             ChangeLog pmake-1.111.3.1.ebuild
  Log:
  alpha/ia64/sparc stable wrt #367891
  
  (Portage version: 2.1.10.3/cvs/Linux ia64)

Revision  Changes    Path
1.43                 sys-devel/pmake/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/ChangeLog?r1=1.42&r2=1.43

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	10 Jul 2011 14:20:58 -0000	1.42
+++ ChangeLog	10 Jul 2011 14:29:24 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/pmake
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.42 2011/07/10 14:20:58 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.43 2011/07/10 14:29:24 armin76 Exp $
+
+  10 Jul 2011; Raúl Porcel <armin76@gentoo.org> pmake-1.111.3.1.ebuild:
+  alpha/ia64/sparc stable wrt #367891
 
   10 Jul 2011; Markos Chandras <hwoarang@gentoo.org> pmake-1.111.3.1.ebuild:
   Stable on amd64 wrt bug #367891



1.6                  sys-devel/pmake/pmake-1.111.3.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild?r1=1.5&r2=1.6

Index: pmake-1.111.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pmake-1.111.3.1.ebuild	10 Jul 2011 14:20:58 -0000	1.5
+++ pmake-1.111.3.1.ebuild	10 Jul 2011 14:29:24 -0000	1.6
@@ -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/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.5 2011/07/10 14:20:58 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.3.1.ebuild,v 1.6 2011/07/10 14:29:24 armin76 Exp $
 
 inherit eutils toolchain-funcs versionator
 
@@ -15,7 +15,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sparc x86"
 IUSE=""
 
 RDEPEND=""






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

end of thread, other threads:[~2011-07-10 14:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-09  7:37 [gentoo-commits] gentoo-x86 commit in sys-devel/pmake: ChangeLog pmake-1.111.3.1.ebuild Kacper Kowalik (xarthisius)
  -- strict thread matches above, loose matches on Subject: below --
2011-07-10 14:29 Raul Porcel (armin76)
2011-07-10 14:20 Markos Chandras (hwoarang)
2011-07-10 10:31 Markus Meier (maekke)
2011-07-08 11:49 Thomas Kahle (tomka)
2011-07-07 20:17 Alexis Ballier (aballier)

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