pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/net/erlang-stun erlang-stun: Update to 1.0.43



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c2b9dd22bb1e
branches:  trunk
changeset: 453001:c2b9dd22bb1e
user:      triaxx <triaxx%pkgsrc.org@localhost>
date:      Fri May 21 10:20:52 2021 +0000

description:
erlang-stun: Update to 1.0.43

upstream changes:
-----------------
Version 1.0.43
  o Updating p1_utils to version 1.0.22.
  o Updating fast_tls to version 1.1.12.
  o stun_test: Start up transitive dependencies

Version 1.0.42
  o Updating fast_tls to version 1.1.11.

Version 1.0.41
  o Never accept Teredo/6to4 addresses as TURN peers.
  o Never accept 0.0.0.0/:: addresses as TURN peers.

diffstat:

 net/erlang-stun/Makefile               |   9 +++++----
 net/erlang-stun/distinfo               |  11 ++++++-----
 net/erlang-stun/patches/patch-Makefile |  32 ++++++++++++++++++++++++++++++++
 3 files changed, 43 insertions(+), 9 deletions(-)

diffs (80 lines):

diff -r 5f5d67292cf8 -r c2b9dd22bb1e net/erlang-stun/Makefile
--- a/net/erlang-stun/Makefile  Fri May 21 08:38:09 2021 +0000
+++ b/net/erlang-stun/Makefile  Fri May 21 10:20:52 2021 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2021/01/16 13:00:27 triaxx Exp $
+# $NetBSD: Makefile,v 1.17 2021/05/21 10:20:52 triaxx Exp $
 
-DISTNAME=      stun-1.0.40
+DISTNAME=      stun-1.0.43
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=processone/}
 
@@ -9,12 +9,13 @@
 COMMENT=       STUN and TURN library for Erlang / Elixir
 LICENSE=       apache-2.0
 
-DEPENDS+=      erlang-fast_tls>=1.1.10:../../security/erlang-fast_tls
-DEPENDS+=      erlang-p1_utils>=1.0.21:../../misc/erlang-p1_utils
+DEPENDS+=      erlang-fast_tls>=1.1.12:../../security/erlang-fast_tls
+DEPENDS+=      erlang-p1_utils>=1.0.22:../../misc/erlang-p1_utils
 
 GITHUB_PROJECT=        stun
 
 BUILD_TARGET=  src
+MAKE_ENV+=     REBAR=${REBAR}
 
 # Leave a non-versioned symlink in place for net/erlang-esip to find
 post-install:
diff -r 5f5d67292cf8 -r c2b9dd22bb1e net/erlang-stun/distinfo
--- a/net/erlang-stun/distinfo  Fri May 21 08:38:09 2021 +0000
+++ b/net/erlang-stun/distinfo  Fri May 21 10:20:52 2021 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.15 2021/01/16 13:00:27 triaxx Exp $
+$NetBSD: distinfo,v 1.16 2021/05/21 10:20:52 triaxx Exp $
 
-SHA1 (stun-1.0.40.tar.gz) = 12cb94ff435beb2d16b19d18ea1292fd48a190c7
-RMD160 (stun-1.0.40.tar.gz) = 6d1538b3e6b68bd7c0eda5b575f009a0c40730b5
-SHA512 (stun-1.0.40.tar.gz) = cf3fe1b04588a22ef717210e9be4171061d3bcf20c0226a3bb67662001ced7ee16279597c8bc8cad4365cd7e44a7349cc83462893c08bc50e78d5502a1cc7ebe
-Size (stun-1.0.40.tar.gz) = 39372 bytes
+SHA1 (stun-1.0.43.tar.gz) = 2e0ec202b3aa3b38af1b2b438af5e38b7fd971e7
+RMD160 (stun-1.0.43.tar.gz) = ade9a5ed5fc639df1197c83e7cc5f2ffc91eb96e
+SHA512 (stun-1.0.43.tar.gz) = dbd786f4e2a11a1d941d5db92f9ea3ec726b0cdf100d3e8b7badca2e6ba086680707765412d154b2fe4958d3a695984c5be25a73725ef80643dbe57f981f9a02
+Size (stun-1.0.43.tar.gz) = 39788 bytes
+SHA1 (patch-Makefile) = fad2069c7df3d94a69428104c1a6f50b9b350202
diff -r 5f5d67292cf8 -r c2b9dd22bb1e net/erlang-stun/patches/patch-Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/erlang-stun/patches/patch-Makefile    Fri May 21 10:20:52 2021 +0000
@@ -0,0 +1,32 @@
+$NetBSD: patch-Makefile,v 1.1 2021/05/21 10:20:52 triaxx Exp $
+
+Localize rebar path.
+
+--- Makefile.orig      2021-03-24 20:51:06.000000000 +0000
++++ Makefile
+@@ -1,18 +1,20 @@
++REBAR ?= rebar
++
+ all: deps/% src
+ 
+ deps/%:
+-      rebar get-deps
++      $(REBAR) get-deps
+ 
+ src:
+-      rebar compile
++      $(REBAR) compile
+ 
+ clean:
+-      rebar clean
++      $(REBAR) clean
+ 
+ doc:
+-      rebar skip_deps=true doc
++      $(REBAR) skip_deps=true doc
+ 
+ test: all
+-      rebar -v skip_deps=true eunit
++      $(REBAR) -v skip_deps=true eunit
+ 
+ .PHONY: clean src all doc rebar



Home | Main Index | Thread Index | Old Index