public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/file: ChangeLog file-5.09.ebuild
@ 2011-09-16 20:52 Mike Frysinger (vapier)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger (vapier) @ 2011-09-16 20:52 UTC (permalink / raw
  To: gentoo-commits

vapier      11/09/16 20:52:51

  Modified:             ChangeLog
  Added:                file-5.09.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha58/cvs/Linux x86_64)

Revision  Changes    Path
1.208                sys-apps/file/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -r1.207 -r1.208
--- ChangeLog	9 Aug 2011 13:37:04 -0000	1.207
+++ ChangeLog	16 Sep 2011 20:52:51 -0000	1.208
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/file
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.207 2011/08/09 13:37:04 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.208 2011/09/16 20:52:51 vapier Exp $
+
+*file-5.09 (16 Sep 2011)
+
+  16 Sep 2011; Mike Frysinger <vapier@gentoo.org> +file-5.09.ebuild,
+  +files/file-5.09-cdf-arraycount.patch:
+  Version bump.
 
   09 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> file-5.07-r3.ebuild:
   ppc/ppc64 stable wrt #377723



1.1                  sys-apps/file/file-5.09.ebuild

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

Index: file-5.09.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v 1.1 2011/09/16 20:52:51 vapier Exp $

EAPI="2"
PYTHON_DEPEND="python? *"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython"

inherit eutils distutils libtool flag-o-matic

DESCRIPTION="identify a file's format by scanning binary data for patterns"
HOMEPAGE="ftp://ftp.astron.com/pub/file/"
SRC_URI="ftp://ftp.astron.com/pub/file/${P}.tar.gz
	ftp://ftp.gw.com/mirrors/pub/unix/file/${P}.tar.gz"

LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"

RDEPEND="zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}"

PYTHON_MODNAME="magic.py"

src_prepare() {
	elibtoolize

	epatch "${FILESDIR}"/${P}-cdf-arraycount.patch

	# dont let python README kill main README #60043
	mv python/README{,.python}
}

usex() { use $1 && echo ${2:-yes} || echo ${3:-no} ; }

wd() { echo ${WORKDIR}/build-${CHOST}; }
do_configure() {
	ECONF_SOURCE=${S}

	mkdir "$(wd)"
	pushd "$(wd)" >/dev/null

	econf "$@"

	popd >/dev/null
}
src_configure() {
	# file uses things like strndup() and wcwidth()
	append-flags -D_GNU_SOURCE

	# when cross-compiling, we need to build up our own file
	# because people often don't keep matching host/target
	# file versions #362941
	if tc-is-cross-compiler && ! ROOT=/ has_version ~${CATEGORY}/${P} ; then
		ac_cv_header_zlib_h=no \
		ac_cv_lib_z_gzopen=no \
		CHOST=${CBUILD} \
		CFLAGS=${BUILD_CFLAGS} \
		CXXFLAGS=${BUILD_CXXFLAGS} \
		CPPFLAGS=${BUILD_CPPFLAGS} \
		LDFLAGS="${BUILD_LDFLAGS} -static" \
		do_configure --disable-shared
	fi

	export ac_cv_header_zlib_h=$(usex zlib) ac_cv_lib_z_gzopen=$(usex zlib)
	do_configure $(use_enable static-libs static)
}

do_make() {
	emake -C "$(wd)" "$@" || die
}
src_compile() {
	if tc-is-cross-compiler && ! ROOT=/ has_version ~${CATEGORY}/${P} ; then
		CHOST=${CBUILD} do_make -C src file
		PATH=$(CHOST=${CBUILD} wd)/src:${PATH}
	fi
	do_make

	use python && cd python && distutils_src_compile
}

src_install() {
	do_make DESTDIR="${D}" install || die
	dodoc ChangeLog MAINT README

	use python && cd python && distutils_src_install
	use static-libs || rm -f "${D}"/usr/lib*/libmagic.la
}

pkg_postinst() {
	use python && distutils_pkg_postinst
}

