From owner-svn-ports-all@freebsd.org Sun Jul 24 19:15:30 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4F64BA2316; Sun, 24 Jul 2016 19:15:30 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B13FE1CFA; Sun, 24 Jul 2016 19:15:30 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6OJFTKQ019059; Sun, 24 Jul 2016 19:15:29 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6OJFTi3019056; Sun, 24 Jul 2016 19:15:29 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607241915.u6OJFTi3019056@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 24 Jul 2016 19:15:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419017 - in head/net-mgmt/seafile: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Jul 2016 19:15:30 -0000 Author: pi Date: Sun Jul 24 19:15:29 2016 New Revision: 419017 URL: https://svnweb.freebsd.org/changeset/ports/419017 Log: net-mgmt/seafile: 5.1.3 -> 5.1.4 - Added py-urllib3 to runtime depends - Added upgrading reminder in pkg-message.in - [fix] Fix seaf-fsck.sh --export fails without database - [fix] Fix users with Umlauts in their display name breaks group management and api2/account/info on some special Linux distribution - Remove user from groups when a user is deleted. - [fix] Fix can't generate shared link for read-only shared library - [fix] Fix can still view file history after library history is set to "no history". - [fix] Fix after moving or deleting multiple selected items in the webinterface, the buttons are lost until reloading - Check user before start seafile. The user must be the owner of seafile-data directory - Don't allow emails with very special characters that may containing XSS string to register - [fix] During downloading multiple files/folders, show "Total size exceeds limits" instead of "internal server error" when selected items exceeds limits. - [fix] When delete a share, only check whether the be-shared user exist or not. This is to avoid the situation that share to a user can't be deleted after the user be deleted. - Add a notificition to a user if he/she is added to a group - Improve UI for password change page when forcing password change after admin reset a user's password - [fix] Fix duplicated files show in Firefox if the folder name contains single quote ' PR: 211340 Submitted by: Ultima1252@gmail.com (maintainer) Modified: head/net-mgmt/seafile/Makefile head/net-mgmt/seafile/distinfo head/net-mgmt/seafile/files/pkg-message.in Modified: head/net-mgmt/seafile/Makefile ============================================================================== --- head/net-mgmt/seafile/Makefile Sun Jul 24 19:12:34 2016 (r419016) +++ head/net-mgmt/seafile/Makefile Sun Jul 24 19:15:29 2016 (r419017) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= seafile -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 DISTVERSIONPREFIX= v DISTVERSIONSUFFIX= -server CATEGORIES= net-mgmt @@ -23,20 +23,20 @@ LIB_DEPENDS= libsearpc.so:devel/libsearp libuuid.so:misc/e2fsprogs-libuuid \ libjansson.so:devel/jansson RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}urllib3>0:net/py-urllib3 \ bash:shells/bash USE_GITHUB= yes GH_ACCOUNT= haiwen USES= autoreconf gettext iconv libarchive libtool mysql pathfix \ - pkgconfig python:-2.7 shebangfix sqlite + pkgconfig python:-2.7 shebangfix sqlite ssl USE_GNOME= glib20 SHEBANG_FILES= scripts/*.sh scripts/upgrade/*.sh tests/*.py tests/basic/*.sh \ tests/sync-auto-test/*.template *.sh scripts/build/*.py \ scripts/*.py *.py scripts/upgrade/*.py app/seaf-cli \ tools/seafile-admin GNU_CONFIGURE= yes -USE_OPENSSL= yes USE_LDCONFIG= yes CONFIGURE_ENV= SSL_CFLAGS="${OPENSSLINC}" SSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" Modified: head/net-mgmt/seafile/distinfo ============================================================================== --- head/net-mgmt/seafile/distinfo Sun Jul 24 19:12:34 2016 (r419016) +++ head/net-mgmt/seafile/distinfo Sun Jul 24 19:15:29 2016 (r419017) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464609936 -SHA256 (haiwen-seafile-v5.1.3-server_GH0.tar.gz) = b0079b6fc55f96ca49a890740fd623bbf3704624a8c51af5dbd9e5333002c5ec -SIZE (haiwen-seafile-v5.1.3-server_GH0.tar.gz) = 1140668 +TIMESTAMP = 1469293619 +SHA256 (haiwen-seafile-v5.1.4-server_GH0.tar.gz) = b45b2d8bc252563d4a34094aa481db5550ea2a7daa65e946e2566353163e6919 +SIZE (haiwen-seafile-v5.1.4-server_GH0.tar.gz) = 1143972 Modified: head/net-mgmt/seafile/files/pkg-message.in ============================================================================== --- head/net-mgmt/seafile/files/pkg-message.in Sun Jul 24 19:12:34 2016 (r419016) +++ head/net-mgmt/seafile/files/pkg-message.in Sun Jul 24 19:15:29 2016 (r419017) @@ -5,3 +5,8 @@ end is using the seafile UID/GID as well chown -R seafile:seafile %%PREFIX%%/%%HAIWENDIR%%/conf \ %%PREFIX%%/%%HAIWENDIR%%/ccnet %%PREFIX%%/%%HAIWENDIR%%/seafile-data \ %%PREFIX%%/%%HAIWENDIR%%/pids %%PREFIX%%/%%HAIWENDIR%%/logs + +Don't forget to run update scripts after every minor and major update located in + %%PREFIX%%/%%SEAFILE_SERVER%%/upgrade + +Patch updates (5.1.x) don't require these scripts, however do required a restarted.