update to seafile-6.2.9

This commit is contained in:
kirby 2019-01-13 06:59:42 +00:00
parent 88e3388520
commit 0b2b2d99bc
6 changed files with 11 additions and 27 deletions

View File

@ -1,6 +1,6 @@
# $OpenBSD: Makefile.inc,v 1.32 2018/09/18 08:04:06 kirby Exp $
# $OpenBSD: Makefile.inc,v 1.33 2019/01/13 06:59:42 kirby Exp $
GH_TAGNAME ?= v6.2.5
GH_TAGNAME ?= v6.2.9
V = ${GH_TAGNAME:S/v//:S/-server//:S/-testing//:S/-latest//}
DISTNAME = ${GH_PROJECT}-${V}

View File

@ -1,2 +1,2 @@
SHA256 (seafile-client-6.2.5.tar.gz) = pr+jtBOj2VPTxmlDJoda6VnpD74L2NDqDKRCKAt6vxE=
SIZE (seafile-client-6.2.5.tar.gz) = 2342196
SHA256 (seafile-client-6.2.9.tar.gz) = NQSgJ2+L6BFZUtYT0zY2fDHUe1IhxF1JnS077A2MnKw=
SIZE (seafile-client-6.2.9.tar.gz) = 2342951

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.8 2018/08/15 20:27:27 kirby Exp $
# $OpenBSD: Makefile,v 1.9 2019/01/13 06:59:42 kirby Exp $
COMMENT = simple RPC framework based on GObject system
@ -30,7 +30,7 @@ AUTOMAKE_VERSION = 1.9
MODPY_ADJ_FILES = lib/searpc-codegen.py pysearpc/pygencode.py
pre-configure:
do-gen:
cd ${WRKSRC} && env AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION} autoreconf -fi

View File

@ -1,10 +1,9 @@
# $OpenBSD: Makefile,v 1.19 2018/12/11 07:12:53 kirby Exp $
# $OpenBSD: Makefile,v 1.20 2019/01/13 06:59:42 kirby Exp $
COMMENT = seafile daemon
GH_PROJECT = seafile
PKGNAME = ${GH_PROJECT}-daemon-${V}
REVISION = 0
SHARED_LIBS = seafile 3.0
@ -35,8 +34,8 @@ CONFIGURE_ARGS += --disable-fuse \
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/inotify" \
LDFLAGS="-L${LOCALBASE}/lib -L${LOCALBASE}/lib/inotify"
AUTOCONF_VERSION = 2.61
AUTOMAKE_VERSION = 1.9
AUTOCONF_VERSION = 2.62
AUTOMAKE_VERSION = 1.11
MODPY_ADJ_FILES = scripts/*.py scripts/build/*.py integration-tests/*.py \
app/seaf-cli

View File

@ -1,2 +1,2 @@
SHA256 (seafile-6.2.5.tar.gz) = CJmYHUPblrRls7lFwWC2L8ZYVW+QyNQm9rik6p7bLag=
SIZE (seafile-6.2.5.tar.gz) = 703387
SHA256 (seafile-6.2.9.tar.gz) = Vq52nGNEcBgdy7DwtyRTCB4RkPPUfSihYKkFx33MUtA=
SIZE (seafile-6.2.9.tar.gz) = 703349

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-daemon_http-tx-mgr_c,v 1.7 2018/11/08 21:15:28 naddy Exp $
CURLE_SSL_CACERT is obsolete in curl >=7.62.0
Index: daemon/http-tx-mgr.c
--- daemon/http-tx-mgr.c.orig
+++ daemon/http-tx-mgr.c
@@ -1136,7 +1136,6 @@ curl_error_to_http_task_error (int curl_error)
case CURLE_SSL_CONNECT_ERROR:
case CURLE_PEER_FAILED_VERIFICATION:
case CURLE_SSL_CERTPROBLEM:
- case CURLE_SSL_CACERT:
case CURLE_SSL_CACERT_BADFILE:
case CURLE_SSL_ISSUER_ERROR:
return HTTP_TASK_ERR_SSL;