pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/libsigc++3



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Apr 15 09:25:07 UTC 2024

Modified Files:
        pkgsrc/devel/libsigc++3: Makefile PLIST buildlink3.mk distinfo

Log Message:
libsigc++3: updated to 3.6.0

3.6.0 (stable)

* sigc++config.h.*: Update and clean up a bit for Visual Studio
* scoped_connection: New wrapper to auto-disconnect a slot
* signal: Add connect_first()

Documentation:
* connection: Improve the class documentation
* Improve Visual Studio build documentation
* Remove AUTHORS and add general information to README.md
* manual: Add paragraph about new scoped_connection

Tests:
* Add test_scoped_connection

Build:
* Meson: Don't copy files with configure_file()
* Meson: Fix the evaluation of is_git_build on Windows
* CMake: Prevent multiple target declaration for uninstall
* Visual Studio: Support static builds
* Meson: Don't require the 'dot' command to build the documentation

3.4.0 (stable)

* Add track_object(), deprecate track_obj()
* Add trackable_signal_with_accumulator and trackable_signal

Examples, tests:
* examples/member_method: Make on_print() non-virtual
* test_accumulated.cc: clang++ requires another 'template'
* test_limit_reference.cc: Don't use auto where a slot is required

Documentation:
* signal::make_slot(): Note that signal does not derive from trackable

Build:
* Meson: Avoid configuration warnings
* Meson, MSVC: Compensate for the lack of msvc_recommended_pragmas.h
* Fix build with -Dbuild-deprecated-api=false
* Meson: Detect if we build from a git subtree
* Meson: Simplify lookup of python command
* Meson: Add build_tests option


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/libsigc++3/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/libsigc++3/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/libsigc++3/buildlink3.mk
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/libsigc++3/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/libsigc++3/Makefile
diff -u pkgsrc/devel/libsigc++3/Makefile:1.13 pkgsrc/devel/libsigc++3/Makefile:1.14
--- pkgsrc/devel/libsigc++3/Makefile:1.13       Wed Jul 19 15:04:32 2023
+++ pkgsrc/devel/libsigc++3/Makefile    Mon Apr 15 09:25:06 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2023/07/19 15:04:32 nia Exp $
+# $NetBSD: Makefile,v 1.14 2024/04/15 09:25:06 adam Exp $
 
-DISTNAME=      libsigc++-3.2.0
+DISTNAME=      libsigc++-3.6.0
 PKGNAME=       ${DISTNAME:S/-/3-/}
 CATEGORIES=    devel gnome
 MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/libsigc++/${PKGVERSION_NOREV:R}/}
@@ -11,11 +11,14 @@ HOMEPAGE=   https://github.com/libsigcplus
 COMMENT=       Type-safe callback system for C++ programs
 LICENSE=       gnu-lgpl-v2.1
 
+USE_CXX_FEATURES+=     c++17
 USE_LANGUAGES=         c c++
 USE_TOOLS+=            gm4 pkg-config
 PKGCONFIG_OVERRIDE=    sigc++.pc.in
 
-USE_CXX_FEATURES+=     c++17
+TEST_ENV+=     LD_LIBRARY_PATH=${WRKSRC}/output/sigc++
+# for Darwin
+TEST_ENV+=     DYLD_LIBRARY_PATH=${WRKSRC}/output/sigc++
 
 .include "../../devel/meson/build.mk"
 BUILDLINK_API_DEPENDS.mm-common+=      mm-common>=0.9.10

Index: pkgsrc/devel/libsigc++3/PLIST
diff -u pkgsrc/devel/libsigc++3/PLIST:1.2 pkgsrc/devel/libsigc++3/PLIST:1.3
--- pkgsrc/devel/libsigc++3/PLIST:1.2   Thu Apr  8 20:55:18 2021
+++ pkgsrc/devel/libsigc++3/PLIST       Mon Apr 15 09:25:06 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2021/04/08 20:55:18 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2024/04/15 09:25:06 adam Exp $
 include/sigc++-3.0/sigc++/adaptors/adaptor_base.h
 include/sigc++-3.0/sigc++/adaptors/adaptor_trait.h
 include/sigc++-3.0/sigc++/adaptors/adaptors.h
