fierce: fix live ebuild, symlink to stable, 1.2.1 bump

This commit is contained in:
blshkv 2018-06-15 08:06:11 +08:00
parent 27b814973e
commit 81bb298941
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
3 changed files with 12 additions and 8 deletions

View file

@ -1 +1 @@
DIST fierce-1.2.1.tar.gz 113592 BLAKE2B bbd0771657a4b792ff2ba139a6b169ad73fb23358f8d70cf9e0f4febba96028aeec7619fdbf84e21f634d850561ddea3dc1f3e615861f13740a7fc0bbc663dc5 SHA512 89b0ef58b6f17ff38a05edd02335372d1eeac25b3b9e6c6c87ff482d117a65c9464ec6a2673070988fd28d6d96a4501a63d85e5df125c0041f7919a0c9da8231
DIST fierce-1.2.2.tar.gz 113981 BLAKE2B 03792f324f39998ce3afc53866691a7836142babbfb89e78dd74e8c0895ccf33ccee4f184066c46c7c81783f137c4b793032741cb1353293fb0dd1f7dd21d309 SHA512 96fbd8396a1ead3624af0509415e112cf109945a6f98718e1caa7aa91aa6cf2eac60bfbea7f217b8e90bbd2cfc2612c9c1ba49bd6dad878d5fa4608839c61e55

View file

@ -0,0 +1 @@
fierce-9999.ebuild

View file

@ -4,15 +4,21 @@
EAPI=6
PYTHON_COMPAT=( python3_{5,6} )
inherit distutils-r1 git-r3
inherit distutils-r1
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/mschwager/fierce.git"
KEYWORDS=""
else
SRC_URI="https://github.com/mschwager/fierce/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
fi
DESCRIPTION="A DNS reconnaissance tool for locating non-contiguous IP space"
HOMEPAGE="https://github.com/mschwager/fierce"
EGIT_REPO_URI="https://github.com/mschwager/fierce.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="virtual/python-dnspython[${PYTHON_USEDEP}]"
@ -21,8 +27,5 @@ DEPEND="${RDEPEND}
python_prepare_all() {
sed -i -e "s|dnspython==1.15.0|dnspython|" requirements.txt || die
# #https://github.com/mschwager/fierce/issues/25
# sed -i -e "s|os.path.dirname(__file__)|\"/usr/share/fierce/\"|" fierce.py || die
# sed -i -e "s|'lists', data|'share/fierce/lists', data|" setup.py || die
distutils-r1_python_prepare_all
}