summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2022-07-22 15:30:01 -0400
committerMatt Turner <mattst88@gentoo.org>2022-07-22 15:30:22 -0400
commitb3a5d38b36a1741043ff27a0e9b5cbdacd22f4c9 (patch)
tree33900214b4c100c0fc41a4446704471baed23be1 /www-plugins
parentnet-proxy/haproxy: LUA Patches are no longer required (diff)
downloadgentoo-b3a5d38b36a1741043ff27a0e9b5cbdacd22f4c9.tar.gz
gentoo-b3a5d38b36a1741043ff27a0e9b5cbdacd22f4c9.tar.bz2
gentoo-b3a5d38b36a1741043ff27a0e9b5cbdacd22f4c9.zip
www-plugins/browserpass: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'www-plugins')
-rw-r--r--www-plugins/browserpass/Manifest2
-rw-r--r--www-plugins/browserpass/browserpass-3.0.9.ebuild44
2 files changed, 0 insertions, 46 deletions
diff --git a/www-plugins/browserpass/Manifest b/www-plugins/browserpass/Manifest
index ee6544ebdf72..38c9c90bccd7 100644
--- a/www-plugins/browserpass/Manifest
+++ b/www-plugins/browserpass/Manifest
@@ -1,4 +1,2 @@
DIST browserpass-3.0.10-deps.tar.xz 2508704 BLAKE2B 893aa8116bf6d021a9a8ca2b2fd7bcdc4686e8d3060a42255f702881b65c4cf20971e4c69b2f92520b9ad73439ffb92b73bc1013947a317840e4bdf090ea6439 SHA512 44e48d60e9656ef7b4ad74aebb9d2aa38ad42c77873143f857a1908daa81089544ef1b9cbc367e2566c910243e869a17203a8ecddd06650ff63c830defdf8244
DIST browserpass-3.0.10.tar.gz 19242 BLAKE2B 822fb82b30b3f0faab5aad40af534f94b12636b476c9f704d8e1bd874e4dde2b2f4645553a43fcc79741aa06e30eac48bd26af8d6f868db0901330ecfaee6d35 SHA512 c8be34d3b0bd53f0d14f620826a223df44847ec7a2d6ee9fd9af776e640157bac2064a5eb21116942701d97e385f1d0bbf2c705a043e03ca62448db872c97c38
-DIST browserpass-3.0.9-deps.tar.xz 2502124 BLAKE2B 8d54b5a5f7b3852d9ad2053795e7d211911e97a1182b60797a18fe1b4300b9f69256ffca7539324bd1f6f345d58546696337070f1eb96bb3155c72ed93e426df SHA512 226334f6cccc48bdc04b38909dbd4127300f74b71884a0abce4c2678046e55cf4feed43634a3544a870ca98a908bf83d96c331f422b9c314516c45d0e5e5f790
-DIST browserpass-3.0.9.tar.gz 19260 BLAKE2B 51e99ba90e9c4e068e409a4a2c1811e4c95e87dee3d2d6ae58763b49065145e81ec90452496aecbd5595e8c9ba61fdfbd30790da9fbd92d48f0a80d8c43f8489 SHA512 967091176ff1a8ee184b61fcaa386a59f134e02dd7a064b3c16cb963d1334ca0a0d3281f1bfc150c69ec5d7f082abce9b811731902645d377a44f8fe4a31bc8f
diff --git a/www-plugins/browserpass/browserpass-3.0.9.ebuild b/www-plugins/browserpass/browserpass-3.0.9.ebuild
deleted file mode 100644
index 176909893672..000000000000
--- a/www-plugins/browserpass/browserpass-3.0.9.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit go-module
-MY_PN=browserpass-native
-
-DESCRIPTION="WebExtension host binary for app-admin/pass, a UNIX password manager"
-HOMEPAGE="https://github.com/browserpass/browserpass-native"
-
-go-module_set_globals
-SRC_URI="https://github.com/browserpass/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
- https://dev.gentoo.org/~mattst88/distfiles/${P}-deps.tar.xz"
-
-LICENSE="BSD ISC MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-RDEPEND="app-crypt/gnupg"
-
-S="${WORKDIR}"/${MY_PN}-${PV}
-
-src_compile() {
- ego build || die
-
- sed -e 's|%%replace%%|'${EPREFIX}'/usr/libexec/browserpass-native|' \
- -i browser-files/firefox-host.json browser-files/chromium-host.json || die
-}
-
-src_install() {
- exeinto /usr/libexec
- doexe browserpass-native
-
- insinto /usr/lib/mozilla/native-messaging-hosts
- newins browser-files/firefox-host.json com.github.browserpass.native.json
-
- insinto /usr/lib64/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
-}