Libksba 1.6.3 => 1.6.7 (#10684)

Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
This commit is contained in:
Ed Reel
2024-10-31 09:15:08 -05:00
committed by GitHub
parent bdb13f9709
commit 9d6cfb8303
4 changed files with 13 additions and 24 deletions

View File

@@ -2,7 +2,7 @@
/usr/local/lib/libksba.la
/usr/local/lib/libksba.so
/usr/local/lib/libksba.so.8
/usr/local/lib/libksba.so.8.14.3
/usr/local/lib/libksba.so.8.14.7
/usr/local/lib/pkgconfig/ksba.pc
/usr/local/share/aclocal/ksba.m4
/usr/local/share/info/ksba.info.zst

View File

@@ -2,7 +2,7 @@
/usr/local/lib/libksba.la
/usr/local/lib/libksba.so
/usr/local/lib/libksba.so.8
/usr/local/lib/libksba.so.8.14.3
/usr/local/lib/libksba.so.8.14.7
/usr/local/lib/pkgconfig/ksba.pc
/usr/local/share/aclocal/ksba.m4
/usr/local/share/info/ksba.info.zst

View File

@@ -2,7 +2,7 @@
/usr/local/lib64/libksba.la
/usr/local/lib64/libksba.so
/usr/local/lib64/libksba.so.8
/usr/local/lib64/libksba.so.8.14.3
/usr/local/lib64/libksba.so.8.14.7
/usr/local/lib64/pkgconfig/ksba.pc
/usr/local/share/aclocal/ksba.m4
/usr/local/share/info/ksba.info.zst

View File

@@ -1,36 +1,25 @@
require 'package'
require 'buildsystems/autotools'
class Libksba < Package
class Libksba < Autotools
description 'Libksba is a library to make the tasks of working with X.509 certificates, CMS data and related objects more easy.'
homepage 'https://www.gnupg.org/related_software/libksba/index.html'
version '1.6.3'
version '1.6.7'
license 'LGPL-3+, GPL-2+ and GPL-3+'
compatibility 'all'
source_url 'https://www.gnupg.org/ftp/gcrypt/libksba/libksba-1.6.3.tar.bz2'
source_sha256 '3f72c68db30971ebbf14367527719423f0a4d5f8103fc9f4a1c01a9fa440de5c'
source_url "https://www.gnupg.org/ftp/gcrypt/libksba/libksba-#{version}.tar.bz2"
source_sha256 'cf72510b8ebb4eb6693eef765749d83677a03c79291a311040a5bfd79baab763'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '3143a3ade1b121b8359f72da982aa9510e5846f1a4869f0d45690d6a03279d58',
armv7l: '3143a3ade1b121b8359f72da982aa9510e5846f1a4869f0d45690d6a03279d58',
i686: 'd427822f59b7a958fdbe3d6ec9793ab37c1e1a32cb33277d0cf380651abca2e4',
x86_64: '6efc93e6a46d47947344ff7f8c277219edeee50de94d653501db712800ea25a3'
aarch64: 'b93a69de2895d378b86d6b108eb31e9b4eef113310b94e43b5068ac1236c468a',
armv7l: 'b93a69de2895d378b86d6b108eb31e9b4eef113310b94e43b5068ac1236c468a',
i686: '7fa75bdb6503b2131dfe033b622ebfccba3559745e4ed4fffdc5bb68e8201980',
x86_64: '4aa6690deccb3bd613022b245e37ca233af675789ce4af13d09e0f0cbf47ef9d'
})
depends_on 'npth' => :build
depends_on 'glibc' # R
depends_on 'libgpg_error' # R
def self.build
system "./configure #{CREW_CONFIGURE_OPTIONS}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
def self.check
system 'make', 'check'
end
run_tests
end