@@ -26,6 +26,7 @@ include/sigc++-3.0/sigc++/limit_referenc
 include/sigc++-3.0/sigc++/member_method_trait.h
 include/sigc++-3.0/sigc++/reference_wrapper.h
 include/sigc++-3.0/sigc++/retype_return.h
+include/sigc++-3.0/sigc++/scoped_connection.h
 include/sigc++-3.0/sigc++/sigc++.h
 include/sigc++-3.0/sigc++/signal.h
 include/sigc++-3.0/sigc++/signal_base.h

Index: pkgsrc/devel/libsigc++3/buildlink3.mk
diff -u pkgsrc/devel/libsigc++3/buildlink3.mk:1.4 pkgsrc/devel/libsigc++3/buildlink3.mk:1.5
--- pkgsrc/devel/libsigc++3/buildlink3.mk:1.4   Wed Jul 19 15:04:32 2023
+++ pkgsrc/devel/libsigc++3/buildlink3.mk       Mon Apr 15 09:25:06 2024
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.4 2023/07/19 15:04:32 nia Exp $
+# $NetBSD: buildlink3.mk,v 1.5 2024/04/15 09:25:06 adam Exp $
 
 BUILDLINK_TREE+=       libsigcpp3
 
@@ -6,7 +6,7 @@ BUILDLINK_TREE+=        libsigcpp3
 LIBSIGCPP3_BUILDLINK3_MK:=
 
 BUILDLINK_API_DEPENDS.libsigcpp3+=     libsigc++3>=3.0.0
-BUILDLINK_ABI_DEPENDS.libsigcpp3?=     libsigc++3>=3.0.7nb1
+BUILDLINK_ABI_DEPENDS.libsigcpp3+=     libsigc++3>=3.0.7nb1
 BUILDLINK_PKGSRCDIR.libsigcpp3?=       ../../devel/libsigc++3
 
 USE_CXX_FEATURES+=     c++17

Index: pkgsrc/devel/libsigc++3/distinfo
diff -u pkgsrc/devel/libsigc++3/distinfo:1.7 pkgsrc/devel/libsigc++3/distinfo:1.8
--- pkgsrc/devel/libsigc++3/distinfo:1.7        Mon Jul 25 19:45:35 2022
+++ pkgsrc/devel/libsigc++3/distinfo    Mon Apr 15 09:25:06 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2022/07/25 19:45:35 wiz Exp $
+$NetBSD: distinfo,v 1.8 2024/04/15 09:25:06 adam Exp $
 
-BLAKE2s (libsigc++-3.2.0.tar.xz) = 35b74dbcca38eb10f16743ef09bb77fac3be842e86d62b28b9a1a81b493ecc18
-SHA512 (libsigc++-3.2.0.tar.xz) = 91315cecc79a1ad6ea165b66a13a5afd4e5bc101842f9d4c58811ea78536c07fc8821c51aa5110a032ed71c09f85790b3a02f2ad7fe8cc3aed6e03b2bafcd70c
-Size (libsigc++-3.2.0.tar.xz) = 785900 bytes
+BLAKE2s (libsigc++-3.6.0.tar.xz) = 10aec9a819ebebc3e90aa659f55ded39765c4f5aa48b8c2ae297dd64daf201c0
+SHA512 (libsigc++-3.6.0.tar.xz) = fa79067b4fecf68501288b93eed3d3e7017899cb8a02d3106a41f6dd1818f7b8c724a5b38d4b9ac89699fd8084976f9ad8eca8e832a45a5b6dc7cae5db99cb56
+Size (libsigc++-3.6.0.tar.xz) = 991392 bytes



Home | Main Index | Thread Index | Old Index