pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/multimedia/libbdplus Changes 0.1.2:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/177eb93bf728
branches:  trunk
changeset: 645647:177eb93bf728
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Jan 31 21:48:02 2015 +0000

description:
Changes 0.1.2:
- Add support for unmounted discs
- Fix use after free

diffstat:

 multimedia/libbdplus/Makefile                                    |  14 ++++----
 multimedia/libbdplus/distinfo                                    |  12 +++---
 multimedia/libbdplus/patches/patch-src_file_file__default.c      |  17 ++++++++++
 multimedia/libbdplus/patches/patch-src_libbdplus_bdsvm_segment.c |   6 +-
 multimedia/libbdplus/patches/patch-src_libbdplus_bdsvm_trap.c    |  17 ----------
 5 files changed, 33 insertions(+), 33 deletions(-)

diffs (106 lines):

diff -r 06d59a5f7e05 -r 177eb93bf728 multimedia/libbdplus/Makefile
--- a/multimedia/libbdplus/Makefile     Sat Jan 31 21:46:48 2015 +0000
+++ b/multimedia/libbdplus/Makefile     Sat Jan 31 21:48:02 2015 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.1 2014/01/08 23:07:09 wiz Exp $
+# $NetBSD: Makefile,v 1.2 2015/01/31 21:48:02 adam Exp $
 
-DISTNAME=      libbdplus-0.1.0
+DISTNAME=      libbdplus-0.1.2
 CATEGORIES=    multimedia
-MASTER_SITES=  ftp://ftp.videolan.org/pub/videolan/libbdplus/0.1.0/
+MASTER_SITES=  http://download.videolan.org/pub/videolan/libbdplus/${PKGVERSION_NOREV}/
 EXTRACT_SUFX=  .tar.bz2
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -10,10 +10,10 @@
 COMMENT=       Research project to implement the BD+ System Specifications
 LICENSE=       gnu-lgpl-v2.1
 
-GNU_CONFIGURE= yes
-USE_LIBTOOL=   yes
-USE_TOOLS+=    pkg-config
-
+USE_LIBTOOL=           yes
+USE_TOOLS+=            pkg-config
+GNU_CONFIGURE=         yes
+CONFIGURE_ARGS+=       --disable-optimizations
 PKGCONFIG_OVERRIDE+=   src/libbdplus.pc.in
 
 .include "../../multimedia/libaacs/buildlink3.mk"
diff -r 06d59a5f7e05 -r 177eb93bf728 multimedia/libbdplus/distinfo
--- a/multimedia/libbdplus/distinfo     Sat Jan 31 21:46:48 2015 +0000
+++ b/multimedia/libbdplus/distinfo     Sat Jan 31 21:48:02 2015 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.2 2014/01/09 10:25:14 wiz Exp $
+$NetBSD: distinfo,v 1.3 2015/01/31 21:48:02 adam Exp $
 
-SHA1 (libbdplus-0.1.0.tar.bz2) = 67069a4d70e6c06bda560c2d2b623574880394ab
-RMD160 (libbdplus-0.1.0.tar.bz2) = cc73bf0d4b40925e3f823c7c49cc278118fb689c
-Size (libbdplus-0.1.0.tar.bz2) = 317810 bytes
-SHA1 (patch-src_libbdplus_bdsvm_segment.c) = be1b312a23868fe728c01dc565751a66b14ce782
-SHA1 (patch-src_libbdplus_bdsvm_trap.c) = 3b2f56c1998a40be58904cc61218c1112980e567
+SHA1 (libbdplus-0.1.2.tar.bz2) = 2d696eca08f450427d6dc65b604b1ad1c13478bd
+RMD160 (libbdplus-0.1.2.tar.bz2) = 3d2529b576b27f6c41bedb4fc2febca4b9a50e38
+Size (libbdplus-0.1.2.tar.bz2) = 319828 bytes
+SHA1 (patch-src_file_file__default.c) = 59aee01970b6609185ffe287cbcd9cc225ab88a1
+SHA1 (patch-src_libbdplus_bdsvm_segment.c) = 7897d1cec18b57300d74162199af0d46b8bb5460
diff -r 06d59a5f7e05 -r 177eb93bf728 multimedia/libbdplus/patches/patch-src_file_file__default.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/libbdplus/patches/patch-src_file_file__default.c       Sat Jan 31 21:48:02 2015 +0000
@@ -0,0 +1,17 @@
+$NetBSD: patch-src_file_file__default.c,v 1.1 2015/01/31 21:48:03 adam Exp $
+
+Fix build on systems without fseeko().
+
+--- src/file/file_default.c.orig       2015-01-31 21:40:11.000000000 +0000
++++ src/file/file_default.c
+@@ -37,6 +37,10 @@
+ #   define fseeko fseeko64
+ #endif
+ 
++#ifndef fseeko
++#define fseeko fseek
++#endif
++
+ static void _file_close(BDPLUS_FILE_H *file)
+ {
+     if (file) {
diff -r 06d59a5f7e05 -r 177eb93bf728 multimedia/libbdplus/patches/patch-src_libbdplus_bdsvm_segment.c
--- a/multimedia/libbdplus/patches/patch-src_libbdplus_bdsvm_segment.c  Sat Jan 31 21:46:48 2015 +0000
+++ b/multimedia/libbdplus/patches/patch-src_libbdplus_bdsvm_segment.c  Sat Jan 31 21:48:02 2015 +0000
@@ -1,10 +1,10 @@
-$NetBSD: patch-src_libbdplus_bdsvm_segment.c,v 1.2 2014/01/09 10:25:14 wiz Exp $
+$NetBSD: patch-src_libbdplus_bdsvm_segment.c,v 1.3 2015/01/31 21:48:03 adam Exp $
 
-Fix build on systems without fseeko.
+Fix build on systems without fseeko().
 
 --- src/libbdplus/bdsvm/segment.c.orig 2013-12-18 12:13:09.000000000 +0000
 +++ src/libbdplus/bdsvm/segment.c
-@@ -38,6 +38,10 @@
+@@ -39,6 +39,10 @@
  #  define fseeko fseeko64
  #endif
  
diff -r 06d59a5f7e05 -r 177eb93bf728 multimedia/libbdplus/patches/patch-src_libbdplus_bdsvm_trap.c
--- a/multimedia/libbdplus/patches/patch-src_libbdplus_bdsvm_trap.c     Sat Jan 31 21:46:48 2015 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-$NetBSD: patch-src_libbdplus_bdsvm_trap.c,v 1.2 2014/01/09 10:25:14 wiz Exp $
-
-Fix build on systems without fseeko.
-
---- src/libbdplus/bdsvm/trap.c.orig    2013-12-18 12:13:09.000000000 +0000
-+++ src/libbdplus/bdsvm/trap.c
-@@ -54,6 +54,10 @@
- #  define fseeko fseeko64
- #endif
- 
-+#ifndef fseeko
-+#define fseeko fseek
-+#endif
-+
- /* Set this in CFLAGS to debug gcrypt MPIs and S-expressions */
- #ifndef GCRYPT_DEBUG
- #define GCRYPT_DEBUG 0



Home | Main Index | Thread Index | Old Index