pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/lxqt-build-tools lxqt-build-tools: update to 0.12.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6df4d98295ad
branches:  trunk
changeset: 387904:6df4d98295ad
user:      gutteridge <gutteridge%pkgsrc.org@localhost>
date:      Thu Nov 10 00:53:13 2022 +0000

description:
lxqt-build-tools: update to 0.12.0

lxqt-build-tools-0.12.0 / 2022-11-05
====================================
 * Support absolute `CMAKE_INSTALL_{INCLUDE,LIB}DIR` in `LXQtCreatePkgConfigFile`.
 * Use `gdesktopappinfo.h` to find gio-unix-2.0 in `FindGLIB.cmake`.
 * Drop use of `-Bsymbolic` in `LXQtCompilerSettings`.

diffstat:

 devel/lxqt-build-tools/Makefile                                               |   5 ++---
 devel/lxqt-build-tools/distinfo                                               |  10 +++++-----
 devel/lxqt-build-tools/patches/patch-cmake_modules_LXQtCompilerSettings.cmake |   6 +++---
 3 files changed, 10 insertions(+), 11 deletions(-)

diffs (51 lines):

diff -r 60c4aada3adf -r 6df4d98295ad devel/lxqt-build-tools/Makefile
--- a/devel/lxqt-build-tools/Makefile   Wed Nov 09 23:26:36 2022 +0000
+++ b/devel/lxqt-build-tools/Makefile   Thu Nov 10 00:53:13 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2022/06/28 11:31:48 wiz Exp $
+# $NetBSD: Makefile,v 1.22 2022/11/10 00:53:13 gutteridge Exp $
 
-DISTNAME=      lxqt-build-tools-0.11.0
-PKGREVISION=   2
+DISTNAME=      lxqt-build-tools-0.12.0
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=lxqt/}
 GITHUB_RELEASE=        ${PKGVERSION_NOREV}
diff -r 60c4aada3adf -r 6df4d98295ad devel/lxqt-build-tools/distinfo
--- a/devel/lxqt-build-tools/distinfo   Wed Nov 09 23:26:36 2022 +0000
+++ b/devel/lxqt-build-tools/distinfo   Thu Nov 10 00:53:13 2022 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.9 2022/05/14 13:45:24 jperkin Exp $
+$NetBSD: distinfo,v 1.10 2022/11/10 00:53:13 gutteridge Exp $
 
-BLAKE2s (lxqt-build-tools-0.11.0.tar.xz) = f7914fe91aeffaf55a2ec3d2c4602ec5ab89d4b8d76373dacf74e517088e5dbb
-SHA512 (lxqt-build-tools-0.11.0.tar.xz) = d421aaf74b13efa3b603b5c8a998bfd6091f5d3c45e0201d64e0c1f12d93c45fdc12d9232b0ac1c98ccf47007560c5814612162d1ac879bb3173bad57164408d
-Size (lxqt-build-tools-0.11.0.tar.xz) = 25348 bytes
-SHA1 (patch-cmake_modules_LXQtCompilerSettings.cmake) = 48b92fbd9109ffa69af8b88eaf422472ed730e23
+BLAKE2s (lxqt-build-tools-0.12.0.tar.xz) = 29053c88efab70830a8d3e471d2d973aec3e6c5c0a5a478ba86e92b8847b1424
+SHA512 (lxqt-build-tools-0.12.0.tar.xz) = 6c8f0d8f04a2ba06c1cff935580a88312f18f87b5da99e53f46c053b842f179bf474b3637ddcb0e9a0007f1d03b9e7cfd92a6552e53082ce34348fcfb6436add
+Size (lxqt-build-tools-0.12.0.tar.xz) = 25444 bytes
+SHA1 (patch-cmake_modules_LXQtCompilerSettings.cmake) = 31f7a0743c726b2f9a9a1641351d2a53d4811be3
diff -r 60c4aada3adf -r 6df4d98295ad devel/lxqt-build-tools/patches/patch-cmake_modules_LXQtCompilerSettings.cmake
--- a/devel/lxqt-build-tools/patches/patch-cmake_modules_LXQtCompilerSettings.cmake     Wed Nov 09 23:26:36 2022 +0000
+++ b/devel/lxqt-build-tools/patches/patch-cmake_modules_LXQtCompilerSettings.cmake     Thu Nov 10 00:53:13 2022 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-cmake_modules_LXQtCompilerSettings.cmake,v 1.1 2022/05/14 13:45:24 jperkin Exp $
+$NetBSD: patch-cmake_modules_LXQtCompilerSettings.cmake,v 1.2 2022/11/10 00:53:13 gutteridge Exp $
 
 Avoid -Bsymbolic* on SunOS.
 
@@ -8,11 +8,11 @@
          set(NO_UNDEFINED_FLAGS "-Wl,--no-undefined")
          # -Bsymbolic-functions: replace dynamic symbols used internally in
          #                       shared libs with direct addresses.
--        set(SYMBOLIC_FLAGS "-Wl,-Bsymbolic-functions -Wl,-Bsymbolic")
+-        set(SYMBOLIC_FLAGS "-Wl,-Bsymbolic-functions")
 +        if(${CMAKE_SYSTEM_NAME} STREQUAL "SunOS")
 +            set(SYMBOLIC_FLAGS "")
 +        else()
-+            set(SYMBOLIC_FLAGS "-Wl,-Bsymbolic-functions -Wl,-Bsymbolic")
++            set(SYMBOLIC_FLAGS "-Wl,-Bsymbolic-functions")
 +        endif()
      endif()
  



Home | Main Index | Thread Index | Old Index