summaryrefslogtreecommitdiff
path: root/www-apache/libapreq2
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /www-apache/libapreq2
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'www-apache/libapreq2')
-rw-r--r--www-apache/libapreq2/Manifest1
-rw-r--r--www-apache/libapreq2/files/76_mod_apreq.conf13
-rw-r--r--www-apache/libapreq2/files/libapreq2-2.08-c99.patch46
-rw-r--r--www-apache/libapreq2/files/libapreq2-2.08-doc.patch24
-rw-r--r--www-apache/libapreq2/files/libapreq2-2.08-fix-linkage.patch51
-rw-r--r--www-apache/libapreq2/libapreq2-2.17-r1.ebuild83
-rw-r--r--www-apache/libapreq2/libapreq2-2.17-r2.ebuild84
-rw-r--r--www-apache/libapreq2/libapreq2-2.17.ebuild80
-rw-r--r--www-apache/libapreq2/metadata.xml5
9 files changed, 0 insertions, 387 deletions
diff --git a/www-apache/libapreq2/Manifest b/www-apache/libapreq2/Manifest
deleted file mode 100644
index aa8a6a30aeb8..000000000000
--- a/www-apache/libapreq2/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libapreq2-2.17.tar.gz 849867 BLAKE2B d2fa15693c200925e4926f207f1e023cba59ac0bfe3af3a8ac12880020bb00625c7fa21478c6562f9995d5307151b865efb83b837f45213d73fc523a1a864899 SHA512 89b139b8673145d9e2d8fd77d36f878c519c1deb7f9b853cda2a15d34cbb619d1c5e784ba21553f23c2ef07803f07c75a83d96cd770f80e1b36283a4cbb88999
diff --git a/www-apache/libapreq2/files/76_mod_apreq.conf b/www-apache/libapreq2/files/76_mod_apreq.conf
deleted file mode 100644
index 15d925d404f8..000000000000
--- a/www-apache/libapreq2/files/76_mod_apreq.conf
+++ /dev/null
@@ -1,13 +0,0 @@
-<IfDefine APREQ>
-LoadModule apreq_module modules/mod_apreq2.so
-
-# load the Perl modules
-# uncomment the ones you require
-#PerlModule APR::Request::Apache2
-#PerlModule APR::Request::CGI
-#PerlModule APR::Request::Cookie
-#PerlModule Apache2::Cookie
-#PerlModule Apache2::Request
-</IfDefine>
-
-# vim: ts=4 filetype=apache
diff --git a/www-apache/libapreq2/files/libapreq2-2.08-c99.patch b/www-apache/libapreq2/files/libapreq2-2.08-c99.patch
deleted file mode 100644
index eaf20c523a86..000000000000
--- a/www-apache/libapreq2/files/libapreq2-2.08-c99.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-https://salsa.debian.org/debian/libapreq2/-/blob/debian/2.17-7/debian/patches/32-bit-build.patch
-
-Description: fix type mismatch of MGVTBL.svt_copy namelen argument
- Since Perl 5.12, the type of the namelen argument of the svt_copy member of
- MGVTBL struct has changed its type from `int` to `I32`.
- .
- Perl commit:
- https://github.com/Perl/perl5/commit/3468c7eaa8d7687e8ae89928492b408a4d6c752f
- .
- On 64-bit platforms `int` and `I32` are both 32-bit integers, but on 32-bit
- platforms I32 is `long int` and a simple `int` is 16-bit.
-Author: Damyan Ivanov <dmn@debian.org>
-Forwarded: https://bz.apache.org/bugzilla/show_bug.cgi?id=69346
-
---- a/glue/perl/xsbuilder/apreq_xs_tables.h
-+++ b/glue/perl/xsbuilder/apreq_xs_tables.h
-@@ -24,6 +24,11 @@
-
- /**************************************************/
-
-+#if (PERL_VERSION >= 12)
-+#define MG_COPY_NAMELEN I32
-+#else
-+#define MG_COPY_NAMELEN int
-+#endif
-
- #if (PERL_VERSION >= 8) /* MAGIC ITERATOR REQUIRES 5.8 */
-
-@@ -42,7 +47,7 @@
- */
-
- static int apreq_xs_cookie_table_magic_copy(pTHX_ SV *sv, MAGIC *mg, SV *nsv,
-- const char *name, int namelen)
-+ const char *name, MG_COPY_NAMELEN namelen)
- {
- /* Prefetch the value whenever the table iterator is > 0 */
- MAGIC *tie_magic = mg_find(nsv, PERL_MAGIC_tiedelem);
-@@ -151,7 +156,7 @@ static int apreq_xs_cookie_table_values(
- */
-
- static int apreq_xs_param_table_magic_copy(pTHX_ SV *sv, MAGIC *mg, SV *nsv,
-- const char *name, int namelen)
-+ const char *name, MG_COPY_NAMELEN namelen)
- {
- /* Prefetch the value whenever the table iterator is > 0 */
- MAGIC *tie_magic = mg_find(nsv, PERL_MAGIC_tiedelem);
diff --git a/www-apache/libapreq2/files/libapreq2-2.08-doc.patch b/www-apache/libapreq2/files/libapreq2-2.08-doc.patch
deleted file mode 100644
index a1e444070320..000000000000
--- a/www-apache/libapreq2/files/libapreq2-2.08-doc.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Naurp libapreq2-2.08.old/build/doxygen.conf libapreq2-2.08/build/doxygen.conf
---- libapreq2-2.08.old/build/doxygen.conf 2006-08-09 00:30:19.000000000 -0400
-+++ libapreq2-2.08/build/doxygen.conf 2007-05-05 07:54:21.000000000 -0400
-@@ -27,7 +27,7 @@ WARN_IF_UNDOCUMENTED = YES
- WARN_IF_DOC_ERROR = YES
- WARN_FORMAT = "$file:$line: $text"
-
--INPUT = . include module/apache module/apache2
-+INPUT = . include module/apache2
- FILE_PATTERNS = *.h *.dox CHANGES STATUS
- RECURSIVE = NO
- EXTRACT_STATIC = YES
-diff -Naurp libapreq2-2.08.old/build/doxygen.conf.in libapreq2-2.08/build/doxygen.conf.in
---- libapreq2-2.08.old/build/doxygen.conf.in 2006-08-09 00:26:44.000000000 -0400
-+++ libapreq2-2.08/build/doxygen.conf.in 2007-05-05 07:57:18.000000000 -0400
-@@ -27,7 +27,7 @@ WARN_IF_UNDOCUMENTED = YES
- WARN_IF_DOC_ERROR = YES
- WARN_FORMAT = "$file:$line: $text"
-
--INPUT = . include module/apache module/apache2
-+INPUT = . include module/apache2
- FILE_PATTERNS = *.h *.dox CHANGES STATUS
- RECURSIVE = NO
- EXTRACT_STATIC = YES
diff --git a/www-apache/libapreq2/files/libapreq2-2.08-fix-linkage.patch b/www-apache/libapreq2/files/libapreq2-2.08-fix-linkage.patch
deleted file mode 100644
index c77fceb0640e..000000000000
--- a/www-apache/libapreq2/files/libapreq2-2.08-fix-linkage.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-https://bugs.gentoo.org/934379
-https://src.fedoraproject.org/rpms/libapreq2/blob/rawhide/f/libapreq2-2.12-install.patch
-
-From: Lubomir Rintel <lkundrak@v3.sk>
-
-APR shared objects were not properly linked when they were installed to a
-specific DESTDIR. This was broken in r733406, which attempted to fix
-rpaths for the obscure platforms that still use them.
-
-With this applied, we call apreq2-config we just installed and add a library
-path of libraries in DESTDIR to linker.
-
-$ perl -MAPR::Request
-Can't load '/usr/lib/perl5/auto/APR/Request/Request.so' for module APR::Request: /usr/lib/perl5/auto/APR/Request/Request.so: undefined symbol: apreq_hook_disable_uploads at /usr/lib/perl5/DynaLoader.pm line 200.
- at - line 0
-Compilation failed in require.
-BEGIN failed--compilation aborted.
-
---- a/glue/Makefile.am
-+++ b/glue/Makefile.am
-@@ -15,7 +15,9 @@ perl_test: perl/Makefile
- cd perl; $(MAKE) test
-
- perl_install:
-- cd perl; INSTALL=1 @PERL@ @PERL_OPTS@ Makefile.PL -apxs @APACHE2_APXS@ @MM_OPTS@
-+ cd perl; INSTALL=1 PKG_CONFIG_PATH=$(DESTDIR)$(libdir)/pkgconfig \
-+ DESTDIR=$(DESTDIR) LIBDIR=$(libdir) \
-+ @PERL@ @PERL_OPTS@ Makefile.PL -apxs @APACHE2_APXS@ @MM_OPTS@
- cd perl; $(MAKE) install
-
- perl_clean:
---- a/glue/perl/Makefile.PL
-+++ b/glue/perl/Makefile.PL
-@@ -136,10 +136,15 @@ if (WIN32) {
- my $apreq2_config = "$base_dir/apreq2-config";
- my $bindir = qx{$apreq2_config --bindir};
- chomp $bindir;
-- $apreq2_config = "$bindir/apreq2-config" if $ENV{INSTALL};
-+ $apreq2_config = "PKG_CONFIG_PATH=$ENV{PKG_CONFIG_PATH} ".
-+ $ENV{DESTDIR}."$bindir/apreq2-config"
-+ if $ENV{INSTALL};
- $apreq_libs = qx{$apreq2_config --link-ld --ldflags --libs};
-+ die "Failed to run $apreq2_config" if $?;
- chomp $apreq_libs;
-+ $apreq_libs = " -L".$ENV{DESTDIR}.$ENV{LIBDIR}." ".$apreq_libs
-+ if $ENV{INSTALL};
- }
-
- my $mp2_typemaps = Apache2::Build->new->typemaps;
-
-
diff --git a/www-apache/libapreq2/libapreq2-2.17-r1.ebuild b/www-apache/libapreq2/libapreq2-2.17-r1.ebuild
deleted file mode 100644
index 11fb1e47a517..000000000000
--- a/www-apache/libapreq2/libapreq2-2.17-r1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-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 ~riscv 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
- "${FILESDIR}"/libapreq2-2.08-fix-linkage.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
-}
diff --git a/www-apache/libapreq2/libapreq2-2.17-r2.ebuild b/www-apache/libapreq2/libapreq2-2.17-r2.ebuild
deleted file mode 100644
index dabc72301f81..000000000000
--- a/www-apache/libapreq2/libapreq2-2.17-r2.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-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 ~riscv 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
- "${FILESDIR}"/libapreq2-2.08-fix-linkage.patch
- "${FILESDIR}"/libapreq2-2.08-c99.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
-}
diff --git a/www-apache/libapreq2/libapreq2-2.17.ebuild b/www-apache/libapreq2/libapreq2-2.17.ebuild
deleted file mode 100644
index cd769539c16f..000000000000
--- a/www-apache/libapreq2/libapreq2-2.17.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 ~riscv 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
-}
diff --git a/www-apache/libapreq2/metadata.xml b/www-apache/libapreq2/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/www-apache/libapreq2/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>