pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/sysutils/py-dbus Update to 0.71:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/29911027681d
branches:  trunk
changeset: 517805:29911027681d
user:      jmmv <jmmv%pkgsrc.org@localhost>
date:      Wed Aug 23 09:45:58 2006 +0000

description:
Update to 0.71:

D-Bus Python Bindings 0.71 (24 July 2006)
==
- Binary modules are now installed in the correct directory
- Distutils exports the dbus and dbus-glib cflags

D-Bus Python Bindings 0.70 (17 July 2006)
==
- First release of bindings split
- Move to a distutils build enviornment
- It is possible to now specify sender_keyword="foo", path_keyword="bar" when
  adding a signal listener

diffstat:

 sysutils/py-dbus/Makefile      |  31 +++++++++++++++++--------------
 sysutils/py-dbus/PLIST         |   7 +++----
 sysutils/py-dbus/buildlink3.mk |   4 ++--
 sysutils/py-dbus/distinfo      |   5 +++++
 4 files changed, 27 insertions(+), 20 deletions(-)

diffs (92 lines):

diff -r 110c5bc406f0 -r 29911027681d sysutils/py-dbus/Makefile
--- a/sysutils/py-dbus/Makefile Wed Aug 23 09:45:16 2006 +0000
+++ b/sysutils/py-dbus/Makefile Wed Aug 23 09:45:58 2006 +0000
@@ -1,23 +1,26 @@
-# $NetBSD: Makefile,v 1.6 2006/08/06 05:20:40 kristerw Exp $
+# $NetBSD: Makefile,v 1.7 2006/08/23 09:45:58 jmmv Exp $
 #
 
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+DISTNAME=      dbus-python-0.71
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/-python//}
+CATEGORIES=    sysutils
+MASTER_SITES=  http://freedesktop.org/software/dbus/releases/
 
-PYTHON_VERSIONS_ACCEPTED= 24
-
-DBUS_INTERFACE=        glib python
-DBUS_DIRS=     dbus bus glib python tools
+DEPENDS+=      ${PYPKGPREFIX}-pyrex>=0.9.3:../../lang/py-pyrex
 
-.include "../../sysutils/dbus/Makefile.common"
-DEPENDS+=      ${PYPKGPREFIX}-pyrex>=0.9.3:../../lang/py-pyrex
-CONFIGURE_ARGS+=--enable-tests
-# We can't install from within the 'dbus' nor 'tools' directory automatically
-# because we'd get a lot of other stuff installed (overriding files in the
-# dbus package).
-INSTALL_DIRS=  python
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      http://www.freedesktop.org/Software/dbus
+COMMENT=       Python bindings for the D-BUS message bus system
 
-PY_PATCHPLIST= YES
+USE_TOOLS+=    pkg-config
+
+PYTHON_VERSIONS_ACCEPTED=      24
+PYDISTUTILSPKG=                        YES
+PYBINMODULE=                   YES
+PY_PATCHPLIST=                 YES
 
 .include "../../devel/glib2/buildlink3.mk"
 .include "../../lang/python/extension.mk"
+.include "../../sysutils/dbus/buildlink3.mk"
+.include "../../sysutils/dbus-glib/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 110c5bc406f0 -r 29911027681d sysutils/py-dbus/PLIST
--- a/sysutils/py-dbus/PLIST    Wed Aug 23 09:45:16 2006 +0000
+++ b/sysutils/py-dbus/PLIST    Wed Aug 23 09:45:58 2006 +0000
@@ -1,5 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2006/04/02 15:04:20 rxg Exp $
-${PYSITELIB}/dbus.pth
+@comment $NetBSD: PLIST,v 1.3 2006/08/23 09:45:58 jmmv Exp $
 ${PYSITELIB}/dbus/__init__.py
 ${PYSITELIB}/dbus/__init__.pyc
 ${PYSITELIB}/dbus/__init__.pyo
@@ -9,8 +8,8 @@
 ${PYSITELIB}/dbus/_util.py
 ${PYSITELIB}/dbus/_util.pyc
 ${PYSITELIB}/dbus/_util.pyo
-${PYSITELIB}/dbus/dbus_bindings.la
-${PYSITELIB}/dbus/dbus_glib_bindings.la
+${PYSITELIB}/dbus/dbus_bindings.so
+${PYSITELIB}/dbus/dbus_glib_bindings.so
 ${PYSITELIB}/dbus/decorators.py
 ${PYSITELIB}/dbus/decorators.pyc
 ${PYSITELIB}/dbus/decorators.pyo
diff -r 110c5bc406f0 -r 29911027681d sysutils/py-dbus/buildlink3.mk
--- a/sysutils/py-dbus/buildlink3.mk    Wed Aug 23 09:45:16 2006 +0000
+++ b/sysutils/py-dbus/buildlink3.mk    Wed Aug 23 09:45:58 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.6 2006/07/08 23:11:09 jlam Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2006/08/23 09:45:58 jmmv Exp $
 
 BUILDLINK_DEPTH:=              ${BUILDLINK_DEPTH}+
 PY_DBUS_BUILDLINK3_MK:=                ${PY_DBUS_BUILDLINK3_MK}+
@@ -13,7 +13,7 @@
 
 .if !empty(PY_DBUS_BUILDLINK3_MK:M+)
 BUILDLINK_API_DEPENDS.py-dbus+=        ${PYPKGPREFIX}-dbus>=0.23.4
-BUILDLINK_ABI_DEPENDS.py-dbus?=        ${PYPKGPREFIX}-dbus>=0.23.4nb2
+BUILDLINK_ABI_DEPENDS.py-dbus?=        ${PYPKGPREFIX}-dbus>=0.71
 BUILDLINK_PKGSRCDIR.py-dbus?=  ../../sysutils/py-dbus
 .endif # PY_DBUS_BUILDLINK3_MK
 
diff -r 110c5bc406f0 -r 29911027681d sysutils/py-dbus/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/py-dbus/distinfo Wed Aug 23 09:45:58 2006 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2006/08/23 09:45:58 jmmv Exp $
+
+SHA1 (dbus-python-0.71.tar.gz) = 18e71b7bf3513d14f2113ccd05e8bc930a46baa5
+RMD160 (dbus-python-0.71.tar.gz) = 89e0999b725aea4ec1a4d703a27b34d119b27ab5
+Size (dbus-python-0.71.tar.gz) = 137613 bytes



Home | Main Index | Thread Index | Old Index