public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-04-04  6:55 Tim Harder (radhermit)
  0 siblings, 0 replies; 15+ messages in thread
From: Tim Harder (radhermit) @ 2013-04-04  6:55 UTC (permalink / raw
  To: gentoo-commits

radhermit    13/04/04 06:55:50

  Modified:             ChangeLog
  Added:                diffutils-3.3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.79                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	19 Feb 2013 03:06:43 -0000	1.78
+++ ChangeLog	4 Apr 2013 06:55:50 -0000	1.79
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.78 2013/02/19 03:06:43 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.79 2013/04/04 06:55:50 radhermit Exp $
+
+*diffutils-3.3 (04 Apr 2013)
+
+  04 Apr 2013; Tim Harder <radhermit@gentoo.org> +diffutils-3.3.ebuild:
+  Version bump.
 
   19 Feb 2013; Zac Medico <zmedico@gentoo.org> diffutils-3.2.ebuild:
   Add ~arm-linux keyword.



1.1                  sys-apps/diffutils/diffutils-3.3.ebuild

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

Index: diffutils-3.3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.1 2013/04/04 06:55:50 radhermit Exp $

EAPI=4

inherit flag-o-matic

DESCRIPTION="Tools to make diffs and compare files"
HOMEPAGE="http://www.gnu.org/software/diffutils/"
SRC_URI="mirror://gnu-alpha/diffutils/${P}.tar.xz
	mirror://gnu/diffutils/${P}.tar.xz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="nls static"

DEPEND="app-arch/xz-utils
	nls? ( sys-devel/gettext )"

DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )

src_configure() {
	use static && append-ldflags -static

	# Disable automagic dependency over libsigsegv; see bug #312351.
	export ac_cv_libsigsegv=no

	econf \
		--with-packager="Gentoo" \
		--with-packager-version="${PVR}" \
		--with-packager-bug-reports="http://bugs.gentoo.org/" \
		$(use_enable nls)
}

src_test() {
	# explicitly allow parallel testing
	emake check
}





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-04-04 18:17 Mike Frysinger (vapier)
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2013-04-04 18:17 UTC (permalink / raw
  To: gentoo-commits

vapier      13/04/04 18:17:48

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Hack around bad upstream packaging w/gettext #464604 by Arfrever Frehtes Taifersar Arahesis.
  
  (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.2                  sys-apps/diffutils/diffutils-3.3.ebuild

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

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- diffutils-3.3.ebuild	4 Apr 2013 06:55:50 -0000	1.1
+++ diffutils-3.3.ebuild	4 Apr 2013 18:17:48 -0000	1.2
@@ -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.1 2013/04/04 06:55:50 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.2 2013/04/04 18:17:48 vapier Exp $
 
 EAPI=4
 
@@ -21,6 +21,10 @@
 
 DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
 
+src_prepare() {
+	sed -i 's:@mkdir_p@:@MKDIR_P@:g' po/Makefile.in.in || die #464604
+}
+
 src_configure() {
 	use static && append-ldflags -static
 



1.80                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	4 Apr 2013 06:55:50 -0000	1.79
+++ ChangeLog	4 Apr 2013 18:17:48 -0000	1.80
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.79 2013/04/04 06:55:50 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.80 2013/04/04 18:17:48 vapier Exp $
+
+  04 Apr 2013; Mike Frysinger <vapier@gentoo.org> diffutils-3.3.ebuild:
+  Hack around bad upstream packaging w/gettext #464604 by Arfrever Frehtes
+  Taifersar Arahesis.
 
 *diffutils-3.3 (04 Apr 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-07-21 13:06 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-21 13:06 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/21 13:06:06

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #477570
  
  (Portage version: 2.1.12.13/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  sys-apps/diffutils/diffutils-3.3.ebuild

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

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- diffutils-3.3.ebuild	4 Apr 2013 18:17:48 -0000	1.2
+++ diffutils-3.3.ebuild	21 Jul 2013 13:06: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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.2 2013/04/04 18:17:48 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.3 2013/07/21 13:06:06 ago Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.81                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	4 Apr 2013 18:17:48 -0000	1.80
+++ ChangeLog	21 Jul 2013 13:06:06 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.80 2013/04/04 18:17:48 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.81 2013/07/21 13:06:06 ago Exp $
+
+  21 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
+  Stable for amd64, wrt bug #477570
 
   04 Apr 2013; Mike Frysinger <vapier@gentoo.org> diffutils-3.3.ebuild:
   Hack around bad upstream packaging w/gettext #464604 by Arfrever Frehtes





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-07-22 20:33 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-22 20:33 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/22 20:33:34

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #477570
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  sys-apps/diffutils/diffutils-3.3.ebuild

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

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- diffutils-3.3.ebuild	21 Jul 2013 13:06:06 -0000	1.3
+++ diffutils-3.3.ebuild	22 Jul 2013 20:33:34 -0000	1.4
@@ -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.3 2013/07/21 13:06:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.4 2013/07/22 20:33:34 ago Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.82                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	21 Jul 2013 13:06:06 -0000	1.81
+++ ChangeLog	22 Jul 2013 20:33:34 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.81 2013/07/21 13:06:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.82 2013/07/22 20:33:34 ago Exp $
+
+  22 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
+  Stable for ppc, wrt bug #477570
 
   21 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
   Stable for amd64, wrt bug #477570





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-07-22 21:12 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-22 21:12 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/22 21:12:39

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #477570
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  sys-apps/diffutils/diffutils-3.3.ebuild

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

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- diffutils-3.3.ebuild	22 Jul 2013 20:33:34 -0000	1.4
+++ diffutils-3.3.ebuild	22 Jul 2013 21:12:39 -0000	1.5
@@ -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.4 2013/07/22 20:33:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.5 2013/07/22 21:12:39 ago Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.83                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.82&r2=1.83

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	22 Jul 2013 20:33:34 -0000	1.82
+++ ChangeLog	22 Jul 2013 21:12:39 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.82 2013/07/22 20:33:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.83 2013/07/22 21:12:39 ago Exp $
+
+  22 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
+  Stable for ppc64, wrt bug #477570
 
   22 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
   Stable for ppc, wrt bug #477570





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-07-23 18:07 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-23 18:07 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/23 18:07:14

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #477570
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  sys-apps/diffutils/diffutils-3.3.ebuild

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

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- diffutils-3.3.ebuild	22 Jul 2013 21:12:39 -0000	1.5
+++ diffutils-3.3.ebuild	23 Jul 2013 18:07:14 -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.5 2013/07/22 21:12:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.6 2013/07/23 18:07:14 ago Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.84                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	22 Jul 2013 21:12:39 -0000	1.83
+++ ChangeLog	23 Jul 2013 18:07:14 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.83 2013/07/22 21:12:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.84 2013/07/23 18:07:14 ago Exp $
+
+  23 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
+  Stable for arm, wrt bug #477570
 
   22 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
   Stable for ppc64, wrt bug #477570





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-07-30 12:18 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-30 12:18 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/30 12:18:53

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #477570
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  sys-apps/diffutils/diffutils-3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?r1=1.6&r2=1.7

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- diffutils-3.3.ebuild	23 Jul 2013 18:07:14 -0000	1.6
+++ diffutils-3.3.ebuild	30 Jul 2013 12:18:53 -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.6 2013/07/23 18:07:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.7 2013/07/30 12:18:53 ago Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.85                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	23 Jul 2013 18:07:14 -0000	1.84
+++ ChangeLog	30 Jul 2013 12:18:53 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.84 2013/07/23 18:07:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.85 2013/07/30 12:18:53 ago Exp $
+
+  30 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
+  Stable for alpha, wrt bug #477570
 
   23 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
   Stable for arm, wrt bug #477570





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-08-03  7:44 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-03  7:44 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/03 07:44:16

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #477570
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  sys-apps/diffutils/diffutils-3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?r1=1.7&r2=1.8

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- diffutils-3.3.ebuild	30 Jul 2013 12:18:53 -0000	1.7
+++ diffutils-3.3.ebuild	3 Aug 2013 07:44:16 -0000	1.8
@@ -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.7 2013/07/30 12:18:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.8 2013/08/03 07:44:16 ago Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.86                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	30 Jul 2013 12:18:53 -0000	1.85
+++ ChangeLog	3 Aug 2013 07:44:16 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.85 2013/07/30 12:18:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.86 2013/08/03 07:44:16 ago Exp $
+
+  03 Aug 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
+  Stable for sparc, wrt bug #477570
 
   30 Jul 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
   Stable for alpha, wrt bug #477570





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-08-04 11:34 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-04 11:34 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/04 11:34:24

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #477570
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  sys-apps/diffutils/diffutils-3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?r1=1.8&r2=1.9

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- diffutils-3.3.ebuild	3 Aug 2013 07:44:16 -0000	1.8
+++ diffutils-3.3.ebuild	4 Aug 2013 11:34:24 -0000	1.9
@@ -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.8 2013/08/03 07:44:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.9 2013/08/04 11:34:24 ago Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.87                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	3 Aug 2013 07:44:16 -0000	1.86
+++ ChangeLog	4 Aug 2013 11:34:24 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.86 2013/08/03 07:44:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.87 2013/08/04 11:34:24 ago Exp $
+
+  04 Aug 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
+  Stable for ia64, wrt bug #477570
 
   03 Aug 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
   Stable for sparc, wrt bug #477570





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-08-06 13:06 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-06 13:06 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/06 13:06:28

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #477570
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 sys-apps/diffutils/diffutils-3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?r1=1.9&r2=1.10

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- diffutils-3.3.ebuild	4 Aug 2013 11:34:24 -0000	1.9
+++ diffutils-3.3.ebuild	6 Aug 2013 13:06:28 -0000	1.10
@@ -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.9 2013/08/04 11:34:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.10 2013/08/06 13:06:28 ago Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.88                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	4 Aug 2013 11:34:24 -0000	1.87
+++ ChangeLog	6 Aug 2013 13:06:28 -0000	1.88
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.87 2013/08/04 11:34:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.88 2013/08/06 13:06:28 ago Exp $
+
+  06 Aug 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
+  Stable for s390, wrt bug #477570
 
   04 Aug 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
   Stable for ia64, wrt bug #477570





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-08-18 13:24 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-18 13:24 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/18 13:24:14

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #477570
  
  (Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 sys-apps/diffutils/diffutils-3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?r1=1.10&r2=1.11

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- diffutils-3.3.ebuild	6 Aug 2013 13:06:28 -0000	1.10
+++ diffutils-3.3.ebuild	18 Aug 2013 13:24:14 -0000	1.11
@@ -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.10 2013/08/06 13:06:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.11 2013/08/18 13:24:14 ago Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.89                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	6 Aug 2013 13:06:28 -0000	1.88
+++ ChangeLog	18 Aug 2013 13:24:14 -0000	1.89
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.88 2013/08/06 13:06:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.89 2013/08/18 13:24:14 ago Exp $
+
+  18 Aug 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
+  Stable for x86, wrt bug #477570
 
   06 Aug 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
   Stable for s390, wrt bug #477570





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-08-29 13:56 Jeroen Roovers (jer)
  0 siblings, 0 replies; 15+ messages in thread
From: Jeroen Roovers (jer) @ 2013-08-29 13:56 UTC (permalink / raw
  To: gentoo-commits

jer         13/08/29 13:56:37

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #477570).
  
  (Portage version: 2.2.1/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.12                 sys-apps/diffutils/diffutils-3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?r1=1.11&r2=1.12

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- diffutils-3.3.ebuild	18 Aug 2013 13:24:14 -0000	1.11
+++ diffutils-3.3.ebuild	29 Aug 2013 13:56:37 -0000	1.12
@@ -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.11 2013/08/18 13:24:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.12 2013/08/29 13:56:37 jer Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.90                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.89&r2=1.90

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog	18 Aug 2013 13:24:14 -0000	1.89
+++ ChangeLog	29 Aug 2013 13:56:37 -0000	1.90
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.89 2013/08/18 13:24:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.90 2013/08/29 13:56:37 jer Exp $
+
+  29 Aug 2013; Jeroen Roovers <jer@gentoo.org> diffutils-3.3.ebuild:
+  Stable for HPPA (bug #477570).
+
+  29 Aug 2013; Jeroen Roovers <jer@gentoo.org> diffutils-3.3.ebuild:
+  Stable for HPPA (bug #477570).
 
   18 Aug 2013; Agostino Sarubbo <ago@gentoo.org> diffutils-3.3.ebuild:
   Stable for x86, wrt bug #477570





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2013-09-05  9:50 Mike Frysinger (vapier)
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2013-09-05  9:50 UTC (permalink / raw
  To: gentoo-commits

vapier      13/09/05 09:50:41

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Mark m68k/sh stable #477570.
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.13                 sys-apps/diffutils/diffutils-3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?r1=1.12&r2=1.13

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- diffutils-3.3.ebuild	29 Aug 2013 13:56:37 -0000	1.12
+++ diffutils-3.3.ebuild	5 Sep 2013 09:50:41 -0000	1.13
@@ -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/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.12 2013/08/29 13:56:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.13 2013/09/05 09:50:41 vapier Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.91                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	29 Aug 2013 13:56:37 -0000	1.90
+++ ChangeLog	5 Sep 2013 09:50:41 -0000	1.91
@@ -1,9 +1,6 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.90 2013/08/29 13:56:37 jer Exp $
-
-  29 Aug 2013; Jeroen Roovers <jer@gentoo.org> diffutils-3.3.ebuild:
-  Stable for HPPA (bug #477570).
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.91 2013/09/05 09:50:41 vapier Exp $
 
   29 Aug 2013; Jeroen Roovers <jer@gentoo.org> diffutils-3.3.ebuild:
   Stable for HPPA (bug #477570).





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2014-01-18  5:12 Mike Frysinger (vapier)
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2014-01-18  5:12 UTC (permalink / raw
  To: gentoo-commits

vapier      14/01/18 05:12:18

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Add arm64 love.
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.14                 sys-apps/diffutils/diffutils-3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?r1=1.13&r2=1.14

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- diffutils-3.3.ebuild	5 Sep 2013 09:50:41 -0000	1.13
+++ diffutils-3.3.ebuild	18 Jan 2014 05:12:18 -0000	1.14
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.13 2013/09/05 09:50:41 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.14 2014/01/18 05:12:18 vapier Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls static"
 
 DEPEND="app-arch/xz-utils



1.93                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.93&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.93&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.92&r2=1.93

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog	7 Jan 2014 08:17:24 -0000	1.92
+++ ChangeLog	18 Jan 2014 05:12:18 -0000	1.93
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.92 2014/01/07 08:17:24 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.93 2014/01/18 05:12:18 vapier Exp $
+
+  18 Jan 2014; Mike Frysinger <vapier@gentoo.org> diffutils-3.3.ebuild:
+  Add arm64 love.
 
   07 Jan 2014; Lars Wendler <polynomial-c@gentoo.org>
   -diffutils-2.8.7-r2.ebuild, -diffutils-2.9.ebuild, -diffutils-2.9-r1.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog
@ 2015-07-21 15:56 Mike Frysinger (vapier)
  0 siblings, 0 replies; 15+ messages in thread
From: Mike Frysinger (vapier) @ 2015-07-21 15:56 UTC (permalink / raw
  To: gentoo-commits

vapier      15/07/21 15:56:38

  Modified:             diffutils-3.3.ebuild ChangeLog
  Log:
  Disable gnulib update-copyright test for now #554728 by Paolo Pedroni.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D2E96200)

Revision  Changes    Path
1.15                 sys-apps/diffutils/diffutils-3.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild?r1=1.14&r2=1.15

Index: diffutils-3.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- diffutils-3.3.ebuild	18 Jan 2014 05:12:18 -0000	1.14
+++ diffutils-3.3.ebuild	21 Jul 2015 15:56:38 -0000	1.15
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.14 2014/01/18 05:12:18 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-3.3.ebuild,v 1.15 2015/07/21 15:56:38 vapier Exp $
 
 EAPI=4
 
@@ -22,6 +22,11 @@
 DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
 
 src_prepare() {
+	# Disable gnulib build test that has no impact on the source.
+	# Re-enable w/next version bump (and gnulib is updated). #554728
+	[[ ${PV} != "3.3" ]] && die "re-enable test #554728"
+	echo 'exit 0' > gnulib-tests/test-update-copyright.sh || die
+
 	sed -i 's:@mkdir_p@:@MKDIR_P@:g' po/Makefile.in.in || die #464604
 }
 



1.94                 sys-apps/diffutils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/diffutils/ChangeLog?r1=1.93&r2=1.94

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	18 Jan 2014 05:12:18 -0000	1.93
+++ ChangeLog	21 Jul 2015 15:56:38 -0000	1.94
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/diffutils
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.93 2014/01/18 05:12:18 vapier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/ChangeLog,v 1.94 2015/07/21 15:56:38 vapier Exp $
+
+  21 Jul 2015; Mike Frysinger <vapier@gentoo.org> diffutils-3.3.ebuild:
+  Disable gnulib update-copyright test for now #554728 by Paolo Pedroni.
 
   18 Jan 2014; Mike Frysinger <vapier@gentoo.org> diffutils-3.3.ebuild:
   Add arm64 love.





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

end of thread, other threads:[~2015-07-21 15:56 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-29 13:56 [gentoo-commits] gentoo-x86 commit in sys-apps/diffutils: diffutils-3.3.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2015-07-21 15:56 Mike Frysinger (vapier)
2014-01-18  5:12 Mike Frysinger (vapier)
2013-09-05  9:50 Mike Frysinger (vapier)
2013-08-18 13:24 Agostino Sarubbo (ago)
2013-08-06 13:06 Agostino Sarubbo (ago)
2013-08-04 11:34 Agostino Sarubbo (ago)
2013-08-03  7:44 Agostino Sarubbo (ago)
2013-07-30 12:18 Agostino Sarubbo (ago)
2013-07-23 18:07 Agostino Sarubbo (ago)
2013-07-22 21:12 Agostino Sarubbo (ago)
2013-07-22 20:33 Agostino Sarubbo (ago)
2013-07-21 13:06 Agostino Sarubbo (ago)
2013-04-04 18:17 Mike Frysinger (vapier)
2013-04-04  6:55 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