public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/oath-toolkit/
Date: Sat,  5 Oct 2024 07:22:42 +0000 (UTC)	[thread overview]
Message-ID: <1728112926.34b83aa52932b8f711e603a03f39536557585e92.sam@gentoo> (raw)

commit:     34b83aa52932b8f711e603a03f39536557585e92
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  5 07:10:04 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  5 07:22:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34b83aa5

sys-auth/oath-toolkit: add 2.6.12

Bug: https://bugs.gentoo.org/940778
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-auth/oath-toolkit/Manifest                   |  1 +
 sys-auth/oath-toolkit/oath-toolkit-2.6.12.ebuild | 81 ++++++++++++++++++++++++
 2 files changed, 82 insertions(+)

diff --git a/sys-auth/oath-toolkit/Manifest b/sys-auth/oath-toolkit/Manifest
index 32737ff76a8c..86f913426be4 100644
--- a/sys-auth/oath-toolkit/Manifest
+++ b/sys-auth/oath-toolkit/Manifest
@@ -1,3 +1,4 @@
 DIST oath-toolkit-2.6.11.tar.gz 4699215 BLAKE2B f3fa3ab1818f4f9bbf7c8c88432cd3432fbfb30dfcc660ab85f07e2d3d7e1616fc24579900bc55bbf72fb81b2eac4a6591553968872f07d8b3955ce4e6495afd SHA512 42df879bebccdde3d38558ba735e09db14d0c916b9f0d3a1842e0ecc80614b7d1ee44db39d3097970a2a7108446da6eefd09bdd32dd2fb81d6aed06dc19552fd
+DIST oath-toolkit-2.6.12.tar.gz 4706950 BLAKE2B 8bd184fa7166bc35af3bd632d0dd24ae00480f78a850e2ed4f058ec22711852757f01623ede16c8990daa366752578430be7c93a27d87c8ae92faf9a3aade1a1 SHA512 f82967e4b86bac57bec4b048fedd351ca7ae6f368f4b3a61135057c28c531a2c9845b51660dee2a6f5db66d5065619d22921b94229c672d1889077a710a0f0ce
 DIST oath-toolkit-2.6.7.tar.gz 5625279 BLAKE2B 23f377c51eb633bf01d6085d33c7362cd91b6bed1cf4c2bbf32dc9433849e20c53f6896b16e5056b13f420f6a65a3c593fa1dafd7e184ed9e52666d94a7f75d1 SHA512 50edff75c8366887d69cf4740c4cc3bdfc3e43cbd4910ff40f735bca489f0953d7e5a21130f12782ac7a1f2fb00f0db313aff139085f23daba78a69bc7b2eb12
 DIST oath-toolkit-2.6.9.tar.gz 4693524 BLAKE2B 572512311bbfa18d325c7b9b8d88ff85c05241c9a22942bc67edf531ed621e68b031dc4562bd8473ec1b1bfe264c8a4084c1c304ba0d24914acc5b21325b8601 SHA512 6e96b5a926f6e2448661fef267dcf9c99167b7bdfc71e319d2ab7ddc051a7be002043485547ad83744209c25ea0d87f8e28f25cccd6856281321f3d22e3cf160

