public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-libs/zlib: zlib-1.2.4.ebuild ChangeLog
@ 2010-03-16  0:35 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2010-03-16  0:35 UTC (permalink / raw
  To: gentoo-commits

vapier      10/03/16 00:35:10

  Modified:             ChangeLog
  Added:                zlib-1.2.4.ebuild
  Log:
  Version bump #309623 by Samuli Suominen.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.72                 sys-libs/zlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	10 Oct 2009 17:01:04 -0000	1.71
+++ ChangeLog	16 Mar 2010 00:35:09 -0000	1.72
@@ -1,6 +1,13 @@
 # ChangeLog for sys-libs/zlib
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v 1.71 2009/10/10 17:01:04 vapier Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v 1.72 2010/03/16 00:35:09 vapier Exp $
+
+*zlib-1.2.4 (16 Mar 2010)
+
+  16 Mar 2010; Mike Frysinger <vapier@gentoo.org> +zlib-1.2.4.ebuild,
+  +files/zlib-1.2.4-LDFLAGS.patch, +files/zlib-1.2.4-build.patch,
+  +files/zlib-1.2.4-visibility-support.patch:
+  Version bump #309623 by Samuli Suominen.
 
   10 Oct 2009; Mike Frysinger <vapier@gentoo.org> zlib-1.2.3-r1.ebuild,
   +files/zlib-1.2.3-mingw-implib.patch:



1.1                  sys-libs/zlib/zlib-1.2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?rev=1.1&content-type=text/plain

Index: zlib-1.2.4.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v 1.1 2010/03/16 00:35:09 vapier Exp $

inherit eutils toolchain-funcs

DESCRIPTION="Standard (de)compression library"
HOMEPAGE="http://www.zlib.net/"
SRC_URI="http://www.gzip.org/zlib/${P}.tar.bz2
	http://www.zlib.net/${P}.tar.bz2"

LICENSE="ZLIB"
SLOT="0"
# makes xmllint segfault ? #309623
#KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE=""

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/${PN}-1.2.4-build.patch
	epatch "${FILESDIR}"/${PN}-1.2.4-visibility-support.patch #149929
	epatch "${FILESDIR}"/${PN}-1.2.4-LDFLAGS.patch #126718
	epatch "${FILESDIR}"/${PN}-1.2.3-mingw-implib.patch #288212
	# trust exit status of the compiler rather than stderr #55434
	# -if test "`(...) 2>&1`" = ""; then
	# +if (...) 2>/dev/null; then
	sed -i 's|if test "`\(.*\) 2>&1`" = ""; then|if \1 2>/dev/null; then|' configure || die
	sed -i -e '/ldconfig/d' Makefile* || die
}

src_compile() {
	tc-export AR CC RANLIB RC DLLWRAP
	case ${CHOST} in
	*-mingw*|mingw*)
		emake -f win32/Makefile.gcc prefix=/usr || die
		;;
	*)	# not an autoconf script, so cant use econf
		./configure --shared --prefix=/usr --libdir=/usr/$(get_libdir) || die
		emake || die
		;;
	esac
}

