Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/google-authenticator/
Date: Tue, 31 Dec 2019 15:49:50
Message-Id: 1577807380.a628ab45a8d6cf2ff756c52c91e475787419571d.candrews@gentoo
1 commit: a628ab45a8d6cf2ff756c52c91e475787419571d
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 31 15:48:58 2019 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 31 15:49:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a628ab45
7
8 sys-auth/google-authenticator: Cleanup old versions
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 sys-auth/google-authenticator/Manifest | 3 --
14 .../google-authenticator-1.05.ebuild | 52 ----------------------
15 .../google-authenticator-1.06.ebuild | 52 ----------------------
16 .../google-authenticator-1.07.ebuild | 52 ----------------------
17 4 files changed, 159 deletions(-)
18
19 diff --git a/sys-auth/google-authenticator/Manifest b/sys-auth/google-authenticator/Manifest
20 index a3941dbddba..af612807772 100644
21 --- a/sys-auth/google-authenticator/Manifest
22 +++ b/sys-auth/google-authenticator/Manifest
23 @@ -1,4 +1 @@
24 -DIST google-authenticator-1.05.tar.gz 57778 BLAKE2B c31d7929e2aacffc159ee5384f6f31498585819b848f4f8b026519cf2f2fc566b8533e007844c64d348f1cf423a7175b3221f879c5c1ead360c4f1b3acea57ed SHA512 d97b26c6181dbce0612628484db37b1bf61e984fb2fb3d4974d04038e564404aa17415368dba524f0d17d96ec8d57ae4129b27f0c672d849d16ef03941d87996
25 -DIST google-authenticator-1.06.tar.gz 62292 BLAKE2B 4eb7d6068a1b824c2299fb8d430b2deb04223690fee74a25c8e917e34200630628c3518a5aecc9fd1537d14d86062dc126191c086464b1c6b3d0207676155dc8 SHA512 a278360be1a3c5a03ddb38d40be45dbba16b6f565ee919377a918565bd8c567ce261890dc10d277edea4f469cf1da1d9cf2c9f3ccfeef8c6887d713c785a5440
26 -DIST google-authenticator-1.07.tar.gz 62764 BLAKE2B 89fa794956bd39f6e1387b0a6ffbdee6b19496771d0e5c47c61c20fc02abaa7c9cd780595556a07cda01d9a6cf6e530752de6f9ac15157213dbb873cadaac010 SHA512 3e2bc9bfc3759f9004d08b1557868a33b628290b62aa9051d21072a66e18ca4b09cdef0fc8303943cb36ac5b61fe864a9de9fe0a1d8677ee86403cfd4c89c1fb
27 DIST google-authenticator-1.08.tar.gz 62767 BLAKE2B ae1f5b1feac40da9beec28c81f39edfcc5e46df4cad4575d76deda9a183e8324ded79af9b7831c0572682749bb209b5371747b98a114af404d3225b9b0ff15f8 SHA512 f53d2fc20b5fa0f4621566509a2ef746077e3345de289bd2c9565440eb972e3a80807bf50a2cce8e2cc520df72c2e236629a921e3fce90fd635aff0c0ef36f75
28
29 diff --git a/sys-auth/google-authenticator/google-authenticator-1.05.ebuild b/sys-auth/google-authenticator/google-authenticator-1.05.ebuild
30 deleted file mode 100644
31 index 2fc5e1c2cb0..00000000000
32 --- a/sys-auth/google-authenticator/google-authenticator-1.05.ebuild
33 +++ /dev/null
34 @@ -1,52 +0,0 @@
35 -# Copyright 1999-2019 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=6
39 -
40 -inherit autotools
41 -
42 -if [[ ${PV} == 9999 ]] ; then
43 - EGIT_REPO_URI="https://github.com/google/google-authenticator-libpam.git"
44 - inherit git-r3
45 -else
46 - SRC_URI="https://github.com/google/google-authenticator-libpam/archive/${PV}.tar.gz -> ${P}.tar.gz"
47 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
48 - S="${WORKDIR}/google-authenticator-libpam-${PV}"
49 -fi
50 -
51 -DESCRIPTION="PAM Module for two step verification via mobile platform"
52 -HOMEPAGE="https://github.com/google/google-authenticator-libpam"
53 -
54 -LICENSE="Apache-2.0"
55 -SLOT="0"
56 -IUSE=""
57 -
58 -DEPEND="sys-libs/pam"
59 -RDEPEND="${DEPEND}"
60 -
61 -RESTRICT="test"
62 -
63 -src_prepare() {
64 - default
65 - eautoreconf
66 -}
67 -
68 -src_configure() {
69 - # We might want to use getpam_mod_dir from pam eclass,
70 - # but the build already appends "/security" for us.
71 - econf --libdir="/$(get_libdir)"
72 -}
73 -
74 -src_install() {
75 - default
76 - find "${D}" -name '*.la' -delete || die
77 -}
78 -
79 -pkg_postinst() {
80 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
81 - elog "For further information see"
82 - elog "https://wiki.gentoo.org/wiki/Google_Authenticator"
83 - elog ""
84 - elog "If you want support for QR-Codes, install media-gfx/qrencode."
85 - fi
86 -}
87
88 diff --git a/sys-auth/google-authenticator/google-authenticator-1.06.ebuild b/sys-auth/google-authenticator/google-authenticator-1.06.ebuild
89 deleted file mode 100644
90 index a087b7c5550..00000000000
91 --- a/sys-auth/google-authenticator/google-authenticator-1.06.ebuild
92 +++ /dev/null
93 @@ -1,52 +0,0 @@
94 -# Copyright 1999-2019 Gentoo Authors
95 -# Distributed under the terms of the GNU General Public License v2
96 -
97 -EAPI=7
98 -
99 -inherit autotools
100 -
101 -if [[ ${PV} == 9999 ]] ; then
102 - EGIT_REPO_URI="https://github.com/google/google-authenticator-libpam.git"
103 - inherit git-r3
104 -else
105 - SRC_URI="https://github.com/google/google-authenticator-libpam/archive/${PV}.tar.gz -> ${P}.tar.gz"
106 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
107 - S="${WORKDIR}/google-authenticator-libpam-${PV}"
108 -fi
109 -
110 -DESCRIPTION="PAM Module for two step verification via mobile platform"
111 -HOMEPAGE="https://github.com/google/google-authenticator-libpam"
112 -
113 -LICENSE="Apache-2.0"
114 -SLOT="0"
115 -IUSE=""
116 -
117 -DEPEND="sys-libs/pam"
118 -RDEPEND="${DEPEND}"
119 -
120 -RESTRICT="test"
121 -
122 -src_prepare() {
123 - default
124 - eautoreconf
125 -}
126 -
127 -src_configure() {
128 - # We might want to use getpam_mod_dir from pam eclass,
129 - # but the build already appends "/security" for us.
130 - econf --libdir="/$(get_libdir)"
131 -}
132 -
133 -src_install() {
134 - default
135 - find "${D}" -name '*.la' -delete || die
136 -}
137 -
138 -pkg_postinst() {
139 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
140 - elog "For further information see"
141 - elog "https://wiki.gentoo.org/wiki/Google_Authenticator"
142 - elog ""
143 - elog "If you want support for QR-Codes, install media-gfx/qrencode."
144 - fi
145 -}
146
147 diff --git a/sys-auth/google-authenticator/google-authenticator-1.07.ebuild b/sys-auth/google-authenticator/google-authenticator-1.07.ebuild
148 deleted file mode 100644
149 index a087b7c5550..00000000000
150 --- a/sys-auth/google-authenticator/google-authenticator-1.07.ebuild
151 +++ /dev/null
152 @@ -1,52 +0,0 @@
153 -# Copyright 1999-2019 Gentoo Authors
154 -# Distributed under the terms of the GNU General Public License v2
155 -
156 -EAPI=7
157 -
158 -inherit autotools
159 -
160 -if [[ ${PV} == 9999 ]] ; then
161 - EGIT_REPO_URI="https://github.com/google/google-authenticator-libpam.git"
162 - inherit git-r3
163 -else
164 - SRC_URI="https://github.com/google/google-authenticator-libpam/archive/${PV}.tar.gz -> ${P}.tar.gz"
165 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
166 - S="${WORKDIR}/google-authenticator-libpam-${PV}"
167 -fi
168 -
169 -DESCRIPTION="PAM Module for two step verification via mobile platform"
170 -HOMEPAGE="https://github.com/google/google-authenticator-libpam"
171 -
172 -LICENSE="Apache-2.0"
173 -SLOT="0"
174 -IUSE=""
175 -
176 -DEPEND="sys-libs/pam"
177 -RDEPEND="${DEPEND}"
178 -
179 -RESTRICT="test"
180 -
181 -src_prepare() {
182 - default
183 - eautoreconf
184 -}
185 -
186 -src_configure() {
187 - # We might want to use getpam_mod_dir from pam eclass,
188 - # but the build already appends "/security" for us.
189 - econf --libdir="/$(get_libdir)"
190 -}
191 -
192 -src_install() {
193 - default
194 - find "${D}" -name '*.la' -delete || die
195 -}
196 -
197 -pkg_postinst() {
198 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
199 - elog "For further information see"
200 - elog "https://wiki.gentoo.org/wiki/Google_Authenticator"
201 - elog ""
202 - elog "If you want support for QR-Codes, install media-gfx/qrencode."
203 - fi
204 -}