* update fast_float to 8.0.0-2

This commit is contained in:
Alexander Baldeck 2025-03-03 14:52:00 +01:00
parent 39645b784e
commit 66f6fc9770
2 changed files with 11 additions and 11 deletions

View File

@ -1,14 +1,14 @@
pkgbase = fast_float
pkgdesc = Fast and exact implementation of the C++ from_chars functions for float and double types
pkgver = 7.0.0
pkgrel = 1
pkgver = 8.0.0
pkgrel = 2
url = https://github.com/fastfloat/fast_float
arch = any
license = Apache-2.0 OR BSL-1.0 OR MIT
makedepends = cmake
makedepends = doctest
makedepends = git
source = fast_float-7.0.0.tar.gz::https://github.com/fastfloat/fast_float/archive/v7.0.0.tar.gz
b2sums = 7334a74952aba9629e0cd0f3b49679ed8f9c84436d3e9b10438d09416341343efc34acc0f87283a20fff5866d1e5787f456ac8a37f0a918823369419378ddb53
source = git+https://github.com/fastfloat/fast_float.git#tag=v8.0.0
b2sums = 492e029994959dfccc2ffb67d67a8c462baddcc6d6cb313d86a9da5978f9c29b401605f0503b7fdffb444702893bafc661fc36137f0f2bc23283acdbbaacdc8b
pkgname = fast_float

View File

@ -5,22 +5,22 @@
# Contributor: endlesseden <eden at rose dot place>
pkgname=fast_float
pkgver=7.0.0
pkgrel=1
pkgver=8.0.0
pkgrel=2
pkgdesc='Fast and exact implementation of the C++ from_chars functions for float and double types'
arch=(any)
url="https://github.com/fastfloat/$pkgname"
url="https://github.com/fastfloat/fast_float"
license=('Apache-2.0 OR BSL-1.0 OR MIT')
makedepends=(
'cmake'
'doctest'
'git'
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
b2sums=('7334a74952aba9629e0cd0f3b49679ed8f9c84436d3e9b10438d09416341343efc34acc0f87283a20fff5866d1e5787f456ac8a37f0a918823369419378ddb53')
source=("git+$url.git#tag=v$pkgver")
b2sums=('492e029994959dfccc2ffb67d67a8c462baddcc6d6cb313d86a9da5978f9c29b401605f0503b7fdffb444702893bafc661fc36137f0f2bc23283acdbbaacdc8b')
build() {
cmake -B build -S $pkgname-$pkgver \
cmake -B build -S $pkgname \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-Wno-dev \
@ -35,5 +35,5 @@ check() {
package() {
DESTDIR="$pkgdir" cmake --install build
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" $pkgname-$pkgver/LICENSE-MIT
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" $pkgname/LICENSE-MIT
}