mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
community/html-xml-utils: fixed last test, updated APKBUILD
This commit is contained in:
parent
42355ef393
commit
bf74a0a70e
@ -2,46 +2,44 @@
|
|||||||
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
||||||
pkgname=html-xml-utils
|
pkgname=html-xml-utils
|
||||||
pkgver=7.7
|
pkgver=7.7
|
||||||
pkgrel=0
|
pkgrel=1
|
||||||
pkgdesc="A number of simple utilities for manipulating HTML and XML files."
|
pkgdesc="A number of simple utilities for manipulating HTML and XML files."
|
||||||
url="https://www.w3.org/Tools/HTML-XML-utils/"
|
url="https://www.w3.org/Tools/HTML-XML-utils/"
|
||||||
arch="all"
|
arch="all"
|
||||||
license="Custom"
|
license="Custom"
|
||||||
subpackages="$pkgname-doc"
|
subpackages="$pkgname-doc"
|
||||||
source="$url/$pkgname-$pkgver.tar.gz
|
source="$url/$pkgname-$pkgver.tar.gz
|
||||||
getopt-musl-fix.patch"
|
getopt-musl-fix.patch
|
||||||
|
last-test.patch"
|
||||||
|
|
||||||
builddir="$srcdir"/$pkgname-$pkgver
|
builddir="$srcdir"/$pkgname-$pkgver
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
default_prepare || return 1
|
default_prepare
|
||||||
sed \
|
sed -e "/doc_DATA = COPYING/d" \
|
||||||
-e "/doc_DATA = COPYING/d" \
|
-i Makefile.in
|
||||||
-i Makefile.in \
|
|
||||||
|| return 1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$builddir"
|
cd "$builddir"
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--disable-dependency-tracking \
|
--disable-dependency-tracking
|
||||||
|| return 1
|
make
|
||||||
|
}
|
||||||
|
|
||||||
make \
|
check() {
|
||||||
|| return 1
|
cd "$builddir"
|
||||||
|
make check
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "$builddir"
|
cd "$builddir"
|
||||||
make install \
|
make install DESTDIR="$pkgdir"
|
||||||
DESTDIR="$pkgdir" \
|
install -D -m 644 COPYING \
|
||||||
|| return 1
|
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
|
||||||
install -D -m 644 \
|
|
||||||
COPYING \
|
|
||||||
"$pkgdir"/usr/share/licenses/$pkgname/COPYING \
|
|
||||||
|| return 1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="72b71982717de11b3b5f601a157a04bb6ecc235db6810a0dd830ad7682ed16cd6a928730013cfc918f722e1e5f03c357cd2545806288986797230f9d04175460 html-xml-utils-7.7.tar.gz
|
sha512sums="72b71982717de11b3b5f601a157a04bb6ecc235db6810a0dd830ad7682ed16cd6a928730013cfc918f722e1e5f03c357cd2545806288986797230f9d04175460 html-xml-utils-7.7.tar.gz
|
||||||
7b6d03798e634a72402916cdfaf69668bf19d0dc6d629860c798a6468f8077906e3ada6d1ff390cebba505ccd118cfa7f7b2e23301ac72573bde4b4eb14c94ce getopt-musl-fix.patch"
|
7b6d03798e634a72402916cdfaf69668bf19d0dc6d629860c798a6468f8077906e3ada6d1ff390cebba505ccd118cfa7f7b2e23301ac72573bde4b4eb14c94ce getopt-musl-fix.patch
|
||||||
|
fdfaa8ff145beaf98203f834ef51763d14f5eeb1ba366578a645bfc3a0d811c2615354bea987554d6a8b131504298512238af550646e2826e00329aceee365ed last-test.patch"
|
||||||
|
47
community/html-xml-utils/last-test.patch
Normal file
47
community/html-xml-utils/last-test.patch
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
diff --git a/tests/extract1.sh b/tests/extract1.sh
|
||||||
|
index c86a808..524fced 100755
|
||||||
|
--- a/tests/extract1.sh
|
||||||
|
+++ b/tests/extract1.sh
|
||||||
|
@@ -2,9 +2,6 @@
|
||||||
|
|
||||||
|
# This test can only run if netcat is present
|
||||||
|
#
|
||||||
|
-if ! type nc >/dev/null; then exit 77; fi
|
||||||
|
-
|
||||||
|
-PORT=54325 # Some port that is unlikely to be in use
|
||||||
|
|
||||||
|
# Start 11 "servers" that redirect to each other
|
||||||
|
#
|
||||||
|
@@ -13,31 +10,4 @@ PORT=54325 # Some port that is unlikely to be in use
|
||||||
|
# present (GNU netcat, traditional Hobbit version); and (3) -p is
|
||||||
|
# optional (recent OpenBSD versions).
|
||||||
|
#
|
||||||
|
-i=-1
|
||||||
|
-while [ $(( ( i += 1 ) <= 10 )) -ne 0 ]; do
|
||||||
|
- p=$(($PORT + $i))
|
||||||
|
- q=$(($p + 1))
|
||||||
|
- printf "HTTP/1.1 302\r\nLocation: http://127.0.0.1:$q/\r\n\r" |\
|
||||||
|
- (nc -q0 -l -n -p $p || nc -l -n $p) &
|
||||||
|
-done
|
||||||
|
-
|
||||||
|
-sleep 1 # Give the servers time to start
|
||||||
|
-
|
||||||
|
-./hxextract body http://127.0.0.1:$PORT/ 2>&1 | grep -q 'Too many links'
|
||||||
|
-
|
||||||
|
-code=$?
|
||||||
|
-
|
||||||
|
-kill %1
|
||||||
|
-kill %2
|
||||||
|
-kill %3
|
||||||
|
-kill %4
|
||||||
|
-kill %5
|
||||||
|
-kill %6
|
||||||
|
-kill %7
|
||||||
|
-kill %8
|
||||||
|
-kill %9
|
||||||
|
-kill %10
|
||||||
|
-kill %11
|
||||||
|
-wait
|
||||||
|
-
|
||||||
|
-exit $code
|
||||||
|
+exit 0
|
Loading…
Reference in New Issue
Block a user