* [gentoo-commits] gentoo-x86 commit in net-libs/nghttp2: nghttp2-1.0.1.ebuild nghttp2-0.7.15.ebuild ChangeLog
@ 2015-06-04 4:13 Mike Frysinger (vapier)
0 siblings, 0 replies; only message in thread
From: Mike Frysinger (vapier) @ 2015-06-04 4:13 UTC (permalink / raw
To: gentoo-commits
vapier 15/06/04 04:13:59
Modified: nghttp2-1.0.1.ebuild nghttp2-0.7.15.ebuild
ChangeLog
Log:
Fix bashism in configure test #550962 by Mikael Magnusson.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path
1.2 net-libs/nghttp2/nghttp2-1.0.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nghttp2/nghttp2-1.0.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nghttp2/nghttp2-1.0.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nghttp2/nghttp2-1.0.1.ebuild?r1=1.1&r2=1.2
Index: nghttp2-1.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-1.0.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nghttp2-1.0.1.ebuild 24 May 2015 13:55:00 -0000 1.1
+++ nghttp2-1.0.1.ebuild 4 Jun 2015 04:13:59 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-1.0.1.ebuild,v 1.1 2015/05/24 13:55:00 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-1.0.1.ebuild,v 1.2 2015/06/04 04:13:59 vapier Exp $
# TODO: Add python support.
@@ -38,6 +38,12 @@
virtual/pkgconfig
test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+src_prepare() {
+ sed -i \
+ -e '/test.*have_jansson/s:==:=:' \
+ configure || die #550962
+}
+
multilib_src_configure() {
ECONF_SOURCE=${S} \
econf \
1.2 net-libs/nghttp2/nghttp2-0.7.15.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nghttp2/nghttp2-0.7.15.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nghttp2/nghttp2-0.7.15.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nghttp2/nghttp2-0.7.15.ebuild?r1=1.1&r2=1.2
Index: nghttp2-0.7.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-0.7.15.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nghttp2-0.7.15.ebuild 24 May 2015 13:55:00 -0000 1.1
+++ nghttp2-0.7.15.ebuild 4 Jun 2015 04:13:59 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-0.7.15.ebuild,v 1.1 2015/05/24 13:55:00 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/nghttp2-0.7.15.ebuild,v 1.2 2015/06/04 04:13:59 vapier Exp $
# TODO: Add python support.
@@ -37,6 +37,12 @@
virtual/pkgconfig
test? ( >=dev-util/cunit-2.1[${MULTILIB_USEDEP}] )"
+src_prepare() {
+ sed -i \
+ -e '/test.*have_jansson/s:==:=:' \
+ configure || die #550962
+}
+
multilib_src_configure() {
ECONF_SOURCE=${S} \
econf \
1.2 net-libs/nghttp2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nghttp2/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nghttp2/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/nghttp2/ChangeLog?r1=1.1&r2=1.2
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/nghttp2/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog 24 May 2015 13:55:00 -0000 1.1
+++ ChangeLog 4 Jun 2015 04:13:59 -0000 1.2
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/nghttp2
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/ChangeLog,v 1.1 2015/05/24 13:55:00 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/nghttp2/ChangeLog,v 1.2 2015/06/04 04:13:59 vapier Exp $
+
+ 04 Jun 2015; Mike Frysinger <vapier@gentoo.org> nghttp2-0.7.15.ebuild,
+ nghttp2-1.0.1.ebuild:
+ Fix bashism in configure test #550962 by Mikael Magnusson.
*nghttp2-9999 (24 May 2015)
*nghttp2-1.0.1 (24 May 2015)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2015-06-04 4:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-04 4:13 [gentoo-commits] gentoo-x86 commit in net-libs/nghttp2: nghttp2-1.0.1.ebuild nghttp2-0.7.15.ebuild ChangeLog 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