www-plugins/browserpass: Drop old versions
authorMatt Turner <mattst88@gentoo.org>
Fri, 3 Jan 2020 23:04:26 +0000 (15:04 -0800)
committerMatt Turner <mattst88@gentoo.org>
Fri, 3 Jan 2020 23:04:36 +0000 (15:04 -0800)
Signed-off-by: Matt Turner <mattst88@gentoo.org>
profiles/package.mask
www-plugins/browserpass/browserpass-3.0.6.ebuild [deleted file]

index 7a14fe5ae94f75874b16e4b3dd6b30bef76db611..552b6a6a7527451fea6922c9411fc6d9a0ef3a53 100644 (file)
@@ -690,14 +690,6 @@ app-text/pdfshuffler
 # Removal in 30 days.  Bug #695392.
 dev-python/quixote
 
-# Matt Turner <mattst88@gentoo.org> (2019-12-01)
-# browserpass ebuild ported to go-modules, so these modules now have no reverse
-# dependencies.
-# Removal in 30 days. Bugs #683286, #683310, #687462, #700792
-=www-plugins/browserpass-3.0.6
-dev-go/zglob
-dev-go/logrus
-
 # Bernard Cafarelli <voyageur@gentoo.org> (2019-11-29)
 # Beta for new major version with initial Python 3 support
 =app-backup/rdiff-backup-1.4.0_beta*
diff --git a/www-plugins/browserpass/browserpass-3.0.6.ebuild b/www-plugins/browserpass/browserpass-3.0.6.ebuild
deleted file mode 100644 (file)
index 9792a5f..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN=browserpass-native
-EGO_PN=github.com/browserpass/${MY_PN}
-
-if [[ ${PV} == 9999 ]]; then
-       inherit golang-vcs
-else
-       KEYWORDS="~amd64"
-#      MY_P="${MY_PN}-${PV}"
-#      S="${WORKDIR}/${MY_P}"
-       SRC_URI="https://github.com/browserpass/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-       inherit golang-vcs-snapshot
-fi
-inherit golang-build
-
-DESCRIPTION="WebExtension host binary for pass, a UNIX password manager"
-HOMEPAGE="https://github.com/browserpass/browserpass-native"
-LICENSE="ISC"
-SLOT="0"
-RDEPEND="app-crypt/gnupg"
-DEPEND="${RDEPEND}
-       dev-go/logrus:=
-       dev-go/zglob:="
-
-src_compile() {
-       golang-build_src_compile
-
-       pushd "src/${EGO_PN}" >/dev/null || die
-       sed -e 's|%%replace%%|'${EPREFIX}'/usr/libexec/browserpass-native|' \
-               -i browser-files/firefox-host.json browser-files/chromium-host.json || die
-       popd >/dev/null || die
-}
-
-src_install() {
-       exeinto /usr/libexec
-       doexe browserpass-native
-
-       pushd "src/${EGO_PN}" >/dev/null || die
-       insinto /usr/$(get_libdir)/mozilla/native-messaging-hosts
-       newins browser-files/firefox-host.json com.github.browserpass.native.json
-
-       insinto /etc/chromium/native-messaging-hosts
-       newins browser-files/chromium-host.json com.github.browserpass.native.json
-
-       insinto /etc/opt/chrome/native-messaging-hosts
-       newins browser-files/chromium-host.json com.github.browserpass.native.json
-
-       popd >/dev/null || die
-}