Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Jul 2019 05:22:45 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r506603 - in head/devel: . nsync
Message-ID:  <201907140522.x6E5MjMq037051@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sun Jul 14 05:22:44 2019
New Revision: 506603
URL: https://svnweb.freebsd.org/changeset/ports/506603

Log:
  New port: devel/nsync: C library that exports various synchronization primitives like mutexes
  
  PR:		226400
  Submitted by:	Anthony <amzo1337@gmail.com>

Added:
  head/devel/nsync/
  head/devel/nsync/Makefile   (contents, props changed)
  head/devel/nsync/distinfo   (contents, props changed)
  head/devel/nsync/pkg-descr   (contents, props changed)
  head/devel/nsync/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jul 14 05:08:32 2019	(r506602)
+++ head/devel/Makefile	Sun Jul 14 05:22:44 2019	(r506603)
@@ -1603,6 +1603,7 @@
     SUBDIR += nsgenbind
     SUBDIR += nspr
     SUBDIR += nss_wrapper
+    SUBDIR += nsync
     SUBDIR += nuitka
     SUBDIR += obby
     SUBDIR += objecthash

Added: head/devel/nsync/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/nsync/Makefile	Sun Jul 14 05:22:44 2019	(r506603)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	nsync
+DISTVERSION=	1.21.0
+CATEGORIES=	devel
+
+MAINTAINER=	amzo1337@gmail.com
+COMMENT=	C library that exports various synchronization primitives like mutexes
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		cmake
+USE_GITHUB=	yes
+GH_ACCOUNT=	google
+USE_LDCONFIG=	yes
+
+CMAKE_ON=	BUILD_SHARED_LIBS
+
+.include <bsd.port.mk>

Added: head/devel/nsync/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/nsync/distinfo	Sun Jul 14 05:22:44 2019	(r506603)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1563081327
+SHA256 (google-nsync-1.21.0_GH0.tar.gz) = 1f48fa5a315520f2d43ad0269f8d09bba37d4399c2317e1d657fd7ed059cf531
+SIZE (google-nsync-1.21.0_GH0.tar.gz) = 154518

Added: head/devel/nsync/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/nsync/pkg-descr	Sun Jul 14 05:22:44 2019	(r506603)
@@ -0,0 +1,7 @@
+Nsync is a C library that exports various synchronization primitives.
+The library is intended to be portable, and to be compilable on a system with
+only a C90 compiler, assuming atomic operations are available from the
+compiler, operating system, or assembler routines.  It is able to use C11 or
+C++11 atomic operations if they are available.
+
+WWW: https://github.com/google/nsync

Added: head/devel/nsync/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/nsync/pkg-plist	Sun Jul 14 05:22:44 2019	(r506603)
@@ -0,0 +1,19 @@
+include/nsync.h
+include/nsync_atomic.h
+include/nsync_counter.h
+include/nsync_cpp.h
+include/nsync_cv.h
+include/nsync_debug.h
+include/nsync_mu.h
+include/nsync_mu_wait.h
+include/nsync_note.h
+include/nsync_once.h
+include/nsync_time.h
+include/nsync_time_internal.h
+include/nsync_waiter.h
+lib/libnsync.so
+lib/libnsync.so.1
+lib/libnsync.so.1.20.1
+lib/libnsync_cpp.so
+lib/libnsync_cpp.so.1
+lib/libnsync_cpp.so.1.20.1



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907140522.x6E5MjMq037051>