libarchive: update to 3.3.3.
This commit is contained in:
parent
06ff21f198
commit
e28d11cfbb
2 changed files with 9 additions and 24 deletions
|
@ -1,15 +0,0 @@
|
||||||
$OpenBSD: patch-libarchive_archive_openssl_hmac_private_h,v 1.3 2018/02/18 14:57:47 sthen Exp $
|
|
||||||
|
|
||||||
Index: libarchive/archive_openssl_hmac_private.h
|
|
||||||
--- libarchive/archive_openssl_hmac_private.h.orig
|
|
||||||
+++ libarchive/archive_openssl_hmac_private.h
|
|
||||||
@@ -28,7 +28,8 @@
|
|
||||||
#include <openssl/hmac.h>
|
|
||||||
#include <openssl/opensslv.h>
|
|
||||||
|
|
||||||
-#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
|
|
||||||
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || \
|
|
||||||
+ (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
|
|
||||||
#include <stdlib.h> /* malloc, free */
|
|
||||||
#include <string.h> /* memset */
|
|
||||||
static inline HMAC_CTX *HMAC_CTX_new(void)
|
|
|
@ -1,27 +1,27 @@
|
||||||
# Template file for 'libarchive'
|
# Template file for 'libarchive'
|
||||||
pkgname=libarchive
|
pkgname=libarchive
|
||||||
version=3.3.2
|
version=3.3.3
|
||||||
revision=5
|
revision=1
|
||||||
bootstrap=yes
|
bootstrap=yes
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="$(vopt_enable acl) $(vopt_enable acl xattr)
|
configure_args="$(vopt_enable acl) $(vopt_enable acl xattr)
|
||||||
$(vopt_with expat) $(vopt_with lzo lzo2) $(vopt_with lz4)
|
$(vopt_with expat) $(vopt_with lzo lzo2) $(vopt_with lz4)
|
||||||
$(vopt_with ssl openssl) --without-xml2 --without-nettle
|
$(vopt_with ssl openssl) $(vopt_with zstd) --without-xml2
|
||||||
--disable-rpath ac_cv_func_lchmod=no"
|
--without-nettle --disable-rpath ac_cv_func_lchmod=no"
|
||||||
makedepends="zlib-devel bzip2-devel liblzma-devel
|
makedepends="zlib-devel bzip2-devel liblzma-devel
|
||||||
$(vopt_if acl acl-devel) $(vopt_if expat expat-devel)
|
$(vopt_if acl acl-devel) $(vopt_if expat expat-devel) $(vopt_if zstd zstd-devel)
|
||||||
$(vopt_if lzo lzo-devel) $(vopt_if lz4 liblz4-devel) $(vopt_if ssl libressl-devel)"
|
$(vopt_if lzo lzo-devel) $(vopt_if lz4 liblz4-devel) $(vopt_if ssl libressl-devel)"
|
||||||
short_desc="Library to read/write several different streaming archive formats"
|
short_desc="Library to read/write several different streaming archive formats"
|
||||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||||
|
license="BSD-2-Clause"
|
||||||
homepage="http://www.libarchive.org/"
|
homepage="http://www.libarchive.org/"
|
||||||
license="BSD"
|
|
||||||
distfiles="http://www.libarchive.org/downloads/libarchive-${version}.tar.gz"
|
distfiles="http://www.libarchive.org/downloads/libarchive-${version}.tar.gz"
|
||||||
checksum=ed2dbd6954792b2c054ccf8ec4b330a54b85904a80cef477a1c74643ddafa0ce
|
checksum=ba7eb1781c9fbbae178c4c6bad1c6eb08edab9a1496c64833d1715d022b30e2e
|
||||||
|
|
||||||
# Package build options
|
# Package build options
|
||||||
build_options="acl expat lzo lz4 ssl"
|
build_options="acl expat lzo lz4 ssl zstd"
|
||||||
# Enable acl and ssl by default.
|
# Enable acl and ssl by default.
|
||||||
build_options_default="acl ssl"
|
build_options_default="acl ssl zstd"
|
||||||
|
|
||||||
if [ "$CHROOT_READY" ]; then
|
if [ "$CHROOT_READY" ]; then
|
||||||
hostmakedepends="automake libtool pkg-config"
|
hostmakedepends="automake libtool pkg-config"
|
||||||
|
|
Loading…
Reference in a new issue