pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

kamailo: wip upgrade to 5.3.2



Module Name:	pkgsrc-wip
Committed By:	Greg Troxel <gdt%lexort.com@localhost>
Pushed By:	gdt
Date:		Mon Mar 9 13:35:09 2020 -0400
Changeset:	cf756c60c20f5572ea63d837b18c136a07956d31

Modified Files:
	kamailio/Makefile
	kamailio/distinfo
Removed Files:
	kamailio/patches/patch-utils_kamctl_kamdbctl

Log Message:
kamailo: wip upgrade to 5.3.2

(This has issues, but it's progress.)

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=cf756c60c20f5572ea63d837b18c136a07956d31

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 kamailio/Makefile                            |  2 +-
 kamailio/distinfo                            |  9 +++--
 kamailio/patches/patch-utils_kamctl_kamdbctl | 52 ----------------------------
 3 files changed, 5 insertions(+), 58 deletions(-)

diffs:
diff --git a/kamailio/Makefile b/kamailio/Makefile
index 6fe53273a0..7b6186d169 100644
--- a/kamailio/Makefile
+++ b/kamailio/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-VERSION=	5.3.1
+VERSION=	5.3.2
 DISTNAME=	kamailio-${VERSION}_src
 PKGNAME=	kamailio-${VERSION}
 CATEGORIES=	comms
diff --git a/kamailio/distinfo b/kamailio/distinfo
index f5be4a2418..70cb307b03 100644
--- a/kamailio/distinfo
+++ b/kamailio/distinfo
@@ -1,9 +1,8 @@
 $NetBSD$
 
-SHA1 (kamailio-5.3.1_src.tar.gz) = 04e4f1dc636b1154b58515b05bb0162d163a8830
-RMD160 (kamailio-5.3.1_src.tar.gz) = 514f7b5e9416d39418f31912b04a28a08de99159
-SHA512 (kamailio-5.3.1_src.tar.gz) = ed9e8babfa3122eafa246012e4e7a31a0ee9f2393cc06c731d29dd9bde664a5f24c41a88cd28a65da5b3fe88eb6efc0a2443a5794d0ea41d321959d9380931f1
-Size (kamailio-5.3.1_src.tar.gz) = 12434594 bytes
+SHA1 (kamailio-5.3.2_src.tar.gz) = e1d6c7e7e628906534383147716001042af3677e
+RMD160 (kamailio-5.3.2_src.tar.gz) = a2119e9116feb9ed77e3bdb50f61fd9ffe6b8759
+SHA512 (kamailio-5.3.2_src.tar.gz) = 60ac9d8a3a652f6f433e88ae41c5018608917a716826044bec90c9622a77a35c88e50c781341b1a7377211660c53bf6cf8f46ceb9ee69b993f9cc24b4892a5dc
+Size (kamailio-5.3.2_src.tar.gz) = 12448971 bytes
 SHA1 (patch-src_Makefile.defs) = 8446fc371d34888cc0347c79e19c9bc52cdd7779
 SHA1 (patch-src_lib_srdb1_db__ut.c) = ecdc2d3185e9497127a4662794a8ec779cb20165
-SHA1 (patch-utils_kamctl_kamdbctl) = 1c6289cb569de45dea6a71ad6f23de32757902d8
diff --git a/kamailio/patches/patch-utils_kamctl_kamdbctl b/kamailio/patches/patch-utils_kamctl_kamdbctl
deleted file mode 100644
index 0b125944e0..0000000000
--- a/kamailio/patches/patch-utils_kamctl_kamdbctl
+++ /dev/null
@@ -1,52 +0,0 @@
-$NetBSD$
-
-Remediate bashisms.
-Fixed upstream via https://github.com/kamailio/kamailio/issues/2157
-
---- utils/kamctl/kamdbctl.orig	2019-11-14 11:38:12.000000000 +0000
-+++ utils/kamctl/kamdbctl
-@@ -153,7 +153,7 @@ kamailio_dump()  # pars: <database name>
- 		merr "kamailio_dump function takes two param"
- 		exit 1
- 	fi
--	if [ "$USED_DBENGINE" == "oracle" ]; then
-+	if [ "$USED_DBENGINE" = "oracle" ]; then
- 		oracle_dump $1 $2
- 	elif [ "$PW" = "" ] ; then
- 		$DUMP_CMD $1 > $2
-@@ -174,7 +174,7 @@ kamailio_restore() #pars: <database name
- 		merr "kamailio_restore function takes two params"
- 		exit 1
- 	fi
--	if [ "$USED_DBENGINE" == "oracle" ]; then
-+	if [ "$USED_DBENGINE" = "oracle" ]; then
- 		oracle_restore $1 $2
- 	else
- 		sql_query $1 < $2
-@@ -290,7 +290,7 @@ kamailio_pframework() #pars: <action>
- case $1 in
- 	copy)
- 		# copy database to some other name
--		if [ "$USED_DBENGINE" == "berkeley" -o "$USED_DBENGINE" == "dbtext" ] ; then
-+		if [ "$USED_DBENGINE" = "berkeley" -o "$USED_DBENGINE" == "dbtext" ] ; then
- 			merr "$USED_DBENGINE don't support this operation"
- 			exit 1
- 		fi
-@@ -323,7 +323,7 @@ case $1 in
- 		exit $ret
- 		;;
- 	backup)
--		if [ "$USED_DBENGINE" == "berkeley" -o "$USED_DBENGINE" == "dbtext" ] ; then
-+		if [ "$USED_DBENGINE" = "berkeley" -o "$USED_DBENGINE" == "dbtext" ] ; then
- 			merr "$USED_DBENGINE don't support this operation"
- 			exit 1
- 		fi
-@@ -337,7 +337,7 @@ case $1 in
- 		exit $?
- 		;;
- 	restore)
--		if [ "$USED_DBENGINE" == "berkeley" -o "$USED_DBENGINE" == "dbtext" ] ; then
-+		if [ "$USED_DBENGINE" = "berkeley" -o "$USED_DBENGINE" == "dbtext" ] ; then
- 			merr "$USED_DBENGINE don't support this operation"
- 			exit 1
- 		fi


Home | Main Index | Thread Index | Old Index