pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/gotosocial



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue May 14 22:44:56 UTC 2024

Modified Files:
        pkgsrc/www/gotosocial: distinfo
Added Files:
        pkgsrc/www/gotosocial/patches:
            patch-vendor_github.com_tdewolff_minify_v2_Makefile

Log Message:
gotosocial: fix unportable test(1) operator


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/www/gotosocial/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/www/gotosocial/patches/patch-vendor_github.com_tdewolff_minify_v2_Makefile

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

Modified files:

Index: pkgsrc/www/gotosocial/distinfo
diff -u pkgsrc/www/gotosocial/distinfo:1.15 pkgsrc/www/gotosocial/distinfo:1.16
--- pkgsrc/www/gotosocial/distinfo:1.15 Fri Apr 12 15:10:20 2024
+++ pkgsrc/www/gotosocial/distinfo      Tue May 14 22:44:55 2024
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.15 2024/04/12 15:10:20 nikita Exp $
+$NetBSD: distinfo,v 1.16 2024/05/14 22:44:55 wiz Exp $
 
 BLAKE2s (gotosocial-0.15.0-source-code.tar.gz) = b1741b7e62e38add85f5ccfa678038adee6507b959acbcede71871d3de0d0f9a
 SHA512 (gotosocial-0.15.0-source-code.tar.gz) = de1f17892b3eeb62751ab61a782f74728fc36d80eb9ec27bec7ebdd3317a586850dc78d0be9862d561e9da07b1228ca57223af0f5caaf6ad811e10e0677f3f6a
 Size (gotosocial-0.15.0-source-code.tar.gz) = 75292015 bytes
+SHA1 (patch-vendor_github.com_tdewolff_minify_v2_Makefile) = 2658c6597d4037b2f1ce1e2cf927a288146b21a3

Added files:

Index: pkgsrc/www/gotosocial/patches/patch-vendor_github.com_tdewolff_minify_v2_Makefile
diff -u /dev/null pkgsrc/www/gotosocial/patches/patch-vendor_github.com_tdewolff_minify_v2_Makefile:1.1
--- /dev/null   Tue May 14 22:44:56 2024
+++ pkgsrc/www/gotosocial/patches/patch-vendor_github.com_tdewolff_minify_v2_Makefile   Tue May 14 22:44:55 2024
@@ -0,0 +1,15 @@
+$NetBSD: patch-vendor_github.com_tdewolff_minify_v2_Makefile,v 1.1 2024/05/14 22:44:55 wiz Exp $
+
+Fix unportable test(1) operator.
+
+--- vendor/github.com/tdewolff/minify/v2/Makefile.orig 2024-05-14 22:43:01.734615011 +0000
++++ vendor/github.com/tdewolff/minify/v2/Makefile
+@@ -33,7 +33,7 @@ release:
+               \
+               cp LICENSE dist/$$t/.; \
+               cp cmd/minify/README.md dist/$$t/.; \
+-              if [ "$$os" == "windows" ]; then \
++              if [ "$$os" = "windows" ]; then \
+                       mv dist/$$t/${NAME} dist/$$t/${NAME}.exe; \
+                       zip -jq dist/${NAME}_$$t.zip dist/$$t/*; \
+                       cd dist; \



Home | Main Index | Thread Index | Old Index