dpapick: v0.3 bump

This commit is contained in:
Anton Bolshakov 2014-10-27 13:25:22 +00:00
parent 6d2399a08a
commit ba6ff4fe57
2 changed files with 40 additions and 0 deletions

View file

@ -1,2 +1,4 @@
DIST dpapick-0.2_p20130826.zip 799084 SHA256 2c38a295076e1cd533bc838ac0fb1c129b024803ba9bdee4b7e18046a1496ddb SHA512 3d025720e1b651e0b5a316c943d9969f897dd1a257c9d0576c21d17b7ea732451664c7f8c7f34f26113c0466adb7e438f4df04155c1ee696dc0b706911cb19d2 WHIRLPOOL 81260978b49a4672c5c7e65ac892a397388c4985caca954d086d11e1e750c5cbb711f00387d3c10329003a86c77444abf80df38335c94256f830b28e37bd36d4
DIST dpapick-0.3.tar.bz2 66607 SHA256 0ab8000dce72267ed23253297c62204a0c128673c463af47c0263c8492d352d5 SHA512 9939e0b6afe6b281c56e13fedc5ddf747c6ffc8802cbbd92199eef22239c8b2cba85e137018e09edaed11420c261ebd4b1d99441cb4be365e636e38bbc01a0cc WHIRLPOOL 1b70489f2c92e46da29605b9833f7fbf6c0525134bb2fc98d7ed698e61ce45b21e9d1314ce38d91ebffa7ddaba1073d0a278376011759757485f26381fc30ed8
EBUILD dpapick-0.2_p20130826.ebuild 984 SHA256 143ea48e52a843f3c34c7de62769cf7ac1f49e092beeaa177b9fdff04ecc6b8b SHA512 86f5e089f323d705911b0f78a6e381cecb51f7cf96fbd258d42559248561382fd47691232851432fc0da65dde2f27b05b1b10c70f74188f035c2026d720c3ec1 WHIRLPOOL de95dd3798aa0e21a55b5871de48baa72f89b33b8a49ff81ce15b0c0638083632664eff44c05cba34866589fe3a62df4d057b64f6d05bd41ace66d1f5b089892
EBUILD dpapick-0.3.ebuild 1009 SHA256 78662d2e6b717e2d7255af8b9bacba3f430362cada4e802e89768f40b9aa24dc SHA512 28aa81fed2465ec58259c40b397d7e918622796386862d5867cc176486d881caeb5551ed9e15177b915b5999bd581c7cc17e31d2c4ab0fa44bccd7c0344c6fa6 WHIRLPOOL ac4d3c74b48c793e70035e68821b934ddb1e0b31eb519861d799b45271c2502a32c729b4adaa0ddd30e2ad58bf179b72593076bc1060e2c22d7ac49a67d0fe10

View file

@ -0,0 +1,38 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: blshkv $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
MY_REV="39f11f730331"
DESCRIPTION="Open-source tool that allows decryption of DPAPI structures in an offline way"
HOMEPAGE="http://www.dpapick.com"
SRC_URI="https://bitbucket.org/jmichel/dpapick/get/v${PV}.tar.bz2 -> ${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="dev-python/m2crypto
dev-python/pyasn1
dev-python/python-registry"
#Optional:
#python-sqlite3 for Google Chrome password database
#CFPropertyList for Apple Safari keychain.plist
#MoonSols to convert hibernation file to usable memory dumps
S="${WORKDIR}/jmichel-dpapick-${MY_REV}"
src_install() {
distutils-r1_src_install
for bin_list in chrome dropbox getcredentialsha1 googletalk icloud lsasecrets; do
# python_fix_shebang "${ED}/bin/${bin_list}"
newbin examples/${bin_list} dpapick_${bin_list}
done
}