From fd228753a74d491418c5b06e5e57e6f461d62c81 Mon Sep 17 00:00:00 2001 From: Antonio Date: Mon, 7 Oct 2024 23:27:14 +0200 Subject: [PATCH 01/10] faradaysec: added missing dependencies --- packages/faradaysec/PKGBUILD | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/packages/faradaysec/PKGBUILD b/packages/faradaysec/PKGBUILD index 590c8c2a7ef..972e54d6152 100644 --- a/packages/faradaysec/PKGBUILD +++ b/packages/faradaysec/PKGBUILD @@ -10,12 +10,12 @@ groups=('blackarch' 'blackarch-scanner' 'blackarch-exploitation' 'blackarch-misc') arch=('x86_64' 'aarch64') url='http://www.faradaysec.com/' -depends=('couchdb' 'python' 'gtk3' 'gobject-introspection' 'python-argparse' +depends=('couchdb' 'python' 'gtk3' 'gobject-introspection' 'python-pyjwt' 'python-bleach' 'gobject-introspection-runtime' 'python-gobject' 'vte3' 'zsh' 'curl' 'python-couchdb' 'python-mockito' 'python-whoosh' 'python-ipy' 'python-restkit' 'python-requests' 'python-tornado' 'python-flask' 'python-colorama' 'java-environment' 'python-pip' 'python-dateutil' - 'pyqt3' 'libpqxx' 'python-psycopg2' 'ruby' 'python-apispec-webframeworks' + 'libpqxx' 'python-psycopg2' 'ruby' 'python-apispec-webframeworks' 'python-lxml' 'python-pysqlite3' 'python-sphinx' 'python-twisted' 'python-beautifulsoup4' 'python-sqlalchemy' 'python-werkzeug' 'python-w3af-api-client' 'python-urllib3' 'python-responses' @@ -26,14 +26,18 @@ depends=('couchdb' 'python' 'gtk3' 'gobject-introspection' 'python-argparse' 'python-tqdm' 'python-flask-sqlalchemy' 'python-marshmallow' 'python-pillow' 'python-service-identity' 'python-webargs' 'python-selenium' 'python-shodan' 'python-bcrypt' 'python-simplekv' - 'python-wtforms' 'python-flask-login' 'python-flask-security' + 'python-wtforms' 'python-flask-login' 'python-flask-security-too' 'python-pyopenssl' 'python-pyasn1' 'python-tqdm' 'python-apispec' 'python-marshmallow-sqlalchemy' 'python-flask-classful' 'python-filteralchemy-fork' 'python-filedepot' 'python-nplusone' 'python-flask-restless' 'python-syslog-rfc5424-formatter' 'python-flask-kvsession-fork' 'python-distro' 'python-faraday-plugins' 'python-pendulum' 'python-prompt_toolkit' 'python-email-validator' - 'python-anyascii' 'postgresql') + 'python-anyascii' 'python-validators' 'python-flask-wtf' 'python-cryptography' + 'python-pyyaml' 'python-bidict' 'python-socketio' 'python-pyotp' 'python-flask-limiter' + 'python-flask-mail' 'python-faraday-agent-parameters-types' 'python-cvss' 'python-celery' + 'python-gevent' 'python-psycogreen' 'python-flask-celery-helper' 'python-redis' 'python-gevent-websocket' + 'python-sh' 'python-elasticsearch' 'python-croniter' 'postgresql') makedepends=('git') options=('!strip') license=('GPL') From a075039a9e17f9adb811842ce493216ab68ca00d Mon Sep 17 00:00:00 2001 From: Antonio Date: Mon, 7 Oct 2024 23:29:07 +0200 Subject: [PATCH 02/10] python-faraday-agent-parameters-types: added package --- .../PKGBUILD | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 packages/python-faraday-agent-parameters-types/PKGBUILD diff --git a/packages/python-faraday-agent-parameters-types/PKGBUILD b/packages/python-faraday-agent-parameters-types/PKGBUILD new file mode 100644 index 00000000000..722a9712a08 --- /dev/null +++ b/packages/python-faraday-agent-parameters-types/PKGBUILD @@ -0,0 +1,40 @@ +# This file is part of BlackArch Linux ( https://www.blackarch.org/ ). +# See COPYING for license details. + +pkgname=python-faraday-agent-parameters-types +_pkgname=${pkgname#python-} +pkgver=1.7.1 +pkgrel=1 +pkgdesc='Set the models of parameters types for the Faraday agents.' +arch=('any') +url='https://github.com/infobyte/faraday_agent_parameters_types' +license=('GPL3') +depends=('python' 'python-marshmallow' 'python-packaging') +makedepends=('python-build' 'python-pip') +options=(!emptydirs) +source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/$_pkgname/faraday_agent_parameters_types-$pkgver.tar.gz") +sha512sums=('b01d1afcb5f10272108b8b4a56a5e082eebdf9b61eb8a3d3ff815af3b1637ed90dc9bbba81ffcd30d5c83c79b438e7906485e33a73de442ca29dbf1c82cfa441') + +build() { + cd "faraday_agent_parameters_types-$pkgver" + + python -m build --wheel --outdir="$startdir/dist" +} + +package() { + cd "faraday_agent_parameters_types-$pkgver" + + pip install \ + --verbose \ + --disable-pip-version-check \ + --no-warn-script-location \ + --ignore-installed \ + --no-compile \ + --no-deps \ + --root="$pkgdir" \ + --prefix=/usr \ + --no-index \ + --find-links="file://$startdir/dist" \ + $_pkgname +} + From f7ce88c28654ae6ef6be26ebac93674e2f5eef8b Mon Sep 17 00:00:00 2001 From: Antonio Date: Mon, 7 Oct 2024 23:29:45 +0200 Subject: [PATCH 03/10] python-flask-celery-helper: add package --- packages/python-flask-celery-helper/PKGBUILD | 27 ++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 packages/python-flask-celery-helper/PKGBUILD diff --git a/packages/python-flask-celery-helper/PKGBUILD b/packages/python-flask-celery-helper/PKGBUILD new file mode 100644 index 00000000000..3cf9166384c --- /dev/null +++ b/packages/python-flask-celery-helper/PKGBUILD @@ -0,0 +1,27 @@ +# This file is part of BlackArch Linux ( https://www.blackarch.org/ ). +# See COPYING for license details. + +# Initial PKGBUILD from AUR. +# Maintainer: Adam Schubert + +pkgname=python-flask-celery-helper +pkgver=1.1.0 +pkgdesc="The navigation of Flask application." +pkgrel=1 +arch=('any') +license=('MIT') +url='https://github.com/Robpol86/Flask-Celery-Helper' +source=($pkgname-$pkgver.tar.gz::https://codeload.github.com/Robpol86/Flask-Celery-Helper/tar.gz/v$pkgver) +sha512sums=('5d4537e02327496948e8a419b9635e487df290f9389895c0b72906151fb2553bf7c2a05cdd1a84513fa7dcbf37871ed8a00569b2b2a1c90f207494766ddb5263') +makedepends=('python-setuptools') +depends=( + 'python-celery' + 'python-flask' +) + +package() { + cd "Flask-Celery-Helper-${pkgver}" + + python setup.py install --root="$pkgdir/" --optimize=1 +} + From 0c438e662cf1faa3c2472fc58999cf105e0b8a20 Mon Sep 17 00:00:00 2001 From: Antonio Date: Mon, 7 Oct 2024 23:30:20 +0200 Subject: [PATCH 04/10] python-psycogreen: add package --- packages/python-psycogreen/PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 packages/python-psycogreen/PKGBUILD diff --git a/packages/python-psycogreen/PKGBUILD b/packages/python-psycogreen/PKGBUILD new file mode 100644 index 00000000000..55dd5ecd81f --- /dev/null +++ b/packages/python-psycogreen/PKGBUILD @@ -0,0 +1,27 @@ +# This file is part of BlackArch Linux ( https://www.blackarch.org/ ). +# See COPYING for license details. + +# Initial PKGBUILD from AUR. +# Maintainer: Tony Benoy +# Contributor: Bidossessi Sodonon + +pkgname=python-psycogreen +_pkgname=psycogreen +pkgver=1.0.2 +pkgrel=2 +pkgdesc="psycopg2 integration with coroutine libraries." +url=https://github.com/psycopg/psycogreen/ +arch=('any') +license=('BSD') +depends=('python') +makedepends=('python-setuptools') +source=("https://pypi.python.org/packages/source/p/${_pkgname}/${_pkgname}-${pkgver}.tar.gz") +sha512sums=('503f98f98e9772c8c2474973c3452dd05f581795d49d98612f954508eae2615e74ce4b66acf85b47e311dcb0d72160ea8db0eec6ec09b095778a37f570073adf') + +package() { + cd "${_pkgname}-${pkgver}" + + python setup.py install --root="${pkgdir}" +} + From 3c6175eb15e76ac6e19a7f8e1decce97b08c5d2c Mon Sep 17 00:00:00 2001 From: Antonio Date: Mon, 7 Oct 2024 23:30:54 +0200 Subject: [PATCH 05/10] Update to-release --- lists/to-release | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lists/to-release b/lists/to-release index e69de29bb2d..8405b3098f8 100644 --- a/lists/to-release +++ b/lists/to-release @@ -0,0 +1,4 @@ +faradaysec +python-psycogreen +python-flask-celery-helper +python-faraday-agent-parameters-types From c1dd82aa0b0c05265017ee57941cde9287b40317 Mon Sep 17 00:00:00 2001 From: Antonio Date: Mon, 7 Oct 2024 23:40:10 +0200 Subject: [PATCH 06/10] Update PKGBUILD --- packages/python-flask-celery-helper/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/python-flask-celery-helper/PKGBUILD b/packages/python-flask-celery-helper/PKGBUILD index 3cf9166384c..58aab8c92f6 100644 --- a/packages/python-flask-celery-helper/PKGBUILD +++ b/packages/python-flask-celery-helper/PKGBUILD @@ -2,7 +2,7 @@ # See COPYING for license details. # Initial PKGBUILD from AUR. -# Maintainer: Adam Schubert +# Old Maintainer: Adam Schubert pkgname=python-flask-celery-helper pkgver=1.1.0 From bfed455a0b06627409c34c761cd379601d36e5b7 Mon Sep 17 00:00:00 2001 From: Antonio Date: Mon, 7 Oct 2024 23:40:26 +0200 Subject: [PATCH 07/10] Update PKGBUILD --- packages/python-psycogreen/PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/python-psycogreen/PKGBUILD b/packages/python-psycogreen/PKGBUILD index 55dd5ecd81f..a2ea713df5d 100644 --- a/packages/python-psycogreen/PKGBUILD +++ b/packages/python-psycogreen/PKGBUILD @@ -2,9 +2,9 @@ # See COPYING for license details. # Initial PKGBUILD from AUR. -# Maintainer: Tony Benoy -# Contributor: Bidossessi Sodonon +# Old Maintainer: Tony Benoy +# Old Contributor: Bidossessi Sodonon pkgname=python-psycogreen _pkgname=psycogreen From 555907ada692c4337c8f08443ab0f258035ca53f Mon Sep 17 00:00:00 2001 From: Antonio Date: Sun, 27 Oct 2024 23:15:44 +0100 Subject: [PATCH 08/10] Update PKGBUILD --- packages/faradaysec/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/faradaysec/PKGBUILD b/packages/faradaysec/PKGBUILD index 972e54d6152..fd94a399aaf 100644 --- a/packages/faradaysec/PKGBUILD +++ b/packages/faradaysec/PKGBUILD @@ -9,7 +9,7 @@ groups=('blackarch' 'blackarch-scanner' 'blackarch-exploitation' 'blackarch-fuzzer' 'blackarch-fingerprint' 'blackarch-automation' 'blackarch-misc') arch=('x86_64' 'aarch64') -url='http://www.faradaysec.com/' +url='https://faradaysec.com/' depends=('couchdb' 'python' 'gtk3' 'gobject-introspection' 'python-pyjwt' 'python-bleach' 'gobject-introspection-runtime' 'python-gobject' 'vte3' 'zsh' 'curl' 'python-couchdb' 'python-mockito' 'python-whoosh' 'python-ipy' From 4e9da1168dad3ca0a40ba40f8247af68f3a409bc Mon Sep 17 00:00:00 2001 From: Antonio Date: Sun, 27 Oct 2024 23:42:18 +0100 Subject: [PATCH 09/10] Update PKGBUILD --- packages/faradaysec/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/faradaysec/PKGBUILD b/packages/faradaysec/PKGBUILD index fd94a399aaf..c717f0beafd 100644 --- a/packages/faradaysec/PKGBUILD +++ b/packages/faradaysec/PKGBUILD @@ -5,10 +5,10 @@ pkgname=faradaysec pkgver=12621.1cee4eb20 pkgrel=1 pkgdesc='Collaborative Penetration Test and Vulnerability Management Platform.' +arch=('x86_64' 'aarch64') groups=('blackarch' 'blackarch-scanner' 'blackarch-exploitation' 'blackarch-fuzzer' 'blackarch-fingerprint' 'blackarch-automation' 'blackarch-misc') -arch=('x86_64' 'aarch64') url='https://faradaysec.com/' depends=('couchdb' 'python' 'gtk3' 'gobject-introspection' 'python-pyjwt' 'python-bleach' 'gobject-introspection-runtime' 'python-gobject' 'vte3' 'zsh' 'curl' From e1edf0b398351cf98a21cd7fd67e4972b9eced4a Mon Sep 17 00:00:00 2001 From: Antonio Date: Sun, 27 Oct 2024 23:42:41 +0100 Subject: [PATCH 10/10] Update PKGBUILD --- packages/python-psycogreen/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/python-psycogreen/PKGBUILD b/packages/python-psycogreen/PKGBUILD index a2ea713df5d..060beee3109 100644 --- a/packages/python-psycogreen/PKGBUILD +++ b/packages/python-psycogreen/PKGBUILD @@ -11,8 +11,8 @@ _pkgname=psycogreen pkgver=1.0.2 pkgrel=2 pkgdesc="psycopg2 integration with coroutine libraries." -url=https://github.com/psycopg/psycogreen/ arch=('any') +url=https://github.com/psycopg/psycogreen/ license=('BSD') depends=('python') makedepends=('python-setuptools')