diff options
author | Matt Turner <mattst88@gentoo.org> | 2020-01-03 15:04:26 -0800 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-01-03 15:04:36 -0800 |
commit | 75f35c099849abdbb420792e09e0bfd157978ca3 (patch) | |
tree | 62a2cda9c12accb26642bae1ccddbe31ccbe1c2e /www-plugins | |
parent | dev-go/logrus: Remove (diff) | |
download | gentoo-75f35c099849abdbb420792e09e0bfd157978ca3.tar.gz gentoo-75f35c099849abdbb420792e09e0bfd157978ca3.tar.bz2 gentoo-75f35c099849abdbb420792e09e0bfd157978ca3.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/browserpass-3.0.6.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/www-plugins/browserpass/browserpass-3.0.6.ebuild b/www-plugins/browserpass/browserpass-3.0.6.ebuild deleted file mode 100644 index 9792a5fd8f33..000000000000 --- a/www-plugins/browserpass/browserpass-3.0.6.ebuild +++ /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 -} |