Received: by mail.netbsd.org (Postfix, from userid 605) id BA47684D92; Mon, 6 Apr 2020 09:11:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4422B84D78 for ; Mon, 6 Apr 2020 09:11:14 +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 x-AaAQpVLEGQ for ; Mon, 6 Apr 2020 09:11:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A104D84C81 for ; Mon, 6 Apr 2020 09:11:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9A237FB27; Mon, 6 Apr 2020 09:11:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1586164273186350" MIME-Version: 1.0 Date: Mon, 6 Apr 2020 09:11:13 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/libsigc++3 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200406091113.9A237FB27@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. --_----------=_1586164273186350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Apr 6 09:11:13 UTC 2020 Modified Files: pkgsrc/devel/libsigc++3: Makefile buildlink3.mk distinfo Log Message: libsigc++3: update to 3.0.3. 3.0.3 (stable) Build: * docs/docs/reference/meson.build: Check if perl is found (Kjell Ahlstedt) Issue #53 (Rasmus Thomsen) * README.md: Describe building with Meson (Kjell Ahlstedt) Examples: * Add example of using libsigc++ with Qt (Robert Middleton) Pull request #35 Tests: * Replace C-style casts with static_cast<> (Lennard Berger) 3.0.2 (stable) * Build: Meson build improvements. (Kjell Ahlstedt, Chun-Wei Fan) 3.0.1 (stable) * Build: - Add meson build, alongside the existing autotools and CMake builds. (Kjell Ahlstedt, Chun-Wei Fan) - CMake: Fix the MSVC build, enable warnings, and disable unnecessary warnings, with MVSC. (Stuart Dootson) * connection: Allow copying of empty connections. (Aigrind) * sigc++/adaptors/bind.h: Make bind_functor::bound_ public. (Used by sigc::visitor::do_visit_each(). (Kjell Ahlstedt) Bug #26 * test_limit_reference: Avoid virtual-move-assign warning (seen with g++ 9.2) (Murray Cumming) * signal: slot_iterator_buf: Remove unused T_result default type (Murray Cumming) * tests: Slight cleanups (Murray Cumming) * Remove unused #ifdefed code. (Murray Cumming) To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/libsigc++3/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/libsigc++3/buildlink3.mk \ pkgsrc/devel/libsigc++3/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1586164273186350 Content-Disposition: inline Content-Length: 2411 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libsigc++3/Makefile diff -u pkgsrc/devel/libsigc++3/Makefile:1.3 pkgsrc/devel/libsigc++3/Makefile:1.4 --- pkgsrc/devel/libsigc++3/Makefile:1.3 Fri Mar 20 11:57:28 2020 +++ pkgsrc/devel/libsigc++3/Makefile Mon Apr 6 09:11:13 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2020/03/20 11:57:28 nia Exp $ +# $NetBSD: Makefile,v 1.4 2020/04/06 09:11:13 wiz Exp $ -DISTNAME= libsigc++-3.0.0 +DISTNAME= libsigc++-3.0.3 PKGNAME= ${DISTNAME:S/-/3-/} CATEGORIES= devel gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libsigc++/${PKGVERSION_NOREV:R}/} Index: pkgsrc/devel/libsigc++3/buildlink3.mk diff -u pkgsrc/devel/libsigc++3/buildlink3.mk:1.1 pkgsrc/devel/libsigc++3/buildlink3.mk:1.2 --- pkgsrc/devel/libsigc++3/buildlink3.mk:1.1 Thu Nov 7 13:17:42 2019 +++ pkgsrc/devel/libsigc++3/buildlink3.mk Mon Apr 6 09:11:13 2020 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.1 2019/11/07 13:17:42 wiz Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2020/04/06 09:11:13 wiz Exp $ BUILDLINK_TREE+= libsigcpp3 @@ -6,7 +6,7 @@ BUILDLINK_TREE+= libsigcpp3 LIBSIGCPP3_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.libsigcpp3+= libsigc++3>=3.0.0 -BUILDLINK_PKGSRCDIR.libsigcpp3?= ../../devel/libsigc++3 +BUILDLINK_PKGSRCDIR.libsigcpp3?= ../../devel/libsigc++3 # needs C++11 GCC_REQD+= 4.8 Index: pkgsrc/devel/libsigc++3/distinfo diff -u pkgsrc/devel/libsigc++3/distinfo:1.1 pkgsrc/devel/libsigc++3/distinfo:1.2 --- pkgsrc/devel/libsigc++3/distinfo:1.1 Thu Nov 7 13:17:42 2019 +++ pkgsrc/devel/libsigc++3/distinfo Mon Apr 6 09:11:13 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2019/11/07 13:17:42 wiz Exp $ +$NetBSD: distinfo,v 1.2 2020/04/06 09:11:13 wiz Exp $ -SHA1 (libsigc++-3.0.0.tar.xz) = 92bea5cff9b155cca1bc1534c008e3c7a0028234 -RMD160 (libsigc++-3.0.0.tar.xz) = bebc9b89e52607065a9797d1d57b0d5fc4685b52 -SHA512 (libsigc++-3.0.0.tar.xz) = 827831bd3d9aced63419e7616250ad7469db80dda101ad3b919e379e68fd54389e419093385b0fcfb695fc0f7ca954f5007bd747bf88a82090e649c2294a6d9b -Size (libsigc++-3.0.0.tar.xz) = 999820 bytes +SHA1 (libsigc++-3.0.3.tar.xz) = b0c9f57747be8da61085c5b95f985a7ac3f4b38d +RMD160 (libsigc++-3.0.3.tar.xz) = 7b895beab96b410cefb91acc1e86562461eea534 +SHA512 (libsigc++-3.0.3.tar.xz) = 4ba1eeb1296ea8b3e911a7c6ce66c402f877485fd3da1ff1c2e6cfe89a986788cb9bcc9ff8d8ef57dc6dbaa046d7a18d30f6b32a0235fe66fb7afae4ec12e13e +Size (libsigc++-3.0.3.tar.xz) = 1011808 bytes --_----------=_1586164273186350--