empire-4.8.0.ebuild

This commit is contained in:
Anton Bolshakov 2022-09-03 16:12:41 +08:00
parent 84d119eebf
commit 179b78355b
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
3 changed files with 11 additions and 6 deletions

View file

@ -1,2 +1,2 @@
DIST empire-4.7.1.tar.gz 47649157 BLAKE2B 3724c6c0a51058caf206c53d8056321c881d75b39390825cbcba6ad57b1a9e6213bd95ee4f8ee3781737ba0e016a216230ac7dff4cb4e0508ce622bcd85aa0c4 SHA512 2eea968b5a3e07d0a7db1180c5748fd834c0c95e6cca5323b51d0579f55e7f11b5b6b4cf687a027dd5cec90df6a685de018e9275d3c583a524ceeb6eafba479f
DIST empire-4.7.3.tar.gz 47647632 BLAKE2B 29bae6e34174e069b6f51b5a1f4576c2993609e09cd6e5c32db0bb45b87169f5512177e3d6747d27b04ed6975c21676d2f32687920d2d77a53961b1d1a9ff22d SHA512 b9c81f62af51dab46d235c820c1f6c55a1a48ea065a09efb7615f8ee5395b0ef96eb2c35133a365894d24213dbbf921fe3a5bfcee938443a73be99bbaa5cab73
DIST empire-4.8.0.tar.gz 47646997 BLAKE2B 50beb775dd84cd78cd2f1e4710c48cea80c2a1b0810b64d7b356b2d73ed93466c8846bd578d68d72e5844f68d6ebac5f8f08a80d849b26fcfb7cda80e32be014 SHA512 1128f3652929eab74f1930ff4ea901842b70d9c1a310acd941af0c3aca6a46372e1982330d96dd3d5997c82afe785b12fc539d3f0678a65c210410299c77ae5d

View file

@ -4,7 +4,7 @@
EAPI=7
DISTUTILS_USE_SETUPTOOLS=pyproject.toml
#https://github.com/BC-SECURITY/Empire/issues/196
# https://github.com/BC-SECURITY/Empire/issues/196
PYTHON_COMPAT=( python3_{9..10} )
PYTHON_REQ_USE="sqlite"

View file

@ -16,9 +16,10 @@ SLOT="0"
KEYWORDS="amd64"
IUSE="fuse mysql psd sqlite"
#https://manual.seafile.com/upgrade/upgrade_notes_for_8.0.x/
#https://manual.seafile.com/changelog/changelog-for-seafile-professional-server/
# https://manual.seafile.com/upgrade/upgrade_notes_for_8.0.x/
# https://manual.seafile.com/changelog/changelog-for-seafile-professional-server/
# ~dev-python/cffi-1.14.6[${PYTHON_USEDEP}]
RDEPEND="${PYTHON_DEPS}
>=app-misc/elasticsearch-7.16.2
$(python_gen_cond_dep '
@ -32,7 +33,10 @@ RDEPEND="${PYTHON_DEPS}
psd? ( dev-python/psd-tools )
dev-python/django-pylibmc[${PYTHON_USEDEP}]
dev-python/ldap3[${PYTHON_USEDEP}]
~dev-python/cffi-1.15.0[${PYTHON_USEDEP}]
dev-python/cffi
dev-python/requests
')
fuse? ( sys-fs/fuse:0 )
mysql? ( $(python_gen_cond_dep ' dev-python/mysqlclient[${PYTHON_USEDEP}]') )
@ -44,7 +48,8 @@ DEPEND="${RDEPEND}"
src_prepare() {
#match with cffi in RDEPEND section
sed -e "s|1.14.0|1.15.0|" -i seahub/thirdpart/cffi/__init__.py || die "sed failed"
# sed -e "s|1.14.0|${CFFI_PV}|" -i seahub/thirdpart/cffi/__init__.py || die "sed failed"
rm -r seahub/thirdpart/{cffi*,requests*}
eapply_user
}