* [gentoo-commits] gentoo-x86 commit in app-emulation/libvirt: libvirt-9999.ebuild ChangeLog libvirt-0.9.10-r4.ebuild
@ 2012-03-05 23:44 Doug Goldstein (cardoe)
0 siblings, 0 replies; 2+ messages in thread
From: Doug Goldstein (cardoe) @ 2012-03-05 23:44 UTC (permalink / raw
To: gentoo-commits
cardoe 12/03/05 23:44:38
Modified: libvirt-9999.ebuild ChangeLog
libvirt-0.9.10-r4.ebuild
Log:
Add support for bootstrapping so the live git ebuild works. bug #377279. Change based on patches from hasufell <julian.ospald@googlemail.com>
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Revision Changes Path
1.25 app-emulation/libvirt/libvirt-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?r1=1.24&r2=1.25
Index: libvirt-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- libvirt-9999.ebuild 5 Mar 2012 14:46:07 -0000 1.24
+++ libvirt-9999.ebuild 5 Mar 2012 23:44:38 -0000 1.25
@@ -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-emulation/libvirt/libvirt-9999.ebuild,v 1.24 2012/03/05 14:46:07 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v 1.25 2012/03/05 23:44:38 cardoe Exp $
BACKPORTS=1
#AUTOTOOLIZE=yes
@@ -100,6 +100,17 @@
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
+ if [[ ${PV} = *9999* ]]; then
+ # git checkouts require bootstrapping to create the configure script.
+ # Additionally the submodules must be cloned to the right locations
+ # bug #377279
+ ./bootstrap || die "bootstrap failed"
+ (
+ git submodule status | sed 's/^[ +-]//;s/ .*//'
+ git hash-object bootstrap.conf
+ ) >.git-module-status
+ fi
+
[[ -n ${AUTOTOOLIZE} ]] && eautoreconf
}
@@ -193,6 +204,12 @@
--docdir=/usr/share/doc/${PF} \
--with-remote \
--localstatedir=/var
+
+ if [[ ${PV} = *9999* ]]; then
+ # Restore gnulib's config.sub and config.guess
+ # bug #377279
+ (cd .gnulib && git reset --hard > /dev/null)
+ fi
}
src_test() {
1.164 app-emulation/libvirt/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.164&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.164&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?r1=1.163&r2=1.164
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog 5 Mar 2012 14:46:07 -0000 1.163
+++ ChangeLog 5 Mar 2012 23:44:38 -0000 1.164
@@ -1,12 +1,17 @@
# ChangeLog for app-emulation/libvirt
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.163 2012/03/05 14:46:07 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.164 2012/03/05 23:44:38 cardoe Exp $
+
+ 05 Mar 2012; Doug Goldstein <cardoe@gentoo.org> libvirt-0.9.10-r4.ebuild,
+ libvirt-9999.ebuild:
+ Add support for bootstrapping so the live git ebuild works. bug #377279.
+ Change based on patches from hasufell <julian.ospald@googlemail.com>
*libvirt-0.9.10-r4 (05 Mar 2012)
05 Mar 2012; Doug Goldstein <cardoe@gentoo.org> -libvirt-0.9.10-r3.ebuild,
+libvirt-0.9.10-r4.ebuild, libvirt-9999.ebuild:
- Fix filename of sysctl config file so OpenRC respects it Identified by BT
+ Fix filename of sysctl config file so OpenRC respects it. Identified by BT
<amak79@gmail.com>. bug #406729
01 Mar 2012; Doug Goldstein <cardoe@gentoo.org> libvirt-0.9.10-r3.ebuild,
1.2 app-emulation/libvirt/libvirt-0.9.10-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild?r1=1.1&r2=1.2
Index: libvirt-0.9.10-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libvirt-0.9.10-r4.ebuild 5 Mar 2012 14:46:07 -0000 1.1
+++ libvirt-0.9.10-r4.ebuild 5 Mar 2012 23:44:38 -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-emulation/libvirt/libvirt-0.9.10-r4.ebuild,v 1.1 2012/03/05 14:46:07 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild,v 1.2 2012/03/05 23:44:38 cardoe Exp $
BACKPORTS=1
#AUTOTOOLIZE=yes
@@ -100,6 +100,17 @@
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
+ if [[ ${PV} = *9999* ]]; then
+ # git checkouts require bootstrapping to create the configure script.
+ # Additionally the submodules must be cloned to the right locations
+ # bug #377279
+ ./bootstrap || die "bootstrap failed"
+ (
+ git submodule status | sed 's/^[ +-]//;s/ .*//'
+ git hash-object bootstrap.conf
+ ) >.git-module-status
+ fi
+
[[ -n ${AUTOTOOLIZE} ]] && eautoreconf
}
@@ -193,6 +204,12 @@
--docdir=/usr/share/doc/${PF} \
--with-remote \
--localstatedir=/var
+
+ if [[ ${PV} = *9999* ]]; then
+ # Restore gnulib's config.sub and config.guess
+ # bug #377279
+ (cd .gnulib && git reset --hard > /dev/null)
+ fi
}
src_test() {
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-emulation/libvirt: libvirt-9999.ebuild ChangeLog libvirt-0.9.10-r4.ebuild
@ 2012-04-13 17:43 Ulrich Mueller (ulm)
0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Mueller (ulm) @ 2012-04-13 17:43 UTC (permalink / raw
To: gentoo-commits
ulm 12/04/13 17:43:45
Modified: libvirt-9999.ebuild ChangeLog
libvirt-0.9.10-r4.ebuild
Log:
Move EAPI assignment to top of ebuild, bug 411875.
(Portage version: 2.1.10.56/cvs/Linux x86_64)
Revision Changes Path
1.26 app-emulation/libvirt/libvirt-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild?r1=1.25&r2=1.26
Index: libvirt-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- libvirt-9999.ebuild 5 Mar 2012 23:44:38 -0000 1.25
+++ libvirt-9999.ebuild 13 Apr 2012 17:43:45 -0000 1.26
@@ -1,12 +1,12 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v 1.25 2012/03/05 23:44:38 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-9999.ebuild,v 1.26 2012/04/13 17:43:45 ulm Exp $
+
+EAPI=4
BACKPORTS=1
#AUTOTOOLIZE=yes
-EAPI="4"
-
MY_P="${P/_rc/-rc}"
if [[ ${PV} = *9999* ]]; then
1.168 app-emulation/libvirt/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.168&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?rev=1.168&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/ChangeLog?r1=1.167&r2=1.168
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog 9 Mar 2012 11:01:20 -0000 1.167
+++ ChangeLog 13 Apr 2012 17:43:45 -0000 1.168
@@ -1,6 +1,10 @@
# ChangeLog for app-emulation/libvirt
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.167 2012/03/09 11:01:20 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/ChangeLog,v 1.168 2012/04/13 17:43:45 ulm Exp $
+
+ 13 Apr 2012; Ulrich Müller <ulm@gentoo.org> libvirt-0.9.10-r4.ebuild,
+ libvirt-9999.ebuild:
+ Move EAPI assignment to top of ebuild, bug 411875.
09 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> libvirt-0.9.8.ebuild:
x86 stable wrt bug #403933
1.5 app-emulation/libvirt/libvirt-0.9.10-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild?r1=1.4&r2=1.5
Index: libvirt-0.9.10-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libvirt-0.9.10-r4.ebuild 7 Mar 2012 12:54:49 -0000 1.4
+++ libvirt-0.9.10-r4.ebuild 13 Apr 2012 17:43:45 -0000 1.5
@@ -1,12 +1,12 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild,v 1.4 2012/03/07 12:54:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.9.10-r4.ebuild,v 1.5 2012/04/13 17:43:45 ulm Exp $
+
+EAPI=4
BACKPORTS=1
#AUTOTOOLIZE=yes
-EAPI="4"
-
MY_P="${P/_rc/-rc}"
if [[ ${PV} = *9999* ]]; then
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-04-13 17:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-13 17:43 [gentoo-commits] gentoo-x86 commit in app-emulation/libvirt: libvirt-9999.ebuild ChangeLog libvirt-0.9.10-r4.ebuild Ulrich Mueller (ulm)
-- strict thread matches above, loose matches on Subject: below --
2012-03-05 23:44 Doug Goldstein (cardoe)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox