Received: by mail.netbsd.org (Postfix, from userid 605) id E51E184DC0; Tue, 31 Dec 2019 13:33:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6EBAB84DB9 for ; Tue, 31 Dec 2019 13:33:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id fopdXkqqVBoV for ; Tue, 31 Dec 2019 13:33:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A1BF484CE7 for ; Tue, 31 Dec 2019 13:33:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9B654FA97; Tue, 31 Dec 2019 13:33:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157779920676600" MIME-Version: 1.0 Date: Tue, 31 Dec 2019 13:33:26 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/sysutils/hivex To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20191231133326.9B654FA97@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. --_----------=_157779920676600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Tue Dec 31 13:33:26 UTC 2019 Modified Files: pkgsrc/sysutils/hivex: Makefile PLIST distinfo Log Message: (sysutils/hivex) Updated 1.13.15 to 1.13.18 2019-01-24 Richard W.M. Jones Update gnulib to latest. Includes various fixes to --as-needed support. See: https://lists.gnu.org/archive/html/bug-gnulib/2019-01/threads.html#00123 2019-01-22 Richard W.M. Jones Version 1.3.17. 2019-01-22 Michael Meyer lib: Reset errno to zero to avoid erroneously returning E2BIG This line was accidentally removed in 77fe74fc, causing bug #1145056 (Bugzilla) to resurface. 2019-01-17 Richard W.M. Jones Version 1.3.16. Update gnulib to latest. 2019-01-17 Pino Toscano ruby: improve test functions Use better functions to check for proper values instead of assert: - refute_nil for non-null functions - assert_equal for checking equality Also, make sure that the parameters for assert_equal are correct: expected value, then got value. 2019-01-16 Pino Toscano perl: fix format of croak for RLenValue When calling croak on failure in the Perl code for RLenValue, add the %s placeholder for the strerror result. This makes the croak call just like all the others. Fixes commit 87e1be8ff3431ac81d721d5f647fc85d02e045dc. 2018-02-26 Richard W.M. Jones ocaml: Link the C bindings with LDFLAGS (RHBZ#1548536). Use the ocamlmklib -ldopt flag to pass the general $(LDFLAGS) when calling gcc to link dllmlhivex.so. We were already passing $(CFLAGS) when building the object file. When building using Fedora's standard hardening flags this gives: ocamlmklib -o mlhivex hivex_c.o hivex.cmo \ -verbose -ldopt '-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' \ -L../lib/.libs -lhivex + gcc -shared -o ./dllmlhivex.so hivex_c.o -Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -L../lib/.libs -lhivex + ar rc ./libmlhivex.a hivex_c.o; ranlib ./libmlhivex.a + /usr/bin/ocamlc -a -o mlhivex.cma hivex.cmo -dllib -lmlhivex -cclib -lmlhivex -cclib -L../lib/.libs -cclib -lhivex This also works if $(LDFLAGS) is empty, because ocamlmklib ignores -ldopt ''. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/sysutils/hivex/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/sysutils/hivex/PLIST cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/hivex/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157779920676600 Content-Disposition: inline Content-Length: 2674 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/hivex/Makefile diff -u pkgsrc/sysutils/hivex/Makefile:1.5 pkgsrc/sysutils/hivex/Makefile:1.6 --- pkgsrc/sysutils/hivex/Makefile:1.5 Sun Aug 11 13:23:08 2019 +++ pkgsrc/sysutils/hivex/Makefile Tue Dec 31 13:33:26 2019 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2019/08/11 13:23:08 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2019/12/31 13:33:26 mef Exp $ -DISTNAME= hivex-1.3.15 -PKGREVISION= 3 +DISTNAME= hivex-1.3.18 CATEGORIES= sysutils MASTER_SITES= http://download.libguestfs.org/hivex/ Index: pkgsrc/sysutils/hivex/PLIST diff -u pkgsrc/sysutils/hivex/PLIST:1.4 pkgsrc/sysutils/hivex/PLIST:1.5 --- pkgsrc/sysutils/hivex/PLIST:1.4 Thu Oct 4 16:05:56 2018 +++ pkgsrc/sysutils/hivex/PLIST Tue Dec 31 13:33:26 2019 @@ -1,8 +1,8 @@ -@comment $NetBSD: PLIST,v 1.4 2018/10/04 16:05:56 tnn Exp $ +@comment $NetBSD: PLIST,v 1.5 2019/12/31 13:33:26 mef Exp $ ${PLIST.tools}bin/hivexget ${PLIST.tools}bin/hivexml -${PLIST.tools}bin/hivexsh ${PLIST.perl}bin/hivexregedit +${PLIST.tools}bin/hivexsh include/hivex.h lib/libhivex.la ${PLIST.ocaml}${OCAML_SITELIB}/hivex/META @@ -22,7 +22,7 @@ ${PLIST.ruby}${RUBY_SITELIB}/hivex.rb ${PLIST.ruby}${RUBY_SITEARCHLIB}/_hivex.${RUBY_DLEXT} ${PLIST.tools}man/man1/hivexget.1 ${PLIST.tools}man/man1/hivexml.1 -${PLIST.tools}man/man1/hivexsh.1 ${PLIST.perl}man/man1/hivexregedit.1 +${PLIST.tools}man/man1/hivexsh.1 man/man3/hivex.3 ${PLIST.ocaml}@pkgdir lib/ocaml/site-lib Index: pkgsrc/sysutils/hivex/distinfo diff -u pkgsrc/sysutils/hivex/distinfo:1.2 pkgsrc/sysutils/hivex/distinfo:1.3 --- pkgsrc/sysutils/hivex/distinfo:1.2 Thu Oct 4 16:01:40 2018 +++ pkgsrc/sysutils/hivex/distinfo Tue Dec 31 13:33:26 2019 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.2 2018/10/04 16:01:40 tnn Exp $ +$NetBSD: distinfo,v 1.3 2019/12/31 13:33:26 mef Exp $ -SHA1 (hivex-1.3.15.tar.gz) = 0b93f6947223bfa16012cb23d29437b8074fd29f -RMD160 (hivex-1.3.15.tar.gz) = 31a243d63822006026ec239ecc6ac33ac1b68981 -SHA512 (hivex-1.3.15.tar.gz) = 7ce4fd6842c7545a41dc4c4268db5f0629d618a17f29a68dda6990a0dd4530cdf0e0c654f00104274c57e792aa4bcf712bcac1c76e2fd2dbce9aeae1e5751517 -Size (hivex-1.3.15.tar.gz) = 1542436 bytes +SHA1 (hivex-1.3.18.tar.gz) = d66131981d2c978ab9cfc7e28dd052e7e273ae18 +RMD160 (hivex-1.3.18.tar.gz) = 7fc4345eb90031df6070ec4cc0d765c29f98223c +SHA512 (hivex-1.3.18.tar.gz) = 1851351118921e81df9e505f90d00048a178572c2edd3de40194a69915176bdb615e2eb5afea408d57063e98257c8d1e3d0cd6730407153892cc9e3befc4aa3a +Size (hivex-1.3.18.tar.gz) = 1542133 bytes SHA1 (patch-ocaml_Makefile.in) = de989be1269d59bc626bd2ddb42785102b695de6 SHA1 (patch-perl_Makefile.in) = a5776c1b6b382af85e3f8927a83cfd147105e3ee --_----------=_157779920676600--