summaryrefslogtreecommitdiff
path: root/www-plugins/browserpass
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
commit21435953e16cda318a82334ddbadb3b5c36d9ea7 (patch)
treee1810a4b135afce04b34862ef0fab2bfaeb8aeca /www-plugins/browserpass
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'www-plugins/browserpass')
-rw-r--r--www-plugins/browserpass/Manifest1
-rw-r--r--www-plugins/browserpass/browserpass-3.0.6.ebuild53
2 files changed, 0 insertions, 54 deletions
diff --git a/www-plugins/browserpass/Manifest b/www-plugins/browserpass/Manifest
index 0119412e51b0..d014a1dcf520 100644
--- a/www-plugins/browserpass/Manifest
+++ b/www-plugins/browserpass/Manifest
@@ -3,5 +3,4 @@ DIST github.com-golang-sys-6d18c012aee9febd81bbf9806760c8c4480e870d.tar.gz 15328
DIST github.com-mattn-go-zglob-a8912a37f9e7.tar.gz 8030 BLAKE2B 2c7719a15f598b06d479bf35b1154b0685ee94d7c94bae9a3e3ae63b0706b63c885cd226e2749402a92d5937a5d8b03aa94ccf14fad6c8adbaf438ed131f04f4 SHA512 ebcd8096a15082f454be3d6349e1ae092696db52b843ca2cad84fb4ba8f5f9411db7b9bf40e387238e30c33495062ee711de4249e56889fa059c9c6ccd1600f0
DIST github.com-sirupsen-logrus-v1.4.2.tar.gz 41373 BLAKE2B 3675dd82fd9c174fddf93eea87f3ca2c2671d9719ba148b03136c35ce6a3ce95866c57cb706a641a14522a522606dc9ea9ec9f0a6c7da6f8cf18f46b9f4bd3ee SHA512 c29689e5ea0ff919afc6fe1c492898d8b898e6831c442d3fc45c29508bdfda08604b1ea09d3b17db401bddca69fd5f8f744610075ee3c0577df6a537e0980a13
EBUILD browserpass-3.0.6-r1.ebuild 1361 BLAKE2B e1a0506035d3818109bfe7797aa39e394be4c20ccd4e06881064ac357a25c065fedf145eec6318ad6a82cbe7edd86acf5e4ad22ad15263a0bdc311b6aaff78df SHA512 c5c17658281dc1243c82d8459cb9bebf6c86c756cf9d71b9ef759788700a94fa96bf704acc644e55d5616c693d7bad64a11ebd5554fd273161e9040e99f80094
-EBUILD browserpass-3.0.6.ebuild 1452 BLAKE2B d7125291725c1b5580c2d790e9294cfb69dae8fc0b69fd7eb9473ff2a74b5122b2b96fb224122e8365a017346d1a37ebeb5982f193fef6164a6301255bbfef16 SHA512 4f12769490c6bd3efad5ab211de01c1fa1387a0b9905fe792500c92bb504a8f22aae40bf152176a5edeea4a9cd6eaf49939772891b171f22164b5dea5493693b
MISC metadata.xml 246 BLAKE2B c7559c694569e2eb079aa44ab82aac05dd7218624519133b1d1de233f6d4bce0872ada012e00dc369051e9685d9a25d314c05318d1b109ee81945dd739da51df SHA512 0d07f784095273f14c7d63a215a76c84fec302e6e52717f0e47c29916aa90149239dfe7ed3227a42e2863226e4448d8a2e8321ccc589ad6d9f725731b45559a2
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
-}