src_install() {
	emake install DESTDIR="${D}" || die
	dodoc FAQ README ChangeLog doc/*.txt

	case ${CHOST} in
	*-mingw*|mingw*)
		dobin zlib1.dll || die
		dolib libz.dll.a || die
		;;
	*) gen_usr_ldscript -a z ;;
	esac
}






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

* [gentoo-commits] gentoo-x86 commit in sys-libs/zlib: zlib-1.2.4.ebuild ChangeLog
@ 2010-03-19  2:23 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2010-03-19  2:23 UTC (permalink / raw
  To: gentoo-commits

vapier      10/03/19 02:23:54

  Modified:             zlib-1.2.4.ebuild ChangeLog
  Log:
  Add to ~arch and block older broken libxml2 versions #309623.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-libs/zlib/zlib-1.2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?r1=1.1&r2=1.2

Index: zlib-1.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- zlib-1.2.4.ebuild	16 Mar 2010 00:35:09 -0000	1.1
+++ zlib-1.2.4.ebuild	19 Mar 2010 02:23:53 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v 1.1 2010/03/16 00:35:09 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v 1.2 2010/03/19 02:23:53 vapier Exp $
 
 inherit eutils toolchain-funcs
 
@@ -11,10 +11,11 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-# makes xmllint segfault ? #309623
-#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=""
 
+RDEPEND="!<dev-libs/libxml2-2.7.7" #309623
+
 src_unpack() {
 	unpack ${A}
 	cd "${S}"



1.73                 sys-libs/zlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	16 Mar 2010 00:35:09 -0000	1.72
+++ ChangeLog	19 Mar 2010 02:23:53 -0000	1.73
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/zlib
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v 1.72 2010/03/16 00:35:09 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v 1.73 2010/03/19 02:23:53 vapier Exp $
+
+  19 Mar 2010; Mike Frysinger <vapier@gentoo.org> zlib-1.2.4.ebuild:
+  Add to ~arch and block older broken libxml2 versions #309623.
 
 *zlib-1.2.4 (16 Mar 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in sys-libs/zlib: zlib-1.2.4.ebuild ChangeLog
@ 2010-03-19 19:09 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-03-19 19:09 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/03/19 19:09:38

  Modified:             zlib-1.2.4.ebuild ChangeLog
  Log:
  Fix NLS issues wrt #310225, thanks to Priit Laes for reporting.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sys-libs/zlib/zlib-1.2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?r1=1.2&r2=1.3

Index: zlib-1.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- zlib-1.2.4.ebuild	19 Mar 2010 02:23:53 -0000	1.2
+++ zlib-1.2.4.ebuild	19 Mar 2010 19:09:37 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v 1.2 2010/03/19 02:23:53 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v 1.3 2010/03/19 19:09:37 ssuominen Exp $
 
 inherit eutils toolchain-funcs
 
@@ -23,6 +23,7 @@
 	epatch "${FILESDIR}"/${PN}-1.2.4-visibility-support.patch #149929
 	epatch "${FILESDIR}"/${PN}-1.2.4-LDFLAGS.patch #126718
 	epatch "${FILESDIR}"/${PN}-1.2.3-mingw-implib.patch #288212
+	epatch "${FILESDIR}"/${PN}-1.2.4-configure-LANG.patch
 	# trust exit status of the compiler rather than stderr #55434
 	# -if test "`(...) 2>&1`" = ""; then
 	# +if (...) 2>/dev/null; then



1.74                 sys-libs/zlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	19 Mar 2010 02:23:53 -0000	1.73
+++ ChangeLog	19 Mar 2010 19:09:37 -0000	1.74
@@ -1,6 +1,10 @@
 # ChangeLog for sys-libs/zlib
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v 1.73 2010/03/19 02:23:53 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v 1.74 2010/03/19 19:09:37 ssuominen Exp $
+
+  19 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> zlib-1.2.4.ebuild,
+  +files/zlib-1.2.4-configure-LANG.patch:
+  Fix NLS issues wrt #310225, thanks to Priit Laes for reporting.
 
   19 Mar 2010; Mike Frysinger <vapier@gentoo.org> zlib-1.2.4.ebuild:
   Add to ~arch and block older broken libxml2 versions #309623.






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

* [gentoo-commits] gentoo-x86 commit in sys-libs/zlib: zlib-1.2.4.ebuild ChangeLog
@ 2010-04-14  2:23 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2010-04-14  2:23 UTC (permalink / raw
  To: gentoo-commits

vapier      10/04/14 02:23:25

  Modified:             zlib-1.2.4.ebuild ChangeLog
  Log:
  Tweak the sed on configure tests to cover more cases #310573 by Jan-Erik Skata.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  sys-libs/zlib/zlib-1.2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild?r1=1.3&r2=1.4

Index: zlib-1.2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- zlib-1.2.4.ebuild	19 Mar 2010 19:09:37 -0000	1.3
+++ zlib-1.2.4.ebuild	14 Apr 2010 02:23:25 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v 1.3 2010/03/19 19:09:37 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/zlib-1.2.4.ebuild,v 1.4 2010/04/14 02:23:25 vapier Exp $
 
 inherit eutils toolchain-funcs
 
@@ -27,7 +27,7 @@
 	# trust exit status of the compiler rather than stderr #55434
 	# -if test "`(...) 2>&1`" = ""; then
 	# +if (...) 2>/dev/null; then
-	sed -i 's|if test "`\(.*\) 2>&1`" = ""; then|if \1 2>/dev/null; then|' configure || die
+	sed -i 's|\<test "`\([^"]*\) 2>&1`" = ""|\1 2>/dev/null|' configure || die
 	sed -i -e '/ldconfig/d' Makefile* || die
 }
 



1.76                 sys-libs/zlib/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/zlib/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	20 Mar 2010 18:21:51 -0000	1.75
+++ ChangeLog	14 Apr 2010 02:23:25 -0000	1.76
@@ -1,6 +1,10 @@
 # ChangeLog for sys-libs/zlib
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v 1.75 2010/03/20 18:21:51 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/zlib/ChangeLog,v 1.76 2010/04/14 02:23:25 vapier Exp $
+
+  14 Apr 2010; Mike Frysinger <vapier@gentoo.org> zlib-1.2.4.ebuild:
+  Tweak the sed on configure tests to cover more cases #310573 by Jan-Erik
+  Skata.
 
   20 Mar 2010; Samuli Suominen <ssuominen@gentoo.org>
   files/zlib-1.2.4-configure-LANG.patch:






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

end of thread, other threads:[~2010-04-14  2:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-16  0:35 [gentoo-commits] gentoo-x86 commit in sys-libs/zlib: zlib-1.2.4.ebuild ChangeLog Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-19  2:23 Mike Frysinger (vapier)
2010-03-19 19:09 Samuli Suominen (ssuominen)
2010-04-14  2:23 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