* [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_auth_openidc/
@ 2025-01-30 1:31 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2025-01-30 1:31 UTC (permalink / raw
To: gentoo-commits
commit: 2d18b8a2604bec66cb5175043f6da41e5e97d5aa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 30 01:30:57 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 30 01:30:57 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d18b8a2
www-apache/mod_auth_openidc: add 2.4.16.7
Closes: https://bugs.gentoo.org/932521
Signed-off-by: Sam James <sam <AT> gentoo.org>
www-apache/mod_auth_openidc/Manifest | 1 +
.../mod_auth_openidc-2.4.16.7.ebuild | 70 ++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/www-apache/mod_auth_openidc/Manifest b/www-apache/mod_auth_openidc/Manifest
index 996d5dfef207..4a0bb4673b52 100644
--- a/www-apache/mod_auth_openidc/Manifest
+++ b/www-apache/mod_auth_openidc/Manifest
@@ -1 +1,2 @@
DIST mod_auth_openidc-2.4.14.4.tar.gz 632757 BLAKE2B e01df9c431df848c1773f8152d87b5efc183b016516718bbf5eff3de66d12c87396b649a06548b5f0e42a52d08baef9ced8cd4b79acfc1657b7427dab0c9c14d SHA512 b7d61f15d48292f2a567653632f7d9df8b6cb54303d4de0c333c8122a32df8749e508a0abd5259ac7ca15da5b244eec1e1d21f62140720ddb1705ec289551984
+DIST mod_auth_openidc-2.4.16.7.tar.gz 688803 BLAKE2B ddebeea109f2a33fb2bf71c4f1311f6b2bae6cd2cd6b6d4d3124ec0a99cca82ad7ee209f62ded3070390fff7c65ee062f758f410eea7f7cba3dcfef9c6b31ee6 SHA512 0f0d656294eab0c7bc5c8e637765ca58f0e9465cfb7971041d0efd41f67ccc1dcd4417cc4d0d3629eb05fe42e859804f4d39e3beae7285e582f4e373826da383
diff --git a/www-apache/mod_auth_openidc/mod_auth_openidc-2.4.16.7.ebuild b/www-apache/mod_auth_openidc/mod_auth_openidc-2.4.16.7.ebuild
new file mode 100644
index 000000000000..a7be85f3665b
--- /dev/null
+++ b/www-apache/mod_auth_openidc/mod_auth_openidc-2.4.16.7.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit depend.apache apache-module autotools
+
+DESCRIPTION="OpenID Connect Relying Party implementation for Apache HTTP Server 2.x"
+HOMEPAGE="https://github.com/OpenIDC/mod_auth_openidc"
+SRC_URI="https://github.com/OpenIDC/mod_auth_openidc/releases/download/v${PV}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="brotli redis"
+
+RDEPEND="
+ app-misc/jq
+ dev-libs/apr
+ dev-libs/cjose
+ dev-libs/jansson:=
+ dev-libs/openssl:=
+ dev-libs/libpcre
+ net-misc/curl
+ sys-libs/zlib:=
+ brotli? ( app-arch/brotli:= )
+ redis? ( dev-libs/hiredis:= )
+"
+DEPEND="
+ ${RDEPEND}
+"
+BDEPEND="virtual/pkgconfig"
+
+APACHE2_MOD_CONF="10_mod_auth_openidc"
+APACHE2_MOD_DEFINE="AUTH_OPENIDC"
+DOCFILES="README.md ChangeLog AUTHORS INSTALL auth_openidc.conf"
+
+need_apache2_4
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ ECONF_ARGS=(
+ $(use_with brotli)
+ $(use_with redis hiredis)
+ )
+
+ CONFIG_SHELL="${BROOT}"/bin/bash econf "${ECONF_ARGS[@]}"
+}
+
+src_compile() {
+ # Do not use apache-module_src_compile ; it does not compile properly
+ default
+}
+
+src_install() {
+ # Do not use apache-module_src_install ; it does not link properly
+ default
+
+ insinto "${APACHE_MODULES_CONFDIR}"
+ doins "${FILESDIR}/${APACHE2_MOD_CONF}.conf"
+ dodoc ${DOCFILES}
+}
+
+pkg_postinst() {
+ apache-module_pkg_postinst
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_auth_openidc/
@ 2025-01-30 19:00 Mike Gilbert
0 siblings, 0 replies; 3+ messages in thread
From: Mike Gilbert @ 2025-01-30 19:00 UTC (permalink / raw
To: gentoo-commits
commit: dbe55db709862dfde5ac935bfeb38de545bf86c5
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 30 18:59:25 2025 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Thu Jan 30 18:59:25 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbe55db7
www-apache/mod_auth_openidc: update maintainers
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
www-apache/mod_auth_openidc/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www-apache/mod_auth_openidc/metadata.xml b/www-apache/mod_auth_openidc/metadata.xml
index 758faa049b7b..feb03142865e 100644
--- a/www-apache/mod_auth_openidc/metadata.xml
+++ b/www-apache/mod_auth_openidc/metadata.xml
@@ -5,7 +5,7 @@
<email>robbat2@gentoo.org</email>
</maintainer>
<maintainer type="project">
- <email>infra@gentoo.org</email>
+ <email>infra-bugs@gentoo.org</email>
<name>Gentoo Infrastructure Team</name>
</maintainer>
<upstream>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_auth_openidc/
@ 2025-01-28 8:34 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2025-01-28 8:34 UTC (permalink / raw
To: gentoo-commits
commit: 57a3facc5fd58f1fdbe809fa8a2205540c07014c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 28 08:17:36 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 28 08:17:59 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57a3facc
www-apache/mod_auth_openidc: style fixes, use BDEPEND
To make the diff for the bump I'm about to do smaller.
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../mod_auth_openidc-2.4.14.4-r1.ebuild | 26 ++++++++++++----------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/www-apache/mod_auth_openidc/mod_auth_openidc-2.4.14.4-r1.ebuild b/www-apache/mod_auth_openidc/mod_auth_openidc-2.4.14.4-r1.ebuild
index 4ab411903ee7..72e6fbc32426 100644
--- a/www-apache/mod_auth_openidc/mod_auth_openidc-2.4.14.4-r1.ebuild
+++ b/www-apache/mod_auth_openidc/mod_auth_openidc-2.4.14.4-r1.ebuild
@@ -1,6 +1,5 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-#
EAPI=8
@@ -9,25 +8,28 @@ inherit depend.apache apache-module autotools
DESCRIPTION="OpenID Connect Relying Party implementation for Apache HTTP Server 2.x"
HOMEPAGE="https://github.com/OpenIDC/mod_auth_openidc"
SRC_URI="https://github.com/OpenIDC/mod_auth_openidc/releases/download/v${PV}/${P}.tar.gz"
-KEYWORDS="~amd64"
-IUSE="redis brotli"
-SLOT="0"
LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="brotli redis"
-RDEPEND="net-misc/curl
- brotli? ( app-arch/brotli:= )
- sys-libs/zlib:=
- dev-libs/openssl:=
+RDEPEND="
+ app-misc/jq
dev-libs/apr
- dev-libs/jansson:=
dev-libs/cjose
+ dev-libs/jansson:=
+ dev-libs/openssl:=
dev-libs/libpcre
+ net-misc/curl
+ sys-libs/zlib:=
+ brotli? ( app-arch/brotli:= )
redis? ( dev-libs/hiredis:= )
- app-misc/jq"
+"
DEPEND="
${RDEPEND}
- virtual/pkgconfig"
+"
+BDEPEND="virtual/pkgconfig"
APACHE2_MOD_CONF="10_mod_auth_openidc"
APACHE2_MOD_DEFINE="AUTH_OPENIDC"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-01-30 19:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-30 1:31 [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_auth_openidc/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-01-30 19:00 Mike Gilbert
2025-01-28 8:34 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox