* [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog
@ 2013-02-09 6:52 Mike Frysinger (vapier)
0 siblings, 0 replies; 9+ messages in thread
From: Mike Frysinger (vapier) @ 2013-02-09 6:52 UTC (permalink / raw
To: gentoo-commits
vapier 13/02/09 06:52:20
Modified: ChangeLog
Added: file-5.12-r1.ebuild
Log:
Pull magic updates from latest upstream git #450408 by Sergey Popov.
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Revision Changes Path
1.232 sys-apps/file/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.232&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.232&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.231&r2=1.232
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.231
retrieving revision 1.232
diff -u -r1.231 -r1.232
--- ChangeLog 16 Jan 2013 03:44:29 -0000 1.231
+++ ChangeLog 9 Feb 2013 06:52:20 -0000 1.232
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.231 2013/01/16 03:44:29 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.232 2013/02/09 06:52:20 vapier Exp $
+
+*file-5.12-r1 (09 Feb 2013)
+
+ 09 Feb 2013; Mike Frysinger <vapier@gentoo.org> +file-5.12-r1.ebuild:
+ Pull magic updates from latest upstream git #450408 by Sergey Popov.
16 Jan 2013; Tim Harder <radhermit@gentoo.org> file-9999.ebuild:
Revert to previous install method.
1.1 sys-apps/file/file-5.12-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.1&content-type=text/plain
Index: file-5.12-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v 1.1 2013/02/09 06:52:20 vapier Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython"
inherit eutils distutils libtool toolchain-funcs
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
mirror://gentoo/${P}-magic-updates-4d53f0549fb40b179eaee53c63c42e1685e4ebab.patch.bz2"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}"
PYTHON_MODNAME="magic.py"
src_prepare() {
epatch "${WORKDIR}"/${P}-magic-updates-4d53f0549fb40b179eaee53c63c42e1685e4ebab.patch
elibtoolize
# dont let python README kill main README #60043
mv python/README{,.python}
}
wd() { echo "${WORKDIR}"/build-${CHOST}; }
do_configure() {
ECONF_SOURCE=${S}
mkdir "$(wd)"
pushd "$(wd)" >/dev/null
econf "$@"
popd >/dev/null
}
src_configure() {
# 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
tc-export_build_env BUILD_C{C,XX}
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" \
CC=${BUILD_CC} \
CXX=${BUILD_CXX} \
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] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog
@ 2013-05-10 18:58 Vicente Olivert Riera (vincent)
0 siblings, 0 replies; 9+ messages in thread
From: Vicente Olivert Riera (vincent) @ 2013-05-10 18:58 UTC (permalink / raw
To: gentoo-commits
vincent 13/05/10 18:58:27
Modified: file-5.12-r1.ebuild ChangeLog
Log:
amd64 ppc ppc64 x86: stable. bug #467188
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 5AE9E7B2E9BBCBA8)
Revision Changes Path
1.3 sys-apps/file/file-5.12-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?r1=1.2&r2=1.3
Index: file-5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- file-5.12-r1.ebuild 10 May 2013 16:38:32 -0000 1.2
+++ file-5.12-r1.ebuild 10 May 2013 18:58:27 -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/file/file-5.12-r1.ebuild,v 1.2 2013/05/10 16:38:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v 1.3 2013/05/10 18:58:27 vincent Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
@@ -17,7 +17,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
1.236 sys-apps/file/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.236&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.236&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.235&r2=1.236
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.235
retrieving revision 1.236
diff -u -r1.235 -r1.236
--- ChangeLog 10 May 2013 16:38:32 -0000 1.235
+++ ChangeLog 10 May 2013 18:58:27 -0000 1.236
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.235 2013/05/10 16:38:32 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.236 2013/05/10 18:58:27 vincent Exp $
+
+ 10 May 2013; Vicente Olivert Riera <vincent@gentoo.org> file-5.12-r1.ebuild:
+ amd64 ppc ppc64 x86: stable. bug #467188
10 May 2013; Jeroen Roovers <jer@gentoo.org> file-5.12-r1.ebuild:
Stable for HPPA (bug #467188).
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog
@ 2013-05-12 14:04 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-12 14:04 UTC (permalink / raw
To: gentoo-commits
ago 13/05/12 14:04:21
Modified: file-5.12-r1.ebuild ChangeLog
Log:
Stable for arm, wrt bug #467188
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)
Revision Changes Path
1.4 sys-apps/file/file-5.12-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?r1=1.3&r2=1.4
Index: file-5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- file-5.12-r1.ebuild 10 May 2013 18:58:27 -0000 1.3
+++ file-5.12-r1.ebuild 12 May 2013 14:04:21 -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/file/file-5.12-r1.ebuild,v 1.3 2013/05/10 18:58:27 vincent Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v 1.4 2013/05/12 14:04:21 ago Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
@@ -17,7 +17,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
1.237 sys-apps/file/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.237&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.237&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.236&r2=1.237
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.236
retrieving revision 1.237
diff -u -r1.236 -r1.237
--- ChangeLog 10 May 2013 18:58:27 -0000 1.236
+++ ChangeLog 12 May 2013 14:04:21 -0000 1.237
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.236 2013/05/10 18:58:27 vincent Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.237 2013/05/12 14:04:21 ago Exp $
+
+ 12 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
+ Stable for arm, wrt bug #467188
10 May 2013; Vicente Olivert Riera <vincent@gentoo.org> file-5.12-r1.ebuild:
amd64 ppc ppc64 x86: stable. bug #467188
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog
@ 2013-05-18 5:31 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-18 5:31 UTC (permalink / raw
To: gentoo-commits
ago 13/05/18 05:31:46
Modified: file-5.12-r1.ebuild ChangeLog
Log:
Stable for ia64, wrt bug #467188
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 sys-apps/file/file-5.12-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?r1=1.4&r2=1.5
Index: file-5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- file-5.12-r1.ebuild 12 May 2013 14:04:21 -0000 1.4
+++ file-5.12-r1.ebuild 18 May 2013 05:31:46 -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/file/file-5.12-r1.ebuild,v 1.4 2013/05/12 14:04:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v 1.5 2013/05/18 05:31:46 ago Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
@@ -17,7 +17,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
1.238 sys-apps/file/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.238&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.238&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.237&r2=1.238
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.237
retrieving revision 1.238
diff -u -r1.237 -r1.238
--- ChangeLog 12 May 2013 14:04:21 -0000 1.237
+++ ChangeLog 18 May 2013 05:31:46 -0000 1.238
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.237 2013/05/12 14:04:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.238 2013/05/18 05:31:46 ago Exp $
+
+ 18 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
+ Stable for ia64, wrt bug #467188
12 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
Stable for arm, wrt bug #467188
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog
@ 2013-05-18 20:49 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-18 20:49 UTC (permalink / raw
To: gentoo-commits
ago 13/05/18 20:49:46
Modified: file-5.12-r1.ebuild ChangeLog
Log:
Stable for alpha, wrt bug #467188
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)
Revision Changes Path
1.6 sys-apps/file/file-5.12-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?r1=1.5&r2=1.6
Index: file-5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- file-5.12-r1.ebuild 18 May 2013 05:31:46 -0000 1.5
+++ file-5.12-r1.ebuild 18 May 2013 20:49:46 -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/file/file-5.12-r1.ebuild,v 1.5 2013/05/18 05:31:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v 1.6 2013/05/18 20:49:46 ago Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
@@ -17,7 +17,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
1.239 sys-apps/file/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.239&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.239&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.238&r2=1.239
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.238
retrieving revision 1.239
diff -u -r1.238 -r1.239
--- ChangeLog 18 May 2013 05:31:46 -0000 1.238
+++ ChangeLog 18 May 2013 20:49:46 -0000 1.239
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.238 2013/05/18 05:31:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.239 2013/05/18 20:49:46 ago Exp $
+
+ 18 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
+ Stable for alpha, wrt bug #467188
18 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
Stable for ia64, wrt bug #467188
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog
@ 2013-05-20 18:02 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20 18:02 UTC (permalink / raw
To: gentoo-commits
ago 13/05/20 18:02:38
Modified: file-5.12-r1.ebuild ChangeLog
Log:
Stable for s390, wrt bug #467188
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 sys-apps/file/file-5.12-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?r1=1.6&r2=1.7
Index: file-5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- file-5.12-r1.ebuild 18 May 2013 20:49:46 -0000 1.6
+++ file-5.12-r1.ebuild 20 May 2013 18:02:38 -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/file/file-5.12-r1.ebuild,v 1.6 2013/05/18 20:49:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v 1.7 2013/05/20 18:02:38 ago Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
@@ -17,7 +17,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
1.240 sys-apps/file/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.240&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.240&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.239&r2=1.240
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.239
retrieving revision 1.240
diff -u -r1.239 -r1.240
--- ChangeLog 18 May 2013 20:49:46 -0000 1.239
+++ ChangeLog 20 May 2013 18:02:38 -0000 1.240
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.239 2013/05/18 20:49:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.240 2013/05/20 18:02:38 ago Exp $
+
+ 20 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
+ Stable for s390, wrt bug #467188
18 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
Stable for alpha, wrt bug #467188
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog
@ 2013-05-25 7:54 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-25 7:54 UTC (permalink / raw
To: gentoo-commits
ago 13/05/25 07:54:53
Modified: file-5.12-r1.ebuild ChangeLog
Log:
Stable for sparc, wrt bug #467188
(Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 sys-apps/file/file-5.12-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?r1=1.7&r2=1.8
Index: file-5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- file-5.12-r1.ebuild 20 May 2013 18:02:38 -0000 1.7
+++ file-5.12-r1.ebuild 25 May 2013 07:54:53 -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/file/file-5.12-r1.ebuild,v 1.7 2013/05/20 18:02:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v 1.8 2013/05/25 07:54:53 ago Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
@@ -17,7 +17,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
1.241 sys-apps/file/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.241&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.241&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.240&r2=1.241
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -r1.240 -r1.241
--- ChangeLog 20 May 2013 18:02:38 -0000 1.240
+++ ChangeLog 25 May 2013 07:54:53 -0000 1.241
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.240 2013/05/20 18:02:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.241 2013/05/25 07:54:53 ago Exp $
+
+ 25 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
+ Stable for sparc, wrt bug #467188
20 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
Stable for s390, wrt bug #467188
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog
@ 2013-06-02 8:45 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-02 8:45 UTC (permalink / raw
To: gentoo-commits
ago 13/06/02 08:45:20
Modified: file-5.12-r1.ebuild ChangeLog
Log:
Stable for sh, wrt bug #467188
(Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="sh", signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 sys-apps/file/file-5.12-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?r1=1.8&r2=1.9
Index: file-5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- file-5.12-r1.ebuild 25 May 2013 07:54:53 -0000 1.8
+++ file-5.12-r1.ebuild 2 Jun 2013 08:45:20 -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/file/file-5.12-r1.ebuild,v 1.8 2013/05/25 07:54:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v 1.9 2013/06/02 08:45:20 ago Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
@@ -17,7 +17,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
1.242 sys-apps/file/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.242&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.242&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.241&r2=1.242
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.241
retrieving revision 1.242
diff -u -r1.241 -r1.242
--- ChangeLog 25 May 2013 07:54:53 -0000 1.241
+++ ChangeLog 2 Jun 2013 08:45:20 -0000 1.242
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.241 2013/05/25 07:54:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.242 2013/06/02 08:45:20 ago Exp $
+
+ 02 Jun 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
+ Stable for sh, wrt bug #467188
25 May 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
Stable for sparc, wrt bug #467188
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog
@ 2013-09-05 9:51 Mike Frysinger (vapier)
0 siblings, 0 replies; 9+ messages in thread
From: Mike Frysinger (vapier) @ 2013-09-05 9:51 UTC (permalink / raw
To: gentoo-commits
vapier 13/09/05 09:51:22
Modified: file-5.12-r1.ebuild ChangeLog
Log:
Mark m68k stable #467188.
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Revision Changes Path
1.10 sys-apps/file/file-5.12-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild?r1=1.9&r2=1.10
Index: file-5.12-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- file-5.12-r1.ebuild 2 Jun 2013 08:45:20 -0000 1.9
+++ file-5.12-r1.ebuild 5 Sep 2013 09:51:22 -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/file/file-5.12-r1.ebuild,v 1.9 2013/06/02 08:45:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.12-r1.ebuild,v 1.10 2013/09/05 09:51:22 vapier Exp $
EAPI="2"
PYTHON_DEPEND="python? *"
@@ -17,7 +17,7 @@
LICENSE="BSD-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="python static-libs zlib"
RDEPEND="zlib? ( sys-libs/zlib )"
1.243 sys-apps/file/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.243&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.243&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.242&r2=1.243
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
retrieving revision 1.242
retrieving revision 1.243
diff -u -r1.242 -r1.243
--- ChangeLog 2 Jun 2013 08:45:20 -0000 1.242
+++ ChangeLog 5 Sep 2013 09:51:22 -0000 1.243
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/file
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.242 2013/06/02 08:45:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.243 2013/09/05 09:51:22 vapier Exp $
+
+ 05 Sep 2013; Mike Frysinger <vapier@gentoo.org> file-5.12-r1.ebuild:
+ Mark m68k stable #467188.
02 Jun 2013; Agostino Sarubbo <ago@gentoo.org> file-5.12-r1.ebuild:
Stable for sh, wrt bug #467188
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2013-09-05 9:51 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-10 18:58 [gentoo-commits] gentoo-x86 commit in sys-apps/file: file-5.12-r1.ebuild ChangeLog Vicente Olivert Riera (vincent)
-- strict thread matches above, loose matches on Subject: below --
2013-09-05 9:51 Mike Frysinger (vapier)
2013-06-02 8:45 Agostino Sarubbo (ago)
2013-05-25 7:54 Agostino Sarubbo (ago)
2013-05-20 18:02 Agostino Sarubbo (ago)
2013-05-18 20:49 Agostino Sarubbo (ago)
2013-05-18 5:31 Agostino Sarubbo (ago)
2013-05-12 14:04 Agostino Sarubbo (ago)
2013-02-09 6: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