* [gentoo-commits] repo/proj/guru:master commit in: sys-auth/pam-gnupg/
@ 2024-11-09 16:30 Viorel Munteanu
0 siblings, 0 replies; 5+ messages in thread
From: Viorel Munteanu @ 2024-11-09 16:30 UTC (permalink / raw
To: gentoo-commits
commit: c1fb66b1046daec042cd189cef23fcf4bc5ad88d
Author: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sat Nov 9 11:41:28 2024 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Nov 9 11:44:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c1fb66b1
sys-auth/pam-gnupg: fix installation path
The correct path for pam module should be obtained using getpam_mod_dir.
Closes: https://bugs.gentoo.org/943121
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>
.../{pam-gnupg-0.4.ebuild => pam-gnupg-0.4-r1.ebuild} | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild b/sys-auth/pam-gnupg/pam-gnupg-0.4-r1.ebuild
similarity index 59%
rename from sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild
rename to sys-auth/pam-gnupg/pam-gnupg-0.4-r1.ebuild
index 39dba08aa..b5970c5c7 100644
--- a/sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild
+++ b/sys-auth/pam-gnupg/pam-gnupg-0.4-r1.ebuild
@@ -1,20 +1,23 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-inherit autotools
+inherit autotools pam
DESCRIPTION="Unlock GnuPG keys on login"
HOMEPAGE="https://github.com/cruegge/pam-gnupg"
SRC_URI="https://github.com/cruegge/pam-gnupg/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
+
RDEPEND="
->=sys-libs/pam-1.6.1
->=app-crypt/gnupg-2.4.5-r1
+ >=sys-libs/pam-1.6.1
+ >=app-crypt/gnupg-2.4.5-r1
"
+DEPEND="${RDEPEND}"
src_prepare() {
default
@@ -22,10 +25,5 @@ src_prepare() {
}
src_configure() {
- econf \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --with-moduledir=/usr/lib64/security \
- --mandir=/usr/share/man || die
+ econf --with-moduledir="$(getpam_mod_dir)"
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: sys-auth/pam-gnupg/
@ 2024-09-25 13:53 David Roman
0 siblings, 0 replies; 5+ messages in thread
From: David Roman @ 2024-09-25 13:53 UTC (permalink / raw
To: gentoo-commits
commit: 502e14efd453d01085e4d2c6299633fd58ef0a13
Author: Abdelrahman Sarhan <abdulrahmanayman1 <AT> gmail <DOT> com>
AuthorDate: Mon Sep 23 17:56:13 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Sep 23 17:56:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=502e14ef
sys-auth/pam-gnupg: add 0.4, drop 0.3
Signed-off-by: Abdelrahman Sarhan <abdulrahmanayman1 <AT> gmail.com>
sys-auth/pam-gnupg/Manifest | 2 +-
sys-auth/pam-gnupg/{pam-gnupg-0.3.ebuild => pam-gnupg-0.4.ebuild} | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys-auth/pam-gnupg/Manifest b/sys-auth/pam-gnupg/Manifest
index cce556ddd..36e4aa7e9 100644
--- a/sys-auth/pam-gnupg/Manifest
+++ b/sys-auth/pam-gnupg/Manifest
@@ -1 +1 @@
-DIST pam-gnupg-0.3.tar.gz 20827 BLAKE2B 3973ffceec48105c28f368c14c879f9c1cae1676a5f5134c49249b3db8877418c2e9ac7937a6cacb3c5c2089be9a6e03c96e1988ecb029756c2f404674b9126c SHA512 5ee9af0f2e0d32680d6bc5e5b55ce46b86f01ff47b364a34484a6522035c96b8556c65d3d834ff711fb158ec4f1edbd48a1fea883641dedcbebd40074dc2fc5f
+DIST pam-gnupg-0.4.tar.gz 21363 BLAKE2B e42524b68d5070f7b7a337be1bc4abf97be34bb26ad89e7bf12c01ae91f127da48c5c27e21cfead42c2c607e87bb2dbcbb505bd505760c003a9e3a544bde2e45 SHA512 c23c336d287b564aa0d585b15dc7093b7eb91e63dc9b4e40bae5c4aa841f9531655bc09d559230ba8b9f180a28dcc0d06a91ec51978fd04ece2a848bab87ca69
diff --git a/sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild b/sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild
similarity index 83%
rename from sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild
rename to sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild
index 315cddbb4..39dba08aa 100644
--- a/sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild
+++ b/sys-auth/pam-gnupg/pam-gnupg-0.4.ebuild
@@ -12,8 +12,8 @@ LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
->=sys-libs/pam-1.5.1_p20210622-r1
->=app-crypt/gnupg-2.2.33-r1
+>=sys-libs/pam-1.6.1
+>=app-crypt/gnupg-2.4.5-r1
"
src_prepare() {
@@ -26,6 +26,6 @@ src_configure() {
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
- --with-moduledir=/$(get_libdir)/security \
+ --with-moduledir=/usr/lib64/security \
--mandir=/usr/share/man || die
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: sys-auth/pam-gnupg/
@ 2023-09-19 6:23 Haelwenn Monnier
0 siblings, 0 replies; 5+ messages in thread
From: Haelwenn Monnier @ 2023-09-19 6:23 UTC (permalink / raw
To: gentoo-commits
commit: c0b7dff2d948bd852f8a6f18f40e66058fb841f5
Author: Duje Mihanović <duje.mihanovic <AT> skole <DOT> hr>
AuthorDate: Mon Sep 18 15:07:15 2023 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Mon Sep 18 15:09:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0b7dff2
sys-auth/pam-gnupg: retire duje.mihanovic
Signed-off-by: Duje Mihanović <duje.mihanovic <AT> skole.hr>
sys-auth/pam-gnupg/metadata.xml | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/sys-auth/pam-gnupg/metadata.xml b/sys-auth/pam-gnupg/metadata.xml
index 332c0bcd09..2d738159b3 100644
--- a/sys-auth/pam-gnupg/metadata.xml
+++ b/sys-auth/pam-gnupg/metadata.xml
@@ -1,10 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>duje.mihanovic@skole.hr</email>
- <name>Duje Mihanović</name>
- </maintainer>
+ <!-- maintainer-needed -->
<upstream>
<remote-id type="github">cruegge/pam-gnupg</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: sys-auth/pam-gnupg/
@ 2022-04-10 12:35 Andrew Ammerlaan
0 siblings, 0 replies; 5+ messages in thread
From: Andrew Ammerlaan @ 2022-04-10 12:35 UTC (permalink / raw
To: gentoo-commits
commit: 979851a0d50ee67aba4a31a72868006e2c4ab401
Author: Duje Mihanović <duje.mihanovic <AT> skole <DOT> hr>
AuthorDate: Sat Apr 9 12:07:49 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Apr 9 12:08:54 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=979851a0
sys-auth/pam-gnupg: minor fixups
Thanks to thesamesam for reporting these.
Signed-off-by: Duje Mihanović <duje.mihanovic <AT> skole.hr>
sys-auth/pam-gnupg/Manifest | 2 +-
sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild | 10 +++++++---
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/sys-auth/pam-gnupg/Manifest b/sys-auth/pam-gnupg/Manifest
index cb4d9fd28..cce556ddd 100644
--- a/sys-auth/pam-gnupg/Manifest
+++ b/sys-auth/pam-gnupg/Manifest
@@ -1 +1 @@
-DIST v0.3.tar.gz 20827 BLAKE2B 3973ffceec48105c28f368c14c879f9c1cae1676a5f5134c49249b3db8877418c2e9ac7937a6cacb3c5c2089be9a6e03c96e1988ecb029756c2f404674b9126c SHA512 5ee9af0f2e0d32680d6bc5e5b55ce46b86f01ff47b364a34484a6522035c96b8556c65d3d834ff711fb158ec4f1edbd48a1fea883641dedcbebd40074dc2fc5f
+DIST pam-gnupg-0.3.tar.gz 20827 BLAKE2B 3973ffceec48105c28f368c14c879f9c1cae1676a5f5134c49249b3db8877418c2e9ac7937a6cacb3c5c2089be9a6e03c96e1988ecb029756c2f404674b9126c SHA512 5ee9af0f2e0d32680d6bc5e5b55ce46b86f01ff47b364a34484a6522035c96b8556c65d3d834ff711fb158ec4f1edbd48a1fea883641dedcbebd40074dc2fc5f
diff --git a/sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild b/sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild
index 2d892a1c1..315cddbb4 100644
--- a/sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild
+++ b/sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild
@@ -7,7 +7,7 @@ inherit autotools
DESCRIPTION="Unlock GnuPG keys on login"
HOMEPAGE="https://github.com/cruegge/pam-gnupg"
-SRC_URI="https://github.com/cruegge/pam-gnupg/archive/refs/tags/v${PV}.tar.gz"
+SRC_URI="https://github.com/cruegge/pam-gnupg/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
@@ -16,9 +16,13 @@ RDEPEND="
>=app-crypt/gnupg-2.2.33-r1
"
-src_configure() {
+src_prepare() {
+ default
eautoreconf
- ./configure \
+}
+
+src_configure() {
+ econf \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: sys-auth/pam-gnupg/
@ 2022-04-06 19:43 Michał Górny
0 siblings, 0 replies; 5+ messages in thread
From: Michał Górny @ 2022-04-06 19:43 UTC (permalink / raw
To: gentoo-commits
commit: ecd9dc50a8ea3707924eb946d7e6d3a1a4d67b4b
Author: Duje Mihanović <duje.mihanovic <AT> skole <DOT> hr>
AuthorDate: Wed Apr 6 17:44:20 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 6 17:44:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ecd9dc50
sys-auth/pam-gnupg: initial import
Signed-off-by: Duje Mihanović <duje.mihanovic <AT> skole.hr>
sys-auth/pam-gnupg/Manifest | 1 +
sys-auth/pam-gnupg/metadata.xml | 8 ++++++++
sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild | 27 +++++++++++++++++++++++++++
3 files changed, 36 insertions(+)
diff --git a/sys-auth/pam-gnupg/Manifest b/sys-auth/pam-gnupg/Manifest
new file mode 100644
index 000000000..cb4d9fd28
--- /dev/null
+++ b/sys-auth/pam-gnupg/Manifest
@@ -0,0 +1 @@
+DIST v0.3.tar.gz 20827 BLAKE2B 3973ffceec48105c28f368c14c879f9c1cae1676a5f5134c49249b3db8877418c2e9ac7937a6cacb3c5c2089be9a6e03c96e1988ecb029756c2f404674b9126c SHA512 5ee9af0f2e0d32680d6bc5e5b55ce46b86f01ff47b364a34484a6522035c96b8556c65d3d834ff711fb158ec4f1edbd48a1fea883641dedcbebd40074dc2fc5f
diff --git a/sys-auth/pam-gnupg/metadata.xml b/sys-auth/pam-gnupg/metadata.xml
new file mode 100644
index 000000000..62988a0d4
--- /dev/null
+++ b/sys-auth/pam-gnupg/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+ <maintainer type="person">
+ <email>duje.mihanovic@skole.hr</email>
+ <name>Duje Mihanović</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild b/sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild
new file mode 100644
index 000000000..2d892a1c1
--- /dev/null
+++ b/sys-auth/pam-gnupg/pam-gnupg-0.3.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Unlock GnuPG keys on login"
+HOMEPAGE="https://github.com/cruegge/pam-gnupg"
+SRC_URI="https://github.com/cruegge/pam-gnupg/archive/refs/tags/v${PV}.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+RDEPEND="
+>=sys-libs/pam-1.5.1_p20210622-r1
+>=app-crypt/gnupg-2.2.33-r1
+"
+
+src_configure() {
+ eautoreconf
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --with-moduledir=/$(get_libdir)/security \
+ --mandir=/usr/share/man || die
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-11-09 16:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-09 16:30 [gentoo-commits] repo/proj/guru:master commit in: sys-auth/pam-gnupg/ Viorel Munteanu
-- strict thread matches above, loose matches on Subject: below --
2024-09-25 13:53 David Roman
2023-09-19 6:23 Haelwenn Monnier
2022-04-10 12:35 Andrew Ammerlaan
2022-04-06 19:43 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox