* [gentoo-commits] gentoo-x86 commit in dev-libs/zziplib: ChangeLog zziplib-0.13.55.ebuild
@ 2009-06-23 11:46 Mike Frysinger (vapier)
0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger (vapier) @ 2009-06-23 11:46 UTC (permalink / raw
To: gentoo-commits
vapier 09/06/23 11:46:30
Modified: ChangeLog
Added: zziplib-0.13.55.ebuild
Log:
Version bump.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.66 dev-libs/zziplib/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/ChangeLog?r1=1.65&r2=1.66
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zziplib/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog 26 May 2009 20:44:27 -0000 1.65
+++ ChangeLog 23 Jun 2009 11:46:30 -0000 1.66
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/zziplib
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/ChangeLog,v 1.65 2009/05/26 20:44:27 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/ChangeLog,v 1.66 2009/06/23 11:46:30 vapier Exp $
+
+*zziplib-0.13.55 (23 Jun 2009)
+
+ 23 Jun 2009; Mike Frysinger <vapier@gentoo.org> +zziplib-0.13.55.ebuild:
+ Version bump.
26 May 2009; Mike Frysinger <vapier@gentoo.org> zziplib-0.13.54.ebuild:
Make sure we actually disable the targets which install useless lib
1.1 dev-libs/zziplib/zziplib-0.13.55.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/zziplib-0.13.55.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/zziplib-0.13.55.ebuild?rev=1.1&content-type=text/plain
Index: zziplib-0.13.55.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/zziplib-0.13.55.ebuild,v 1.1 2009/06/23 11:46:30 vapier Exp $
EAPI="2"
inherit libtool eutils flag-o-matic
DESCRIPTION="Lightweight library used to easily extract data from files archived in a single zip file"
HOMEPAGE="http://zziplib.sourceforge.net/"
SRC_URI="mirror://sourceforge/zziplib/${P}.tar.bz2"
LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="sdl test"
RDEPEND=">=dev-lang/python-2.4
sys-libs/zlib
sdl? ( >=media-libs/libsdl-1.2.6 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
test? ( app-arch/zip )"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.13.49-SDL-test.patch
# zziplib tries to install backwards compat symlinks we dont want
sed -i -e '/^zzip-postinstall:/s|$|\ndisable-this:|' Makefile.in || die
sed -i -e '/^install-exec-local:/s|$|\ndisable-this:|' zzip/Makefile.in || die
elibtoolize
}
src_configure() {
append-flags -fno-strict-aliasing # bug reported upstream
econf $(use_enable sdl)
}
src_test() {
# need this because `make test` will always return true
# tests fail with -j > 1 (bug #241186)
emake -j1 check || die "make check failed"
}
src_install() {
emake DESTDIR="${D}" install install-man3 || die "make install failed"
dodoc ChangeLog README TODO
dohtml docs/*
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/zziplib: ChangeLog zziplib-0.13.55.ebuild
@ 2009-06-24 21:09 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-06-24 21:09 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 09/06/24 21:09:36
Modified: ChangeLog zziplib-0.13.55.ebuild
Log:
add back the python patch (bug #275247)
(Portage version: 2.1.6.13/cvs/Linux i686)
Revision Changes Path
1.67 dev-libs/zziplib/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/ChangeLog?r1=1.66&r2=1.67
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zziplib/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog 23 Jun 2009 11:46:30 -0000 1.66
+++ ChangeLog 24 Jun 2009 21:09:36 -0000 1.67
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/zziplib
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/ChangeLog,v 1.66 2009/06/23 11:46:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/ChangeLog,v 1.67 2009/06/24 21:09:36 mr_bones_ Exp $
+
+ 24 Jun 2009; Michael Sterrett <mr_bones_@gentoo.org>
+ zziplib-0.13.55.ebuild:
+ add back the python patch (bug #275247)
*zziplib-0.13.55 (23 Jun 2009)
1.2 dev-libs/zziplib/zziplib-0.13.55.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/zziplib-0.13.55.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/zziplib-0.13.55.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/zziplib-0.13.55.ebuild?r1=1.1&r2=1.2
Index: zziplib-0.13.55.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zziplib/zziplib-0.13.55.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- zziplib-0.13.55.ebuild 23 Jun 2009 11:46:30 -0000 1.1
+++ zziplib-0.13.55.ebuild 24 Jun 2009 21:09:36 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/zziplib-0.13.55.ebuild,v 1.1 2009/06/23 11:46:30 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/zziplib-0.13.55.ebuild,v 1.2 2009/06/24 21:09:36 mr_bones_ Exp $
EAPI="2"
inherit libtool eutils flag-o-matic
@@ -22,7 +22,9 @@
test? ( app-arch/zip )"
src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.13.49-SDL-test.patch
+ epatch \
+ "${FILESDIR}"/${PN}-0.13.49-SDL-test.patch \
+ "${FILESDIR}"/${PN}-0.13.49-python.patch
# zziplib tries to install backwards compat symlinks we dont want
sed -i -e '/^zzip-postinstall:/s|$|\ndisable-this:|' Makefile.in || die
sed -i -e '/^install-exec-local:/s|$|\ndisable-this:|' zzip/Makefile.in || die
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-06-24 21:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-23 11:46 [gentoo-commits] gentoo-x86 commit in dev-libs/zziplib: ChangeLog zziplib-0.13.55.ebuild Mike Frysinger (vapier)
-- strict thread matches above, loose matches on Subject: below --
2009-06-24 21:09 Michael Sterrett (mr_bones_)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox