mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 05:41:12 +02:00
sherlock: bump to 0.10.5
This commit is contained in:
parent
a750b12f0e
commit
1142fa7ca5
3 changed files with 148 additions and 1 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST sherlock-0.10.4.tar.gz 1423062 BLAKE2B 8d9dee38544c5d2b87897306b954ed25d7f301b967b5c2c4c093f66dc387c9da7605654e14143b46a77c7ccdde167299a72328175c5995d23d908997452c708e SHA512 954fcc9ddc2ff0bb96b9f4bc5e26e955d2372ae4a2535a1d5751f949bd7359671335a8fd1ae23aed87dab77d82a3ca6f97152f6d7f0972305f77d10b79326776
|
||||
DIST sherlock-0.10.5.tar.gz 1425148 BLAKE2B deeab0fe0b29b9cda237bfc4f8d5bbef6b76ad0854175ea997367872c2ca5ef3da6664d2b0e14d864e712e99f8278bfb7a36f36b3376b6ad4876d48d0765b877 SHA512 2515f111105322f28e5b648cfae37ce58d1f3db81611055949a514e1b87b3af18072e2a1b03164b3d3ccc3b0fb1b8bd873cdd9dda18770743762ae477558c924
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
./sherlock-9999.ebuild
|
||||
74
net-misc/sherlock/sherlock-0.10.4.ebuild
Normal file
74
net-misc/sherlock/sherlock-0.10.4.ebuild
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit eutils python-single-r1
|
||||
|
||||
DESCRIPTION="Find usernames across social networks"
|
||||
HOMEPAGE="https://github.com/sherlock-project/sherlock"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/sherlock-project/sherlock"
|
||||
else
|
||||
# snapshot: 20200109
|
||||
HASH_COMMIT="639d781a02d20acac02a751100ee1fcd5ca72220"
|
||||
|
||||
SRC_URI="https://github.com/sherlock-project/sherlock/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm ~mips ~x86"
|
||||
S="${WORKDIR}/${PN}-${HASH_COMMIT}"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT=0
|
||||
#IUSE="test"
|
||||
IUSE=""
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/beautifulsoup:4[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/certifi[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/chardet[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/colorama[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/idna[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/PySocks[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/requests[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/requests-futures[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/soupsieve[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/torrequest[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/urllib3[${PYTHON_MULTI_USEDEP}]
|
||||
>=net-libs/stem-1.7.0[${PYTHON_MULTI_USEDEP}]
|
||||
')"
|
||||
|
||||
pkg_setup() {
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
eapply "${FILESDIR}"/add_support_custom_data_json.patch
|
||||
|
||||
if [[ ${PV} != *9999 ]]; then
|
||||
sed -e "s/__version__ = \"\(.*\)\"/__version__ = \"${PV}\"/" \
|
||||
-i sherlock.py || die
|
||||
fi
|
||||
|
||||
python_fix_shebang "${S}"
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto "/usr/share/${PN}"
|
||||
doins data.json *.py
|
||||
|
||||
python_optimize "${D}/usr/share/${PN}"
|
||||
|
||||
make_wrapper ${PN} "${EPYTHON} /usr/share/${PN}/sherlock.py"
|
||||
make_wrapper ${PN}-get-sitelist "${EPYTHON} /usr/share/${PN}/site_list.py"
|
||||
|
||||
dodoc *.md Dockerfile
|
||||
}
|
||||
73
net-misc/sherlock/sherlock-0.10.5.ebuild
Normal file
73
net-misc/sherlock/sherlock-0.10.5.ebuild
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit eutils python-single-r1
|
||||
|
||||
DESCRIPTION="Find usernames across social networks"
|
||||
HOMEPAGE="https://github.com/sherlock-project/sherlock"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/sherlock-project/sherlock"
|
||||
else
|
||||
# snapshot: 20200213
|
||||
HASH_COMMIT="f3a61fe7afa4abc0305c802e51c814c3d31d4b56"
|
||||
|
||||
SRC_URI="https://github.com/sherlock-project/sherlock/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm ~mips ~x86"
|
||||
S="${WORKDIR}/${PN}-${HASH_COMMIT}"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT=0
|
||||
#IUSE="test"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/beautifulsoup:4[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/certifi[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/chardet[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/colorama[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/idna[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/PySocks[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/requests[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/requests-futures[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/soupsieve[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/torrequest[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/urllib3[${PYTHON_MULTI_USEDEP}]
|
||||
>=net-libs/stem-1.7.0[${PYTHON_MULTI_USEDEP}]
|
||||
')"
|
||||
|
||||
pkg_setup() {
|
||||
python-single-r1_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
eapply "${FILESDIR}"/add_support_custom_data_json.patch
|
||||
|
||||
if [[ ${PV} != *9999 ]]; then
|
||||
sed -e "s/__version__ = \"\(.*\)\"/__version__ = \"${PV}\"/" \
|
||||
-i sherlock.py || die
|
||||
fi
|
||||
|
||||
python_fix_shebang "${S}"
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto "/usr/share/${PN}"
|
||||
doins data.json *.py
|
||||
|
||||
python_optimize "${D}/usr/share/${PN}"
|
||||
|
||||
make_wrapper ${PN} "${EPYTHON} /usr/share/${PN}/sherlock.py"
|
||||
make_wrapper ${PN}-get-sitelist "${EPYTHON} /usr/share/${PN}/site_list.py"
|
||||
|
||||
dodoc *.md Dockerfile
|
||||
}
|
||||
Loading…
Reference in a new issue