pkgsrc-Changes archive

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

CVS commit: pkgsrc/sysutils/riemann-client



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Fri Oct 19 15:53:41 UTC 2018

Modified Files:
        pkgsrc/sysutils/riemann-client: Makefile distinfo options.mk

Log Message:
riemann-client: Update to 1.10.3.

riemann-c-client 1.10.3

Dependencies on the generated protobuf C sources have been fixed in the Makefile.
A few harmless compile-time warnings have been silenced.
Fixed a few typos in riemann-client(1).

riemann-c-client 1.10.2

A number of formatting issues in the API docs have been fixed.

riemann-c-client 1.10.1

The library compiles on OSX/Darwin again, after fixing a symbol aliasing issue.
Reported by @ilovezfs.

riemann-c-client 1.10.0

Added support for micro-second timestamps (available since Riemann 0.2.13),
implemented by Mathieu Corbin, @mcorbin.  Miscellaneous changes

The parts of the test suite that require a running Riemann server are now
disabled by default, and require setting the RCC_NETWORK_TESTS environment
variable to a non-zero value, before running the test suite.

Fixes an issue on systems that had something else listening on the port, or a
Riemann with a different config than the one the test suite expected.

Reported by Dave Cottlehuber, @dch.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/sysutils/riemann-client/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/riemann-client/distinfo \
    pkgsrc/sysutils/riemann-client/options.mk

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

Modified files:

Index: pkgsrc/sysutils/riemann-client/Makefile
diff -u pkgsrc/sysutils/riemann-client/Makefile:1.3 pkgsrc/sysutils/riemann-client/Makefile:1.4
--- pkgsrc/sysutils/riemann-client/Makefile:1.3 Tue Apr 17 22:29:34 2018
+++ pkgsrc/sysutils/riemann-client/Makefile     Fri Oct 19 15:53:41 2018
@@ -1,23 +1,25 @@
-# $NetBSD: Makefile,v 1.3 2018/04/17 22:29:34 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2018/10/19 15:53:41 jperkin Exp $
 
-DISTNAME=      riemann-c-client-1.9.1
+GITHUB_PROJECT=        riemann-c-client
+GITHUB_TAG=    ${DISTNAME}
+DISTNAME=      riemann-c-client-1.10.3
 PKGNAME=       ${DISTNAME:S/c-//}
-PKGREVISION=   2
 CATEGORIES=    sysutils
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=algernon/}
-EXTRACT_SUFX=  .tar.xz
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      https://github.com/algernon/riemann-c-client/
 COMMENT=       C client library for the Riemann monitoring system
 LICENSE=       gnu-lgpl-v3
 
-GITHUB_PROJECT=        riemann-c-client
-GITHUB_RELEASE=        ${DISTNAME}
-
 GNU_CONFIGURE= yes
 USE_LIBTOOL=   yes
-USE_TOOLS+=    gmake pkg-config
+USE_TOOLS+=    autoconf automake autoreconf gmake pkg-config
+
+LDFLAGS.SunOS+=        -lsocket
+
+pre-configure:
+       cd ${WRKSRC} && autoreconf -i
 
 .include "options.mk"
 

Index: pkgsrc/sysutils/riemann-client/distinfo
diff -u pkgsrc/sysutils/riemann-client/distinfo:1.1 pkgsrc/sysutils/riemann-client/distinfo:1.2
--- pkgsrc/sysutils/riemann-client/distinfo:1.1 Thu Oct 13 11:03:13 2016
+++ pkgsrc/sysutils/riemann-client/distinfo     Fri Oct 19 15:53:41 2018
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.1 2016/10/13 11:03:13 fhajny Exp $
+$NetBSD: distinfo,v 1.2 2018/10/19 15:53:41 jperkin Exp $
 
-SHA1 (riemann-c-client-1.9.1.tar.xz) = 773c6e4ee6fcf58253811c39cb62a777ad0fc1f3
-RMD160 (riemann-c-client-1.9.1.tar.xz) = 706a9ccd629e8e845605e13af1d18d1824bb3e9f
-SHA512 (riemann-c-client-1.9.1.tar.xz) = 92e0adb00e828b0cce66363ec061bc33a87beba4092a6ca642bf0d91d85d85a1e7965753cbe3713a9a1001780da8108062bb80cf3fbea147feb6a924f036573b
-Size (riemann-c-client-1.9.1.tar.xz) = 282892 bytes
+SHA1 (riemann-c-client-1.10.3.tar.gz) = 43a40c7bcc201fd36ba6a4c1b3f4ffbe2d18751b
+RMD160 (riemann-c-client-1.10.3.tar.gz) = 9f8e6ea2152689db439a49899734e2040b1d7e3e
+SHA512 (riemann-c-client-1.10.3.tar.gz) = 6d888d2f97fd0f4bec4df6cd5b510731f13e805e277ca66f99664010f1fc7040d802c66f236cf830c7ae8d79a2bbd00b1261b5dc6d11ac41f730119d818f367f
+Size (riemann-c-client-1.10.3.tar.gz) = 75402 bytes
 SHA1 (patch-src_cmd-send.c) = a4fa24be0b4c88fd4586807a636d10ca4b3ae743
Index: pkgsrc/sysutils/riemann-client/options.mk
diff -u pkgsrc/sysutils/riemann-client/options.mk:1.1 pkgsrc/sysutils/riemann-client/options.mk:1.2
--- pkgsrc/sysutils/riemann-client/options.mk:1.1       Thu Oct 13 11:03:13 2016
+++ pkgsrc/sysutils/riemann-client/options.mk   Fri Oct 19 15:53:41 2018
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.1 2016/10/13 11:03:13 fhajny Exp $
+# $NetBSD: options.mk,v 1.2 2018/10/19 15:53:41 jperkin Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.riemann-client
 PKG_SUPPORTED_OPTIONS= tls
@@ -6,8 +6,6 @@ PKG_SUGGESTED_OPTIONS+= tls
 
 .include "../../mk/bsd.options.mk"
 
-PLIST_VARS+=           tls
-
 .if !empty(PKG_OPTIONS:Mtls)
 CONFIGURE_ARGS+=       --enable-tls
 .include "../../security/gnutls/buildlink3.mk"



Home | Main Index | Thread Index | Old Index