File tree Expand file tree Collapse file tree 10 files changed +45
-8
lines changed Expand file tree Collapse file tree 10 files changed +45
-8
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " glibmm" ,
3
3
"version" : " 2.80.1" ,
4
+ "port-version" : 1 ,
4
5
"description" : " This is glibmm, a C++ API for parts of glib that are useful for C++." ,
5
6
"homepage" : " https://www.gtkmm.org." ,
6
7
"license" : " LGPL-2.1-or-later" ,
10
11
" glib" ,
11
12
" libffi" ,
12
13
" libiconv" ,
13
- " libsigcpp-3 " ,
14
+ " libsigcpp" ,
14
15
" pcre" ,
15
16
{
16
17
"name" : " vcpkg-tool-meson" ,
Original file line number Diff line number Diff line change @@ -23,9 +23,14 @@ vcpkg_cmake_configure(
23
23
24
24
vcpkg_cmake_install ()
25
25
vcpkg_copy_pdbs ()
26
-
27
26
vcpkg_fixup_pkgconfig ()
28
27
28
+ vcpkg_replace_string ("${CURRENT_PACKAGES_DIR} /lib/pkgconfig/gsl.pc" "\$ {GSL_CBLAS_LIB}" "-lgsl \$ {GSL_CBLAS_LIB}" )
29
+ if (EXISTS "${CURRENT_PACKAGES_DIR} /debug/lib/pkgconfig/gsl.pc" )
30
+ vcpkg_replace_string ("${CURRENT_PACKAGES_DIR} /debug/lib/pkgconfig/gsl.pc" "-lgslcblas" "-lgslcblasd" )
31
+ vcpkg_replace_string ("${CURRENT_PACKAGES_DIR} /debug/lib/pkgconfig/gsl.pc" "\$ {GSL_CBLAS_LIB}" "-lgsld \$ {GSL_CBLAS_LIB}" )
32
+ endif ()
33
+
29
34
file (INSTALL "${CMAKE_CURRENT_LIST_DIR} /usage" DESTINATION "${CURRENT_PACKAGES_DIR} /share/${PORT} " )
30
35
file (INSTALL "${SOURCE_PATH} /COPYING" DESTINATION "${CURRENT_PACKAGES_DIR} /share/${PORT} " RENAME copyright )
31
- configure_file ("${CMAKE_CURRENT_LIST_DIR} /vcpkg-cmake-wrapper.cmake" "${CURRENT_PACKAGES_DIR} /share/${PORT} /vcpkg-cmake-wrapper.cmake" @ONLY )
36
+ configure_file ("${CMAKE_CURRENT_LIST_DIR} /vcpkg-cmake-wrapper.cmake" "${CURRENT_PACKAGES_DIR} /share/${PORT} /vcpkg-cmake-wrapper.cmake" @ONLY )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gsl" ,
3
3
"version" : " 2.8" ,
4
+ "port-version" : 1 ,
4
5
"description" : " The GNU Scientific Library is a numerical library for C and C++ programmers" ,
5
6
"homepage" : " https://www.gnu.org/software/gsl/" ,
6
7
"license" : " GPL-3.0-or-later" ,
Original file line number Diff line number Diff line change
1
+ diff --git a/CMakeLists.txt b/CMakeLists.txt
2
+ --- a/CMakeLists.txt
3
+ +++ b/CMakeLists.txt
4
+ @@ -16,9 +16,9 @@
5
+
6
+ cmake_minimum_required (VERSION 3.2)
7
+
8
+ set (SIGCXX_MAJOR_VERSION 3)
9
+ - set (SIGCXX_MINOR_VERSION 4)
10
+ + set (SIGCXX_MINOR_VERSION 6)
11
+ set (SIGCXX_MICRO_VERSION 0)
12
+
13
+ set (SIGCXX_API_VERSION 3.0)
14
+ set (PACKAGE_VERSION ${SIGCXX_MAJOR_VERSION}.${SIGCXX_MINOR_VERSION}.${SIGCXX_MICRO_VERSION})
Original file line number Diff line number Diff line change @@ -2,12 +2,13 @@ vcpkg_from_github(
2
2
OUT_SOURCE_PATH SOURCE_PATH
3
3
REPO libsigcplusplus/libsigcplusplus
4
4
REF "${VERSION} "
5
- SHA512 0d22275995a1629ae73b0cc2b2f2598b18aa0ed6d35bd3f1735a50f54d356fb248dedc8d9b5f2794830866b04e0f58ce641048e2df7215ec2e6eac744de58a27
5
+ SHA512 0d22275995a1629ae73b0cc2b2f2598b18aa0ed6d35bd3f1735a50f54d356fb248dedc8d9b5f2794830866b04e0f58ce641048e2df7215ec2e6eac744de58a27
6
6
HEAD_REF master
7
7
PATCHES
8
8
disable_tests_enable_static_build.patch
9
9
fix-shared-windows-build.patch
10
10
fix_include_path.patch
11
+ fix_version.patch
11
12
)
12
13
13
14
vcpkg_cmake_configure (
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " libsigcpp" ,
3
3
"version" : " 3.6.0" ,
4
- "port-version" : 1 ,
4
+ "port-version" : 2 ,
5
5
"description" : " Typesafe callback framework for C++" ,
6
6
"homepage" : " https://libsigcplusplus.github.io/libsigcplusplus/" ,
7
7
"license" : " LGPL-3.0-or-later" ,
Original file line number Diff line number Diff line change 3230
3230
},
3231
3231
"glibmm" : {
3232
3232
"baseline" : " 2.80.1" ,
3233
- "port-version" : 0
3233
+ "port-version" : 1
3234
3234
},
3235
3235
"glm" : {
3236
3236
"baseline" : " 1.0.1" ,
3362
3362
},
3363
3363
"gsl" : {
3364
3364
"baseline" : " 2.8" ,
3365
- "port-version" : 0
3365
+ "port-version" : 1
3366
3366
},
3367
3367
"gsl-lite" : {
3368
3368
"baseline" : " 0.42.0" ,
5242
5242
},
5243
5243
"libsigcpp" : {
5244
5244
"baseline" : " 3.6.0" ,
5245
- "port-version" : 1
5245
+ "port-version" : 2
5246
5246
},
5247
5247
"libsigcpp-3" : {
5248
5248
"baseline" : " 3.0.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"versions" : [
3
+ {
4
+ "git-tree" : " 8d6c1e2f8d051288fce26c9294a15c89f3a56c3b" ,
5
+ "version" : " 2.80.1" ,
6
+ "port-version" : 1
7
+ },
3
8
{
4
9
"git-tree" : " a25c0ff9ecf2824710c645d6b236f10341ab68e6" ,
5
10
"version" : " 2.80.1" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"versions" : [
3
+ {
4
+ "git-tree" : " e842d0c0f2aa72b22baf30c1350f81fcc87591dc" ,
5
+ "version" : " 2.8" ,
6
+ "port-version" : 1
7
+ },
3
8
{
4
9
"git-tree" : " 065963abda1b0c77fc000f1624636bc5aec7e876" ,
5
10
"version" : " 2.8" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"versions" : [
3
+ {
4
+ "git-tree" : " 5b48fe434789aee633527a307273c41f0b8be925" ,
5
+ "version" : " 3.6.0" ,
6
+ "port-version" : 2
7
+ },
3
8
{
4
9
"git-tree" : " 7acf22cbf38c907f3309b3478dd61dd9ed7a78f0" ,
5
10
"version" : " 3.6.0" ,
You can’t perform that action at this time.
0 commit comments