pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/jsonnet



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Thu Dec 15 14:45:57 UTC 2022

Modified Files:
        pkgsrc/devel/jsonnet: distinfo
        pkgsrc/devel/jsonnet/patches: patch-Makefile

Log Message:
jsonnet: Fix od(1) args.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/jsonnet/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/jsonnet/patches/patch-Makefile

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

Modified files:

Index: pkgsrc/devel/jsonnet/distinfo
diff -u pkgsrc/devel/jsonnet/distinfo:1.7 pkgsrc/devel/jsonnet/distinfo:1.8
--- pkgsrc/devel/jsonnet/distinfo:1.7   Tue Oct 26 10:15:08 2021
+++ pkgsrc/devel/jsonnet/distinfo       Thu Dec 15 14:45:57 2022
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.7 2021/10/26 10:15:08 nia Exp $
+$NetBSD: distinfo,v 1.8 2022/12/15 14:45:57 jperkin Exp $
 
 BLAKE2s (jsonnet-0.13.0.tar.gz) = 17da79d139fce1d09a381e7a80ddb7a00ce812b01466ddeadeff074ce21c896c
 SHA512 (jsonnet-0.13.0.tar.gz) = d19e5398763e37b79b0ef02368f6bd6215d2df234b5ff7a6d98e2306a0d47290600061c9f868c0c262570b4f0ee9eee6c309bcc93937b12f6c14f8d12339a7d5
 Size (jsonnet-0.13.0.tar.gz) = 21850449 bytes
-SHA1 (patch-Makefile) = fc6dc54470c56b9ce4ccc6658b5ed70693a42967
+SHA1 (patch-Makefile) = 4280734174a73045d12466fa4ebd58be594d6049
 SHA1 (patch-test__suite_tests.source) = 14fc92f664269ab4012c7f90b337276de77110f5

Index: pkgsrc/devel/jsonnet/patches/patch-Makefile
diff -u pkgsrc/devel/jsonnet/patches/patch-Makefile:1.3 pkgsrc/devel/jsonnet/patches/patch-Makefile:1.4
--- pkgsrc/devel/jsonnet/patches/patch-Makefile:1.3     Tue Aug 13 18:04:28 2019
+++ pkgsrc/devel/jsonnet/patches/patch-Makefile Thu Dec 15 14:45:57 2022
@@ -1,4 +1,4 @@
-$NetBSD: patch-Makefile,v 1.3 2019/08/13 18:04:28 seb Exp $
+$NetBSD: patch-Makefile,v 1.4 2022/12/15 14:45:57 jperkin Exp $
 
 - leverage pkgsrc CPPFLAGS, CFLAGS and CXXFLAGS handling
 - take care of 'od -t u1' output variations
@@ -71,7 +71,8 @@ $NetBSD: patch-Makefile,v 1.3 2019/08/13
  
  # Encode standard library for embedding in C
  core/%.jsonnet.h: stdlib/%.jsonnet
-       (($(OD) -v -Anone -t u1 $< \
+-      (($(OD) -v -Anone -t u1 $< \
++      (($(OD) -v -An -t u1 $< \
                | tr " " "\n" \
 -              | grep -v "^$$" \
 +              | sed -e 's/^0//;/^$$/d' \



Home | Main Index | Thread Index | Old Index