Skip to content

Commit

Permalink
specify custom forks explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
dadevel committed Dec 14, 2024
1 parent b5da872 commit f0ba775
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bloodhound-python/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pkgname=bloodhound-python
_reponame=bloodhound.py
pkgver=latest
pkgrel=1
url="https://github.com/dadevel/${_reponame}.git"
url="https://github.com/dadevel/${_reponame}.git#branch=latest"
arch=(any)
license=(MIT)
depends=(python)
Expand Down
2 changes: 1 addition & 1 deletion getfgpp/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ package() {
python -m venv "${pkgdir}/opt/archpkgs/${pkgname}"
cp ./fgpp.py "${pkgdir}/opt/archpkgs/${pkgname}/bin/"
declare -x VIRTUAL_ENV="${pkgdir}/opt/archpkgs/${pkgname}" PYTHONPATH="${pkgdir}/opt/archpkgs/${pkgname}" PATH="${pkgdir}/opt/archpkgs/${pkgname}/bin:$PATH"
pip install ldap3 python-dateutil
pip install git+https://github.com/dadevel/ldap3@latest python-dateutil
cat << EOF > "${pkgdir}/opt/archpkgs/bin/${pkgname}"
#!/bin/sh
set -eu
Expand Down
2 changes: 1 addition & 1 deletion krbrelayx/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ package() {
mkdir -p "${pkgdir}"/opt/archpkgs/bin "${pkgdir}/opt/archpkgs/${pkgname}"
python -m venv "${pkgdir}/opt/archpkgs/${pkgname}"
declare -x VIRTUAL_ENV="${pkgdir}/opt/archpkgs/${pkgname}" PYTHONPATH="${pkgdir}/opt/archpkgs/${pkgname}" PATH="${pkgdir}/opt/archpkgs/${pkgname}/bin:$PATH"
pip install dnspython dsinternals impacket ldap3
pip install dnspython dsinternals git+https://github.com/dadevel/impacket@latest git+https://github.com/dadevel/ldap3@latest
pip install setuptools # for pkg_resources
cp -r ./*.py ./lib "${pkgdir}/opt/archpkgs/${pkgname}/"
for binary in ./*.py; do
Expand Down
2 changes: 1 addition & 1 deletion lapsdumper/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ package() {
python -m venv "${pkgdir}/opt/archpkgs/${pkgname}"
cp ./laps.py "${pkgdir}/opt/archpkgs/${pkgname}/bin"
declare -x VIRTUAL_ENV="${pkgdir}/opt/archpkgs/${pkgname}" PYTHONPATH="${pkgdir}/opt/archpkgs/${pkgname}" PATH="${pkgdir}/opt/archpkgs/${pkgname}/bin:$PATH"
pip install ldap3
pip install git+https://github.com/dadevel/ldap3@latest
cat << EOF > "${pkgdir}/opt/archpkgs/bin/${pkgname}"
#!/bin/sh
set -eu
Expand Down
2 changes: 1 addition & 1 deletion petitpotam/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ package() {
python -m venv "${pkgdir}/opt/archpkgs/${pkgname}"
cp ./PetitPotam.py "${pkgdir}/opt/archpkgs/${pkgname}/${pkgname}.py"
declare -x VIRTUAL_ENV="${pkgdir}/opt/archpkgs/${pkgname}" PYTHONPATH="${pkgdir}/opt/archpkgs/${pkgname}" PATH="${pkgdir}/opt/archpkgs/${pkgname}/bin:$PATH"
pip install impacket
pip install git+https://github.com/dadevel/impacket@latest
cat <<EOF >"${pkgdir}/opt/archpkgs/bin/${pkgname}"
#!/bin/sh
set -eu
Expand Down
2 changes: 1 addition & 1 deletion wmiexec-pro/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ package() {
cp ./wmiexec-pro.py "${pkgdir}/opt/archpkgs/${pkgname}/${pkgname}.py"
cp -r ./lib "${pkgdir}/opt/archpkgs/${pkgname}"
declare -x VIRTUAL_ENV="${pkgdir}/opt/archpkgs/${pkgname}" PYTHONPATH="${pkgdir}/opt/archpkgs/${pkgname}" PATH="${pkgdir}/opt/archpkgs/${pkgname}/bin:$PATH"
pip install impacket
pip install git+https://github.com/dadevel/impacket@latest
pip install numpy
cat <<EOF >"${pkgdir}/opt/archpkgs/bin/${pkgname}"
#!/bin/sh
Expand Down

0 comments on commit f0ba775

Please sign in to comment.