summaryrefslogtreecommitdiff
path: root/devel/libebml
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2016-07-03 11:05:43 +0000
committerwiz <wiz@pkgsrc.org>2016-07-03 11:05:43 +0000
commit3787d5aead8970226a550545444d5d312ed42e07 (patch)
tree0a34424b82e27105553e98a9389ef692b14786b7 /devel/libebml
parent2cebe1493ada4bf0f187b91507ec4b9203ee8233 (diff)
downloadpkgsrc-3787d5aead8970226a550545444d5d312ed42e07.tar.gz
Updated libebml to 1.3.4.
2016-07-02 Moritz Bunkus <moritz@bunkus.org> * Released v1.3.4. 2015-11-21 Moritz Bunkus <moritz@bunkus.org> * EbmlVersion.cpp: in order to enable deterministic builds the EbmlCodeDate variable has been set to "Unknown" instead of the date and time of compilation. Patch by Ed Schouten <ed@nuxi.nl>. 2015-11-18 Moritz Bunkus <moritz@bunkus.org> * libebml_t.h: use C99-style integer typedefs instead of BSD-style ones. Patch by Ed Schouten <ed@nuxi.nl>. 2015-10-24 Moritz Bunkus <moritz@bunkus.org> * EbmlBinary.h: add #include <cstdlib> for compilation with clang and libc++. Patch by Thomas Klausner <wiz@NetBSD.org>.
Diffstat (limited to 'devel/libebml')
-rw-r--r--devel/libebml/Makefile4
-rw-r--r--devel/libebml/distinfo11
-rw-r--r--devel/libebml/patches/patch-ebml_EbmlBinary.h17
3 files changed, 7 insertions, 25 deletions
diff --git a/devel/libebml/Makefile b/devel/libebml/Makefile
index de78dda6352..638c55af484 100644
--- a/devel/libebml/Makefile
+++ b/devel/libebml/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.39 2015/10/25 09:44:09 wiz Exp $
+# $NetBSD: Makefile,v 1.40 2016/07/03 11:05:43 wiz Exp $
-DISTNAME= libebml-1.3.3
+DISTNAME= libebml-1.3.4
CATEGORIES= devel
MASTER_SITES= http://dl.matroska.org/downloads/libebml/
EXTRACT_SUFX= .tar.bz2
diff --git a/devel/libebml/distinfo b/devel/libebml/distinfo
index 0f98f78bc60..6caef281ea9 100644
--- a/devel/libebml/distinfo
+++ b/devel/libebml/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.28 2015/11/04 17:41:16 agc Exp $
+$NetBSD: distinfo,v 1.29 2016/07/03 11:05:43 wiz Exp $
-SHA1 (libebml-1.3.3.tar.bz2) = 9fa8c5a08d8e9069638a9b04751efa3f57b14a2f
-RMD160 (libebml-1.3.3.tar.bz2) = 8632f60f99c45d3c6b0c23270e63bec11b47029c
-SHA512 (libebml-1.3.3.tar.bz2) = 3ae048b468272e5ff1dc813121c1addcbbe324cd466e4b43ccce5aca148095190c10196433db951529ff62c587cc2b9a3c0c713db7921825221babaf7d4e824d
-Size (libebml-1.3.3.tar.bz2) = 588607 bytes
-SHA1 (patch-ebml_EbmlBinary.h) = e432c97216375042ec3fae53aafd0c00a8373bd1
+SHA1 (libebml-1.3.4.tar.bz2) = 27a505f7bcece68f57daa2704ebdacbddfa188b3
+RMD160 (libebml-1.3.4.tar.bz2) = cc534cdfc947f74d3568880bbf6520901b66cdf6
+SHA512 (libebml-1.3.4.tar.bz2) = ebf5b71afe725e40ee6415463e51ca14810eecc2fef186caacd0269077f5febeb62623fd48674b21ea732f43a620d0c91603fa48d3f8d163284d1cf204642194
+Size (libebml-1.3.4.tar.bz2) = 606205 bytes
diff --git a/devel/libebml/patches/patch-ebml_EbmlBinary.h b/devel/libebml/patches/patch-ebml_EbmlBinary.h
deleted file mode 100644
index f5806b599e9..00000000000
--- a/devel/libebml/patches/patch-ebml_EbmlBinary.h
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ebml_EbmlBinary.h,v 1.2 2015/10/25 09:47:34 wiz Exp $
-
-Add cstdlib for free/malloc.
-Needed when compiling with clang/libc++.
-
-https://github.com/Matroska-Org/libebml/pull/13
-
---- ebml/EbmlBinary.h.orig 2013-04-28 06:51:13.000000000 +0000
-+++ ebml/EbmlBinary.h
-@@ -37,6 +37,7 @@
- #ifndef LIBEBML_BINARY_H
- #define LIBEBML_BINARY_H
-
-+#include <cstdlib>
- #include <cstring>
-
- #include "EbmlTypes.h"