summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Sun2019-12-01 08:18:47 -0500
committerAndrew Sun2019-12-01 08:18:47 -0500
commit14a68e712f4498bb8bd72d2bd6961cabf8f1aae7 (patch)
tree115e8a3e5e4c3acf82da2d769cbbeba8a76a56cc
parentba79ff1c9a85cd3115f59b0a21400f5bec3fe827 (diff)
downloadaur-14a68e712f4498bb8bd72d2bd6961cabf8f1aae7.tar.gz
baresip: update to 0.6.5
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD10
-rw-r--r--baresip-flags.patch23
3 files changed, 18 insertions, 23 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3b2fcaabce21..6173983e9632 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = baresip
pkgdesc = portable and modular SIP User-Agent with audio and video support
- pkgver = 0.6.4
+ pkgver = 0.6.5
pkgrel = 1
url = http://www.creytiv.com/baresip.html
arch = i686
@@ -45,10 +45,10 @@ pkgbase = baresip
optdepends = spandsp: (g722, g726,plc modules)
optdepends = speexdsp: (speex_aec, speex_pp modules)
optdepends = v4l-utils: (v4l2 module)
- source = http://creytiv.com/pub/baresip-0.6.4.tar.gz
+ source = http://creytiv.com/pub/baresip-0.6.5.tar.gz
source = baresip-flags.patch
- sha256sums = 61710bd1bec406ae1faf167c5743bad8eef9ced5152a3943b94d7e1cf9597581
- sha256sums = 87562245c11d6599fc7821803ab313181106399102e00fb9ed79db693cbef18f
+ sha256sums = 2b035bd8b2121c72bec674768579a3bdcc5d1d567ecb0a84125864d69807b18d
+ sha256sums = 8344c52dd4b1efe5ed05c42456d1366074b76159a999a525ea6b914ace32ebba
pkgname = baresip
diff --git a/PKGBUILD b/PKGBUILD
index ba6934f661f3..713fcce5bf7a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,8 @@
-# Maintainer: Andrew Sun <adsun701@gmail.com>
-# Contributor: Dmitrij D. Czarkoff <czarkoff@gmail.com>
+# Maintainer: Andrew Sun <adsun701 at gmail dot com>
+# Contributor: Dmitrij D. Czarkoff <czarkoff at gmail dot com>
pkgname=baresip
-pkgver=0.6.4
+pkgver=0.6.5
pkgrel=1
pkgdesc="portable and modular SIP User-Agent with audio and video support"
arch=('i686' 'x86_64' 'armv6h')
@@ -31,8 +31,8 @@ optdepends=('alsa-lib: (alsa module)'
makedepends=(${optdepends[@]/%:*/})
source=("http://creytiv.com/pub/$pkgname-$pkgver.tar.gz"
"baresip-flags.patch")
-sha256sums=('61710bd1bec406ae1faf167c5743bad8eef9ced5152a3943b94d7e1cf9597581'
- '87562245c11d6599fc7821803ab313181106399102e00fb9ed79db693cbef18f')
+sha256sums=('2b035bd8b2121c72bec674768579a3bdcc5d1d567ecb0a84125864d69807b18d'
+ '8344c52dd4b1efe5ed05c42456d1366074b76159a999a525ea6b914ace32ebba')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/baresip-flags.patch b/baresip-flags.patch
index 1961b5301d8a..983c296c3ab0 100644
--- a/baresip-flags.patch
+++ b/baresip-flags.patch
@@ -1,7 +1,6 @@
-diff -Naur baresip-0.6.4.orig/Makefile baresip-0.6.4/Makefile
---- baresip-0.6.4.orig/Makefile 2019-09-01 07:06:16.102425225 -0400
-+++ baresip-0.6.4/Makefile 2019-09-01 07:09:02.859444292 -0400
-@@ -170,7 +170,7 @@
+--- a/Makefile 2019-12-01 08:11:12.544634301 -0500
++++ b/Makefile 2019-12-01 08:15:27.660902785 -0500
+@@ -192,7 +192,7 @@
$(SHARED): $(LIB_OBJS)
@echo " LD $@"
@@ -10,19 +9,16 @@ diff -Naur baresip-0.6.4.orig/Makefile baresip-0.6.4/Makefile
$(STATICLIB): $(LIB_OBJS)
@echo " AR $@"
-@@ -197,9 +197,9 @@
+@@ -217,7 +217,7 @@
+
$(BIN): $(APP_OBJS)
@echo " LD $@"
- ifneq ($(GPROF),)
-- $(HIDE)$(LD) $(LFLAGS) $(APP_LFLAGS) $^ ../re/libre.a $(LIBS) -o $@
-+ $(HIDE)$(LD) $(LDFLAGS) $(LFLAGS) $(APP_LFLAGS) $^ ../re/libre.a $(LIBS) -o $@
- else
- $(HIDE)$(LD) $(LFLAGS) $(APP_LFLAGS) $^ \
+ $(HIDE)$(LD) $(LDFLAGS) $(LFLAGS) $(APP_LFLAGS) $^ \
-L$(LIBRE_SO) -lre $(LIBS) -o $@
- endif
-@@ -210,7 +210,7 @@
+
+@@ -227,7 +227,7 @@
$(TEST_BIN): $(STATICLIB) $(TEST_OBJS)
@echo " LD $@"
@@ -31,9 +27,8 @@ diff -Naur baresip-0.6.4.orig/Makefile baresip-0.6.4/Makefile
-L$(LIBRE_SO) -L. \
-l$(PROJECT) -lre $(LIBS) $(TEST_LIBS) -o $@
-diff -Naur baresip-0.6.4.orig/mk/mod.mk baresip-0.6.4/mk/mod.mk
---- baresip-0.6.4.orig/mk/mod.mk 2019-09-01 07:06:16.105758563 -0400
-+++ baresip-0.6.4/mk/mod.mk 2019-09-01 07:10:26.363036053 -0400
+--- a/mk/mod.mk 2019-12-01 08:11:12.547967675 -0500
++++ b/mk/mod.mk 2019-12-01 08:12:51.572484780 -0500
@@ -33,7 +33,7 @@
$(MOD)$(MOD_SUFFIX): $($(MOD)_OBJS)