Received: by mail.netbsd.org (Postfix, from userid 605) id B000484EF3; Wed, 28 Feb 2018 09:20:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DAB2484EE4 for ; Wed, 28 Feb 2018 09:20:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id LvQlKboW4riK for ; Wed, 28 Feb 2018 09:20:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id BA02984DD7 for ; Wed, 28 Feb 2018 09:20:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B4A5BFB40; Wed, 28 Feb 2018 09:20:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1519809629111480" MIME-Version: 1.0 Date: Wed, 28 Feb 2018 09:20:29 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/munge To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20180228092029.B4A5BFB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1519809629111480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Feb 28 09:20:29 UTC 2018 Modified Files: pkgsrc/security/munge: Makefile PLIST PLIST.NetBSD distinfo pkgsrc/security/munge/patches: patch-src_etc_Makefile.in Log Message: munge: update to 0.5.13 to fix build with openssl-1.1. munge-0.5.13 (2017-09-26): - Added support for OpenSSL 1.1.0. (#54) - Added support for UID/GID values >= 2^31. - Added support for getentropy() and getrandom(). - Added --trusted-group cmdline opt to munged. - Added --log-file and --seed-file cmdline opts to munged. (#57) - Changed default MAC algorithm to SHA-256. - Fixed autoconf installation directory variable substitution. (#47) - Fixed all gcc, clang, and valgrind warnings. - Improved resilience and unpredictability of PRNG. - Improved hash table performance. - Removed libmissing dependency from libmunge. (#49) munge-0.5.12 (2016-02-25): - Changed project homepage to . - Changed RPM specfile from sysvinit to systemd. (#33) - Added --max-ttl cmdline opt to munged. (#28) - Added --pid-file cmdline opt to munged. (#41) - Added support for "make dist" and "make distcheck". (#45) - Fixed group-writable permissions error for logfile on Ubuntu. (#31) - Fixed packaging with missing pkgconfig munge.pc file. (#25) - Fixed packaging with missing systemd service & tmpfiles.d config. (#34) - Fixed recursive make command in makefiles. (#40) To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/security/munge/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/munge/PLIST \ pkgsrc/security/munge/PLIST.NetBSD pkgsrc/security/munge/distinfo cvs rdiff -u -r1.3 -r1.4 \ pkgsrc/security/munge/patches/patch-src_etc_Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1519809629111480 Content-Disposition: inline Content-Length: 5733 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/munge/Makefile diff -u pkgsrc/security/munge/Makefile:1.17 pkgsrc/security/munge/Makefile:1.18 --- pkgsrc/security/munge/Makefile:1.17 Mon Jan 1 18:16:39 2018 +++ pkgsrc/security/munge/Makefile Wed Feb 28 09:20:29 2018 @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.17 2018/01/01 18:16:39 rillig Exp $ +# $NetBSD: Makefile,v 1.18 2018/02/28 09:20:29 wiz Exp $ -DISTNAME= munge-0.5.11 -PKGREVISION= 7 +DISTNAME= munge-0.5.13 CATEGORIES= security -MASTER_SITES= http://munge.googlecode.com/files/ -EXTRACT_SUFX= .tar.bz2 +MASTER_SITES= ${MASTER_SITE_GITHUB:=dun/} +GITHUB_RELEASE= ${DISTNAME} +EXTRACT_SUFX= .tar.xz MAINTAINER= asau@inbox.ru HOMEPAGE= https://dun.github.io/munge/ Index: pkgsrc/security/munge/PLIST diff -u pkgsrc/security/munge/PLIST:1.4 pkgsrc/security/munge/PLIST:1.5 --- pkgsrc/security/munge/PLIST:1.4 Fri Apr 25 10:20:06 2014 +++ pkgsrc/security/munge/PLIST Wed Feb 28 09:20:29 2018 @@ -1,10 +1,12 @@ -@comment $NetBSD: PLIST,v 1.4 2014/04/25 10:20:06 asau Exp $ +@comment $NetBSD: PLIST,v 1.5 2018/02/28 09:20:29 wiz Exp $ bin/munge bin/remunge bin/unmunge include/munge.h lib/libmunge.la lib/pkgconfig/munge.pc +lib/systemd/system/munge.service +lib/tmpfiles.d/munge.conf man/man1/munge.1 man/man1/remunge.1 man/man1/unmunge.1 @@ -26,7 +28,3 @@ man/man3/munge_strerror.3 man/man7/munge.7 man/man8/munged.8 sbin/munged -@pkgdir var/run/munge -@pkgdir var/log/munge -@pkgdir var/lib/munge -@pkgdir share/examples/munge Index: pkgsrc/security/munge/PLIST.NetBSD diff -u pkgsrc/security/munge/PLIST.NetBSD:1.4 pkgsrc/security/munge/PLIST.NetBSD:1.5 --- pkgsrc/security/munge/PLIST.NetBSD:1.4 Mon Jan 1 22:29:54 2018 +++ pkgsrc/security/munge/PLIST.NetBSD Wed Feb 28 09:20:29 2018 @@ -1,3 +1,3 @@ -@comment $NetBSD: PLIST.NetBSD,v 1.4 2018/01/01 22:29:54 rillig Exp $ -share/examples/default/munge -share/examples/init.d/munge +@comment $NetBSD: PLIST.NetBSD,v 1.5 2018/02/28 09:20:29 wiz Exp $ +share/munge/examples/default/munge +share/munge/examples/init.d/munge Index: pkgsrc/security/munge/distinfo diff -u pkgsrc/security/munge/distinfo:1.4 pkgsrc/security/munge/distinfo:1.5 --- pkgsrc/security/munge/distinfo:1.4 Wed Nov 4 01:17:51 2015 +++ pkgsrc/security/munge/distinfo Wed Feb 28 09:20:29 2018 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.4 2015/11/04 01:17:51 agc Exp $ +$NetBSD: distinfo,v 1.5 2018/02/28 09:20:29 wiz Exp $ -SHA1 (munge-0.5.11.tar.bz2) = 6939ddabc4bc2b3bacdb8bb2bf24766b666d1c0d -RMD160 (munge-0.5.11.tar.bz2) = f7908ba980570519dab99f81023201fb0bd3c195 -SHA512 (munge-0.5.11.tar.bz2) = b9d4cd76c4fe605ad67934af48809205de0f0e5fa1a10dd3b6e382da2cb8bc274bd2a8c0d4bc49d1d58155bf008945a584afd0b6e01cc8052aa1d21c8de2815b -Size (munge-0.5.11.tar.bz2) = 423232 bytes -SHA1 (patch-src_etc_Makefile.in) = 11a79fd9d5e5b3da76a3c637c3e7cf394acbbe5e +SHA1 (munge-0.5.13.tar.xz) = bcb0b89e44c5c0ec21f4bcfaacb4493b82aace61 +RMD160 (munge-0.5.13.tar.xz) = 77c6e9df935ddc1ffe6cd481e015f59e2f74e1b7 +SHA512 (munge-0.5.13.tar.xz) = 2e024c0438f9208379a037daabd1c31f206820ab74a410e2bb69870755e99f9c9fbf60c294c96941008bc43425fbb31dd2374e5f088b7978479e7c65816e9002 +Size (munge-0.5.13.tar.xz) = 389952 bytes +SHA1 (patch-src_etc_Makefile.in) = ca2e4a47a9a6986c962675368eab5e770df99ad3 Index: pkgsrc/security/munge/patches/patch-src_etc_Makefile.in diff -u pkgsrc/security/munge/patches/patch-src_etc_Makefile.in:1.3 pkgsrc/security/munge/patches/patch-src_etc_Makefile.in:1.4 --- pkgsrc/security/munge/patches/patch-src_etc_Makefile.in:1.3 Sun Dec 8 22:34:10 2013 +++ pkgsrc/security/munge/patches/patch-src_etc_Makefile.in Wed Feb 28 09:20:29 2018 @@ -1,8 +1,8 @@ -$NetBSD: patch-src_etc_Makefile.in,v 1.3 2013/12/08 22:34:10 joerg Exp $ +$NetBSD: patch-src_etc_Makefile.in,v 1.4 2018/02/28 09:20:29 wiz Exp $ ---- src/etc/Makefile.in.orig 2013-08-27 18:35:31.000000000 +0000 +--- src/etc/Makefile.in.orig 2017-09-26 21:57:53.000000000 +0000 +++ src/etc/Makefile.in -@@ -242,6 +242,7 @@ sbindir = @sbindir@ +@@ -298,6 +298,7 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ @@ -10,7 +10,7 @@ $NetBSD: patch-src_etc_Makefile.in,v 1.3 target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ -@@ -465,18 +466,18 @@ distclean-local:: +@@ -581,15 +582,15 @@ munge.tmpfiles.conf: munge.tmpfiles.conf install-data-local: test -d "/etc/rc.d/init.d" \ @@ -21,6 +21,7 @@ $NetBSD: patch-src_etc_Makefile.in,v 1.3 $(INSTALL) -m 0755 -d "$(DESTDIR)$${INITDIR}"; \ $(INSTALL) -m 0755 \ "$(builddir)/munge.init" "$(DESTDIR)$${INITDIR}/munge" + : test -d "/etc/sysconfig" \ - && CONFDIR="$(sysconfdir)/sysconfig" \ - || CONFDIR="$(sysconfdir)/default"; \ @@ -28,16 +29,11 @@ $NetBSD: patch-src_etc_Makefile.in,v 1.3 + || CONFDIR="$(sysconfexampledir)/default"; \ $(INSTALL) -m 0755 -d "$(DESTDIR)$${CONFDIR}"; \ $(INSTALL) -m 0644 \ - "$(srcdir)/munge.sysconfig" "$(DESTDIR)$${CONFDIR}/munge" -- if test -d "$(libdir)/pkgconfig"; then \ -+ if test -d "${DESTDIR}$(libdir)/pkgconfig"; then \ - $(INSTALL) -m 0755 \ - -d "$(DESTDIR)$(libdir)/pkgconfig"; \ - $(INSTALL) -m 0644 \ -@@ -500,8 +501,8 @@ install-data-local: - "$(srcdir)/munge-tmpfiles.conf" \ - "$(DESTDIR)$(prefix)/lib/tmpfiles.d/munge.conf"; \ - fi + "$(builddir)/munge.sysconfig" "$(DESTDIR)$${CONFDIR}/munge" +@@ -610,8 +611,8 @@ install-data-local: + "$(builddir)/munge.tmpfiles.conf" \ + "$(DESTDIR)$${TMPFILESDIR}/munge.conf" + : - $(INSTALL) -m 0755 -d "$(DESTDIR)$(sysconfdir)" - $(INSTALL) -m 0700 -d "$(DESTDIR)$(sysconfdir)/munge" + $(INSTALL) -m 0755 -d "$(DESTDIR)$(sysconfexampledir)" --_----------=_1519809629111480--