Date: Mon, 17 Jul 2017 14:44:39 +0000 (UTC) From: Mahdi Mokhtari <mmokhi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446075 - in head: dns/gdnsd dns/gdnsd2 dns/knot1 dns/knot2 sysutils/liburcu sysutils/liburcu/files sysutils/lttng-tools sysutils/lttng-ust Message-ID: <201707171444.v6HEidQq094954@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mmokhi Date: Mon Jul 17 14:44:39 2017 New Revision: 446075 URL: https://svnweb.freebsd.org/changeset/ports/446075 Log: sysutils/liburcu: Update port to 0.10.0 Bump revision for consumer ports. This version contains many fix/features: * Bump library soname due to urcu flavor structure change * Cleanup: use mutex_lock() wrapper in rculfhash * Use workqueue in rculfhash * Implement urcu workqueues internal API * Add support for m68k architecture * Set -Wall globally in AM_CFLAGS * Fix: remove double use of PTHREAD_CFLAGS * Re-add PTHREAD_CFLAGS to global CFLAGS * Fix: Don't override user variables within the build system * Add report at the end of configure * uatomic-api docs: use the third-person singular * Add --enable-rcu-debug to configure * ARM32: use dmb ish (inner shareable domain) for smp barriers * Cleanup: remove cmm_wmb() from rcu_xchg_pointer and rcu_cmpxchg_pointer * Fix: uatomic arm32: add missing release barrier before uatomic_xchg * Tests: Add verbose support to test script * Fix: add missing CONFIG_RCU_FORCE_SYS_MEMBARRIER to urcu/config.h.in * Allow forcing the use of sys membarrier * Fix: rcutorture: work-around signal issue on mac os x * Fix: rcutorture should register thread using call_rcu * Fix: add missing backslash in Makefile.am * Fix: Do not use wildcards in include/Makefile.am * Bump version to 0.10-pre * Fix: check for rand_r() in compat-rand.h * Fix: Move rand-compat to private src dir * Fix: remove AC_FUNC_MALLOC from configure.ac * Cleanup: Re-organise source dir * Cleanup: remove leftover manual pthread detection * Fix: update ax_pthread macro to handle newer clang * Update library current version due to adding destroy API * Fix: Use pthread_self to get threadid on OSX * Fix: examples: use destroy API for queues/stacks * Update library age due to new stack/queue destroy API * Fix: tests: invoke destroy APIs for queues/stacks * Fix: add missing destroy functions to queues/stack APIs * Fix: add missing __cds_wfcq_init for LGPL API * Fix: memory leak on hash table destroy * Fix: Add failover for platforms without nproc * Fix: use clock_get_time for caa_get_cycles fallback on MacOSX * Fix: syscall-compat.h MacOSX support * Fix: Add solaris-build.md to dist * rculfhash: Documentation: clarify need for grace period before "re-using" * Port: build shared libraries in Cygwin * Port: fix compatibility header for Cygwin * Add GNU Hurd support to syscall-compat.h * Add support for aarch64_be * Fix: urcu-bp: re-initialize list head on library exit * bootstrap: Standardize on autoreconf -vi * Harmonize bootstrap script across projects * Fix: examples make distcheck failure * wfcqueue: add C++ compatibility API * Fix: CDS_WFCQ_WOULDBLOCK typing for c++ * Fix: configure.ac: check for possibly required libs for clock_gettime * Support for NIOS2 architecture * urcu_ref_get_safe: introduce new API * Fix: handle reference count overflow * Fix: compat_futex should work-around futex signal-restart kernel bug * Support for Xeon-Phi with newer MPSS * sparc64: allocate membarrier system call number * hppa: allocate membarrier system call number * Fix build on non-Linux Debian ports * Fix: urcu-signal: smp_mb_master() needs registry lock * Fix: rculfhash only needs to include urcu-pointers.h * Fix: out-of-tree benchmark/regtest * Fix: add missing regtest and benchmark files to dist tarball * Fix: add missing run.sh to benchmark makefile Reviewed by: mat (mentor) Approved by: mat (mentor) Sponsored by: Netzkommune GmbH Differential Revision: https://reviews.freebsd.org/D11449 Added: head/sysutils/liburcu/files/patch-include_urcu_syscall-compat.h (contents, props changed) Deleted: head/sysutils/liburcu/files/patch-doc_examples_Makefile.examples.template head/sysutils/liburcu/files/patch-urcu_syscall-compat.h Modified: head/dns/gdnsd/Makefile head/dns/gdnsd2/Makefile head/dns/knot1/Makefile head/dns/knot2/Makefile head/sysutils/liburcu/Makefile head/sysutils/liburcu/distinfo head/sysutils/liburcu/pkg-plist head/sysutils/lttng-tools/Makefile head/sysutils/lttng-ust/Makefile Modified: head/dns/gdnsd/Makefile ============================================================================== --- head/dns/gdnsd/Makefile Mon Jul 17 14:34:56 2017 (r446074) +++ head/dns/gdnsd/Makefile Mon Jul 17 14:44:39 2017 (r446075) @@ -3,7 +3,7 @@ PORTNAME= gdnsd PORTVERSION= 1.11.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= dns MASTER_SITES= https://github.com/blblack/gdnsd/releases/download/v${PORTVERSION}/ \ http://gdnsd.scaleengine.net/gdnsd/ Modified: head/dns/gdnsd2/Makefile ============================================================================== --- head/dns/gdnsd2/Makefile Mon Jul 17 14:34:56 2017 (r446074) +++ head/dns/gdnsd2/Makefile Mon Jul 17 14:44:39 2017 (r446075) @@ -3,6 +3,7 @@ PORTNAME= gdnsd PORTVERSION= 2.2.4 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= https://github.com/gdnsd/gdnsd/releases/download/v${PORTVERSION}/ \ http://mirrors.rit.edu/zi/ \ Modified: head/dns/knot1/Makefile ============================================================================== --- head/dns/knot1/Makefile Mon Jul 17 14:34:56 2017 (r446074) +++ head/dns/knot1/Makefile Mon Jul 17 14:44:39 2017 (r446075) @@ -3,7 +3,7 @@ PORTNAME= knot PORTVERSION= 1.6.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ Modified: head/dns/knot2/Makefile ============================================================================== --- head/dns/knot2/Makefile Mon Jul 17 14:34:56 2017 (r446074) +++ head/dns/knot2/Makefile Mon Jul 17 14:44:39 2017 (r446075) @@ -3,6 +3,7 @@ PORTNAME= knot PORTVERSION= 2.5.2 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ Modified: head/sysutils/liburcu/Makefile ============================================================================== --- head/sysutils/liburcu/Makefile Mon Jul 17 14:34:56 2017 (r446074) +++ head/sysutils/liburcu/Makefile Mon Jul 17 14:44:39 2017 (r446075) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= liburcu -PORTVERSION= 0.9.3 +PORTVERSION= 0.10.0 CATEGORIES= sysutils MASTER_SITES= http://lttng.org/files/urcu/ DISTNAME= userspace-rcu-${PORTVERSION} @@ -16,6 +16,9 @@ BROKEN_aarch64= Fails to build: Cannot build: unrecogn BROKEN_armv6= Fails to build: address argument to atomic builtin must be a pointer BROKEN_mips= Fails to build: undefined reference to `__sync_bool_compare_and_swap_4 BROKEN_mips64= Fails to build: undefined reference to `__sync_bool_compare_and_swap_4 + +PLIST_SUB= SO_SHORT_VER=6 \ + SO_VER=6.0.0 USES= pathfix libtool tar:bzip2 USE_LDCONFIG= yes Modified: head/sysutils/liburcu/distinfo ============================================================================== --- head/sysutils/liburcu/distinfo Mon Jul 17 14:34:56 2017 (r446074) +++ head/sysutils/liburcu/distinfo Mon Jul 17 14:44:39 2017 (r446075) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483800399 -SHA256 (userspace-rcu-0.9.3.tar.bz2) = 1bce32e6a6c967fef6d37adaadf33df19878d69673f9ef9d3f2470e0c6ed4006 -SIZE (userspace-rcu-0.9.3.tar.bz2) = 472624 +TIMESTAMP = 1499000825 +SHA256 (userspace-rcu-0.10.0.tar.bz2) = 7cb58a7ba5151198087f025dc8d19d8918e9c6d56772f039696c111d9aad3190 +SIZE (userspace-rcu-0.10.0.tar.bz2) = 483899 Added: head/sysutils/liburcu/files/patch-include_urcu_syscall-compat.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/liburcu/files/patch-include_urcu_syscall-compat.h Mon Jul 17 14:44:39 2017 (r446075) @@ -0,0 +1,11 @@ +--- include/urcu/syscall-compat.h.orig 2017-06-12 23:02:38 UTC ++++ include/urcu/syscall-compat.h +@@ -32,7 +32,7 @@ + #elif defined(__linux__) || defined(__GLIBC__) + #include <syscall.h> + +-#elif defined(__CYGWIN__) || defined(__APPLE__) ++#elif defined(__CYGWIN__) || defined(__APPLE__) || defined(__FreeBSD__) || defined(__DragonFly__) + /* Don't include anything on Cygwin or MacOSX. */ + + #else Modified: head/sysutils/liburcu/pkg-plist ============================================================================== --- head/sysutils/liburcu/pkg-plist Mon Jul 17 14:34:56 2017 (r446074) +++ head/sysutils/liburcu/pkg-plist Mon Jul 17 14:44:39 2017 (r446075) @@ -18,7 +18,6 @@ include/urcu/list.h include/urcu/map/urcu-bp.h include/urcu/map/urcu-qsbr.h include/urcu/map/urcu.h -include/urcu/rand-compat.h include/urcu/rcuhlist.h include/urcu/rculfhash.h include/urcu/rculfqueue.h @@ -48,39 +47,39 @@ include/urcu/wfqueue.h include/urcu/wfstack.h lib/liburcu-bp.a lib/liburcu-bp.so -lib/liburcu-bp.so.4 -lib/liburcu-bp.so.4.1.0 +lib/liburcu-bp.so.%%SO_SHORT_VER%% +lib/liburcu-bp.so.%%SO_VER%% lib/liburcu-cds.a lib/liburcu-cds.so -lib/liburcu-cds.so.4 -lib/liburcu-cds.so.4.1.0 +lib/liburcu-cds.so.%%SO_SHORT_VER%% +lib/liburcu-cds.so.%%SO_VER%% lib/liburcu-common.a lib/liburcu-common.so -lib/liburcu-common.so.4 -lib/liburcu-common.so.4.1.0 +lib/liburcu-common.so.%%SO_SHORT_VER%% +lib/liburcu-common.so.%%SO_VER%% lib/liburcu-mb.a lib/liburcu-mb.so -lib/liburcu-mb.so.4 -lib/liburcu-mb.so.4.1.0 +lib/liburcu-mb.so.%%SO_SHORT_VER%% +lib/liburcu-mb.so.%%SO_VER%% lib/liburcu-qsbr.a lib/liburcu-qsbr.so -lib/liburcu-qsbr.so.4 -lib/liburcu-qsbr.so.4.1.0 +lib/liburcu-qsbr.so.%%SO_SHORT_VER%% +lib/liburcu-qsbr.so.%%SO_VER%% lib/liburcu-signal.a lib/liburcu-signal.so -lib/liburcu-signal.so.4 -lib/liburcu-signal.so.4.1.0 +lib/liburcu-signal.so.%%SO_SHORT_VER%% +lib/liburcu-signal.so.%%SO_VER%% lib/liburcu.a lib/liburcu.so -lib/liburcu.so.4 -lib/liburcu.so.4.1.0 +lib/liburcu.so.%%SO_SHORT_VER%% +lib/liburcu.so.%%SO_VER%% libdata/pkgconfig/liburcu-bp.pc libdata/pkgconfig/liburcu-cds.pc libdata/pkgconfig/liburcu-mb.pc libdata/pkgconfig/liburcu-qsbr.pc libdata/pkgconfig/liburcu-signal.pc libdata/pkgconfig/liburcu.pc -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README.md %%PORTDOCS%%%%DOCSDIR%%/cds-api.md %%PORTDOCS%%%%DOCSDIR%%/examples/Makefile Modified: head/sysutils/lttng-tools/Makefile ============================================================================== --- head/sysutils/lttng-tools/Makefile Mon Jul 17 14:34:56 2017 (r446074) +++ head/sysutils/lttng-tools/Makefile Mon Jul 17 14:44:39 2017 (r446075) @@ -3,6 +3,7 @@ PORTNAME= lttng-tools PORTVERSION= 2.9.3 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://lttng.org/files/${PORTNAME}/ Modified: head/sysutils/lttng-ust/Makefile ============================================================================== --- head/sysutils/lttng-ust/Makefile Mon Jul 17 14:34:56 2017 (r446074) +++ head/sysutils/lttng-ust/Makefile Mon Jul 17 14:44:39 2017 (r446075) @@ -3,6 +3,7 @@ PORTNAME= lttng-ust PORTVERSION= 2.9.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://lttng.org/files/${PORTNAME}/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707171444.v6HEidQq094954>