Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/google-authenticator/
Date: Wed, 11 Sep 2019 16:21:36
Message-Id: 1568218851.53ddf008e784ac3d797db3df035e59bcdb465a4a.mgorny@gentoo
1 commit: 53ddf008e784ac3d797db3df035e59bcdb465a4a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 11 11:27:04 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 11 16:20:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ddf008
7
8 sys-auth/google-authenticator: Drop old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-auth/google-authenticator/Manifest | 1 -
13 .../google-authenticator-1.04-r1.ebuild | 50 ----------------------
14 2 files changed, 51 deletions(-)
15
16 diff --git a/sys-auth/google-authenticator/Manifest b/sys-auth/google-authenticator/Manifest
17 index 13cf11dd142..3a1a7a5ac88 100644
18 --- a/sys-auth/google-authenticator/Manifest
19 +++ b/sys-auth/google-authenticator/Manifest
20 @@ -1,2 +1 @@
21 -DIST google-authenticator-1.04.tar.gz 54019 BLAKE2B 06afb1be1ceabb68bb7ba94921af415fe1dfd68b3b1ed75b58b3c5a58901ec482ae11063f487db0a7032868e833644022335ad9844f54734c2ad78c514f255a8 SHA512 e4b8ad74301312e17edd0a7f25257086fd805c8d5215b06b71d96e9a64a71b2c87d0c5a532d9eca21d6d67e30c02c2c2c77dbd338a2f49af25c32dcd355ee98e
22 DIST google-authenticator-1.05.tar.gz 57778 BLAKE2B c31d7929e2aacffc159ee5384f6f31498585819b848f4f8b026519cf2f2fc566b8533e007844c64d348f1cf423a7175b3221f879c5c1ead360c4f1b3acea57ed SHA512 d97b26c6181dbce0612628484db37b1bf61e984fb2fb3d4974d04038e564404aa17415368dba524f0d17d96ec8d57ae4129b27f0c672d849d16ef03941d87996
23
24 diff --git a/sys-auth/google-authenticator/google-authenticator-1.04-r1.ebuild b/sys-auth/google-authenticator/google-authenticator-1.04-r1.ebuild
25 deleted file mode 100644
26 index 2d682decb66..00000000000
27 --- a/sys-auth/google-authenticator/google-authenticator-1.04-r1.ebuild
28 +++ /dev/null
29 @@ -1,50 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI="6"
34 -
35 -inherit autotools multilib
36 -
37 -if [[ ${PV} == 9999 ]] ; then
38 - EGIT_REPO_URI="https://github.com/google/google-authenticator-libpam.git"
39 - inherit git-r3
40 -else
41 - SRC_URI="https://github.com/google/google-authenticator-libpam/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
43 - S="${WORKDIR}/google-authenticator-libpam-${PV}"
44 -fi
45 -
46 -DESCRIPTION="PAM Module for two step verification via mobile platform"
47 -HOMEPAGE="https://github.com/google/google-authenticator-libpam"
48 -
49 -LICENSE="Apache-2.0"
50 -SLOT="0"
51 -IUSE=""
52 -
53 -DEPEND="virtual/pam"
54 -RDEPEND="${DEPEND}"
55 -
56 -src_prepare() {
57 - default
58 - eautoreconf
59 -}
60 -
61 -src_configure() {
62 - # We might want to use getpam_mod_dir from pam eclass,
63 - # but the build already appends "/security" for us.
64 - econf --libdir="/$(get_libdir)"
65 -}
66 -
67 -src_install() {
68 - default
69 - find "${D}" -name '*.la' -delete || die
70 -}
71 -
72 -pkg_postinst() {
73 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
74 - elog "For further information see"
75 - elog "https://wiki.gentoo.org/wiki/Google_Authenticator"
76 - elog ""
77 - elog "If you want support for QR-Codes, install media-gfx/qrencode."
78 - fi
79 -}