pkg_postrm() {
	use python && distutils_pkg_postrm
}






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/file: ChangeLog file-5.09.ebuild
@ 2011-09-17  3:06 Mike Frysinger (vapier)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger (vapier) @ 2011-09-17  3:06 UTC (permalink / raw
  To: gentoo-commits

vapier      11/09/17 03:06:52

  Modified:             ChangeLog file-5.09.ebuild
  Log:
  Upstream rebuilt tarball with the arraycount fix.
  
  (Portage version: 2.2.0_alpha58/cvs/Linux x86_64)

Revision  Changes    Path
1.209                sys-apps/file/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- ChangeLog	16 Sep 2011 20:52:51 -0000	1.208
+++ ChangeLog	17 Sep 2011 03:06:52 -0000	1.209
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/file
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.208 2011/09/16 20:52:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.209 2011/09/17 03:06:52 vapier Exp $
+
+  17 Sep 2011; Mike Frysinger <vapier@gentoo.org> file-5.09.ebuild,
+  -files/file-5.09-cdf-arraycount.patch:
+  Upstream rebuilt tarball with the arraycount fix.
 
 *file-5.09 (16 Sep 2011)
 



1.2                  sys-apps/file/file-5.09.ebuild

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

Index: file-5.09.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- file-5.09.ebuild	16 Sep 2011 20:52:51 -0000	1.1
+++ file-5.09.ebuild	17 Sep 2011 03:06:52 -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-apps/file/file-5.09.ebuild,v 1.1 2011/09/16 20:52:51 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v 1.2 2011/09/17 03:06:52 vapier Exp $
 
 EAPI="2"
 PYTHON_DEPEND="python? *"
@@ -27,8 +27,6 @@
 src_prepare() {
 	elibtoolize
 
-	epatch "${FILESDIR}"/${P}-cdf-arraycount.patch
-
 	# dont let python README kill main README #60043
 	mv python/README{,.python}
 }






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/file: ChangeLog file-5.09.ebuild
@ 2011-12-05 19:48 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2011-12-05 19:48 UTC (permalink / raw
  To: gentoo-commits

jer         11/12/05 19:48:08

  Modified:             ChangeLog file-5.09.ebuild
  Log:
  Stable for HPPA (bug #393291).
  
  (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)

Revision  Changes    Path
1.210                sys-apps/file/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog	17 Sep 2011 03:06:52 -0000	1.209
+++ ChangeLog	5 Dec 2011 19:48:08 -0000	1.210
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/file
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.209 2011/09/17 03:06:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.210 2011/12/05 19:48:08 jer Exp $
+
+  05 Dec 2011; Jeroen Roovers <jer@gentoo.org> file-5.09.ebuild:
+  Stable for HPPA (bug #393291).
 
   17 Sep 2011; Mike Frysinger <vapier@gentoo.org> file-5.09.ebuild,
   -files/file-5.09-cdf-arraycount.patch:



1.3                  sys-apps/file/file-5.09.ebuild

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

Index: file-5.09.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- file-5.09.ebuild	17 Sep 2011 03:06:52 -0000	1.2
+++ file-5.09.ebuild	5 Dec 2011 19:48:08 -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-apps/file/file-5.09.ebuild,v 1.2 2011/09/17 03:06:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v 1.3 2011/12/05 19:48:08 jer Exp $
 
 EAPI="2"
 PYTHON_DEPEND="python? *"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="python static-libs zlib"
 
 RDEPEND="zlib? ( sys-libs/zlib )"






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/file: ChangeLog file-5.09.ebuild
@ 2011-12-11  9:16 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 6+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-12-11  9:16 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/12/11 09:16:57

  Modified:             ChangeLog file-5.09.ebuild
  Log:
  x86 stable wrt bug #393291
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.211                sys-apps/file/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog	5 Dec 2011 19:48:08 -0000	1.210
+++ ChangeLog	11 Dec 2011 09:16:57 -0000	1.211
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/file
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.210 2011/12/05 19:48:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.211 2011/12/11 09:16:57 phajdan.jr Exp $
+
+  11 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> file-5.09.ebuild:
+  x86 stable wrt bug #393291
 
   05 Dec 2011; Jeroen Roovers <jer@gentoo.org> file-5.09.ebuild:
   Stable for HPPA (bug #393291).



1.4                  sys-apps/file/file-5.09.ebuild

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

Index: file-5.09.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- file-5.09.ebuild	5 Dec 2011 19:48:08 -0000	1.3
+++ file-5.09.ebuild	11 Dec 2011 09:16:57 -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-apps/file/file-5.09.ebuild,v 1.3 2011/12/05 19:48:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v 1.4 2011/12/11 09:16:57 phajdan.jr Exp $
 
 EAPI="2"
 PYTHON_DEPEND="python? *"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="python static-libs zlib"
 
 RDEPEND="zlib? ( sys-libs/zlib )"






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/file: ChangeLog file-5.09.ebuild
@ 2011-12-11 17:38 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2011-12-11 17:38 UTC (permalink / raw
  To: gentoo-commits

armin76     11/12/11 17:38:42

  Modified:             ChangeLog file-5.09.ebuild
  Log:
  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #393291
  
  (Portage version: 2.1.10.38/cvs/Linux ia64)

Revision  Changes    Path
1.212                sys-apps/file/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog	11 Dec 2011 09:16:57 -0000	1.211
+++ ChangeLog	11 Dec 2011 17:38:42 -0000	1.212
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/file
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.211 2011/12/11 09:16:57 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.212 2011/12/11 17:38:42 armin76 Exp $
+
+  11 Dec 2011; Raúl Porcel <armin76@gentoo.org> file-5.09.ebuild:
+  alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #393291
 
   11 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> file-5.09.ebuild:
   x86 stable wrt bug #393291



1.5                  sys-apps/file/file-5.09.ebuild

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

Index: file-5.09.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- file-5.09.ebuild	11 Dec 2011 09:16:57 -0000	1.4
+++ file-5.09.ebuild	11 Dec 2011 17:38:42 -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-apps/file/file-5.09.ebuild,v 1.4 2011/12/11 09:16:57 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v 1.5 2011/12/11 17:38:42 armin76 Exp $
 
 EAPI="2"
 PYTHON_DEPEND="python? *"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="python static-libs zlib"
 
 RDEPEND="zlib? ( sys-libs/zlib )"






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/file: ChangeLog file-5.09.ebuild
@ 2011-12-31  8:28 Mike Frysinger (vapier)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Frysinger (vapier) @ 2011-12-31  8:28 UTC (permalink / raw
  To: gentoo-commits

vapier      11/12/31 08:28:00

  Modified:             ChangeLog file-5.09.ebuild
  Log:
  Mark ppc/ppc64 stable #393291.
  
  (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)

Revision  Changes    Path
1.215                sys-apps/file/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -r1.214 -r1.215
--- ChangeLog	31 Dec 2011 06:00:52 -0000	1.214
+++ ChangeLog	31 Dec 2011 08:28:00 -0000	1.215
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/file
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.214 2011/12/31 06:00:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.215 2011/12/31 08:28:00 vapier Exp $
+
+  31 Dec 2011; Mike Frysinger <vapier@gentoo.org> file-5.09.ebuild:
+  Mark ppc/ppc64 stable #393291.
 
 *file-5.10 (31 Dec 2011)
 



1.7                  sys-apps/file/file-5.09.ebuild

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

Index: file-5.09.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- file-5.09.ebuild	12 Dec 2011 22:41:16 -0000	1.6
+++ file-5.09.ebuild	31 Dec 2011 08:28:00 -0000	1.7
@@ -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-apps/file/file-5.09.ebuild,v 1.6 2011/12/12 22:41:16 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.09.ebuild,v 1.7 2011/12/31 08:28:00 vapier Exp $
 
 EAPI="2"
 PYTHON_DEPEND="python? *"
@@ -16,7 +16,7 @@
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="python static-libs zlib"
 
 RDEPEND="zlib? ( sys-libs/zlib )"






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

end of thread, other threads:[~2011-12-31  8:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-11 17:38 [gentoo-commits] gentoo-x86 commit in sys-apps/file: ChangeLog file-5.09.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-31  8:28 Mike Frysinger (vapier)
2011-12-11  9:16 PaweA Hajdan (phajdan.jr)
2011-12-05 19:48 Jeroen Roovers (jer)
2011-09-17  3:06 Mike Frysinger (vapier)
2011-09-16 20:52 Mike Frysinger (vapier)

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