* update spdlog to 1.15.0-2

This commit is contained in:
Alexander Baldeck 2025-01-02 09:53:31 +01:00
parent e2dc469317
commit dd65aa46ab
2 changed files with 12 additions and 7 deletions

View File

@ -1,9 +1,13 @@
pkgbase = spdlog
pkgdesc = Very fast, header-only/compiled, C++ logging library
pkgver = 1.15.0
pkgrel = 1
pkgrel = 2
url = https://github.com/gabime/spdlog
arch = x86_64
arch = powerpc64le
arch = powerpc64
arch = powerpc
arch = riscv64
license = MIT
makedepends = cmake
makedepends = catch2
@ -13,9 +17,9 @@ pkgbase = spdlog
provides = libspdlog.so
source = spdlog-1.15.0.tar.gz::https://github.com/gabime/spdlog/archive/v1.15.0.tar.gz
source = spdlog_fmt_external.patch
source = fix_build_with_fmt11.patch::https://github.com/gabime/spdlog/commit/d276069a6e916b1e1fd45885b15b72bd8ee000a7.patch
source = fix_update_to_string_view_function_for_fmt_11.1.patch::https://github.com/gabime/spdlog/commit/276ee5f5c0eb13626bd367b006ace5eae9526d8a.patch
sha256sums = 9962648c9b4f1a7bbc76fd8d9172555bad1871fdb14ff4f842ef87949682caa5
sha256sums = a0eb34b7c6920f0db2587460071f53372663c191cdfe34bf5ea2704c309c745f
sha256sums = 9208168114b0996d6c4b74cfbdf145ed3209680bef258b9306467c39f1149202
sha256sums = 7491e085df3f456b14d3df99629282e2d82105e2fe5d75024fb8f230affddd19
pkgname = spdlog

View File

@ -5,7 +5,7 @@
pkgname=spdlog
pkgver=1.15.0
pkgrel=1
pkgrel=2
pkgdesc='Very fast, header-only/compiled, C++ logging library'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url='https://github.com/gabime/spdlog'
@ -22,18 +22,19 @@ makedepends=(
source=(
"$pkgname-$pkgver.tar.gz::https://github.com/gabime/spdlog/archive/v$pkgver.tar.gz"
"spdlog_fmt_external.patch"
"fix_build_with_fmt11.patch::https://github.com/gabime/spdlog/commit/d276069a6e916b1e1fd45885b15b72bd8ee000a7.patch"
"fix_update_to_string_view_function_for_fmt_11.1.patch::https://github.com/gabime/spdlog/commit/276ee5f5c0eb13626bd367b006ace5eae9526d8a.patch"
)
provides=(
'libspdlog.so'
)
sha256sums=('9962648c9b4f1a7bbc76fd8d9172555bad1871fdb14ff4f842ef87949682caa5'
'a0eb34b7c6920f0db2587460071f53372663c191cdfe34bf5ea2704c309c745f'
'9208168114b0996d6c4b74cfbdf145ed3209680bef258b9306467c39f1149202')
'7491e085df3f456b14d3df99629282e2d82105e2fe5d75024fb8f230affddd19')
prepare() {
cd "$pkgname-$pkgver"
patch -p1 <../spdlog_fmt_external.patch
patch -p1 < ../spdlog_fmt_external.patch
patch -p1 < ../fix_update_to_string_view_function_for_fmt_11.1.patch
}
build() {