* [gentoo-commits] gentoo-x86 commit in app-arch/unzip: ChangeLog unzip-6.0-r3.ebuild
@ 2012-04-01 21:45 Thomas Sachau (tommy)
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Sachau (tommy) @ 2012-04-01 21:45 UTC (permalink / raw
To: gentoo-commits
tommy 12/04/01 21:45:11
Modified: ChangeLog
Added: unzip-6.0-r3.ebuild
Log:
Add support for ASFLAGS and add abi-specific flags argument to AS
(Portage version: 2.2.0_alpha96-r1/cvs/Linux x86_64)
Revision Changes Path
1.81 app-arch/unzip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?r1=1.80&r2=1.81
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog 18 Dec 2011 15:24:14 -0000 1.80
+++ ChangeLog 1 Apr 2012 21:45:11 -0000 1.81
@@ -1,6 +1,12 @@
# ChangeLog for app-arch/unzip
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.80 2011/12/18 15:24:14 naota Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.81 2012/04/01 21:45:11 tommy Exp $
+
+*unzip-6.0-r3 (01 Apr 2012)
+
+ 01 Apr 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
+ +unzip-6.0-r3.ebuild:
+ Add support for ASFLAGS and add abi-specific flags argument to AS
18 Dec 2011; Naohiro Aota <naota@gentoo.org> unzip-6.0-r2.ebuild:
Add ~x86-fbsd wrt 349393
1.1 app-arch/unzip/unzip-6.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.1&content-type=text/plain
Index: unzip-6.0-r3.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.1 2012/04/01 21:45:11 tommy Exp $
EAPI="2"
inherit eutils toolchain-funcs flag-o-matic
MY_P="${PN}${PV/.}"
DESCRIPTION="unzipper for pkzip-compressed files"
HOMEPAGE="http://www.info-zip.org/"
SRC_URI="mirror://sourceforge/infozip/${MY_P}.tar.gz"
LICENSE="Info-ZIP"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="bzip2 natspec unicode"
DEPEND="bzip2? ( app-arch/bzip2 )
natspec? ( dev-libs/libnatspec )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}"/${P}-no-exec-stack.patch
use natspec && epatch "${FILESDIR}/${PN}-6.0-natspec.patch" #275244
sed -i \
-e '/^CFLAGS/d' \
-e '/CFLAGS/s:-O[0-9]\?:$(CFLAGS) $(CPPFLAGS):' \
-e '/^STRIP/s:=.*:=true:' \
-e "s:\<CC=gcc\>:CC=\"$(tc-getCC)\":" \
-e "s:\<LD=gcc\>:LD=\"$(tc-getCC)\":" \
-e "s:\<AS=gcc\>:AS=\"$(tc-getCC)\":" \
-e 's:LF2 = -s:LF2 = :' \
-e 's:LF = :LF = $(LDFLAGS) :' \
-e 's:SL = :SL = $(LDFLAGS) :' \
-e 's:FL = :FL = $(LDFLAGS) :' \
-e "/^#L_BZ2/s:^$(use bzip2 && echo .)::" \
-e 's:$(AS) :$(AS) $(ASFLAGS) :g' \
unix/Makefile \
|| die "sed unix/Makefile failed"
}
src_compile() {
local TARGET
case ${CHOST} in
i?86*-*linux*) TARGET=linux_asm ;;
*linux*) TARGET=linux_noasm ;;
i?86*-*bsd* | \
i?86*-dragonfly*) TARGET=freebsd ;; # mislabelled bsd with x86 asm
*bsd* | *dragonfly*) TARGET=bsd ;;
*-darwin*) TARGET=macosx ;;
*) die "Unknown target, you suck" ;;
esac
[[ ${CHOST} == *linux* ]] && append-cppflags -DNO_LCHMOD
use bzip2 && append-cppflags -DUSE_BZIP2
use unicode && append-cppflags -DUNICODE_SUPPORT -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE
append-cppflags -DLARGE_FILE_SUPPORT #281473
ASFLAGS="${ASFLAGS} $(get_abi_var CFLAGS)" emake \
-f unix/Makefile \
${TARGET} || die "emake failed"
}
src_install() {
dobin unzip funzip unzipsfx unix/zipgrep || die "dobin failed"
dosym unzip /usr/bin/zipinfo || die
doman man/*.1
dodoc BUGS History* README ToDo WHERE
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-arch/unzip: ChangeLog unzip-6.0-r3.ebuild
@ 2012-04-26 16:34 Alexis Ballier (aballier)
0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-26 16:34 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/26 16:34:58
Modified: ChangeLog unzip-6.0-r3.ebuild
Log:
keyword ~amd64-fbsd
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Revision Changes Path
1.82 app-arch/unzip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?r1=1.81&r2=1.82
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog 1 Apr 2012 21:45:11 -0000 1.81
+++ ChangeLog 26 Apr 2012 16:34:58 -0000 1.82
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/unzip
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.81 2012/04/01 21:45:11 tommy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.82 2012/04/26 16:34:58 aballier Exp $
+
+ 26 Apr 2012; Alexis Ballier <aballier@gentoo.org> unzip-6.0-r3.ebuild:
+ keyword ~amd64-fbsd
*unzip-6.0-r3 (01 Apr 2012)
1.2 app-arch/unzip/unzip-6.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?r1=1.1&r2=1.2
Index: unzip-6.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- unzip-6.0-r3.ebuild 1 Apr 2012 21:45:11 -0000 1.1
+++ unzip-6.0-r3.ebuild 26 Apr 2012 16:34:58 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.1 2012/04/01 21:45:11 tommy Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.2 2012/04/26 16:34:58 aballier Exp $
EAPI="2"
inherit eutils toolchain-funcs flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="Info-ZIP"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="bzip2 natspec unicode"
DEPEND="bzip2? ( app-arch/bzip2 )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-arch/unzip: ChangeLog unzip-6.0-r3.ebuild
@ 2012-09-19 13:42 Jeroen Roovers (jer)
0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2012-09-19 13:42 UTC (permalink / raw
To: gentoo-commits
jer 12/09/19 13:42:12
Modified: ChangeLog unzip-6.0-r3.ebuild
Log:
Stable for HPPA (bug #420727).
(Portage version: 2.2.0_alpha129/cvs/Linux x86_64)
Revision Changes Path
1.83 app-arch/unzip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?r1=1.82&r2=1.83
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog 26 Apr 2012 16:34:58 -0000 1.82
+++ ChangeLog 19 Sep 2012 13:42:12 -0000 1.83
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/unzip
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.82 2012/04/26 16:34:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.83 2012/09/19 13:42:12 jer Exp $
+
+ 19 Sep 2012; Jeroen Roovers <jer@gentoo.org> unzip-6.0-r3.ebuild:
+ Stable for HPPA (bug #420727).
26 Apr 2012; Alexis Ballier <aballier@gentoo.org> unzip-6.0-r3.ebuild:
keyword ~amd64-fbsd
1.3 app-arch/unzip/unzip-6.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?r1=1.2&r2=1.3
Index: unzip-6.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- unzip-6.0-r3.ebuild 26 Apr 2012 16:34:58 -0000 1.2
+++ unzip-6.0-r3.ebuild 19 Sep 2012 13:42:12 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.2 2012/04/26 16:34:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.3 2012/09/19 13:42:12 jer Exp $
EAPI="2"
inherit eutils toolchain-funcs flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="Info-ZIP"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="bzip2 natspec unicode"
DEPEND="bzip2? ( app-arch/bzip2 )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-arch/unzip: ChangeLog unzip-6.0-r3.ebuild
@ 2012-09-20 2:41 Anthony G. Basile (blueness)
0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-09-20 2:41 UTC (permalink / raw
To: gentoo-commits
blueness 12/09/20 02:41:44
Modified: ChangeLog unzip-6.0-r3.ebuild
Log:
stable ppc ppc64, bug #420727
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Revision Changes Path
1.84 app-arch/unzip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?r1=1.83&r2=1.84
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog 19 Sep 2012 13:42:12 -0000 1.83
+++ ChangeLog 20 Sep 2012 02:41:44 -0000 1.84
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/unzip
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.83 2012/09/19 13:42:12 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.84 2012/09/20 02:41:44 blueness Exp $
+
+ 20 Sep 2012; Anthony G. Basile <blueness@gentoo.org> unzip-6.0-r3.ebuild:
+ stable ppc ppc64, bug #420727
19 Sep 2012; Jeroen Roovers <jer@gentoo.org> unzip-6.0-r3.ebuild:
Stable for HPPA (bug #420727).
1.4 app-arch/unzip/unzip-6.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?r1=1.3&r2=1.4
Index: unzip-6.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- unzip-6.0-r3.ebuild 19 Sep 2012 13:42:12 -0000 1.3
+++ unzip-6.0-r3.ebuild 20 Sep 2012 02:41:44 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.3 2012/09/19 13:42:12 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.4 2012/09/20 02:41:44 blueness Exp $
EAPI="2"
inherit eutils toolchain-funcs flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="Info-ZIP"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="bzip2 natspec unicode"
DEPEND="bzip2? ( app-arch/bzip2 )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-arch/unzip: ChangeLog unzip-6.0-r3.ebuild
@ 2012-09-20 3:01 Anthony G. Basile (blueness)
0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-09-20 3:01 UTC (permalink / raw
To: gentoo-commits
blueness 12/09/20 03:01:01
Modified: ChangeLog unzip-6.0-r3.ebuild
Log:
stable arm, bug #420727
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Revision Changes Path
1.85 app-arch/unzip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?r1=1.84&r2=1.85
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog 20 Sep 2012 02:41:44 -0000 1.84
+++ ChangeLog 20 Sep 2012 03:01:01 -0000 1.85
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/unzip
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.84 2012/09/20 02:41:44 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.85 2012/09/20 03:01:01 blueness Exp $
+
+ 20 Sep 2012; Anthony G. Basile <blueness@gentoo.org> unzip-6.0-r3.ebuild:
+ stable arm, bug #420727
20 Sep 2012; Anthony G. Basile <blueness@gentoo.org> unzip-6.0-r3.ebuild:
stable ppc ppc64, bug #420727
1.5 app-arch/unzip/unzip-6.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?r1=1.4&r2=1.5
Index: unzip-6.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- unzip-6.0-r3.ebuild 20 Sep 2012 02:41:44 -0000 1.4
+++ unzip-6.0-r3.ebuild 20 Sep 2012 03:01:01 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.4 2012/09/20 02:41:44 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.5 2012/09/20 03:01:01 blueness Exp $
EAPI="2"
inherit eutils toolchain-funcs flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="Info-ZIP"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="bzip2 natspec unicode"
DEPEND="bzip2? ( app-arch/bzip2 )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-arch/unzip: ChangeLog unzip-6.0-r3.ebuild
@ 2012-09-22 12:13 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-09-22 12:13 UTC (permalink / raw
To: gentoo-commits
ago 12/09/22 12:13:54
Modified: ChangeLog unzip-6.0-r3.ebuild
Log:
Stable for amd64, wrt bug #420727
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Revision Changes Path
1.86 app-arch/unzip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?r1=1.85&r2=1.86
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog 20 Sep 2012 03:01:01 -0000 1.85
+++ ChangeLog 22 Sep 2012 12:13:54 -0000 1.86
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/unzip
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.85 2012/09/20 03:01:01 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.86 2012/09/22 12:13:54 ago Exp $
+
+ 22 Sep 2012; Agostino Sarubbo <ago@gentoo.org> unzip-6.0-r3.ebuild:
+ Stable for amd64, wrt bug #420727
20 Sep 2012; Anthony G. Basile <blueness@gentoo.org> unzip-6.0-r3.ebuild:
stable arm, bug #420727
1.6 app-arch/unzip/unzip-6.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?r1=1.5&r2=1.6
Index: unzip-6.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- unzip-6.0-r3.ebuild 20 Sep 2012 03:01:01 -0000 1.5
+++ unzip-6.0-r3.ebuild 22 Sep 2012 12:13:54 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.5 2012/09/20 03:01:01 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.6 2012/09/22 12:13:54 ago Exp $
EAPI="2"
inherit eutils toolchain-funcs flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="Info-ZIP"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="bzip2 natspec unicode"
DEPEND="bzip2? ( app-arch/bzip2 )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-arch/unzip: ChangeLog unzip-6.0-r3.ebuild
@ 2012-09-28 14:01 Johannes Huber (johu)
0 siblings, 0 replies; 8+ messages in thread
From: Johannes Huber (johu) @ 2012-09-28 14:01 UTC (permalink / raw
To: gentoo-commits
johu 12/09/28 14:01:47
Modified: ChangeLog unzip-6.0-r3.ebuild
Log:
Stable for x86, wrt bug #420727
(Portage version: 2.2.0_alpha133/cvs/Linux i686)
Revision Changes Path
1.87 app-arch/unzip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?r1=1.86&r2=1.87
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog 22 Sep 2012 12:13:54 -0000 1.86
+++ ChangeLog 28 Sep 2012 14:01:47 -0000 1.87
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/unzip
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.86 2012/09/22 12:13:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.87 2012/09/28 14:01:47 johu Exp $
+
+ 28 Sep 2012; Johannes Huber <johu@gentoo.org> unzip-6.0-r3.ebuild:
+ Stable for x86, wrt bug #420727
22 Sep 2012; Agostino Sarubbo <ago@gentoo.org> unzip-6.0-r3.ebuild:
Stable for amd64, wrt bug #420727
1.7 app-arch/unzip/unzip-6.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?r1=1.6&r2=1.7
Index: unzip-6.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- unzip-6.0-r3.ebuild 22 Sep 2012 12:13:54 -0000 1.6
+++ unzip-6.0-r3.ebuild 28 Sep 2012 14:01:47 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.6 2012/09/22 12:13:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.7 2012/09/28 14:01:47 johu Exp $
EAPI="2"
inherit eutils toolchain-funcs flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="Info-ZIP"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="bzip2 natspec unicode"
DEPEND="bzip2? ( app-arch/bzip2 )
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-arch/unzip: ChangeLog unzip-6.0-r3.ebuild
@ 2012-09-30 17:27 Raul Porcel (armin76)
0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2012-09-30 17:27 UTC (permalink / raw
To: gentoo-commits
armin76 12/09/30 17:27:20
Modified: ChangeLog unzip-6.0-r3.ebuild
Log:
alpha/ia64/m68k/s390/sh/sparc stable wrt #420727
(Portage version: 2.1.11.16/cvs/Linux ia64)
Revision Changes Path
1.88 app-arch/unzip/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/ChangeLog?r1=1.87&r2=1.88
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog 28 Sep 2012 14:01:47 -0000 1.87
+++ ChangeLog 30 Sep 2012 17:27:20 -0000 1.88
@@ -1,6 +1,9 @@
# ChangeLog for app-arch/unzip
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.87 2012/09/28 14:01:47 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.88 2012/09/30 17:27:20 armin76 Exp $
+
+ 30 Sep 2012; Raúl Porcel <armin76@gentoo.org> unzip-6.0-r3.ebuild:
+ alpha/ia64/m68k/s390/sh/sparc stable wrt #420727
28 Sep 2012; Johannes Huber <johu@gentoo.org> unzip-6.0-r3.ebuild:
Stable for x86, wrt bug #420727
1.8 app-arch/unzip/unzip-6.0-r3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild?r1=1.7&r2=1.8
Index: unzip-6.0-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- unzip-6.0-r3.ebuild 28 Sep 2012 14:01:47 -0000 1.7
+++ unzip-6.0-r3.ebuild 30 Sep 2012 17:27:20 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.7 2012/09/28 14:01:47 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r3.ebuild,v 1.8 2012/09/30 17:27:20 armin76 Exp $
EAPI="2"
inherit eutils toolchain-funcs flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="Info-ZIP"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE="bzip2 natspec unicode"
DEPEND="bzip2? ( app-arch/bzip2 )
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-09-30 17:27 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-22 12:13 [gentoo-commits] gentoo-x86 commit in app-arch/unzip: ChangeLog unzip-6.0-r3.ebuild Agostino Sarubbo (ago)
-- strict thread matches above, loose matches on Subject: below --
2012-09-30 17:27 Raul Porcel (armin76)
2012-09-28 14:01 Johannes Huber (johu)
2012-09-20 3:01 Anthony G. Basile (blueness)
2012-09-20 2:41 Anthony G. Basile (blueness)
2012-09-19 13:42 Jeroen Roovers (jer)
2012-04-26 16:34 Alexis Ballier (aballier)
2012-04-01 21:45 Thomas Sachau (tommy)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox