mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
lsassy-3.1.9.ebuild
This commit is contained in:
parent
4c78ae1338
commit
2da4936e80
4 changed files with 9 additions and 9 deletions
|
|
@ -1,2 +1,2 @@
|
|||
DIST lsassy-3.1.4.tar.gz 1781012 BLAKE2B 60a731929fef88903c8d9696d5390b14aed5a20dab020f436750d00c66e0ec679d4968a7caa8830883e3910b5db3be004940f465d735eafbd35454cf6b630ad0 SHA512 6b0932620139ff2d9e67875335e35d839c71d9b5203f5f4e5e4065abe6bbe32159010f074b550da2440d453b4480acf4b038f67162577052e3ce7e4fc3cce199
|
||||
DIST lsassy-3.1.6.tar.gz 1781148 BLAKE2B f656ded5cdc89fe9ad6a743a682481d91cb922e83f61373a260b4721c9a7ab50af907e63cb155cb31df8595bd99d281b95f9e771bfa4c21252131518755f620f SHA512 762799d5151f81a091acfec304ee6badc9ea8fbd244bb06ac685528d3ec85567f2ad9ffd169c8468d2af9367b41774ca4a8bc70896797ffba29c9f9392ef6864
|
||||
DIST lsassy-3.1.9.tar.gz 1779751 BLAKE2B b4846e365ccd704c69d4944f1a75ee1b01c0dd995ef227bc9188eb64d09ff33ff4491a23fdf89aa2bafb7bf6900789d062154443cf3eb267ae02cd12f499a8eb SHA512 46f03e6445027f3b551f8c7fcdee1c5f2bda1a5b76a2eda8eb45a6a7b73622b988c38ee20855bdc53d4f5444f5f908f7b3df8f2524a685b9dc0545d732e69a3b
|
||||
|
|
|
|||
|
|
@ -3,13 +3,13 @@
|
|||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python library to parse remote lsass dumps"
|
||||
HOMEPAGE="https://github.com/Hackndo/lsassy/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python library to parse remote lsass dumps"
|
||||
HOMEPAGE="https://github.com/Hackndo/lsassy/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
|
@ -17,8 +17,8 @@ KEYWORDS="amd64 ~arm64 x86"
|
|||
IUSE=""
|
||||
|
||||
RDEPEND=">=dev-python/netaddr-0.8.0[${PYTHON_USEDEP}]
|
||||
>=app-exploits/pypykatz-0.4.8[${PYTHON_USEDEP}]
|
||||
>=dev-python/impacket-0.9.22[${PYTHON_USEDEP}]
|
||||
>=app-exploits/pypykatz-0.6.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/impacket-0.10.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/rich-10.6.0[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
|
|
@ -112,7 +112,7 @@ def pyproject_toml():
|
|||
if value == "*":
|
||||
print("\t"+portage_mapping("dev-python/" +key) +"[${PYTHON_USEDEP}]")
|
||||
else:
|
||||
print("\t>="+portage_mapping("dev-python/" + key + '-' + value.replace('^','')) + "[${PYTHON_USEDEP}]")
|
||||
print("\t>="+portage_mapping("dev-python/" + key) + '-' + value.replace('^','') + "[${PYTHON_USEDEP}]")
|
||||
|
||||
def distutils_setup():
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue