diff options
author | Tim Biermann <tbier@posteo.de> | 2021-07-13 14:47:50 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2021-07-13 17:32:53 +0200 |
commit | 2ebcadb8715e1abc841418f7c3b8eee210b9175b (patch) | |
tree | 1ef84b77e38a25823443df81e323a8182f38a973 /fmt | |
parent | 6cf0c8980c2841c6fbdc1ce334e8a9e4b9449d10 (diff) | |
download | contrib-2ebcadb8715e1abc841418f7c3b8eee210b9175b.tar.gz contrib-2ebcadb8715e1abc841418f7c3b8eee210b9175b.tar.xz |
fmt: 7.1.3 -> 8.0.1
Diffstat (limited to 'fmt')
-rw-r--r-- | fmt/.footprint | 9 | ||||
-rw-r--r-- | fmt/.signature | 8 | ||||
-rw-r--r-- | fmt/Pkgfile | 10 |
3 files changed, 14 insertions, 13 deletions
diff --git a/fmt/.footprint b/fmt/.footprint index 1af634279..a167a476b 100644 --- a/fmt/.footprint +++ b/fmt/.footprint @@ -1,6 +1,7 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/include/ drwxr-xr-x root/root usr/include/fmt/ +-rw-r--r-- root/root usr/include/fmt/args.h -rw-r--r-- root/root usr/include/fmt/chrono.h -rw-r--r-- root/root usr/include/fmt/color.h -rw-r--r-- root/root usr/include/fmt/compile.h @@ -10,9 +11,9 @@ drwxr-xr-x root/root usr/include/fmt/ -rw-r--r-- root/root usr/include/fmt/locale.h -rw-r--r-- root/root usr/include/fmt/os.h -rw-r--r-- root/root usr/include/fmt/ostream.h --rw-r--r-- root/root usr/include/fmt/posix.h -rw-r--r-- root/root usr/include/fmt/printf.h -rw-r--r-- root/root usr/include/fmt/ranges.h +-rw-r--r-- root/root usr/include/fmt/xchar.h drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/cmake/ drwxr-xr-x root/root usr/lib/cmake/fmt/ @@ -20,8 +21,8 @@ drwxr-xr-x root/root usr/lib/cmake/fmt/ -rw-r--r-- root/root usr/lib/cmake/fmt/fmt-config.cmake -rw-r--r-- root/root usr/lib/cmake/fmt/fmt-targets-release.cmake -rw-r--r-- root/root usr/lib/cmake/fmt/fmt-targets.cmake -lrwxrwxrwx root/root usr/lib/libfmt.so -> libfmt.so.7 -lrwxrwxrwx root/root usr/lib/libfmt.so.7 -> libfmt.so.7.1.3 --rwxr-xr-x root/root usr/lib/libfmt.so.7.1.3 +lrwxrwxrwx root/root usr/lib/libfmt.so -> libfmt.so.8 +lrwxrwxrwx root/root usr/lib/libfmt.so.8 -> libfmt.so.8.0.1 +-rwxr-xr-x root/root usr/lib/libfmt.so.8.0.1 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/fmt.pc diff --git a/fmt/.signature b/fmt/.signature index 303acaeaa..6caedb1bd 100644 --- a/fmt/.signature +++ b/fmt/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF35m45QQe772rurh9s5dpdyLZXxZpNd8mChaRs1RrTaAj+kQEcnhYbwP7LK8E8xpm6I1Da+7kqemqjBoLl6W0dws= -SHA256 (Pkgfile) = 38cb40d4cb84b3d1c5279c57de53ebd776045918bebfa43bd4e40aad2dffa89e -SHA256 (.footprint) = f96ebfc6878433dc1d03145d898b44210eee4a3745d111352e81d658b3462928 -SHA256 (fmt-7.1.3.tar.gz) = 5cae7072042b3043e12d53d50ef404bbb76949dad1de368d7f993a15c8c05ecc +RWSagIOpLGJF31iWeROeOED4hPZ06EMMDTYMGimFSXMyPYIJpHuFvyYo/eR1nO+F33FXgj8APZpnI4SUg6na22hWFu0/BaEzuQk= +SHA256 (Pkgfile) = 8212fc99b2f2930587c02c9f8265f624dba426ccd7f77feca6637e34064bcf30 +SHA256 (.footprint) = 1352afed51768a19cc14235a0bf7a2ffdf30dddd2f21fda6fe12736eb5b2f70a +SHA256 (fmt-8.0.1.tar.gz) = b06ca3130158c625848f3fb7418f235155a4d389b2abc3a6245fb01cb0eb1e01 diff --git a/fmt/Pkgfile b/fmt/Pkgfile index 6b84f6905..1da3752ed 100644 --- a/fmt/Pkgfile +++ b/fmt/Pkgfile @@ -4,19 +4,19 @@ # Depends on: cmake name=fmt -version=7.1.3 -release=2 +version=8.0.1 +release=1 source=(https://github.com/fmtlib/$name/archive/$version/$name-$version.tar.gz) build() { - [[ -e /usr/bin/ninja ]] && PKGMK_FMT+=' -G Ninja' + prt-get isinst ninja && PKGMK_FMT+=' -G Ninja' cmake -S $name-$version -B build $PKGMK_FMT \ -D CMAKE_INSTALL_PREFIX=/usr \ -D CMAKE_INSTALL_LIBDIR=lib \ -D CMAKE_BUILD_TYPE=Release \ - -D BUILD_SHARED_LIBS=ON \ -D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \ - -D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \ + -D BUILD_SHARED_LIBS=ON \ + -D CMAKE_POSITION_INDEPENDENT_CODE=ON \ -Wno-dev cmake --build build DESTDIR=$PKG cmake --install build |