Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 20 Jun 2015 09:51:32 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390157 - head/devel/dbus-tcl
Message-ID:  <201506200951.t5K9pWgC038133@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gahr
Date: Sat Jun 20 09:51:32 2015
New Revision: 390157
URL: https://svnweb.freebsd.org/changeset/ports/390157

Log:
  - Update to 2.1
    Changes:
    * Add support for passing file handles over the dbus.
    * Add a new dbus info subcommand to check if a dbus connection supports file
      descriptor passing.
    * Allow method scripts to decide at runtime if the response will be given
      asynchronous or not.
    * Do monitoring via a filter, rather than a fallback handler. That way also
      method_return- and error messages can be seen.
    * Accept server addresses as dbus identifiers for all commands.
    * Allow specifying an empty string for the dbus call -handler option, which
      will be handled the same as not having the option at all, i.e.:
      synchronous operation.
    * Properly handle 32- and 64-bit unsigned arguments
    * The unknown subcommand should also understand the -details option
    * Make sure type signatures and object paths are valid before passing them to
      dbus functions, because the library will panic on invalid values.
    * Implement "integer constant is too large" patch provided by Stuart.
    * Fix wrong return code from [dbus info capabilities]

Modified:
  head/devel/dbus-tcl/Makefile
  head/devel/dbus-tcl/distinfo

Modified: head/devel/dbus-tcl/Makefile
==============================================================================
--- head/devel/dbus-tcl/Makefile	Sat Jun 20 09:39:48 2015	(r390156)
+++ head/devel/dbus-tcl/Makefile	Sat Jun 20 09:51:32 2015	(r390157)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	dbus-tcl
-PORTVERSION=	2.0
+PORTVERSION=	2.1
 CATEGORIES=	devel
 MASTER_SITES=	SF/${PORTNAME}/dbus/${PORTVERSION}/
 DISTNAME=	dbus-${PORTVERSION}
@@ -23,7 +23,7 @@ GNU_CONFIGURE=	yes
 CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} \
 		--exec-prefix=${PREFIX}
 
-PLIST_FILES=	lib/dbus/libdbus20.so.1 \
+PLIST_FILES=	lib/dbus/libdbus21.so.1 \
 		lib/dbus/pkgIndex.tcl \
 		man/mann/dbus.n.gz
 
@@ -33,6 +33,10 @@ PLIST_FILES=	lib/dbus/libdbus20.so.1 \
 BUILD_DEPENDS=	dtplite:${PORTSDIR}/devel/tcllib
 .endif
 
+post-patch:
+	${REINPLACE_CMD} -e '/^INSTALL_PROGRAM/s|$$| -s|' \
+	    ${WRKSRC}/Makefile.in
+
 regression-test:
 	cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} test
 

Modified: head/devel/dbus-tcl/distinfo
==============================================================================
--- head/devel/dbus-tcl/distinfo	Sat Jun 20 09:39:48 2015	(r390156)
+++ head/devel/dbus-tcl/distinfo	Sat Jun 20 09:51:32 2015	(r390157)
@@ -1,2 +1,2 @@
-SHA256 (dbus-2.0.tar.gz) = 428b4045d395b0d26255730ce7c0d14850e45abb3c7cc6d9d48c1d2b723bb16a
-SIZE (dbus-2.0.tar.gz) = 170733
+SHA256 (dbus-2.1.tar.gz) = 82c116cb7b70cdd7183e1054f2c52363aab7c608b5fb375dbb129f080734e2d0
+SIZE (dbus-2.1.tar.gz) = 173734



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506200951.t5K9pWgC038133>