pkgsrc-Changes archive

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

CVS commit: pkgsrc/chat/hexchat



Module Name:    pkgsrc
Committed By:   maya
Date:           Fri Dec 17 18:47:26 UTC 2021

Modified Files:
        pkgsrc/chat/hexchat: distinfo
        pkgsrc/chat/hexchat/patches: patch-plugins_sysinfo_meson.build

Log Message:
hexchat: fix build with libpci option (meson doesn't like double quotes)


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 pkgsrc/chat/hexchat/distinfo
cvs rdiff -u -r1.3 -r1.4 \
    pkgsrc/chat/hexchat/patches/patch-plugins_sysinfo_meson.build

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

Modified files:

Index: pkgsrc/chat/hexchat/distinfo
diff -u pkgsrc/chat/hexchat/distinfo:1.14 pkgsrc/chat/hexchat/distinfo:1.15
--- pkgsrc/chat/hexchat/distinfo:1.14   Tue Oct 26 10:05:14 2021
+++ pkgsrc/chat/hexchat/distinfo        Fri Dec 17 18:47:26 2021
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.14 2021/10/26 10:05:14 nia Exp $
+$NetBSD: distinfo,v 1.15 2021/12/17 18:47:26 maya Exp $
 
 BLAKE2s (hexchat-2.16.0.tar.xz) = 29c7c88c02e2279a8633919ac0f8d6a6fb49d82c3e54c50c8033a0845e920895
 SHA512 (hexchat-2.16.0.tar.xz) = 4802f6efe0883f48d3d56ee949be1fc224b76a3c76956dcba3f913679e91424ba53c5c0d68bb4e0e790b16a08689111098958ead4c83c35cddf39855fe07c207
 Size (hexchat-2.16.0.tar.xz) = 1348320 bytes
 SHA1 (patch-osx_launcher.sh) = 7493430921809182898aca2ebb8fd1f493dbd9d3
-SHA1 (patch-plugins_sysinfo_meson.build) = 8052ddfb5a79c9c4d5c84fbe6ff6c2ae42cbc4d2
+SHA1 (patch-plugins_sysinfo_meson.build) = 35257a24137fe02a1ba292d7da8b627d318de0ab
 SHA1 (patch-plugins_sysinfo_unix_parse.c) = 92b882b7573cfcfc280351353a7bdcb0a7940c06
 SHA1 (patch-plugins_sysinfo_unix_pci.c) = db2d20261419bed6d6c4b716b4416d73b3386053
 SHA1 (patch-plugins_sysinfo_unix_pci.h) = 018b74796143b26d6a1f9ad821f3889b74b09cc8

Index: pkgsrc/chat/hexchat/patches/patch-plugins_sysinfo_meson.build
diff -u pkgsrc/chat/hexchat/patches/patch-plugins_sysinfo_meson.build:1.3 pkgsrc/chat/hexchat/patches/patch-plugins_sysinfo_meson.build:1.4
--- pkgsrc/chat/hexchat/patches/patch-plugins_sysinfo_meson.build:1.3   Tue Oct 19 08:17:06 2021
+++ pkgsrc/chat/hexchat/patches/patch-plugins_sysinfo_meson.build       Fri Dec 17 18:47:26 2021
@@ -1,4 +1,4 @@
-$NetBSD: patch-plugins_sysinfo_meson.build,v 1.3 2021/10/19 08:17:06 nia Exp $
+$NetBSD: patch-plugins_sysinfo_meson.build,v 1.4 2021/12/17 18:47:26 maya Exp $
 
 XXX this is incomplete
 
@@ -9,7 +9,7 @@ XXX this is incomplete
  
  system = host_machine.system()
 -if system == 'linux' or system == 'gnu' or system.startswith('gnu/') or system == 'darwin' or system == 'freebsd'
-+if system == 'linux' or system == 'gnu' or system.startswith('gnu/') or system == 'darwin' or system == 'freebsd' or system == "netbsd"
++if system == 'linux' or system == 'gnu' or system.startswith('gnu/') or system == 'darwin' or system == 'freebsd' or system == 'netbsd'
    sysinfo_includes += 'shared'
    sysinfo_sources += [
      'shared/df.c'



Home | Main Index | Thread Index | Old Index