diff --git a/sys-auth/oath-toolkit/oath-toolkit-2.6.12.ebuild b/sys-auth/oath-toolkit/oath-toolkit-2.6.12.ebuild
new file mode 100644
index 000000000000..8401f1336510
--- /dev/null
+++ b/sys-auth/oath-toolkit/oath-toolkit-2.6.12.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit pam
+
+DESCRIPTION="Toolkit for using one-time password authentication with HOTP/TOTP algorithms"
+HOMEPAGE="https://www.nongnu.org/oath-toolkit/"
+SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="pam static-libs test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	dev-libs/icu:=
+	dev-libs/libxml2
+	dev-libs/xmlsec:=
+	pam? ( sys-libs/pam )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	dev-build/gtk-doc-am
+	test? ( dev-libs/libxml2 )
+"
+
+# fpurge is from gnulib, and unused as of 2.6.11
+QA_CONFIG_IMPL_DECL_SKIP=(
+	MIN # glibc fp
+	alignof
+	fpurge
+	static_assert
+	unreachable
+)
+
+src_prepare() {
+	default
+
+	# After patching, we have to fix the mtime on libpskc/global.c so
+	# that it doesn't cause Makefile.gdoc to be rebuilt so that it
+	# doesn't cause Makefile.in to be rebuilt so that it doesn't try to
+	# run automake-1.16.5 for no reason. Bug 936309.
+	touch --reference=libpskc/errors.c libpskc/global.c || die
+}
+
+src_configure() {
+	local myeconfargs=(
+		--cache-file="${S}"/config.cache
+		--enable-pskc
+		$(use_enable test xmltest)
+		$(use_enable pam)
+		$(use_with pam pam-dir $(getpam_mod_dir))
+		$(use_enable static-libs static)
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_test() {
+	# Without -k, it will bail out after the first testsuite failure,
+	# skipping the other testsuites. as they are mostly independent, this sucks.
+	emake -k check
+
+	# Avoid errant QA notice for no tests run on these
+	rm -f libpskc/gtk-doc/test-suite.log liboath/gtk-doc/test-suite.log || die
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -type f -delete || die
+
+	if use pam; then
+		newdoc pam_oath/README README.pam
+	fi
+
+	doman pskctool/pskctool.1
+}


             reply	other threads:[~2024-10-05  7:22 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-05  7:22 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-07  5:52 [gentoo-commits] repo/gentoo:master commit in: sys-auth/oath-toolkit/ Sam James
2025-03-07  5:44 Sam James
2024-10-05 16:52 Arthur Zamarin
2024-10-05 14:33 Arthur Zamarin
2024-10-05 14:17 Sam James
2024-10-05 12:58 Arthur Zamarin
2024-10-05  8:46 Arthur Zamarin
2024-10-05  8:19 Arthur Zamarin
2024-10-05  7:50 Arthur Zamarin
2024-10-05  7:28 Sam James
2024-10-05  7:22 Sam James
2024-08-31 13:50 Michael Orlitzky
2024-01-14  2:30 Sam James
2024-01-03  9:27 Sam James
2023-11-18 16:46 Sam James
2023-09-18 19:59 Arthur Zamarin
2023-09-07 23:03 Sam James
2023-09-07 23:03 Sam James
2023-09-07 20:16 Sam James
2023-07-20  0:08 Sam James
2023-04-29  7:52 Arthur Zamarin
2023-04-22 16:36 Arthur Zamarin
2023-04-18  5:30 Sam James
2023-04-16  5:07 Sam James
2023-04-15  5:40 Sam James
2023-04-09 18:54 Arthur Zamarin
2023-04-09 18:53 Arthur Zamarin
2023-04-09 18:53 Arthur Zamarin
2023-03-05 12:37 Sam James
2023-03-05 12:37 Sam James
2022-11-29 18:06 WANG Xuerui
2022-02-21 22:11 Sam James
2021-10-20 17:17 Mike Gilbert
2021-07-24 23:02 Marek Szuba
2020-12-13 15:15 Mikle Kolyada
2020-06-08  6:41 Michał Górny
2020-05-13 17:14 Agostino Sarubbo
2020-05-09  8:47 Mart Raudsepp
2020-05-07 16:35 Mikle Kolyada
2019-10-12 20:39 Mikle Kolyada
2019-08-21  2:14 Matt Turner
2019-06-21  8:03 Agostino Sarubbo
2019-04-17 18:07 Aaron Bauman
2019-02-03 18:54 Sergei Trofimovich
2019-02-02 11:58 Sergei Trofimovich
2018-02-05 22:19 Robin H. Johnson
2017-11-25 14:39 Patrick Lauer
2017-02-01 22:49 Robin H. Johnson
2016-11-27 22:39 Aaron Bauman
2015-10-26 20:19 Sven Wegener
2015-10-26 20:19 Sven Wegener
2015-10-26 20:06 Sven Wegener

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1728112926.34b83aa52932b8f711e603a03f39536557585e92.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox