pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/net/gupnp-av Update to 0.12.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2d5534db9295
branches:  trunk
changeset: 621258:2d5534db9295
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Sat Jul 06 16:20:52 2013 +0000

description:
Update to 0.12.2

* Enable gobject-introspection support.

Changelog:
0.12.2
======

Changes since 0.12.1:
- Fix VAPI generation if GObject-introspection version is >= 1.36.
- Fix vala bindings for LastChangeParser.parse_last_change.
- Small improvement to resource matching.
- Fix DIDLLiteContainer.get_total_deleted_child_count return value.
- Fix compiling with -Wall -Werror.
- Fix gtk-doc warnings.

All contributors to this release:
  Jens Georg <mail%jensge.org@localhost>
  Ludovic Ferrandis <ludovic.ferrandis%intel.com@localhost>

0.12.1
======

Changes since 0.12.0:
- Fix compiler warnings.
- Update .gitignore.

All contributors to this release:
  Andreas Henriksson <andreas%fatal.se@localhost>
  Krzesimir Nowak <qdlacz%gmail.com@localhost>

diffstat:

 net/gupnp-av/Makefile      |  8 ++++----
 net/gupnp-av/PLIST         |  4 +++-
 net/gupnp-av/buildlink3.mk |  6 +++---
 net/gupnp-av/distinfo      |  8 ++++----
 4 files changed, 14 insertions(+), 12 deletions(-)

diffs (78 lines):

diff -r 698fcecdbd7d -r 2d5534db9295 net/gupnp-av/Makefile
--- a/net/gupnp-av/Makefile     Sat Jul 06 16:19:56 2013 +0000
+++ b/net/gupnp-av/Makefile     Sat Jul 06 16:20:52 2013 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.17 2013/05/24 18:23:34 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2013/07/06 16:20:52 ryoon Exp $
 #
 
-DISTNAME=      gupnp-av-0.12.0
-PKGREVISION=   2
+DISTNAME=      gupnp-av-0.12.2
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/gupnp-av/0.12/}
 EXTRACT_SUFX=  .tar.xz
@@ -14,9 +13,10 @@
 
 GNU_CONFIGURE= yes
 USE_LIBTOOL=   yes
-USE_TOOLS+=    pkg-config
+USE_TOOLS+=    gmake pkg-config
 
 PKGCONFIG_OVERRIDE+=   gupnp-av-1.0.pc.in
 
+.include "../../devel/gobject-introspection/buildlink3.mk"
 .include "../../net/gupnp/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 698fcecdbd7d -r 2d5534db9295 net/gupnp-av/PLIST
--- a/net/gupnp-av/PLIST        Sat Jul 06 16:19:56 2013 +0000
+++ b/net/gupnp-av/PLIST        Sat Jul 06 16:20:52 2013 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2013/03/15 18:10:43 drochner Exp $
+@comment $NetBSD: PLIST,v 1.5 2013/07/06 16:20:52 ryoon Exp $
 include/gupnp-av-1.0/libgupnp-av/gupnp-av-enums.h
 include/gupnp-av-1.0/libgupnp-av/gupnp-av-error.h
 include/gupnp-av-1.0/libgupnp-av/gupnp-av.h
@@ -19,8 +19,10 @@
 include/gupnp-av-1.0/libgupnp-av/gupnp-media-collection.h
 include/gupnp-av-1.0/libgupnp-av/gupnp-protocol-info.h
 include/gupnp-av-1.0/libgupnp-av/gupnp-search-criteria-parser.h
+lib/girepository-1.0/GUPnPAV-1.0.typelib
 lib/libgupnp-av-1.0.la
 lib/pkgconfig/gupnp-av-1.0.pc
+share/gir-1.0/GUPnPAV-1.0.gir
 share/gtk-doc/html/gupnp-av/GUPnPCDSLastChangeParser.html
 share/gtk-doc/html/gupnp-av/GUPnPDIDLLiteContainer.html
 share/gtk-doc/html/gupnp-av/GUPnPDIDLLiteContributor.html
diff -r 698fcecdbd7d -r 2d5534db9295 net/gupnp-av/buildlink3.mk
--- a/net/gupnp-av/buildlink3.mk        Sat Jul 06 16:19:56 2013 +0000
+++ b/net/gupnp-av/buildlink3.mk        Sat Jul 06 16:20:52 2013 +0000
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.16 2013/05/24 18:23:34 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.17 2013/07/06 16:20:52 ryoon Exp $
 
 BUILDLINK_TREE+=       gupnp-av
 
 .if !defined(GUPNP_AV_BUILDLINK3_MK)
 GUPNP_AV_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.gupnp-av+=       gupnp-av>=0.10.3
-BUILDLINK_ABI_DEPENDS.gupnp-av+=       gupnp-av>=0.12.0nb2
+BUILDLINK_API_DEPENDS.gupnp-av+=       gupnp-av>=0.12.2
+BUILDLINK_ABI_DEPENDS.gupnp-av+=       gupnp-av>=0.12.2
 BUILDLINK_PKGSRCDIR.gupnp-av?= ../../net/gupnp-av
 
 .include "../../net/gupnp/buildlink3.mk"
diff -r 698fcecdbd7d -r 2d5534db9295 net/gupnp-av/distinfo
--- a/net/gupnp-av/distinfo     Sat Jul 06 16:19:56 2013 +0000
+++ b/net/gupnp-av/distinfo     Sat Jul 06 16:20:52 2013 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2013/03/15 18:10:43 drochner Exp $
+$NetBSD: distinfo,v 1.5 2013/07/06 16:20:52 ryoon Exp $
 
-SHA1 (gupnp-av-0.12.0.tar.xz) = fa03d342831f691edd57199017e96fafef84fccf
-RMD160 (gupnp-av-0.12.0.tar.xz) = 085030b0a92279772c538538a8f888d8c790c3ba
-Size (gupnp-av-0.12.0.tar.xz) = 336532 bytes
+SHA1 (gupnp-av-0.12.2.tar.xz) = c1b63f3bd919969f7db1e07156545ef197cec3ee
+RMD160 (gupnp-av-0.12.2.tar.xz) = 97763b9150587c825e13b32602cc86eaf799dfff
+Size (gupnp-av-0.12.2.tar.xz) = 337716 bytes



Home | Main Index | Thread Index | Old Index