From 9fa68a84a62bc651a6cee89814b94475e8bc2a67 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 8 Oct 2014 09:41:19 +0000 Subject: main/dhcpcd-ui: upgrade to 0.7.3 --- main/dhcpcd-ui/APKBUILD | 12 +++------ main/dhcpcd-ui/strverscmp.patch | 56 ----------------------------------------- 2 files changed, 4 insertions(+), 64 deletions(-) delete mode 100644 main/dhcpcd-ui/strverscmp.patch diff --git a/main/dhcpcd-ui/APKBUILD b/main/dhcpcd-ui/APKBUILD index 08199c80c..0c49903ce 100644 --- a/main/dhcpcd-ui/APKBUILD +++ b/main/dhcpcd-ui/APKBUILD @@ -1,6 +1,6 @@ # Maintainer: Natanael Copa pkgname=dhcpcd-ui -pkgver=0.7.1 +pkgver=0.7.3 pkgrel=0 pkgdesc="A GTK+ monitor and configuration GUI for dhcpcd" url="http://roy.marples.name/projects/dhcpcd-ui" @@ -11,7 +11,6 @@ makedepends="glib-dev gtk+-dev dbus-dev libnotify-dev pkgconfig" install= subpackages="$pkgname-doc" source="http://roy.marples.name/downloads/dhcpcd/$pkgname-$pkgver.tar.bz2 - strverscmp.patch " _builddir="$srcdir"/dhcpcd-ui-$pkgver @@ -39,9 +38,6 @@ package() { make DESTDIR="$pkgdir" AUTOSTARTDIR=/etc/xdg/autostart install } -md5sums="6182f24077be3b5fec30caa812f457cb dhcpcd-ui-0.7.1.tar.bz2 -143644499e5b4d0681e1e45f8b9689ef strverscmp.patch" -sha256sums="cc15a073c1678a28c2cb95848e333dfb94edb864e4937ea989682ae085a1a8c8 dhcpcd-ui-0.7.1.tar.bz2 -76420de0f9d306c1ae07bfd7534a0af0fc19bbd6582b9790271af91680574e52 strverscmp.patch" -sha512sums="ffe5efeb00639961e4f5e964c4634a97cbb53a8c40f240e22098526772f1ddb19b4a487bc7ff7f3f9fb8f5edb66b00efc8d6c6ffe01973384e5e0515e5076f7b dhcpcd-ui-0.7.1.tar.bz2 -52538f697c227dbbd9f706fe0b09e3a6e716b1396065031e453b03c9add5bc03a19e48bacc5684d5db7d133734a51323f11306164f2061423fa66880e64e6520 strverscmp.patch" +md5sums="6cd085cdf7f9c2bd9b98029edc1d712c dhcpcd-ui-0.7.3.tar.bz2" +sha256sums="fd69dfe988c7ab9222c40e24857d0be7a4265ef8c403dbbb8aeb310b3c71b0b2 dhcpcd-ui-0.7.3.tar.bz2" +sha512sums="4fe39466ce222bd04726a3b9cc20259e24977848a0ca1448940bcf492c474d8243e5686b56ad311d2c37309573f19a6cd0539025113de6ed457b5a627a402426 dhcpcd-ui-0.7.3.tar.bz2" diff --git a/main/dhcpcd-ui/strverscmp.patch b/main/dhcpcd-ui/strverscmp.patch deleted file mode 100644 index 0542a0570..000000000 --- a/main/dhcpcd-ui/strverscmp.patch +++ /dev/null @@ -1,56 +0,0 @@ -Index: configure -================================================================== ---- a/configure -+++ b/configure -@@ -296,10 +296,32 @@ - if [ "$STRLCPY" = no ]; then - echo "#define strlcpy(dst, src, n) " \ - "((size_t)snprintf(dst, n, \"%s\", src))" \ - >>$CONFIG_H - fi -+ -+if [ -z "$STRVERSCMP" ]; then -+ printf "Testing for strverscmp ... " -+ cat <_strverscmp.c -+#define _GNU_SOURCE -+#include -+int main(void) { -+ strverscmp(NULL, NULL); -+ return 0; -+} -+EOF -+ if $XCC _strverscmp.c -o _strverscmp 2>/dev/null; then -+ STRVERSCMP=yes -+ else -+ STRVERSCMP=no -+ fi -+ echo "$STRVERSCMP" -+ rm -f _strverscmp.c _strverscmp -+fi -+if [ "$STRVERSCMP" = yes ]; then -+ echo "#define HAVE_STRVERSCMP" >>$CONFIG_H -+fi - - if [ -z "$LIBDIR" ]; then - printf "lib directory name ... " - case `readlink /lib` in - "") LIBNAME="lib";; - -Index: src/libdhcpcd/dhcpcd.c -================================================================== ---- a/src/libdhcpcd/dhcpcd.c -+++ b/src/libdhcpcd/dhcpcd.c -@@ -607,11 +607,11 @@ - - assert(con); - return con->progname; - } - --#ifndef __GLIBC__ -+#ifndef HAVE_STRVERSCMP - /* Good enough for our needs */ - static int - strverscmp(const char *s1, const char *s2) - { - int s1maj, s1min, s1part; - -- cgit v1.2.3