Received: by mail.netbsd.org (Postfix, from userid 605) id 7435184D93; Wed, 13 Nov 2019 15:26:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F20DF84D41 for ; Wed, 13 Nov 2019 15:26:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id FDOEYEzjnblj for ; Wed, 13 Nov 2019 15:26:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3E1C984D27 for ; Wed, 13 Nov 2019 15:26:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 38528FA95; Wed, 13 Nov 2019 15:26:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1573658782253540" MIME-Version: 1.0 Date: Wed, 13 Nov 2019 15:26:22 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/sysutils/dbus-python-common To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20191113152622.38528FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1573658782253540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Wed Nov 13 15:26:22 UTC 2019 Modified Files: pkgsrc/sysutils/dbus-python-common: Makefile distinfo Log Message: dbus-python-common: update to 1.2.12. dbus Python Bindings 1.2.12 (2019-09-12) ======================================== The “spinal bap” release. Fixes: • Don't save and restore the exception indicator when called from C code. This avoided "returned a result with an error set" errors under some circumstances, but also caused a regression for code that relies on being able to terminate the program by calling sys.exit() or raising SystemExit from a dbus-python method. In particular, this broke one of libsecret's unit tests. (Debian #940087; Simon McVittie) D-Bus Python Bindings 1.2.10 (2019-09-02) ========================================= The “wingèd horse” release. dbus-python version control is now hosted on freedesktop.org's Gitlab installation, and bug reports and feature requests have switched from Bugzilla bugs (indicated by "fd.o #nnn") to Gitlab issues ("dbus-python#nnn") and merge requests ("dbus-python!nnn"). See README and CONTRIBUTING.md for more details. Dependencies: • dbus 1.8 was already required, but is more strongly required now: the workarounds that were used to run continuous integration with dbus 1.6 on Ubuntu 14.04 'trusty' have been removed. (Note that dbus 1.8 has already reached end-of-life for security support, and newer dbus stable branches are strongly recommended.) • When using Python 3, version 3.5 or later is strongly recommended. Python 3.4 security support ended in March 2019. No specific incompatibilities are known, but using dbus-python on Python 3.4 is no longer tested or supported. Enhancements: • Rewrite CONTRIBUTING.md document, based on Wayland's equivalent (Simon McVittie, with thanks to Ander Conselvan de Oliveira, Bryce Harrington, Eric Engestrom, Pekka Paalanen and Daniel Stone for their contributions to the equivalent file in Wayland) • A generated ChangeLog file is no longer included in source tarballs. Please refer to the git repository at https://gitlab.freedesktop.org/dbus/dbus-python for detailed change history. (Simon McVittie) • Improve continuous integration to be run by GitLab in addition to Travis-CI (Simon McVittie) • Add clearer license information using SPDX-License-Identifier (Simon McVittie) • Improve test coverage (Simon McVittie) Fixes: • Don't set deprecated tp_print to NULL under Python 3, fixing build warnings with Python 3.8 pre-releases (Simon McVittie) • Include inherited methods and properties when documenting objects, which regressed when migrating from epydoc to sphinx (Simon McVittie) • Add missing variant_level member to UnixFd type, for parity with the other dbus.types types (dbus-python!3; John Baublitz) - Note that this is a potentially incompatible change: unknown keyword arguments were previously ignored (!) and are now an error. • Don't reply to method calls if they have the NO_REPLY_EXPECTED flag (fd.o#32529, dbus-python#26; Simon McVittie) • Silence -Wcast-function-type with gcc 8 (Simon McVittie) • Fix distcheck with python3.7 by deleting __pycache__ during uninstall (Simon McVittie) • Consistently save and restore the exception indicator when called from C code (Simon McVittie) • Avoid a long-standing race condition in the automated tests (Debian #898158; Simon McVittie) • Fix Qt website URL (Ralf Habacker) To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/sysutils/dbus-python-common/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/sysutils/dbus-python-common/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1573658782253540 Content-Disposition: inline Content-Length: 2352 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/dbus-python-common/Makefile diff -u pkgsrc/sysutils/dbus-python-common/Makefile:1.18 pkgsrc/sysutils/dbus-python-common/Makefile:1.19 --- pkgsrc/sysutils/dbus-python-common/Makefile:1.18 Mon Nov 4 21:28:43 2019 +++ pkgsrc/sysutils/dbus-python-common/Makefile Wed Nov 13 15:26:22 2019 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.18 2019/11/04 21:28:43 rillig Exp $ +# $NetBSD: Makefile,v 1.19 2019/11/13 15:26:22 wiz Exp $ -DISTNAME= dbus-python-1.2.8 +DISTNAME= dbus-python-1.2.12 PKGNAME= ${DISTNAME:S/python/python-common/} -PKGREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://dbus.freedesktop.org/releases/dbus-python/ @@ -24,11 +23,12 @@ CONFIGURE_ARGS+= --disable-html-docs --d BUILDLINK_TRANSFORM.SunOS+= rm:-std=c9x +INSTALLATION_DIRS+= include/dbus-1.0/dbus +INSTALLATION_DIRS+= lib/pkgconfig + do-install: - ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/include/dbus-1.0/dbus ${INSTALL_DATA} ${WRKSRC}/include/dbus/dbus-python.h \ ${DESTDIR}${PREFIX}/include/dbus-1.0/dbus - ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/lib/pkgconfig ${INSTALL_DATA} ${WRKSRC}/dbus-python.pc \ ${DESTDIR}${PREFIX}/lib/pkgconfig Index: pkgsrc/sysutils/dbus-python-common/distinfo diff -u pkgsrc/sysutils/dbus-python-common/distinfo:1.7 pkgsrc/sysutils/dbus-python-common/distinfo:1.8 --- pkgsrc/sysutils/dbus-python-common/distinfo:1.7 Mon May 7 11:26:30 2018 +++ pkgsrc/sysutils/dbus-python-common/distinfo Wed Nov 13 15:26:22 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2018/05/07 11:26:30 wiz Exp $ +$NetBSD: distinfo,v 1.8 2019/11/13 15:26:22 wiz Exp $ -SHA1 (dbus-python-1.2.8.tar.gz) = 2afa30938207ded2c35b11ea64b1c7eda0fa4314 -RMD160 (dbus-python-1.2.8.tar.gz) = 9d862706609cdac377ee0f42b500e2cd277bfe92 -SHA512 (dbus-python-1.2.8.tar.gz) = 6e486fd560944fc1461a27e6798e2c348c7fdf351602c082a0614c0a6822ff147875212bdcb1f818c0ab12470cffc613c0ffbd292cd9d445d3429bee65765905 -Size (dbus-python-1.2.8.tar.gz) = 787426 bytes +SHA1 (dbus-python-1.2.12.tar.gz) = d42b76863d89890a335425f5fe796052e3cc3712 +RMD160 (dbus-python-1.2.12.tar.gz) = 35e7224bd71e10a01c71567e87d13a4322d19f6a +SHA512 (dbus-python-1.2.12.tar.gz) = 6f90eaeeb74ea71a026a331d4c611911eda6dfb6c9086a0a80352f9963a9ae126db6f3e32d183916b8517f177fc947f1ddb15df83ff0b5c886532116868383b4 +Size (dbus-python-1.2.12.tar.gz) = 574727 bytes --_----------=_1573658782253540--