libpsl 0.21.2 -> 0.21.5 (#10125)

This commit is contained in:
Maximilian Downey Twiss
2024-07-11 15:22:46 +10:00
committed by GitHub
parent 162b2903e7
commit 4201027d60
4 changed files with 14 additions and 11 deletions

View File

@@ -3,7 +3,7 @@
/usr/local/include/libpsl.h
/usr/local/lib/libpsl.so
/usr/local/lib/libpsl.so.5
/usr/local/lib/libpsl.so.5.3.4
/usr/local/lib/libpsl.so.5.3.5
/usr/local/lib/pkgconfig/libpsl.pc
/usr/local/share/man/man1/psl-make-dafsa.1.zst
/usr/local/share/man/man1/psl.1.zst

View File

@@ -3,7 +3,7 @@
/usr/local/include/libpsl.h
/usr/local/lib/libpsl.so
/usr/local/lib/libpsl.so.5
/usr/local/lib/libpsl.so.5.3.4
/usr/local/lib/libpsl.so.5.3.5
/usr/local/lib/pkgconfig/libpsl.pc
/usr/local/share/man/man1/psl-make-dafsa.1.zst
/usr/local/share/man/man1/psl.1.zst

View File

@@ -3,7 +3,7 @@
/usr/local/include/libpsl.h
/usr/local/lib64/libpsl.so
/usr/local/lib64/libpsl.so.5
/usr/local/lib64/libpsl.so.5.3.4
/usr/local/lib64/libpsl.so.5.3.5
/usr/local/lib64/pkgconfig/libpsl.pc
/usr/local/share/man/man1/psl-make-dafsa.1.zst
/usr/local/share/man/man1/psl.1.zst

View File

@@ -3,22 +3,25 @@ require 'buildsystems/meson'
class Libpsl < Meson
description 'C library for the Public Suffix List'
homepage 'https://github.com/rockdaboot/libpsl'
@_ver = '0.21.2'
version @_ver.to_s
version '0.21.5'
license 'MIT'
compatibility 'all'
source_url "https://github.com/rockdaboot/libpsl/releases/download/#{@_ver}/libpsl-#{@_ver}.tar.lz"
source_sha256 'aa3d706c452786d1345e094dae201cd36d81f03cf81d636d5cfc10d365907f17'
source_url 'https://github.com/rockdaboot/libpsl.git'
git_hashtag version
binary_compression 'tar.zst'
binary_sha256({
aarch64: '81c52e6dc9a2d935016d0f1d65dde2e2fa122f55e79c3a4a9465698041c5fe63',
armv7l: '81c52e6dc9a2d935016d0f1d65dde2e2fa122f55e79c3a4a9465698041c5fe63',
i686: '3c9c931dc72bf5dac871eef9dda2a866087b42457d6bd7535f2c760f33f27128',
x86_64: '2ee50e70cf121a7f46577e0494cbfe121eb13c23ae8bc308027e5315ec8b4ccb'
aarch64: '33bd40a1ed45022c73edba450ea4c6880852a191a2efa14d94956cbb8b84dc92',
armv7l: '33bd40a1ed45022c73edba450ea4c6880852a191a2efa14d94956cbb8b84dc92',
i686: '2a9b55b193a0525fd07f1a5c5a67cfa1f913a4731e05a500a78112e2459d425a',
x86_64: 'efdc1d563225e066bb9ec3415715d721fcff2caf24d7304670bea57999c1f649'
})
depends_on 'glibc' # R
depends_on 'libidn2' # R
depends_on 'libunistring' # R
depends_on 'python3' => :build
# https://github.com/rockdaboot/libpsl/issues/218
# run_tests
end