From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 64EED13933E for ; Tue, 20 Jul 2021 19:03:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E5D4E0AC9; Tue, 20 Jul 2021 19:03:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C5DBEE0AC5 for ; Tue, 20 Jul 2021 19:03:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E04DC342BED for ; Tue, 20 Jul 2021 19:03:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ADFC184D for ; Tue, 20 Jul 2021 19:03:43 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626807796.3e69e4a0b5aa5b9e40103e1751cb7f3f875222ad.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/google-authenticator-wrappers/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/google-authenticator-wrappers/google-authenticator-wrappers-3.ebuild X-VCS-Directories: sys-auth/google-authenticator-wrappers/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 3e69e4a0b5aa5b9e40103e1751cb7f3f875222ad X-VCS-Branch: master Date: Tue, 20 Jul 2021 19:03:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 13c01468-f5e6-4fa4-9407-a2f01af7c711 X-Archives-Hash: 41382048bec8881b2ac212ec43e96bf5 commit: 3e69e4a0b5aa5b9e40103e1751cb7f3f875222ad Author: Conrad Kostecki gentoo org> AuthorDate: Tue Jul 20 19:01:25 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Jul 20 19:03:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e69e4a0 sys-auth/google-authenticator-wrappers: drop old version Closes: https://bugs.gentoo.org/781488 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> .../google-authenticator-wrappers-3.ebuild | 52 ---------------------- 1 file changed, 52 deletions(-) diff --git a/sys-auth/google-authenticator-wrappers/google-authenticator-wrappers-3.ebuild b/sys-auth/google-authenticator-wrappers/google-authenticator-wrappers-3.ebuild deleted file mode 100644 index 0c4516dc36a..00000000000 --- a/sys-auth/google-authenticator-wrappers/google-authenticator-wrappers-3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake user - -DESCRIPTION="Set of scripts to manage google-auth setup on Gentoo Infra" -HOMEPAGE="https://github.com/mgorny/google-authenticator-wrappers" -SRC_URI="https://github.com/mgorny/google-authenticator-wrappers/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="sys-auth/google-authenticator" - -pkg_pretend() { - if [[ ${MERGE_TYPE} != buildonly ]]; then - local v - for v in ${REPLACING_VERSIONS}; do - if ver_test "${v}" -lt 3; then - ewarn "google-authenticator-wrappers v3 switches the secret store mechanism" - ewarn "from user-owned files to /var/lib/gauth. To migrate secrets, move" - ewarn "and chown, e.g.:" - ewarn - ewarn " mv /home/myuser/.google_authenticator /var/lib/gauth/myuser" - ewarn " chown gauth /var/lib/gauth/myuser" - ewarn - ewarn "If you do not migrate or reset secrets, second step authentication" - ewarn "will be disabled after the upgrade." - break - fi - done - fi -} - -src_configure() { - local mycmakeargs=( - -DGAUTH_USERNAME=gauth - ) - - cmake_src_configure -} - -pkg_preinst() { - enewgroup gauth - enewuser gauth -1 -1 -1 gauth - fowners gauth:gauth /var/lib/gauth /usr/bin/gauthctl /usr/bin/gauth-test - fperms ug+s /usr/bin/gauthctl /usr/bin/gauth-test -}