aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2018-05-08 12:31:14 +0200
committerJakub Jirutka <jakub@jirutka.cz>2018-05-08 12:32:36 +0200
commit27d70f14bcec2cdf7c7e29701a9a3a63eb1e53c1 (patch)
tree9f1784a19d2eb7e935a0b0eb0f2344eb1ccbd678 /testing
parent2e1514f9ef2cd19794b22de0acb7420ef9cace59 (diff)
downloadaports-27d70f14bcec2cdf7c7e29701a9a3a63eb1e53c1.tar.bz2
aports-27d70f14bcec2cdf7c7e29701a9a3a63eb1e53c1.tar.xz
Revert "testing/badtouch: new aport"
This reverts commit 464ca29ae8c09d904947d36e46bd5698ea4c9e68. This abuild does not meet Alpine policy for reproducible builds. It does not even use cargo --locked, so it may pick different dependency versions on each build. See comment in cargo abuild.
Diffstat (limited to 'testing')
-rw-r--r--testing/badtouch/APKBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/testing/badtouch/APKBUILD b/testing/badtouch/APKBUILD
deleted file mode 100644
index e611b5fab2..0000000000
--- a/testing/badtouch/APKBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# Contributor: kpcyrd <git@rxv.cc>
-# Maintainer: kpcyrd <git@rxv.cc>
-pkgname=badtouch
-pkgver=0.5.1
-pkgrel=0
-pkgdesc="Scriptable network authentication cracker"
-url="https://github.com/kpcyrd/badtouch"
-arch="x86_64" # limited by cargo
-license="GPL-3.0"
-depends="ca-certificates"
-makedepends="cargo libcap libressl-dev"
-subpackages="$pkgname-doc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/kpcyrd/$pkgname/archive/v$pkgver.tar.gz"
-
-build() {
- cd "$builddir"
- cargo build --release --verbose
-}
-
-check() {
- cd "$builddir"
- cargo test --release --verbose
-}
-
-package() {
- cd "$builddir"
- install -Dm755 target/release/badtouch "$pkgdir/usr/bin/badtouch"
- setcap cap_sys_resource=+ep "$pkgdir/usr/bin/badtouch"
-
- install -Dm644 docs/badtouch.1 "$pkgdir/usr/share/man/man1/badtouch.1"
- install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-sha512sums="743be329260cefa251f32002a1015b10b9815a3ee91e3baad0b94f948f8b528ca3c564b7f48b0b6088dbbea9c7e0e595541031e2a774381b1dbdab6c5e149d17 badtouch-0.5.1.tar.gz"