pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
proplib: Updated to 0.6.8.
Module Name: pkgsrc-wip
Committed By: Aleksej Lebedev <root%zta.lk@localhost>
Pushed By: zhtw
Date: Mon May 13 14:04:47 2019 +0000
Changeset: d09227740f3a3104c2348e891451eb953ff8f73a
Modified Files:
proplib/Makefile
proplib/PLIST
proplib/distinfo
Removed Files:
proplib/patches/patch-configure
proplib/patches/patch-src_prop_object.c
Log Message:
proplib: Updated to 0.6.8.
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=d09227740f3a3104c2348e891451eb953ff8f73a
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
proplib/Makefile | 6 +++---
proplib/PLIST | 2 +-
proplib/distinfo | 11 +++++------
proplib/patches/patch-configure | 16 ----------------
proplib/patches/patch-src_prop_object.c | 17 -----------------
5 files changed, 9 insertions(+), 43 deletions(-)
diffs:
diff --git a/proplib/Makefile b/proplib/Makefile
index ad02ca95e2..32ee3b03ba 100644
--- a/proplib/Makefile
+++ b/proplib/Makefile
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.2 2015/06/28 14:53:16 kirussel Exp $
+# $NetBSD$
-DISTNAME= proplib-0.6.4
+DISTNAME= proplib-0.6.8
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=xtraeme/}
GITHUB_PROJECT= portableproplib
-GITHUB_TAG= 0.6.4
+GITHUB_TAG= ${PKGVERSION_NOREV}
MAINTAINER= root%zta.lk@localhost
HOMEPAGE= https://github.com/xtraeme/portableproplib/
diff --git a/proplib/PLIST b/proplib/PLIST
index 61d64cd3cf..8a3bec6ac1 100644
--- a/proplib/PLIST
+++ b/proplib/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2015/04/19 17:56:54 realzhtw Exp $
+@comment $NetBSD$
include/prop/prop_array.h
include/prop/prop_bool.h
include/prop/prop_data.h
diff --git a/proplib/distinfo b/proplib/distinfo
index 5af7a7997d..4245199ede 100644
--- a/proplib/distinfo
+++ b/proplib/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.2 2015/06/28 14:53:16 kirussel Exp $
+$NetBSD$
-SHA1 (proplib-0.6.4.tar.gz) = d115cf16d1e2545d63db20a9d3f2233c3839f48c
-RMD160 (proplib-0.6.4.tar.gz) = a3cc221feacbb11d1b194ba54ca1ccc800ad00eb
-Size (proplib-0.6.4.tar.gz) = 76263 bytes
-SHA1 (patch-configure) = 708be1b61702b2106ee3def5e66d940dab40beea
-SHA1 (patch-src_prop_object.c) = e201e838d42090a485686663ee0f333a0e34d95c
+SHA1 (proplib-0.6.8.tar.gz) = 337188e94971c845b74f0606f0786a9a76ef4f26
+RMD160 (proplib-0.6.8.tar.gz) = 392e8b86c43a11e1f0bbe4fe69fa18ebdc5eec80
+SHA512 (proplib-0.6.8.tar.gz) = 5f4a56ccac108e97e5eec745af9e98e0f2b86bd1a5591538695c433b9fea85d0d2a12454a3682ba1202e37d0643f08bc94db8a7176e5a94d8f8abafb6cd9b10f
+Size (proplib-0.6.8.tar.gz) = 77707 bytes
diff --git a/proplib/patches/patch-configure b/proplib/patches/patch-configure
deleted file mode 100644
index ee5371a996..0000000000
--- a/proplib/patches/patch-configure
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-configure,v 1.1 2015/06/28 14:53:16 kirussel Exp $
-
-Add a check for the presence of fdatasync() in the header files. This change
-has already been pushed upstream:
- https://github.com/xtraeme/portableproplib/pull/1
-
---- configure.ac.orig 2014-05-17 18:15:13.000000000 +0000
-+++ configure.ac
-@@ -52,6 +52,7 @@ AC_CONFIG_MACRO_DIR([m4])
-
- AC_CHECK_HEADERS(limits.h stddef.h fcntl.h)
- AC_CHECK_FUNCS(memmove memset munmap strchr strtoul stroull strlcat fdatasync)
-+AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
- AC_CHECK_LIB(pthread, pthread_mutex_init, ,
- AC_MSG_ERROR(*** A POSIX threads library is required, aborting ***))
- AC_CHECK_LIB(z, inflate, ,
diff --git a/proplib/patches/patch-src_prop_object.c b/proplib/patches/patch-src_prop_object.c
deleted file mode 100644
index 97f7ba3fe7..0000000000
--- a/proplib/patches/patch-src_prop_object.c
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-src_prop_object.c,v 1.1 2015/06/28 14:53:16 kirussel Exp $
-
-Only use fdatasync() if it is in the header files and you can link with it.
-This change has alreay been pushed upstream:
- https://github.com/xtraeme/portableproplib/pull/1
-
---- src/prop_object.c.orig 2014-05-17 18:15:13.000000000 +0000
-+++ src/prop_object.c
-@@ -859,7 +859,7 @@ _prop_object_externalize_write_file(cons
- goto bad;
- }
-
--#ifdef HAVE_FDATASYNC
-+#if defined(HAVE_FDATASYNC) && HAVE_DECL_FDATASYNC
- if (fdatasync(fd) == -1)
- #else
- if (fsync(fd) == -1)
Home |
Main Index |
Thread Index |
Old Index