diff options
| author | vin <git@vineetk.net> | 2025-11-16 00:20:17 -0500 |
|---|---|---|
| committer | vin <git@vineetk.net> | 2025-11-16 00:23:55 -0500 |
| commit | c0b4f94fee312436f6ac6aa8dd64418a9424bbec (patch) | |
| tree | d6236888a6ffeb507b920cc92c5bc58128fb46b7 | |
| parent | fd8654fd2c47ba33ac7123e3cea0d733a5076888 (diff) | |
add python3-adblock based on my updated fork
| -rw-r--r-- | python3-adblock/.footprint | 19 | ||||
| -rw-r--r-- | python3-adblock/.md5sum | 1 | ||||
| -rw-r--r-- | python3-adblock/Pkgfile | 17 |
3 files changed, 37 insertions, 0 deletions
diff --git a/python3-adblock/.footprint b/python3-adblock/.footprint new file mode 100644 index 0000000..7bb4648 --- /dev/null +++ b/python3-adblock/.footprint | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | drwxr-xr-x root/root usr/ | ||
| 2 | drwxr-xr-x root/root usr/lib/ | ||
| 3 | drwxr-xr-x root/root usr/lib/python3.12/ | ||
| 4 | drwxr-xr-x root/root usr/lib/python3.12/site-packages/ | ||
| 5 | drwxr-xr-x root/root usr/lib/python3.12/site-packages/adblock-0.7.0.dist-info/ | ||
| 6 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock-0.7.0.dist-info/METADATA | ||
| 7 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock-0.7.0.dist-info/RECORD | ||
| 8 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock-0.7.0.dist-info/WHEEL | ||
| 9 | drwxr-xr-x root/root usr/lib/python3.12/site-packages/adblock-0.7.0.dist-info/licenses/ | ||
| 10 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock-0.7.0.dist-info/licenses/LICENSE-APACHE | ||
| 11 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock-0.7.0.dist-info/licenses/LICENSE-MIT | ||
| 12 | drwxr-xr-x root/root usr/lib/python3.12/site-packages/adblock/ | ||
| 13 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock/__init__.py | ||
| 14 | drwxr-xr-x root/root usr/lib/python3.12/site-packages/adblock/__pycache__/ | ||
| 15 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock/__pycache__/__init__.cpython-312.opt-1.pyc | ||
| 16 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock/__pycache__/__init__.cpython-312.pyc | ||
| 17 | -rwxr-xr-x root/root usr/lib/python3.12/site-packages/adblock/adblock.abi3.so | ||
| 18 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock/adblock.pyi | ||
| 19 | -rw-r--r-- root/root usr/lib/python3.12/site-packages/adblock/py.typed (EMPTY) | ||
diff --git a/python3-adblock/.md5sum b/python3-adblock/.md5sum new file mode 100644 index 0000000..fa03f67 --- /dev/null +++ b/python3-adblock/.md5sum | |||
| @@ -0,0 +1 @@ | |||
| faa383935183e1808c73213e7f71b3a6 0.7.0.tar.gz | |||
diff --git a/python3-adblock/Pkgfile b/python3-adblock/Pkgfile new file mode 100644 index 0000000..49a12f7 --- /dev/null +++ b/python3-adblock/Pkgfile | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | # Description: Brave's adblock library in Python | ||
| 2 | # URL: https://github.com/arnidagur/python-adblock | ||
| 3 | # Maintainer: Shokara Kou, kou at 13f0 dot net | ||
| 4 | # Depends on: python3-maturin python3-toml | ||
| 5 | |||
| 6 | name=python3-adblock | ||
| 7 | version=0.7.0 | ||
| 8 | release=1 | ||
| 9 | source=(https://git.vineetk.net/vin/python-adblock/archive/0.7.0.tar.gz) | ||
| 10 | |||
| 11 | build() { | ||
| 12 | cd python-adblock | ||
| 13 | |||
| 14 | #maturin build --release --sdist --out dist/ | ||
| 15 | python3 -m build --wheel --skip-dependency-check --no-isolation | ||
| 16 | python3 -m installer --destdir=$PKG dist/*.whl | ||
| 17 | } | ||
