pkgsrc-Changes archive

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

CVS commit: pkgsrc/archivers/brotli



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Apr 19 17:56:52 UTC 2019

Modified Files:
        pkgsrc/archivers/brotli: Makefile distinfo
Added Files:
        pkgsrc/archivers/brotli/patches: patch-CMakeLists.txt

Log Message:
brotli: Use shared libraries for linking the main executable


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/archivers/brotli/Makefile \
    pkgsrc/archivers/brotli/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/archivers/brotli/patches/patch-CMakeLists.txt

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

Modified files:

Index: pkgsrc/archivers/brotli/Makefile
diff -u pkgsrc/archivers/brotli/Makefile:1.6 pkgsrc/archivers/brotli/Makefile:1.7
--- pkgsrc/archivers/brotli/Makefile:1.6        Sat Dec  1 17:22:04 2018
+++ pkgsrc/archivers/brotli/Makefile    Fri Apr 19 17:56:52 2019
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2018/12/01 17:22:04 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2019/04/19 17:56:52 adam Exp $
 
 DISTNAME=      brotli-1.0.7
+PKGREVISION=   1
 CATEGORIES=    archivers
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=google/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
Index: pkgsrc/archivers/brotli/distinfo
diff -u pkgsrc/archivers/brotli/distinfo:1.6 pkgsrc/archivers/brotli/distinfo:1.7
--- pkgsrc/archivers/brotli/distinfo:1.6        Sat Dec  1 17:22:04 2018
+++ pkgsrc/archivers/brotli/distinfo    Fri Apr 19 17:56:52 2019
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.6 2018/12/01 17:22:04 wiz Exp $
+$NetBSD: distinfo,v 1.7 2019/04/19 17:56:52 adam Exp $
 
 SHA1 (brotli-1.0.7.tar.gz) = ee64a380152aa20fbc1098fe3799104884c570c1
 RMD160 (brotli-1.0.7.tar.gz) = f46d51bb06fa08ed80d9d2d6bc72cbd243b0653e
 SHA512 (brotli-1.0.7.tar.gz) = a82362aa36d2f2094bca0b2808d9de0d57291fb3a4c29d7c0ca0a37e73087ec5ac4df299c8c363e61106fccf2fe7f58b5cf76eb97729e2696058ef43b1d3930a
 Size (brotli-1.0.7.tar.gz) = 23827908 bytes
+SHA1 (patch-CMakeLists.txt) = f5d1d5f4471ce820cfb9c574be61fae4693de4d6

Added files:

Index: pkgsrc/archivers/brotli/patches/patch-CMakeLists.txt
diff -u /dev/null pkgsrc/archivers/brotli/patches/patch-CMakeLists.txt:1.1
--- /dev/null   Fri Apr 19 17:56:52 2019
+++ pkgsrc/archivers/brotli/patches/patch-CMakeLists.txt        Fri Apr 19 17:56:52 2019
@@ -0,0 +1,15 @@
+$NetBSD: patch-CMakeLists.txt,v 1.1 2019/04/19 17:56:52 adam Exp $
+
+Use shared libraries for linking the main executable.
+
+--- CMakeLists.txt.orig        2019-04-19 17:41:26.000000000 +0000
++++ CMakeLists.txt
+@@ -183,7 +183,7 @@ endif()
+ 
+ # Build the brotli executable
+ add_executable(brotli ${BROTLI_CLI_C})
+-target_link_libraries(brotli ${BROTLI_LIBRARIES_STATIC})
++target_link_libraries(brotli ${BROTLI_LIBRARIES})
+ 
+ # Installation
+ if(NOT BROTLI_BUNDLED_MODE)



Home | Main Index | Thread Index | Old Index