* [gentoo-commits] gentoo-x86 commit in www-apache/mod_perl: ChangeLog mod_perl-2.0.7.ebuild
@ 2012-06-06 18:22 Christian Ruppert (idl0r)
0 siblings, 0 replies; 8+ messages in thread
From: Christian Ruppert (idl0r) @ 2012-06-06 18:22 UTC (permalink / raw
To: gentoo-commits
idl0r 12/06/06 18:22:02
Modified: ChangeLog
Added: mod_perl-2.0.7.ebuild
Log:
Version bump, bug 419839
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.96 www-apache/mod_perl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?r1=1.95&r2=1.96
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog 3 Apr 2012 20:23:27 -0000 1.95
+++ ChangeLog 6 Jun 2012 18:22:02 -0000 1.96
@@ -1,6 +1,12 @@
# ChangeLog for www-apache/mod_perl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.95 2012/04/03 20:23:27 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.96 2012/06/06 18:22:02 idl0r Exp $
+
+*mod_perl-2.0.7 (06 Jun 2012)
+
+ 06 Jun 2012; Christian Ruppert <idl0r@gentoo.org> +mod_perl-2.0.7.ebuild,
+ +files/mod_perl-2.0.7-bundled-Apache-Test.patch:
+ Version bump, bug 419839
03 Apr 2012; Christian Ruppert <idl0r@gentoo.org> mod_perl-2.0.4-r1.ebuild,
mod_perl-2.0.5.ebuild:
1.1 www-apache/mod_perl/mod_perl-2.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.1&content-type=text/plain
Index: mod_perl-2.0.7.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.1 2012/06/06 18:22:02 idl0r Exp $
EAPI="3"
inherit apache-module perl-module eutils
DESCRIPTION="An embedded Perl interpreter for Apache2"
SRC_URI="mirror://apache/perl/${P}.tar.gz"
HOMEPAGE="http://perl.apache.org/"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug"
SLOT="1"
# Make sure we always use the latest Apache-Test version or even check the
# version of the bundled Apache-Test!
#
# We need both, apache and perl but either apache without threads or perl with
# ithreads, bug 373943
DEPEND=">=dev-perl/Apache-Test-1.360
>=virtual/perl-CGI-3.08
dev-lang/perl
www-servers/apache
|| ( www-servers/apache[-threads] dev-lang/perl[ithreads] )"
RDEPEND="${DEPEND}"
PDEPEND=">=dev-perl/Apache-Reload-0.11
>=dev-perl/Apache-SizeLimit-0.95"
APACHE2_MOD_FILE="${S}/src/modules/perl/mod_perl.so"
APACHE2_MOD_CONF="2.0.3/75_${PN}"
APACHE2_MOD_DEFINE="PERL"
SRC_TEST="do"
DOCFILES="Changes INSTALL README STATUS"
need_apache2
src_prepare() {
perl-module_src_prepare
# I am not entirely happy with this solution, but here's what's
# going on here if someone wants to take a stab at another
# approach. When userpriv compilation is off, then the make
# process drops to user "nobody" to run the test servers. This
# server is closed, and then the socket is rebound using
# SO_REUSEADDR. If the same user does this, there is no problem,
# and the socket may be rebound immediately. If a different user
# (yes, in my testing, even root) attempts to rebind, it fails.
# Since the "is the socket available yet" code and the
# second-batch bind call both run as root, this will fail.
# The upstream settings on my test machine cause the second batch
# of tests to fail, believing the socket to still be in use. I
# tried patching various parts to make them run as the user
# specified in $config->{vars}{user} using getpwnam, but found
# this patch to be fairly intrusive, because the userid must be
# restored and the patch must be applied to multiple places.
# For now, we will simply extend the timeout in hopes that in the
# non-userpriv case, the socket will clear from the kernel tables
# normally, and the tests will proceed.
# If anybody is still having problems, then commenting out "make
# test" below should allow the software to build properly.
# Robert Coie <rac@gentoo.org> 2003.05.06
# sed -i -e "s/sleep \$_/sleep \$_ << 2/" \
# "${S}"/Apache-Test/lib/Apache/TestServer.pm \
# || die "problem editing TestServer.pm"
# rendhalver - this got redone for 2.0.1 and seems to fix the make test problems
epatch "${FILESDIR}"/mod_perl-2.0.1-sneak-tmpdir.patch
# bug 352724
epatch "${FILESDIR}/${P}-bundled-Apache-Test.patch"
rm -rf Apache-{Test,Reload,SizeLimit}/ lib/Bundle/
sed -i -e 's:^Apache-\(Reload\|SizeLimit\|Test\).*::' \
-e 's:^lib/Bundle/Apache2.pm::' MANIFEST || die
}
src_configure() {
local myargs=
if use debug; then
myargs="MP_TRACE=1 MP_DEBUG=1"
else
myargs="MP_TRACE=0 MP_DEBUG=0"
fi
perl Makefile.PL \
PREFIX="${EPREFIX}"/usr \
INSTALLDIRS=vendor \
MP_USE_DSO=1 \
MP_APXS=${APXS} \
${myargs} || die
}
src_test() {
# make test notes whether it is running as root, and drops
# privileges all the way to "nobody" if so, so we must adjust
# write permissions accordingly in this case.
# IF YOU SUDO TO EMERGE AND HAVE !env_reset set testing will fail!
if [[ "$(id -u)" == "0" ]]; then
chown nobody:nobody "${WORKDIR}"
chown nobody:nobody "${T}"
fi
# this does not || die because of bug 21325. kudos to smark for
# the idea of setting HOME.
TMPDIR="${T}" HOME="${T}/" perl-module_src_test
}
src_install() {
apache-module_src_install
emake DESTDIR="${D}" install || die
# TODO: add some stuff from docs/ back?
# rendhalver - fix the perllocal.pod that gets installed
# it seems to me that this has been getting installed for ages
fixlocalpod
# Remove empty .bs files as well
perl_delete_packlist
insinto "${APACHE_MODULES_CONFDIR}"
doins "${FILESDIR}"/2.0.3/apache2-mod_perl-startup.pl || die
# this is an attempt to get @INC in line with /usr/bin/perl.
# there is blib garbage in the mainstream one that can only be
# useful during internal testing, so we wait until here and then
# just go with a clean slate. should be much easier to see what's
# happening and revert if problematic.
# Sorry for this evil hack...
perlinfo # just to be sure...
sed -i -e "s,-I${S}/[^[:space:]\"\']\+[[:space:]]\?,,g" \
-e "s,-typemap[[:space:]]${S}/[^[:space:]\"\']\+[[:space:]]\?,,g" \
-e "s,${S}\(/[^[:space:]\"\']\+\)\?,/,g" "${D}/${VENDOR_ARCH}/Apache2/BuildConfig.pm" || die
for fname in $(find "${D}" -type f -not -name '*.so'); do
grep -q "\(${D}\|${S}\)" "${fname}" && ewarn "QA: File contains a temporary path ${fname}"
sed -i -e "s:\(${D}\|${S}\):/:g" ${fname}
done
# All the rest
perl_remove_temppath
}
pkg_postinst() {
perl-module_pkg_postinst
apache-module_pkg_postinst
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_perl: ChangeLog mod_perl-2.0.7.ebuild
@ 2012-06-07 13:51 Christian Ruppert (idl0r)
0 siblings, 0 replies; 8+ messages in thread
From: Christian Ruppert (idl0r) @ 2012-06-07 13:51 UTC (permalink / raw
To: gentoo-commits
idl0r 12/06/07 13:51:31
Modified: ChangeLog mod_perl-2.0.7.ebuild
Log:
2.0.7 is still not apache 2.4 ready
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.97 www-apache/mod_perl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.97&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.97&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?r1=1.96&r2=1.97
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog 6 Jun 2012 18:22:02 -0000 1.96
+++ ChangeLog 7 Jun 2012 13:51:31 -0000 1.97
@@ -1,6 +1,9 @@
# ChangeLog for www-apache/mod_perl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.96 2012/06/06 18:22:02 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.97 2012/06/07 13:51:31 idl0r Exp $
+
+ 07 Jun 2012; Christian Ruppert <idl0r@gentoo.org> mod_perl-2.0.7.ebuild:
+ 2.0.7 is still not apache 2.4 ready
*mod_perl-2.0.7 (06 Jun 2012)
1.2 www-apache/mod_perl/mod_perl-2.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?r1=1.1&r2=1.2
Index: mod_perl-2.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mod_perl-2.0.7.ebuild 6 Jun 2012 18:22:02 -0000 1.1
+++ mod_perl-2.0.7.ebuild 7 Jun 2012 13:51:31 -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/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.1 2012/06/06 18:22:02 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.2 2012/06/07 13:51:31 idl0r Exp $
EAPI="3"
@@ -20,7 +20,8 @@
#
# We need both, apache and perl but either apache without threads or perl with
# ithreads, bug 373943
-DEPEND=">=dev-perl/Apache-Test-1.360
+DEPEND="<www-servers/apache-2.4
+ >=dev-perl/Apache-Test-1.360
>=virtual/perl-CGI-3.08
dev-lang/perl
www-servers/apache
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_perl: ChangeLog mod_perl-2.0.7.ebuild
@ 2012-08-25 12:51 Agostino Sarubbo (ago)
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-08-25 12:51 UTC (permalink / raw
To: gentoo-commits
ago 12/08/25 12:51:18
Modified: ChangeLog mod_perl-2.0.7.ebuild
Log:
Stable for amd64, wrt bug #432610
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Revision Changes Path
1.98 www-apache/mod_perl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.98&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.98&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?r1=1.97&r2=1.98
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- ChangeLog 7 Jun 2012 13:51:31 -0000 1.97
+++ ChangeLog 25 Aug 2012 12:51:18 -0000 1.98
@@ -1,6 +1,9 @@
# ChangeLog for www-apache/mod_perl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.97 2012/06/07 13:51:31 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.98 2012/08/25 12:51:18 ago Exp $
+
+ 25 Aug 2012; Agostino Sarubbo <ago@gentoo.org> mod_perl-2.0.7.ebuild:
+ Stable for amd64, wrt bug #432610
07 Jun 2012; Christian Ruppert <idl0r@gentoo.org> mod_perl-2.0.7.ebuild:
2.0.7 is still not apache 2.4 ready
1.3 www-apache/mod_perl/mod_perl-2.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?r1=1.2&r2=1.3
Index: mod_perl-2.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mod_perl-2.0.7.ebuild 7 Jun 2012 13:51:31 -0000 1.2
+++ mod_perl-2.0.7.ebuild 25 Aug 2012 12:51:18 -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/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.2 2012/06/07 13:51:31 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.3 2012/08/25 12:51:18 ago Exp $
EAPI="3"
@@ -11,7 +11,7 @@
HOMEPAGE="http://perl.apache.org/"
LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug"
SLOT="1"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_perl: ChangeLog mod_perl-2.0.7.ebuild
@ 2012-08-27 14:23 Johannes Huber (johu)
0 siblings, 0 replies; 8+ messages in thread
From: Johannes Huber (johu) @ 2012-08-27 14:23 UTC (permalink / raw
To: gentoo-commits
johu 12/08/27 14:23:38
Modified: ChangeLog mod_perl-2.0.7.ebuild
Log:
Stable for x86, wrt bug #432610
(Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
Revision Changes Path
1.99 www-apache/mod_perl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?r1=1.98&r2=1.99
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog 25 Aug 2012 12:51:18 -0000 1.98
+++ ChangeLog 27 Aug 2012 14:23:38 -0000 1.99
@@ -1,6 +1,9 @@
# ChangeLog for www-apache/mod_perl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.98 2012/08/25 12:51:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.99 2012/08/27 14:23:38 johu Exp $
+
+ 27 Aug 2012; Johannes Huber <johu@gentoo.org> mod_perl-2.0.7.ebuild:
+ Stable for x86, wrt bug #432610
25 Aug 2012; Agostino Sarubbo <ago@gentoo.org> mod_perl-2.0.7.ebuild:
Stable for amd64, wrt bug #432610
1.4 www-apache/mod_perl/mod_perl-2.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?r1=1.3&r2=1.4
Index: mod_perl-2.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mod_perl-2.0.7.ebuild 25 Aug 2012 12:51:18 -0000 1.3
+++ mod_perl-2.0.7.ebuild 27 Aug 2012 14:23:38 -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/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.3 2012/08/25 12:51:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.4 2012/08/27 14:23:38 johu Exp $
EAPI="3"
@@ -11,7 +11,7 @@
HOMEPAGE="http://perl.apache.org/"
LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="debug"
SLOT="1"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_perl: ChangeLog mod_perl-2.0.7.ebuild
@ 2012-09-11 15:08 Raul Porcel (armin76)
0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2012-09-11 15:08 UTC (permalink / raw
To: gentoo-commits
armin76 12/09/11 15:08:31
Modified: ChangeLog mod_perl-2.0.7.ebuild
Log:
alpha/ia64/sparc stable wrt #432610
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Revision Changes Path
1.100 www-apache/mod_perl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?r1=1.99&r2=1.100
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog 27 Aug 2012 14:23:38 -0000 1.99
+++ ChangeLog 11 Sep 2012 15:08:31 -0000 1.100
@@ -1,6 +1,9 @@
# ChangeLog for www-apache/mod_perl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.99 2012/08/27 14:23:38 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.100 2012/09/11 15:08:31 armin76 Exp $
+
+ 11 Sep 2012; Raúl Porcel <armin76@gentoo.org> mod_perl-2.0.7.ebuild:
+ alpha/ia64/sparc stable wrt #432610
27 Aug 2012; Johannes Huber <johu@gentoo.org> mod_perl-2.0.7.ebuild:
Stable for x86, wrt bug #432610
1.5 www-apache/mod_perl/mod_perl-2.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?r1=1.4&r2=1.5
Index: mod_perl-2.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mod_perl-2.0.7.ebuild 27 Aug 2012 14:23:38 -0000 1.4
+++ mod_perl-2.0.7.ebuild 11 Sep 2012 15:08:31 -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/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.4 2012/08/27 14:23:38 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.5 2012/09/11 15:08:31 armin76 Exp $
EAPI="3"
@@ -11,7 +11,7 @@
HOMEPAGE="http://perl.apache.org/"
LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86"
IUSE="debug"
SLOT="1"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_perl: ChangeLog mod_perl-2.0.7.ebuild
@ 2012-09-18 14:40 Jeroen Roovers (jer)
0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2012-09-18 14:40 UTC (permalink / raw
To: gentoo-commits
jer 12/09/18 14:40:06
Modified: ChangeLog mod_perl-2.0.7.ebuild
Log:
Stable for HPPA (bug #432610).
(Portage version: 2.2.0_alpha128/cvs/Linux x86_64)
Revision Changes Path
1.101 www-apache/mod_perl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?r1=1.100&r2=1.101
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog 11 Sep 2012 15:08:31 -0000 1.100
+++ ChangeLog 18 Sep 2012 14:40:06 -0000 1.101
@@ -1,6 +1,9 @@
# ChangeLog for www-apache/mod_perl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.100 2012/09/11 15:08:31 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.101 2012/09/18 14:40:06 jer Exp $
+
+ 18 Sep 2012; Jeroen Roovers <jer@gentoo.org> mod_perl-2.0.7.ebuild:
+ Stable for HPPA (bug #432610).
11 Sep 2012; Raúl Porcel <armin76@gentoo.org> mod_perl-2.0.7.ebuild:
alpha/ia64/sparc stable wrt #432610
1.6 www-apache/mod_perl/mod_perl-2.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?r1=1.5&r2=1.6
Index: mod_perl-2.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mod_perl-2.0.7.ebuild 11 Sep 2012 15:08:31 -0000 1.5
+++ mod_perl-2.0.7.ebuild 18 Sep 2012 14:40:06 -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/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.5 2012/09/11 15:08:31 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.6 2012/09/18 14:40:06 jer Exp $
EAPI="3"
@@ -11,7 +11,7 @@
HOMEPAGE="http://perl.apache.org/"
LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ia64 ~ppc ~ppc64 sparc x86"
IUSE="debug"
SLOT="1"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_perl: ChangeLog mod_perl-2.0.7.ebuild
@ 2012-10-10 14:15 Brent Baude (ranger)
0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2012-10-10 14:15 UTC (permalink / raw
To: gentoo-commits
ranger 12/10/10 14:15:02
Modified: ChangeLog mod_perl-2.0.7.ebuild
Log:
Marking mod_perl-2.0.7 ppc for bug 432610
(Portage version: 2.1.10.65/cvs/Linux ppc64)
Revision Changes Path
1.102 www-apache/mod_perl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?r1=1.101&r2=1.102
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog 18 Sep 2012 14:40:06 -0000 1.101
+++ ChangeLog 10 Oct 2012 14:15:02 -0000 1.102
@@ -1,6 +1,9 @@
# ChangeLog for www-apache/mod_perl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.101 2012/09/18 14:40:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.102 2012/10/10 14:15:02 ranger Exp $
+
+ 10 Oct 2012; Brent Baude <ranger@gentoo.org> mod_perl-2.0.7.ebuild:
+ Marking mod_perl-2.0.7 ppc for bug 432610
18 Sep 2012; Jeroen Roovers <jer@gentoo.org> mod_perl-2.0.7.ebuild:
Stable for HPPA (bug #432610).
1.7 www-apache/mod_perl/mod_perl-2.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?r1=1.6&r2=1.7
Index: mod_perl-2.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- mod_perl-2.0.7.ebuild 18 Sep 2012 14:40:06 -0000 1.6
+++ mod_perl-2.0.7.ebuild 10 Oct 2012 14:15:02 -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/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.6 2012/09/18 14:40:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.7 2012/10/10 14:15:02 ranger Exp $
EAPI="3"
@@ -11,7 +11,7 @@
HOMEPAGE="http://perl.apache.org/"
LICENSE="GPL-2"
-KEYWORDS="alpha amd64 hppa ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc64 sparc x86"
IUSE="debug"
SLOT="1"
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_perl: ChangeLog mod_perl-2.0.7.ebuild
@ 2012-11-13 15:57 Brent Baude (ranger)
0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2012-11-13 15:57 UTC (permalink / raw
To: gentoo-commits
ranger 12/11/13 15:57:05
Modified: ChangeLog mod_perl-2.0.7.ebuild
Log:
Marking mod_perl-2.0.7 ppc64 for bug 432610
(Portage version: 2.1.10.65/cvs/Linux ppc64)
Revision Changes Path
1.104 www-apache/mod_perl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/ChangeLog?r1=1.103&r2=1.104
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ChangeLog 30 Oct 2012 20:25:29 -0000 1.103
+++ ChangeLog 13 Nov 2012 15:57:04 -0000 1.104
@@ -1,6 +1,9 @@
# ChangeLog for www-apache/mod_perl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.103 2012/10/30 20:25:29 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/ChangeLog,v 1.104 2012/11/13 15:57:04 ranger Exp $
+
+ 13 Nov 2012; Brent Baude <ranger@gentoo.org> mod_perl-2.0.7.ebuild:
+ Marking mod_perl-2.0.7 ppc64 for bug 432610
30 Oct 2012; Christian Ruppert <idl0r@gentoo.org> -mod_perl-2.0.4-r1.ebuild,
-mod_perl-2.0.5.ebuild, -files/mod_perl-2.0.5-bundled-Apache-Test.patch,
1.8 www-apache/mod_perl/mod_perl-2.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild?r1=1.7&r2=1.8
Index: mod_perl-2.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- mod_perl-2.0.7.ebuild 10 Oct 2012 14:15:02 -0000 1.7
+++ mod_perl-2.0.7.ebuild 13 Nov 2012 15:57:04 -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/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.7 2012/10/10 14:15:02 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_perl/mod_perl-2.0.7.ebuild,v 1.8 2012/11/13 15:57:04 ranger Exp $
EAPI="3"
@@ -11,7 +11,7 @@
HOMEPAGE="http://perl.apache.org/"
LICENSE="GPL-2"
-KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
IUSE="debug"
SLOT="1"
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-11-13 15:57 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-11 15:08 [gentoo-commits] gentoo-x86 commit in www-apache/mod_perl: ChangeLog mod_perl-2.0.7.ebuild Raul Porcel (armin76)
-- strict thread matches above, loose matches on Subject: below --
2012-11-13 15:57 Brent Baude (ranger)
2012-10-10 14:15 Brent Baude (ranger)
2012-09-18 14:40 Jeroen Roovers (jer)
2012-08-27 14:23 Johannes Huber (johu)
2012-08-25 12:51 Agostino Sarubbo (ago)
2012-06-07 13:51 Christian Ruppert (idl0r)
2012-06-06 18:22 Christian Ruppert (idl0r)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox