summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2011-06-27 08:53:56 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2011-06-27 08:53:56 +0000
commitf97cb36839b3e6371398ba05e82b7316cf08dc3b (patch)
treea3bef96055ae82a2ff1afc0fc2e9ab1186c4be9e /testing
parentc3d7e3e5fd98197d4e6ffbbb61584bbb4d862ca4 (diff)
downloadaports-f97cb36839b3e6371398ba05e82b7316cf08dc3b.tar.bz2
aports-f97cb36839b3e6371398ba05e82b7316cf08dc3b.tar.xz
Revert "Initial APKBUILD of halberd"
Was applied byu mistake. This reverts commit e53dcf299eac58ec0970388ac9f5dbb47117f356.
Diffstat (limited to 'testing')
-rw-r--r--testing/halberd/APKBUILD42
1 files changed, 0 insertions, 42 deletions
diff --git a/testing/halberd/APKBUILD b/testing/halberd/APKBUILD
deleted file mode 100644
index bc6268434..000000000
--- a/testing/halberd/APKBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
-# Maintainer:
-pkgname=halberd
-pkgver=0.2.4
-pkgrel=0
-pkgdesc="Tool to discover HTTP load balancers"
-url="http://halberd.superadditive.com"
-arch="noarch"
-license="GPL2+"
-depends="python"
-makedepends="python-dev "
-install=""
-subpackages="$pkgname-doc"
-source="http://$pkgname.superadditive.com/dist/$pkgname-$pkgver.tar.gz
- $pkgname-sslwrap.patch"
-
-_builddir="$srcdir"/$pkgname-$pkgver
-
-prepare() {
- cd "$_builddir"
- patch -p1 -i "$srcdir"/$pkgname-sslwrap.patch || return 1
-}
-
-build() {
- cd "$_builddir"
- python setup.py build || return 1
-}
-
-package() {
- cd "$_builddir"
- python setup.py bdist_dumb --keep-temp --bdist-dir "$pkgdir" || return 1
-}
-
-doc() {
- # The man page is not picked-up automatically
- mkdir -p "$subpkgdir"/usr/share/man || return 1
- mv "$_builddir"/man/man* "$subpkgdir"/usr/share/man/ || return 1
-}
-
-
-md5sums="d60d0fba8f379ea72c623ad1dd6052c3 halberd-0.2.4.tar.gz
-1fe48ed2a0ef58e8a387ab23368d637c halberd-sslwrap.patch"