diff options
author | Thiago Perrotta <tbperrotta@gmail.com> | 2021-12-25 18:24:08 -0500 |
---|---|---|
committer | dispatch <dispatch@listserv.local> | 2021-12-25 23:30:06 +0000 |
commit | 1f90edac5012f7cf4bc67c8c8f73ea977ecfe284 (patch) | |
tree | 6d9b4cfbfd2d52a6d84ca7cd281dd71599f89b95 | |
parent | ea6ed32808abfc1809bd9ed0e108e529ed8f5a03 (diff) | |
download | aports-1f90edac5012f7cf4bc67c8c8f73ea977ecfe284.tar.gz aports-1f90edac5012f7cf4bc67c8c8f73ea977ecfe284.tar.bz2 aports-1f90edac5012f7cf4bc67c8c8f73ea977ecfe284.tar.xz |
testing/autotrash: new aportpatches/3843
https://bneijt.nl/pr/autotrash/
Tool to automatically purge old trashed files
Signed-off-by: Thiago Perrotta <tbperrotta@gmail.com>
-rw-r--r-- | testing/autotrash/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/autotrash/APKBUILD b/testing/autotrash/APKBUILD new file mode 100644 index 0000000000..4cf1bb33a8 --- /dev/null +++ b/testing/autotrash/APKBUILD @@ -0,0 +1,23 @@ +# Contributor: Thiago Perrotta <tbperrotta@gmail.com> +# Maintainer: Thiago Perrotta <tbperrotta@gmail.com> +pkgname=autotrash +pkgver=0.4.4 +pkgrel=0 +pkgdesc="Tool to automatically purge old trashed files" +url="https://bneijt.nl/pr/autotrash/" +arch="noarch" +license="GPLv3" +depends="python3 py3-setuptools" +options="!check" # no tests +source="https://files.pythonhosted.org/packages/source/a/autotrash/autotrash-$pkgver.tar.gz" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build +} +sha512sums=" +b39be5a5cf137dde74d104565a536ceb8208d0c900f0b900c94ae7320b5e65b788e90ffbaaa14f90810931997def2aabfe858a8a00e3b7d9252d6738c6036dc3 autotrash-0.4.4.tar.gz +" |