From 93232f818b68f29e00bc18f0fd091dadd9039bb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Wed, 28 Sep 2016 18:06:30 +0200 Subject: [PATCH] udpxy: update to latest version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also switches git to https Signed-off-by: Álvaro Fernández Rojas --- net/udpxy/Makefile | 8 ++--- .../patches/0001-fix-build-on-Mac-OS-X.patch | 30 ------------------- 2 files changed, 4 insertions(+), 34 deletions(-) delete mode 100644 net/udpxy/patches/0001-fix-build-on-Mac-OS-X.patch diff --git a/net/udpxy/Makefile b/net/udpxy/Makefile index 7d94a99f3..6bb57480b 100644 --- a/net/udpxy/Makefile +++ b/net/udpxy/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=udpxy -PKG_SOURCE_VERSION:=c045a1e855a8033c5d70ab3e42271ba5636eb520 -PKG_VERSION:=2015-03-08-$(PKG_SOURCE_VERSION) +PKG_SOURCE_VERSION:=53e4672a7522311c40e9f6110ff256041c52c8b4 +PKG_VERSION:=2016-09-18-$(PKG_SOURCE_VERSION) PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git -PKG_SOURCE_URL:=git://github.com/pcherenkov/udpxy.git +PKG_SOURCE_URL:=https://github.com/pcherenkov/udpxy.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_MAINTAINER:=Álvaro Fernández Rojas diff --git a/net/udpxy/patches/0001-fix-build-on-Mac-OS-X.patch b/net/udpxy/patches/0001-fix-build-on-Mac-OS-X.patch deleted file mode 100644 index 24f62e7e9..000000000 --- a/net/udpxy/patches/0001-fix-build-on-Mac-OS-X.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 26f8177f799f3cf781ed89cb28f771da7ef22421 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= -Date: Thu, 5 Mar 2015 13:42:09 +0100 -Subject: [PATCH] fix build on Mac OS X -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Signed-off-by: Álvaro Fernández Rojas ---- - chipmunk/Makefile | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - ---- a/chipmunk/Makefile -+++ b/chipmunk/Makefile -@@ -32,10 +32,13 @@ DEBUG_ON := -g - ALL_CFLAGS = -W -Wall -Werror --pedantic $(CFLAGS) - - SYSTEM=$(shell uname 2>/dev/null) --ifneq (,$(filter $(SYSTEM),FreeBSD Darwin)) -+ifneq (,$(filter $(SYSTEM),FreeBSD)) - MAKE := gmake - GZIP := /usr/bin/gzip - endif -+ifneq (,$(filter $(SYSTEM),Darwin)) -+GZIP := /usr/bin/gzip -+endif - - BUILDFILE = BUILD - BUILDNO := `cat $(BUILDFILE)`