-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
80 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST dploot-2.2.4.tar.gz 45268 BLAKE2B 14ffd2022b9e68c94ea1502473033c32a7bb8a191b228f2c6d8a1e935fa5bf97570659e602ba8af4dea54ab0b251991d9da7bcf9efe6eea20ba946d6ceb6c88d SHA512 5251bb98f6e21a7c420f052a6602ef1a65d197f54b9b1cd1a01cc9005604e43b2821b629ce8b04f0f2003c299176ba43dc255fbf920269c8f92fe815ab872b93 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=poetry | ||
PYTHON_COMPAT=( python3_{10..12} ) | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="DPAPI looting remotely in Python" | ||
HOMEPAGE="https://github.com/zblurx/dploot" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 ~arm64 ~x86" | ||
|
||
RDEPEND=" | ||
>=dev-python/impacket-0.10.0[${PYTHON_USEDEP}] | ||
>=dev-python/cryptography-40.0.1[${PYTHON_USEDEP}] | ||
>=dev-python/pyasn1-0.4.8[${PYTHON_USEDEP}] | ||
>=dev-python/lxml-4.9.3[${PYTHON_USEDEP}] | ||
" | ||
DEPEND="${RDEPEND}" | ||
REQUIRED_USE="${PYTHON_REQUIRED_USE}" | ||
|
||
RESTRICT="test" | ||
#distutils_enable_tests pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Author Unknown</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">zblurx/dploot</remote-id> | ||
<remote-id type="pypi">dploot</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DIST python-libnmap-0.7.2.tar.gz 36546 BLAKE2B 56d3bca7bd6aaf63e4d34311b097897ae26d8a691e0ce78836f9706d9e54a7796770418b91e72bd7db27ff4a56e0c8536bfc22ebd6a9e348d840806e035d2cb9 SHA512 e1ecca1b7c658f062cf919f66b592f65f8e3a0569eb46c470f42203e3e2732eadc02b0bc10e0b3737750c540658202dfe17c99f21b27c977bc57067a24ec552e | ||
DIST python-libnmap-0.7.3.tar.gz 39687 BLAKE2B ea4841c1dbdf99c7be1211df8439bec65084f383772ba1a8a9c247b0db78c259ed631b5aa38d7336efcb549bf0e1be5968b064f243e4085d503f54d8cb3fe594 SHA512 aa9e7dc26f6391698e9b27ffc6092859ba63174f89f7fe6d6e0c1f08f67aea25f2a40c3454460a45783218fa5c44d3959e21700ba9c16f6d28bc358965079bd3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Yury Martynov</name> | ||
</maintainer> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Author Unknown</name> | ||
</maintainer> | ||
<use> | ||
<flag name="boto">Amazon Web Services support</flag> | ||
<flag name="defusedxml">import untrusted XML scans data</flag> | ||
<flag name="mongodb">mongodb support</flag> | ||
<flag name="sqlalchemy">sqlalchemy support</flag> | ||
</use> | ||
<upstream> | ||
<remote-id type="pypi">python-libnmap</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYPI_NO_NORMALIZE=1 | ||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{10..12} ) | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="A python library enabling python developers to manipulate nmap process and data" | ||
HOMEPAGE="https://pypi.org/project/python-libnmap/" | ||
|
||
KEYWORDS="amd64 ~arm64 ~x86" | ||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
IUSE="boto defusedxml mongodb sqlalchemy" | ||
|
||
RDEPEND="${PYTHON_DEPS} | ||
defusedxml? ( dev-python/defusedxml[${PYTHON_USEDEP}] ) | ||
sqlalchemy? ( dev-python/sqlalchemy[${PYTHON_USEDEP}] ) | ||
mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] ) | ||
boto? ( dev-python/boto[${PYTHON_USEDEP}] ) | ||
" |