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: wiz
Date: Sun May 7 10:01:26 UTC 2023
Modified Files:
pkgsrc/devel/cvise: Makefile distinfo
pkgsrc/devel/cvise/patches: patch-CMakeLists.txt
Log Message:
cvise: update to 2.8.0.
Changes done in the release:
LLVM 16 is properly supported with bumped minimal CMake version (2f4e175)
the most beneficial passes (replace-function-def-with-decl and
replace-function-def-with-decl) take turn (after 30 transformations)
in early phases of reduction; that improves the speed of a reduction
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/cvise/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/cvise/distinfo
cvs rdiff -u -r1.2 -r1.3 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.11 pkgsrc/devel/cvise/Makefile:1.12
--- pkgsrc/devel/cvise/Makefile:1.11 Wed Apr 19 16:31:41 2023
+++ pkgsrc/devel/cvise/Makefile Sun May 7 10:01:26 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2023/04/19 16:31:41 adam Exp $
+# $NetBSD: Makefile,v 1.12 2023/05/07 10:01:26 wiz Exp $
-DISTNAME= cvise-2.7.0
+DISTNAME= cvise-2.8.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=marxin/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/devel/cvise/distinfo
diff -u pkgsrc/devel/cvise/distinfo:1.7 pkgsrc/devel/cvise/distinfo:1.8
--- pkgsrc/devel/cvise/distinfo:1.7 Wed Apr 19 16:31:41 2023
+++ pkgsrc/devel/cvise/distinfo Sun May 7 10:01:26 2023
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2023/04/19 16:31:41 adam Exp $
+$NetBSD: distinfo,v 1.8 2023/05/07 10:01:26 wiz Exp $
-BLAKE2s (cvise-2.7.0.tar.gz) = 19c0dca4f9d66d7a7639bfb062c8fdecdb8bf4c37cb012d75e3c2d862b02868c
-SHA512 (cvise-2.7.0.tar.gz) = 4da775e177c135d5282f8e3d9a33ae040f403eabcca8baf9f4f78adc05e3069626340005f9f41ab2f530c9269f4c5829bdd35b55433e2d539d42de002e42aa5e
-Size (cvise-2.7.0.tar.gz) = 269155 bytes
-SHA1 (patch-CMakeLists.txt) = edc521412898e30271f06b825eb9f3df12d188d7
+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
Index: pkgsrc/devel/cvise/patches/patch-CMakeLists.txt
diff -u pkgsrc/devel/cvise/patches/patch-CMakeLists.txt:1.2 pkgsrc/devel/cvise/patches/patch-CMakeLists.txt:1.3
--- pkgsrc/devel/cvise/patches/patch-CMakeLists.txt:1.2 Wed Apr 19 16:31:42 2023
+++ pkgsrc/devel/cvise/patches/patch-CMakeLists.txt Sun May 7 10:01:26 2023
@@ -1,10 +1,9 @@
-$NetBSD: patch-CMakeLists.txt,v 1.2 2023/04/19 16:31:42 adam Exp $
+$NetBSD: patch-CMakeLists.txt,v 1.3 2023/05/07 10:01:26 wiz Exp $
PythonInterp is deprecated and does not work correctly.
-Clang does not support -Wno-error=maybe-uninitialized option.
Do not set -O3 optimization flags.
---- CMakeLists.txt.orig 2022-12-23 10:31:49.000000000 +0000
+--- CMakeLists.txt.orig 2023-04-28 06:55:41.000000000 +0000
+++ CMakeLists.txt
@@ -41,7 +41,7 @@ message(STATUS "Using ClangConfig.cmake
@@ -15,19 +14,8 @@ Do not set -O3 optimization flags.
# Locate pytest
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pytest --version
-@@ -151,8 +151,8 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU"
- OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
- # XXX figure out how to get "-std=c++17 -fno-rtti" from LLVM. That's how we
- # get those options in the Automake path...
-- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror -Wno-error=maybe-uninitialized")
-- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -fno-rtti -fno-strict-aliasing -Wall -Wextra -Wno-unused-parameter -Werror -Wno-error=maybe-uninitialized")
-+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wno-error=maybe-uninitialized")
-+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -fno-rtti -fno-strict-aliasing -Wall -Wextra -Wno-unused-parameter")
- if(SUPPORTS_FVISIBILITY_INLINES_HIDDEN_FLAG)
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility-inlines-hidden")
- endif()
-@@ -160,8 +160,6 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU"
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=mismatched-new-delete")
+@@ -170,8 +170,6 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU"
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=maybe-uninitialized")
endif()
- set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3")
Home |
Main Index |
Thread Index |
Old Index