Deleted passff-1.1-r1

There is a newer version in the Gentoo repo now
This commit is contained in:
tastytea 2018-06-20 08:39:48 +02:00
parent 9cbdefd2b1
commit c640c74afe
Signed by untrusted user: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 0 additions and 43 deletions

View File

@ -1,3 +0,0 @@
DIST passff-1.1.json 176 BLAKE2B 8eddc19cd0c072d25afff5cfa86a95d960ae7b986727099a04a1d983b887922f9ad77e940a2c80e0838a169afe81fa3f6529a901998bb98a6750ac888a09c264 SHA512 e4a4b90fb5323c6dbec339b9e67a7d546c6d7a95754fe03b3a4d96396c28de1caba3068b4e936ee0ce0997f865c8b5e53a3da1fb34f0123a04c5889302c28911
DIST passff-1.1.py 2256 BLAKE2B fcde1a8d1fe4e8793df46c182a8d717931e7b5ee98ae39a6a03bf32c51528dd7036beefc47dd5839bede47a78bcb7904a745fa38522183057dd7b29e20eae726 SHA512 b5d4aa3d3a9455adece3d291a6e1e05178296e72828ec708cd33541f30e4fbef2385978f24ba27eaefc739e4792f4cbac1830e8dcd15380c7243e11ddbcafe9d
EBUILD passff-1.1-r1.ebuild 914 BLAKE2B 3fc5e98a8b7d98a44b6673cf620472b3a79686b3371efe7d5b4c212d8ba91173275355b211e68e4a82f2a571c5aad91b9dfa259382286cd5b750b065552afbc0 SHA512 ede0d2d804ce7b0cff23c62735e67e26bb123cfb377709c8160d733511280410d51786fb85b17a619190eed046a1d81bf22b4b33b5ecdd0e394a239d4f27f295

View File

@ -1,40 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_5 )
inherit python-single-r1
DESCRIPTION="zx2c4 pass manager extension for Firefox (Host Binary)"
HOMEPAGE="https://github.com/passff/passff"
SRC_URI="
https://github.com/passff/passff/releases/download/${PV}/passff.json -> ${P}.json
https://github.com/passff/passff/releases/download/${PV}/passff.py -> ${P}.py
"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
TARGET_DIR="/usr/lib/mozilla/native-messaging-hosts"
S="${WORKDIR}"
src_unpack() {
cp "${DISTDIR}/${P}.json" passff.json || die
cp "${DISTDIR}/${P}.py" passff.py || die
}
src_compile() {
sed -i "s|PLACEHOLDER|${EPREFIX}${TARGET_DIR}/${PN}.py|" passff.json || die
python_fix_shebang passff.py
}
src_install() {
insinto "${TARGET_DIR}"
doins passff.json
exeinto "${TARGET_DIR}"
doexe passff.py
}