pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/cvise



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Nov  7 20:01:20 UTC 2023

Modified Files:
        pkgsrc/devel/cvise: Makefile distinfo
        pkgsrc/devel/cvise/patches: patch-CMakeLists.txt

Log Message:
cvise: updated to 2.9.0

v2.9.0

LLVM 17 is properly supported
code has been modernized to Python 3.8+
a new argument --shell has been added


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/cvise/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/cvise/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/cvise/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/devel/cvise/Makefile
diff -u pkgsrc/devel/cvise/Makefile:1.15 pkgsrc/devel/cvise/Makefile:1.16
--- pkgsrc/devel/cvise/Makefile:1.15    Mon Aug 14 05:24:05 2023
+++ pkgsrc/devel/cvise/Makefile Tue Nov  7 20:01:20 2023
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2023/08/14 05:24:05 wiz Exp $
+# $NetBSD: Makefile,v 1.16 2023/11/07 20:01:20 adam Exp $
 
-DISTNAME=      cvise-2.8.0
-PKGREVISION=   1
+DISTNAME=      cvise-2.9.0
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=marxin/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
@@ -16,7 +15,7 @@ DEPENDS+=     ${PYPKGPREFIX}-pebble-[0-9]*:.
 DEPENDS+=      ${PYPKGPREFIX}-psutil-[0-9]*:../../sysutils/py-psutil
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 
-USE_LANGUAGES= c c++
+USE_LANGUAGES= c c++17
 USE_TOOLS+=    flex
 TEST_TARGET=   test
 
@@ -34,5 +33,5 @@ REPLACE_PYTHON+=      cvise-delta.py
 
 .include "../../devel/cmake/build.mk"
 .include "../../lang/python/application.mk"
-.include "../../lang/clang/buildlink3.mk"
+.include "../../wip/clang/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/cvise/distinfo
diff -u pkgsrc/devel/cvise/distinfo:1.8 pkgsrc/devel/cvise/distinfo:1.9
--- pkgsrc/devel/cvise/distinfo:1.8     Sun May  7 10:01:26 2023
+++ pkgsrc/devel/cvise/distinfo Tue Nov  7 20:01:20 2023
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2023/05/07 10:01:26 wiz Exp $
+$NetBSD: distinfo,v 1.9 2023/11/07 20:01:20 adam Exp $
 
-BLAKE2s (cvise-2.8.0.tar.gz) = c0bd99e9da15fd4f89d500c6369e5cca233c90b4be97bdcb571d9addbf32c143
-SHA512 (cvise-2.8.0.tar.gz) = 7e2dee2001aacb96cf5ffdb62047d229e23273fd26f34648e23ab4374bf6cae149f13db529494ce8d2d16555a0d2143487923c57f4b303b0ab1f678ffcff6f6e
-Size (cvise-2.8.0.tar.gz) = 269582 bytes
-SHA1 (patch-CMakeLists.txt) = 8f5bdfc1e84c2b9dae0e9615d7948de58e101eaf
+BLAKE2s (cvise-2.9.0.tar.gz) = df76233e1b141856f4776b7deb5bd7c6fe6241eb8ef06a15dea5db44271d40f1
+SHA512 (cvise-2.9.0.tar.gz) = dd3b2e5c4603e8a73594863ce5b83d0ca864fc688a7b094c84b745b7086d384173809b9a915edb51938a7df8310eabbde1ea6a997c480d19618065c0d8270c52
+Size (cvise-2.9.0.tar.gz) = 269921 bytes
+SHA1 (patch-CMakeLists.txt) = b60607c84fffa278b3b9d9dc30fd1c172b628955

Index: pkgsrc/devel/cvise/patches/patch-CMakeLists.txt
diff -u pkgsrc/devel/cvise/patches/patch-CMakeLists.txt:1.3 pkgsrc/devel/cvise/patches/patch-CMakeLists.txt:1.4
--- pkgsrc/devel/cvise/patches/patch-CMakeLists.txt:1.3 Sun May  7 10:01:26 2023
+++ pkgsrc/devel/cvise/patches/patch-CMakeLists.txt     Tue Nov  7 20:01:20 2023
@@ -1,21 +1,11 @@
-$NetBSD: patch-CMakeLists.txt,v 1.3 2023/05/07 10:01:26 wiz Exp $
+$NetBSD: patch-CMakeLists.txt,v 1.4 2023/11/07 20:01:20 adam Exp $
 
-PythonInterp is deprecated and does not work correctly.
 Do not set -O3 optimization flags.
 
---- CMakeLists.txt.orig        2023-04-28 06:55:41.000000000 +0000
+--- CMakeLists.txt.orig        2023-11-06 18:26:40.000000000 +0000
 +++ CMakeLists.txt
-@@ -41,7 +41,7 @@ message(STATUS "Using ClangConfig.cmake 
- 
- # Locate Python and check its version.
- #
--find_package(PythonInterp 3.6 REQUIRED)
-+find_package(Python3 COMPONENTS Interpreter Development)
- 
- # Locate pytest
- execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pytest --version
-@@ -170,8 +170,6 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU"
-     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=maybe-uninitialized")
+@@ -189,8 +189,6 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU"
+     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=non-template-friend")
    endif()
  
 -  set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3")



Home | Main Index | Thread Index | Old Index