* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2020-11-17 23:02 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2020-11-17 23:02 UTC (permalink / raw
To: gentoo-commits
commit: 22dc9ed6b5cc0884b2724dbc354ae63835ee3673
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 17 22:59:25 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 17 23:02:06 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22dc9ed6
www-apache/libapreq2: bump to 2.15
Bug: https://bugs.gentoo.org/755164
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/Manifest | 1 +
www-apache/libapreq2/libapreq2-2.15.ebuild | 72 ++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/www-apache/libapreq2/Manifest b/www-apache/libapreq2/Manifest
index 00cb7fd8295..d72320403b1 100644
--- a/www-apache/libapreq2/Manifest
+++ b/www-apache/libapreq2/Manifest
@@ -1 +1,2 @@
DIST libapreq2-2.13.tar.gz 891320 BLAKE2B 6e896b95a17d7e4eede651bd74f21280d77b38c1c96be790c34993307a0435ea6d4626825dc215680e1fa2cd6a3ec635fcbeb9fda3b34e687ed8f7641b4fee7e SHA512 54553cb90c0d3f6fb34ff19364c5804976c4aff1bae551ae051fdd06f41695770f1e285c40e03dbd93ae738adc332f38f1a1994167598364071feaec833fdf05
+DIST libapreq2-2.15.tar.gz 839618 BLAKE2B 875aa8091512cf6b43c8654579b3d4779ea50835784380dcf69ca048f9b8d4ef6e573fef5ee03c0e47a929dcd8c4643d5dc861d875122095024bca6e8fbbf38c SHA512 abdc34f4867ba891966e7296c8110cffaa723f9b966522a1de352bc459e89e5cfc60de25dcd20cf0fa9b7cdf9282719b0276b621af8aa7bb770c89a7fbae4701
diff --git a/www-apache/libapreq2/libapreq2-2.15.ebuild b/www-apache/libapreq2/libapreq2-2.15.ebuild
new file mode 100644
index 00000000000..03aadcb290e
--- /dev/null
+++ b/www-apache/libapreq2/libapreq2-2.15.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit apache-module perl-module
+
+DESCRIPTION="A library for manipulating client request data via the Apache API"
+SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
+HOMEPAGE="https://httpd.apache.org/apreq/"
+
+LICENSE="Apache-2.0"
+SLOT="2"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="perl test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ perl? (
+ >=dev-perl/ExtUtils-XSBuilder-0.23
+ virtual/perl-version
+ >=www-apache/mod_perl-2
+ )
+"
+DEPEND="${RDEPEND}
+ test? ( dev-perl/Apache-Test )
+"
+
+PATCHES=(
+ "${FILESDIR}"/libapreq2-2.08-doc.patch
+)
+
+APACHE2_MOD_FILE="module/apache2/.libs/mod_apreq2.so"
+APACHE2_MOD_CONF="76_mod_apreq"
+APACHE2_MOD_DEFINE="APREQ"
+DOCFILES="docs/html/*.html CHANGES README INSTALL MANIFEST"
+
+need_apache2
+
+pkg_setup() {
+ perl_set_version
+}
+
+src_prepare() {
+ default
+
+ sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/acinclude.m4 || die
+ sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/aclocal.m4 || die
+ sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/configure || die
+}
+
+src_configure() {
+ econf \
+ --with-apache2-apxs=${APXS} \
+ $(use_enable perl perl-glue)
+}
+
+src_install() {
+ APACHE_MODULESDIR="/usr/$(get_libdir)/apache2/modules"
+ apache-module_src_install
+
+ make DESTDIR="${D}" INSTALLDIRS=vendor install || die "make install failed"
+ doman docs/man/man3/*.3
+
+ perl_delete_localpod
+
+ for i in $(find "${D}" -type f -not -name '*.so'); do
+ if file ${i} | grep -i " text"; then
+ sed -i -e "s:${D}:/:g" ${i} || die
+ fi
+ done
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2020-12-05 17:09 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2020-12-05 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 5a5b7fc2b31574f6cfad022a877f327b818d0bbd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 5 17:08:56 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 5 17:09:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a5b7fc2
www-apache/libapreq2: add ssl dep
Closes: https://bugs.gentoo.org/755203
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../libapreq2/{libapreq2-2.15.ebuild => libapreq2-2.15-r1.ebuild} | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/www-apache/libapreq2/libapreq2-2.15.ebuild b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
similarity index 94%
rename from www-apache/libapreq2/libapreq2-2.15.ebuild
rename to www-apache/libapreq2/libapreq2-2.15-r1.ebuild
index 03aadcb290e..84e5b1b4d38 100644
--- a/www-apache/libapreq2/libapreq2-2.15.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
@@ -16,6 +16,11 @@ IUSE="perl test"
RESTRICT="!test? ( test )"
RDEPEND="
+ || (
+ dev-libs/apr-util[openssl]
+ dev-libs/apr-util[libressl]
+ dev-libs/apr-util[nss]
+ )
perl? (
>=dev-perl/ExtUtils-XSBuilder-0.23
virtual/perl-version
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2020-12-10 21:41 Thomas Deutschmann
0 siblings, 0 replies; 21+ messages in thread
From: Thomas Deutschmann @ 2020-12-10 21:41 UTC (permalink / raw
To: gentoo-commits
commit: c2d73be297c4acdd2d39a161a0a484cdd05f4520
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 10 21:28:17 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Dec 10 21:28:17 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d73be2
www-apache/libapreq2: x86 stable (bug #755164)
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.15-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
index 84e5b1b4d38..d4159965df2 100644
--- a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://httpd.apache.org/apreq/"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2020-12-14 8:09 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2020-12-14 8:09 UTC (permalink / raw
To: gentoo-commits
commit: 32a875f8312af2daf458daf6f7fcfe85ca3c566e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 14 08:08:12 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 14 08:09:12 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32a875f8
www-apache/libapreq2: Stabilize 2.15-r1 amd64, #755164
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.15-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
index d4159965df2..2b233532fee 100644
--- a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://httpd.apache.org/apreq/"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2021-02-25 8:36 Sergei Trofimovich
0 siblings, 0 replies; 21+ messages in thread
From: Sergei Trofimovich @ 2021-02-25 8:36 UTC (permalink / raw
To: gentoo-commits
commit: def28fed67b6cccad01790e988de0cb6fd520ad7
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 25 08:32:48 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu Feb 25 08:36:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=def28fed
www-apache/libapreq2: stable 2.15-r1 for ppc64
stable wrt bug #755164
Package-Manager: Portage-3.0.15, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.15-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
index 2b233532fee..fa4bb408b23 100644
--- a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ HOMEPAGE="https://httpd.apache.org/apreq/"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~ppc ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2021-03-25 13:41 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2021-03-25 13:41 UTC (permalink / raw
To: gentoo-commits
commit: a286fcba59520023d5f66e55073dce49a764370a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 25 13:39:26 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 25 13:39:26 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a286fcba
www-apache/libapreq2: add 2.16
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/Manifest | 1 +
www-apache/libapreq2/libapreq2-2.16.ebuild | 81 ++++++++++++++++++++++++++++++
2 files changed, 82 insertions(+)
diff --git a/www-apache/libapreq2/Manifest b/www-apache/libapreq2/Manifest
index d72320403b1..ae1f862ad76 100644
--- a/www-apache/libapreq2/Manifest
+++ b/www-apache/libapreq2/Manifest
@@ -1,2 +1,3 @@
DIST libapreq2-2.13.tar.gz 891320 BLAKE2B 6e896b95a17d7e4eede651bd74f21280d77b38c1c96be790c34993307a0435ea6d4626825dc215680e1fa2cd6a3ec635fcbeb9fda3b34e687ed8f7641b4fee7e SHA512 54553cb90c0d3f6fb34ff19364c5804976c4aff1bae551ae051fdd06f41695770f1e285c40e03dbd93ae738adc332f38f1a1994167598364071feaec833fdf05
DIST libapreq2-2.15.tar.gz 839618 BLAKE2B 875aa8091512cf6b43c8654579b3d4779ea50835784380dcf69ca048f9b8d4ef6e573fef5ee03c0e47a929dcd8c4643d5dc861d875122095024bca6e8fbbf38c SHA512 abdc34f4867ba891966e7296c8110cffaa723f9b966522a1de352bc459e89e5cfc60de25dcd20cf0fa9b7cdf9282719b0276b621af8aa7bb770c89a7fbae4701
+DIST libapreq2-2.16.tar.gz 839264 BLAKE2B 6a79e0281bb24962775f6c2fcc906d07a2f7643f608871018a647a225329c45516f1afe12e27c432449765463b2a4e823a728051fa73938e97ddc828b94c4732 SHA512 aa9e751a3f0d6a9cb587aa1c5408e8d9a073560860d7f653776196fe3739516df16abe943c9cb0460cfb9b68a2d79ad651cfd5e4a30a2ca34d6dc3ced73f628c
diff --git a/www-apache/libapreq2/libapreq2-2.16.ebuild b/www-apache/libapreq2/libapreq2-2.16.ebuild
new file mode 100644
index 00000000000..cf4d3ef38e4
--- /dev/null
+++ b/www-apache/libapreq2/libapreq2-2.16.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit apache-module perl-module
+
+DESCRIPTION="A library for manipulating client request data via the Apache API"
+SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
+HOMEPAGE="https://httpd.apache.org/apreq/"
+
+LICENSE="Apache-2.0"
+SLOT="2"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="perl test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ || (
+ dev-libs/apr-util[openssl]
+ dev-libs/apr-util[libressl]
+ dev-libs/apr-util[nss]
+ )
+ perl? (
+ >=dev-perl/ExtUtils-XSBuilder-0.23
+ virtual/perl-version
+ >=www-apache/mod_perl-2
+ )
+"
+# sys-apps/file should be BDEPEND when we can use EAPI 7
+# bug #778173
+DEPEND="
+ ${RDEPEND}
+ sys-apps/file
+ test? ( dev-perl/Apache-Test )
+"
+
+PATCHES=(
+ "${FILESDIR}"/libapreq2-2.08-doc.patch
+)
+
+APACHE2_MOD_FILE="module/apache2/.libs/mod_apreq2.so"
+APACHE2_MOD_CONF="76_mod_apreq"
+APACHE2_MOD_DEFINE="APREQ"
+DOCFILES="docs/html/*.html CHANGES README INSTALL MANIFEST"
+
+need_apache2
+
+pkg_setup() {
+ perl_set_version
+}
+
+src_prepare() {
+ default
+
+ sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/acinclude.m4 || die
+ sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/aclocal.m4 || die
+ sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/configure || die
+}
+
+src_configure() {
+ econf \
+ --with-apache2-apxs=${APXS} \
+ $(use_enable perl perl-glue)
+}
+
+src_install() {
+ APACHE_MODULESDIR="/usr/$(get_libdir)/apache2/modules"
+ apache-module_src_install
+
+ emake DESTDIR="${D}" INSTALLDIRS=vendor install
+ doman docs/man/man3/*.3
+
+ perl_delete_localpod
+
+ for i in $(find "${D}" -type f -not -name '*.so'); do
+ if file ${i} | grep -i " text"; then
+ sed -i -e "s:${D}:/:g" ${i} || die
+ fi
+ done
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2021-05-01 18:07 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2021-05-01 18:07 UTC (permalink / raw
To: gentoo-commits
commit: aef612e58774ee835d6e8e3448e2db4ddec49d46
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 1 17:52:15 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 1 18:06:54 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aef612e5
www-apache/libapreq2: drop obsolete LibreSSL support
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.15-r1.ebuild | 1 -
www-apache/libapreq2/libapreq2-2.16.ebuild | 1 -
2 files changed, 2 deletions(-)
diff --git a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
index fa4bb408b23..027983ac184 100644
--- a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
@@ -18,7 +18,6 @@ RESTRICT="!test? ( test )"
RDEPEND="
|| (
dev-libs/apr-util[openssl]
- dev-libs/apr-util[libressl]
dev-libs/apr-util[nss]
)
perl? (
diff --git a/www-apache/libapreq2/libapreq2-2.16.ebuild b/www-apache/libapreq2/libapreq2-2.16.ebuild
index cf4d3ef38e4..4963079f25b 100644
--- a/www-apache/libapreq2/libapreq2-2.16.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.16.ebuild
@@ -18,7 +18,6 @@ RESTRICT="!test? ( test )"
RDEPEND="
|| (
dev-libs/apr-util[openssl]
- dev-libs/apr-util[libressl]
dev-libs/apr-util[nss]
)
perl? (
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2021-05-16 12:45 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2021-05-16 12:45 UTC (permalink / raw
To: gentoo-commits
commit: 967a50bfe51f69f49b1bcf9cc9eb7d4c04596a72
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 16 12:42:35 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 16 12:45:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=967a50bf
www-apache/libapreq2: Stabilize 2.15-r1 ppc, #755164
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.15-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
index 027983ac184..35a9342e6d4 100644
--- a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://httpd.apache.org/apreq/"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="amd64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2021-05-16 12:53 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2021-05-16 12:53 UTC (permalink / raw
To: gentoo-commits
commit: 1c7ef92ac9f0fa8eec67e9efc485e2e4f2dc98c1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 16 12:52:46 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 16 12:53:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c7ef92a
www-apache/libapreq2: drop 2.13-r1 (EAPI 5)
Bug: https://bugs.gentoo.org/755164
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/Manifest | 1 -
www-apache/libapreq2/libapreq2-2.13-r1.ebuild | 63 ---------------------------
2 files changed, 64 deletions(-)
diff --git a/www-apache/libapreq2/Manifest b/www-apache/libapreq2/Manifest
index ae1f862ad76..1b7d380564a 100644
--- a/www-apache/libapreq2/Manifest
+++ b/www-apache/libapreq2/Manifest
@@ -1,3 +1,2 @@
-DIST libapreq2-2.13.tar.gz 891320 BLAKE2B 6e896b95a17d7e4eede651bd74f21280d77b38c1c96be790c34993307a0435ea6d4626825dc215680e1fa2cd6a3ec635fcbeb9fda3b34e687ed8f7641b4fee7e SHA512 54553cb90c0d3f6fb34ff19364c5804976c4aff1bae551ae051fdd06f41695770f1e285c40e03dbd93ae738adc332f38f1a1994167598364071feaec833fdf05
DIST libapreq2-2.15.tar.gz 839618 BLAKE2B 875aa8091512cf6b43c8654579b3d4779ea50835784380dcf69ca048f9b8d4ef6e573fef5ee03c0e47a929dcd8c4643d5dc861d875122095024bca6e8fbbf38c SHA512 abdc34f4867ba891966e7296c8110cffaa723f9b966522a1de352bc459e89e5cfc60de25dcd20cf0fa9b7cdf9282719b0276b621af8aa7bb770c89a7fbae4701
DIST libapreq2-2.16.tar.gz 839264 BLAKE2B 6a79e0281bb24962775f6c2fcc906d07a2f7643f608871018a647a225329c45516f1afe12e27c432449765463b2a4e823a728051fa73938e97ddc828b94c4732 SHA512 aa9e751a3f0d6a9cb587aa1c5408e8d9a073560860d7f653776196fe3739516df16abe943c9cb0460cfb9b68a2d79ad651cfd5e4a30a2ca34d6dc3ced73f628c
diff --git a/www-apache/libapreq2/libapreq2-2.13-r1.ebuild b/www-apache/libapreq2/libapreq2-2.13-r1.ebuild
deleted file mode 100644
index 8a4890686cf..00000000000
--- a/www-apache/libapreq2/libapreq2-2.13-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit apache-module epatch perl-module multilib
-
-DESCRIPTION="A library for manipulating client request data via the Apache API"
-SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
-HOMEPAGE="https://httpd.apache.org/apreq/"
-
-LICENSE="Apache-2.0"
-SLOT="2"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="perl"
-
-DEPEND="${DEPEND}
- perl? (
- >=dev-perl/ExtUtils-XSBuilder-0.23
- virtual/perl-version
- >=www-apache/mod_perl-2
- )"
-RDEPEND="${DEPEND}"
-
-APACHE2_MOD_FILE="module/apache2/.libs/mod_apreq2.so"
-APACHE2_MOD_CONF="76_mod_apreq"
-APACHE2_MOD_DEFINE="APREQ"
-DOCFILES="docs/html/*.html CHANGES README INSTALL MANIFEST"
-
-need_apache2
-
-pkg_setup() {
- perl_set_version
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/libapreq2-2.08-doc.patch
-
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/acinclude.m4 || die
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/aclocal.m4 || die
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/configure || die
-}
-
-src_configure() {
- econf \
- --with-apache2-apxs=${APXS} \
- $(use_enable perl perl-glue)
-}
-
-src_install() {
- apache-module_src_install
-
- make DESTDIR="${D}" INSTALLDIRS=vendor install || die "make install failed"
- doman docs/man/man3/*.3
-
- perl_delete_localpod
-
- for i in $(find "${D}" -type f -not -name '*.so'); do
- if file ${i} | grep -i " text"; then
- sed -i -e "s:${D}:/:g" ${i}
- fi
- done
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2021-05-17 3:03 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2021-05-17 3:03 UTC (permalink / raw
To: gentoo-commits
commit: 0f191bdee7a06240ca7552cdebf7b35b1ceb5406
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 03:03:16 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 17 03:03:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f191bde
www-apache/libapreq2: Stabilize 2.16 ppc, #788382
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.16.ebuild b/www-apache/libapreq2/libapreq2-2.16.ebuild
index 4963079f25b..4edc5bce27f 100644
--- a/www-apache/libapreq2/libapreq2-2.16.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.16.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://httpd.apache.org/apreq/"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ~ppc64 ~x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2021-05-17 3:19 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2021-05-17 3:19 UTC (permalink / raw
To: gentoo-commits
commit: 758ecbddc4edea81d1a38e8120e1c9c2a38bbefd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 03:18:16 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 17 03:18:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=758ecbdd
www-apache/libapreq2: Stabilize 2.16 x86, #788382
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.16.ebuild b/www-apache/libapreq2/libapreq2-2.16.ebuild
index 4edc5bce27f..06d39f3633a 100644
--- a/www-apache/libapreq2/libapreq2-2.16.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.16.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://httpd.apache.org/apreq/"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="~amd64 ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ~ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2021-05-17 13:45 Agostino Sarubbo
0 siblings, 0 replies; 21+ messages in thread
From: Agostino Sarubbo @ 2021-05-17 13:45 UTC (permalink / raw
To: gentoo-commits
commit: d2b503be2f055310e1234cf672579e3bb5bde081
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 13:45:09 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon May 17 13:45:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2b503be
www-apache/libapreq2: amd64 stable wrt bug #788382
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.16.ebuild b/www-apache/libapreq2/libapreq2-2.16.ebuild
index 06d39f3633a..cd02c5f6018 100644
--- a/www-apache/libapreq2/libapreq2-2.16.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.16.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://httpd.apache.org/apreq/"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="~amd64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ~ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2021-05-17 21:00 Sergei Trofimovich
0 siblings, 0 replies; 21+ messages in thread
From: Sergei Trofimovich @ 2021-05-17 21:00 UTC (permalink / raw
To: gentoo-commits
commit: da18699cd4592242867aefeb0f07bbd355dc0bbf
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 21:00:35 2021 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon May 17 21:00:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da18699c
www-apache/libapreq2: stable 2.16 for ppc64
stable wrt bug #788382
Package-Manager: Portage-3.0.18, Repoman-3.0.3
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.16.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.16.ebuild b/www-apache/libapreq2/libapreq2-2.16.ebuild
index cd02c5f6018..1b153b06644 100644
--- a/www-apache/libapreq2/libapreq2-2.16.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.16.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://httpd.apache.org/apreq/"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="amd64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2022-04-17 19:17 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2022-04-17 19:17 UTC (permalink / raw
To: gentoo-commits
commit: bbbbf295efba652c6328b13bb72c4c8fb3e25247
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 19:12:59 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 19:17:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbbbf295
www-apache/libapreq2: drop 2.15-r1
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/Manifest | 1 -
www-apache/libapreq2/libapreq2-2.15-r1.ebuild | 76 ---------------------------
2 files changed, 77 deletions(-)
diff --git a/www-apache/libapreq2/Manifest b/www-apache/libapreq2/Manifest
index 1b7d380564a9..6356c1bf4098 100644
--- a/www-apache/libapreq2/Manifest
+++ b/www-apache/libapreq2/Manifest
@@ -1,2 +1 @@
-DIST libapreq2-2.15.tar.gz 839618 BLAKE2B 875aa8091512cf6b43c8654579b3d4779ea50835784380dcf69ca048f9b8d4ef6e573fef5ee03c0e47a929dcd8c4643d5dc861d875122095024bca6e8fbbf38c SHA512 abdc34f4867ba891966e7296c8110cffaa723f9b966522a1de352bc459e89e5cfc60de25dcd20cf0fa9b7cdf9282719b0276b621af8aa7bb770c89a7fbae4701
DIST libapreq2-2.16.tar.gz 839264 BLAKE2B 6a79e0281bb24962775f6c2fcc906d07a2f7643f608871018a647a225329c45516f1afe12e27c432449765463b2a4e823a728051fa73938e97ddc828b94c4732 SHA512 aa9e751a3f0d6a9cb587aa1c5408e8d9a073560860d7f653776196fe3739516df16abe943c9cb0460cfb9b68a2d79ad651cfd5e4a30a2ca34d6dc3ced73f628c
diff --git a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild b/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
deleted file mode 100644
index 35a9342e6d45..000000000000
--- a/www-apache/libapreq2/libapreq2-2.15-r1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit apache-module perl-module
-
-DESCRIPTION="A library for manipulating client request data via the Apache API"
-SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
-HOMEPAGE="https://httpd.apache.org/apreq/"
-
-LICENSE="Apache-2.0"
-SLOT="2"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="perl test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- || (
- dev-libs/apr-util[openssl]
- dev-libs/apr-util[nss]
- )
- perl? (
- >=dev-perl/ExtUtils-XSBuilder-0.23
- virtual/perl-version
- >=www-apache/mod_perl-2
- )
-"
-DEPEND="${RDEPEND}
- test? ( dev-perl/Apache-Test )
-"
-
-PATCHES=(
- "${FILESDIR}"/libapreq2-2.08-doc.patch
-)
-
-APACHE2_MOD_FILE="module/apache2/.libs/mod_apreq2.so"
-APACHE2_MOD_CONF="76_mod_apreq"
-APACHE2_MOD_DEFINE="APREQ"
-DOCFILES="docs/html/*.html CHANGES README INSTALL MANIFEST"
-
-need_apache2
-
-pkg_setup() {
- perl_set_version
-}
-
-src_prepare() {
- default
-
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/acinclude.m4 || die
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/aclocal.m4 || die
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/configure || die
-}
-
-src_configure() {
- econf \
- --with-apache2-apxs=${APXS} \
- $(use_enable perl perl-glue)
-}
-
-src_install() {
- APACHE_MODULESDIR="/usr/$(get_libdir)/apache2/modules"
- apache-module_src_install
-
- make DESTDIR="${D}" INSTALLDIRS=vendor install || die "make install failed"
- doman docs/man/man3/*.3
-
- perl_delete_localpod
-
- for i in $(find "${D}" -type f -not -name '*.so'); do
- if file ${i} | grep -i " text"; then
- sed -i -e "s:${D}:/:g" ${i} || die
- fi
- done
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2022-07-02 22:04 David Seifert
0 siblings, 0 replies; 21+ messages in thread
From: David Seifert @ 2022-07-02 22:04 UTC (permalink / raw
To: gentoo-commits
commit: 8efc873bc49df07e5313f063c0ed9c1192e78be7
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 2 22:04:35 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Jul 2 22:04:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8efc873b
www-apache/libapreq2: update EAPI 6 -> 7
Closes: https://bugs.gentoo.org/811084
Signed-off-by: David Seifert <soap <AT> gentoo.org>
...apreq2-2.16.ebuild => libapreq2-2.16-r1.ebuild} | 40 +++++++++++-----------
1 file changed, 20 insertions(+), 20 deletions(-)
diff --git a/www-apache/libapreq2/libapreq2-2.16.ebuild b/www-apache/libapreq2/libapreq2-2.16-r1.ebuild
similarity index 63%
rename from www-apache/libapreq2/libapreq2-2.16.ebuild
rename to www-apache/libapreq2/libapreq2-2.16-r1.ebuild
index 1b153b066441..4d50482c8c95 100644
--- a/www-apache/libapreq2/libapreq2-2.16.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.16-r1.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit apache-module perl-module
DESCRIPTION="A library for manipulating client request data via the Apache API"
-SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
HOMEPAGE="https://httpd.apache.org/apreq/"
+SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="2"
@@ -25,23 +25,17 @@ RDEPEND="
virtual/perl-version
>=www-apache/mod_perl-2
)
-"
-# sys-apps/file should be BDEPEND when we can use EAPI 7
-# bug #778173
+ virtual/libcrypt:="
DEPEND="
${RDEPEND}
- sys-apps/file
- test? ( dev-perl/Apache-Test )
-"
+ test? ( dev-perl/Apache-Test )"
+BDEPEND="sys-apps/file"
-PATCHES=(
- "${FILESDIR}"/libapreq2-2.08-doc.patch
-)
+PATCHES=( "${FILESDIR}"/libapreq2-2.08-doc.patch )
APACHE2_MOD_FILE="module/apache2/.libs/mod_apreq2.so"
APACHE2_MOD_CONF="76_mod_apreq"
APACHE2_MOD_DEFINE="APREQ"
-DOCFILES="docs/html/*.html CHANGES README INSTALL MANIFEST"
need_apache2
@@ -52,13 +46,12 @@ pkg_setup() {
src_prepare() {
default
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/acinclude.m4 || die
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/aclocal.m4 || die
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" "${S}"/configure || die
+ sed -i -e "s/PERL \$PERL_OPTS/PERL/" acinclude.m4 aclocal.m4 configure || die
}
src_configure() {
econf \
+ --disable-static \
--with-apache2-apxs=${APXS} \
$(use_enable perl perl-glue)
}
@@ -72,9 +65,16 @@ src_install() {
perl_delete_localpod
- for i in $(find "${D}" -type f -not -name '*.so'); do
- if file ${i} | grep -i " text"; then
- sed -i -e "s:${D}:/:g" ${i} || die
+ HTML_DOCS=( docs/html/. )
+ einstalldocs
+ dodoc INSTALL MANIFEST
+
+ local f
+ while IFS="" read -d $'\0' -r f ; do
+ if file "${f}" | grep -i " text"; then
+ sed -i -e "s:${ED}:/:g" "${f}" || die
fi
- done
+ done < <(find "${ED}" -type f -not -name '*.so' -print0)
+
+ find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2022-08-26 10:03 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2022-08-26 10:03 UTC (permalink / raw
To: gentoo-commits
commit: 2bef9acebcab26b921d9a0c679b4ce2c162bab32
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 09:26:26 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 10:01:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bef9ace
www-apache/libapreq2: add 2.17
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/Manifest | 1 +
www-apache/libapreq2/libapreq2-2.17.ebuild | 80 ++++++++++++++++++++++++++++++
2 files changed, 81 insertions(+)
diff --git a/www-apache/libapreq2/Manifest b/www-apache/libapreq2/Manifest
index 6356c1bf4098..1c2e18c9b0ae 100644
--- a/www-apache/libapreq2/Manifest
+++ b/www-apache/libapreq2/Manifest
@@ -1 +1,2 @@
DIST libapreq2-2.16.tar.gz 839264 BLAKE2B 6a79e0281bb24962775f6c2fcc906d07a2f7643f608871018a647a225329c45516f1afe12e27c432449765463b2a4e823a728051fa73938e97ddc828b94c4732 SHA512 aa9e751a3f0d6a9cb587aa1c5408e8d9a073560860d7f653776196fe3739516df16abe943c9cb0460cfb9b68a2d79ad651cfd5e4a30a2ca34d6dc3ced73f628c
+DIST libapreq2-2.17.tar.gz 849867 BLAKE2B d2fa15693c200925e4926f207f1e023cba59ac0bfe3af3a8ac12880020bb00625c7fa21478c6562f9995d5307151b865efb83b837f45213d73fc523a1a864899 SHA512 89b139b8673145d9e2d8fd77d36f878c519c1deb7f9b853cda2a15d34cbb619d1c5e784ba21553f23c2ef07803f07c75a83d96cd770f80e1b36283a4cbb88999
diff --git a/www-apache/libapreq2/libapreq2-2.17.ebuild b/www-apache/libapreq2/libapreq2-2.17.ebuild
new file mode 100644
index 000000000000..335b6354b7b6
--- /dev/null
+++ b/www-apache/libapreq2/libapreq2-2.17.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit apache-module perl-module
+
+DESCRIPTION="A library for manipulating client request data via the Apache API"
+HOMEPAGE="https://httpd.apache.org/apreq/"
+SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="2"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="perl test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ || (
+ dev-libs/apr-util[openssl]
+ dev-libs/apr-util[nss]
+ )
+ perl? (
+ >=dev-perl/ExtUtils-XSBuilder-0.23
+ virtual/perl-version
+ >=www-apache/mod_perl-2
+ )
+ virtual/libcrypt:="
+DEPEND="
+ ${RDEPEND}
+ test? ( dev-perl/Apache-Test )"
+BDEPEND="sys-apps/file"
+
+PATCHES=( "${FILESDIR}"/libapreq2-2.08-doc.patch )
+
+APACHE2_MOD_FILE="module/apache2/.libs/mod_apreq2.so"
+APACHE2_MOD_CONF="76_mod_apreq"
+APACHE2_MOD_DEFINE="APREQ"
+
+need_apache2
+
+pkg_setup() {
+ perl_set_version
+}
+
+src_prepare() {
+ default
+
+ sed -i -e "s/PERL \$PERL_OPTS/PERL/" acinclude.m4 aclocal.m4 configure || die
+}
+
+src_configure() {
+ econf \
+ --disable-static \
+ --with-apache2-apxs=${APXS} \
+ $(use_enable perl perl-glue)
+}
+
+src_install() {
+ APACHE_MODULESDIR="/usr/$(get_libdir)/apache2/modules"
+ apache-module_src_install
+
+ emake DESTDIR="${D}" INSTALLDIRS=vendor install
+ doman docs/man/man3/*.3
+
+ perl_delete_localpod
+
+ HTML_DOCS=( docs/html/. )
+ einstalldocs
+ dodoc INSTALL MANIFEST
+
+ local f
+ while IFS="" read -d $'\0' -r f ; do
+ if file "${f}" | grep -i " text"; then
+ sed -i -e "s:${ED}:/:g" "${f}" || die
+ fi
+ done < <(find "${ED}" -type f -not -name '*.so' -print0)
+
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2022-10-13 22:37 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2022-10-13 22:37 UTC (permalink / raw
To: gentoo-commits
commit: 51b441a8e2d8dd9d0695040398a71f92a6b90a46
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 13 22:36:09 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 13 22:36:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51b441a8
www-apache/libapreq2: Stabilize 2.17 amd64, #877035
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.17.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.17.ebuild b/www-apache/libapreq2/libapreq2-2.17.ebuild
index 335b6354b7b6..fa8e1b2ad51e 100644
--- a/www-apache/libapreq2/libapreq2-2.17.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.17.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2022-10-13 23:04 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2022-10-13 23:04 UTC (permalink / raw
To: gentoo-commits
commit: ac41466692c493bd2729ae30e0b37e32500c9cf1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 13 23:03:16 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 13 23:03:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac414666
www-apache/libapreq2: Stabilize 2.17 x86, #877035
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.17.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.17.ebuild b/www-apache/libapreq2/libapreq2-2.17.ebuild
index fa8e1b2ad51e..fb4e7ad5dd38 100644
--- a/www-apache/libapreq2/libapreq2-2.17.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.17.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2022-10-14 4:14 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2022-10-14 4:14 UTC (permalink / raw
To: gentoo-commits
commit: 391c1d0da7a29ee756b49fb582ec853d69761efd
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 04:13:56 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 04:13:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=391c1d0d
www-apache/libapreq2: Stabilize 2.17 ppc64, #877035
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.17.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.17.ebuild b/www-apache/libapreq2/libapreq2-2.17.ebuild
index fb4e7ad5dd38..29b7545738ae 100644
--- a/www-apache/libapreq2/libapreq2-2.17.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.17.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~ppc ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2022-10-14 4:14 Arthur Zamarin
0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2022-10-14 4:14 UTC (permalink / raw
To: gentoo-commits
commit: 911f8943c8447afb242295702f219ccb0e9bbc80
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 04:13:57 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 04:13:57 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=911f8943
www-apache/libapreq2: Stabilize 2.17 ppc, #877035
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
www-apache/libapreq2/libapreq2-2.17.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/libapreq2/libapreq2-2.17.ebuild b/www-apache/libapreq2/libapreq2-2.17.ebuild
index 29b7545738ae..4d50482c8c95 100644
--- a/www-apache/libapreq2/libapreq2-2.17.ebuild
+++ b/www-apache/libapreq2/libapreq2-2.17.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="2"
-KEYWORDS="amd64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
IUSE="perl test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/
@ 2023-05-03 10:11 Sam James
0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2023-05-03 10:11 UTC (permalink / raw
To: gentoo-commits
commit: 14bc66f742da33942bd55ff8858ae54210039e73
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 3 10:09:14 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 3 10:09:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14bc66f7
www-apache/libapreq2: drop 2.16-r1
Bug: https://bugs.gentoo.org/866536
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/libapreq2/Manifest | 1 -
www-apache/libapreq2/libapreq2-2.16-r1.ebuild | 80 ---------------------------
2 files changed, 81 deletions(-)
diff --git a/www-apache/libapreq2/Manifest b/www-apache/libapreq2/Manifest
index 1c2e18c9b0ae..aa8a6a30aeb8 100644
--- a/www-apache/libapreq2/Manifest
+++ b/www-apache/libapreq2/Manifest
@@ -1,2 +1 @@
-DIST libapreq2-2.16.tar.gz 839264 BLAKE2B 6a79e0281bb24962775f6c2fcc906d07a2f7643f608871018a647a225329c45516f1afe12e27c432449765463b2a4e823a728051fa73938e97ddc828b94c4732 SHA512 aa9e751a3f0d6a9cb587aa1c5408e8d9a073560860d7f653776196fe3739516df16abe943c9cb0460cfb9b68a2d79ad651cfd5e4a30a2ca34d6dc3ced73f628c
DIST libapreq2-2.17.tar.gz 849867 BLAKE2B d2fa15693c200925e4926f207f1e023cba59ac0bfe3af3a8ac12880020bb00625c7fa21478c6562f9995d5307151b865efb83b837f45213d73fc523a1a864899 SHA512 89b139b8673145d9e2d8fd77d36f878c519c1deb7f9b853cda2a15d34cbb619d1c5e784ba21553f23c2ef07803f07c75a83d96cd770f80e1b36283a4cbb88999
diff --git a/www-apache/libapreq2/libapreq2-2.16-r1.ebuild b/www-apache/libapreq2/libapreq2-2.16-r1.ebuild
deleted file mode 100644
index 4d50482c8c95..000000000000
--- a/www-apache/libapreq2/libapreq2-2.16-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit apache-module perl-module
-
-DESCRIPTION="A library for manipulating client request data via the Apache API"
-HOMEPAGE="https://httpd.apache.org/apreq/"
-SRC_URI="mirror://apache/httpd/libapreq/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="2"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="perl test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- || (
- dev-libs/apr-util[openssl]
- dev-libs/apr-util[nss]
- )
- perl? (
- >=dev-perl/ExtUtils-XSBuilder-0.23
- virtual/perl-version
- >=www-apache/mod_perl-2
- )
- virtual/libcrypt:="
-DEPEND="
- ${RDEPEND}
- test? ( dev-perl/Apache-Test )"
-BDEPEND="sys-apps/file"
-
-PATCHES=( "${FILESDIR}"/libapreq2-2.08-doc.patch )
-
-APACHE2_MOD_FILE="module/apache2/.libs/mod_apreq2.so"
-APACHE2_MOD_CONF="76_mod_apreq"
-APACHE2_MOD_DEFINE="APREQ"
-
-need_apache2
-
-pkg_setup() {
- perl_set_version
-}
-
-src_prepare() {
- default
-
- sed -i -e "s/PERL \$PERL_OPTS/PERL/" acinclude.m4 aclocal.m4 configure || die
-}
-
-src_configure() {
- econf \
- --disable-static \
- --with-apache2-apxs=${APXS} \
- $(use_enable perl perl-glue)
-}
-
-src_install() {
- APACHE_MODULESDIR="/usr/$(get_libdir)/apache2/modules"
- apache-module_src_install
-
- emake DESTDIR="${D}" INSTALLDIRS=vendor install
- doman docs/man/man3/*.3
-
- perl_delete_localpod
-
- HTML_DOCS=( docs/html/. )
- einstalldocs
- dodoc INSTALL MANIFEST
-
- local f
- while IFS="" read -d $'\0' -r f ; do
- if file "${f}" | grep -i " text"; then
- sed -i -e "s:${ED}:/:g" "${f}" || die
- fi
- done < <(find "${ED}" -type f -not -name '*.so' -print0)
-
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 21+ messages in thread
end of thread, other threads:[~2023-05-03 10:11 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-26 10:03 [gentoo-commits] repo/gentoo:master commit in: www-apache/libapreq2/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-05-03 10:11 Sam James
2022-10-14 4:14 Arthur Zamarin
2022-10-14 4:14 Arthur Zamarin
2022-10-13 23:04 Sam James
2022-10-13 22:37 Sam James
2022-07-02 22:04 David Seifert
2022-04-17 19:17 Sam James
2021-05-17 21:00 Sergei Trofimovich
2021-05-17 13:45 Agostino Sarubbo
2021-05-17 3:19 Sam James
2021-05-17 3:03 Sam James
2021-05-16 12:53 Sam James
2021-05-16 12:45 Sam James
2021-05-01 18:07 Sam James
2021-03-25 13:41 Sam James
2021-02-25 8:36 Sergei Trofimovich
2020-12-14 8:09 Sam James
2020-12-10 21:41 Thomas Deutschmann
2020-12-05 17:09 Sam James
2020-11-17 23:02 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox