From e063769af2d09b30068d522bafbcb4a7447f4e80 Mon Sep 17 00:00:00 2001 From: taca Date: Mon, 5 Jun 2017 16:01:56 +0000 Subject: Update php-libawl to 0.57. 2017-01-23 Florian Schlichting * release awl 0.57 * Update AUTHORS and ChangeLog 2017-01-10 Florian Schlichting * Browser: add ExtraRowFormat() to format additional rows differently 2017-01-08 Florian Schlichting * delete session after logout, clean up old sessions (fixes davical#65, Debian #643907) * always use full the ID as username, similar to davical's HTTPAuthSession (fix #1, fix #2, debian #703139) 2017-01-07 Florian Schlichting * Session::Log and ::Dbg are deprecated * vComponent: add missing strtoupper, so that BEGIN:TYPE...END:TYPE are really case-insensitive 2017-01-02 Florian Schlichting * vProperty: always escape backslash, and escape semicolon for "other" properties (fixes Debian bug #837154) 2016-12-31 Florian Schlichting * improve debug logging: ignore components, filter by remote IP or username 2016-12-28 Florian Schlichting * eliminate trailing whitespace, expand tabs * doc typos 2016-12-02 Florian Schlichting * Remove deprecated and unused class iCalendar along with remaining $c->local_tzid references 2016-12-01 Paul Kallnbach * Update vProperty.php 2016-06-13 Florian Schlichting * Bump AWL version to 0.57 (API change) * fix if-else logic, so that "Unable to Reset Password" does not get overwritten by "Temporary Password" form 2016-06-13 Basti * Fix link after password reset in case DAViCal is not installed in the webserver root. Closes:davical-project/davical#94 2016-05-08 Andrew McMillan * A semi-colon might be escaped within the text value. * Rename get_fields() function. * Improve access to the slow query threshold. 2016-05-10 Florian Schlichting * always remake the apidoc, and remove the stale copy from git * update Makefile to work with both php5 and php7 2016-02-22 ClemensN * fixed issue with escaped ',' in CATEGORIES Property that are seperators in this case --- devel/php-libawl/Makefile | 12 ++++++++---- devel/php-libawl/distinfo | 11 ++++++----- devel/php-libawl/patches/patch-Makefile | 15 +++++++++++++++ 3 files changed, 29 insertions(+), 9 deletions(-) create mode 100644 devel/php-libawl/patches/patch-Makefile (limited to 'devel') diff --git a/devel/php-libawl/Makefile b/devel/php-libawl/Makefile index d9012ea533f..18491714ca4 100644 --- a/devel/php-libawl/Makefile +++ b/devel/php-libawl/Makefile @@ -1,11 +1,10 @@ -# $NetBSD: Makefile,v 1.13 2016/06/07 17:55:51 joerg Exp $ +# $NetBSD: Makefile,v 1.14 2017/06/05 16:01:56 taca Exp $ # DISTNAME= libawl-${LIBAWL_VERSION} PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} -LIBAWL_VERSION= 0.56 CATEGORIES= devel -MASTER_SITES= -https://gitlab.com/davical-project/awl/repository/archive.tar.gz?ref=r${LIBAWL_VERSION} +MASTER_SITES= -https://gitlab.com/davical-project/awl/repository/archive.tar.gz?ref=${GITLAB_TAG} MAINTAINER= jym@NetBSD.org HOMEPAGE= https://gitlab.com/davical-project/awl @@ -19,7 +18,12 @@ DEPENDS+= ${PHP_PKG_PREFIX}-gettext-[0-9]*:../../devel/php-gettext INSTALLATION_DIRS= ${LIBAWLDIR} ${LIBAWLDIR}/inc ${LIBAWLDIR}/dba -WRKSRC= ${WRKDIR}/awl-r0.56-9abf998ba0179b9995747c7cc1a848b39cff0b3b +LIBAWL_VERSION= 0.57 +GITLAB_TAG= r${LIBAWL_VERSION} +GITLAB_REV= 4c75c662e8605ed54ba4b8e65e4c3a8cc773052f + +pre-patch: + ${MV} ${WRKDIR}/awl-${GITLAB_TAG}-${GITLAB_REV} ${WRKSRC} do-install: cd ${WRKSRC}/dba; \ diff --git a/devel/php-libawl/distinfo b/devel/php-libawl/distinfo index e59d994115b..cfd403b61c0 100644 --- a/devel/php-libawl/distinfo +++ b/devel/php-libawl/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.10 2016/06/07 17:55:51 joerg Exp $ +$NetBSD: distinfo,v 1.11 2017/06/05 16:01:56 taca Exp $ -SHA1 (libawl-0.56.tar.gz) = 9d88cdd139349e2b2330565c656e7c631adc3d77 -RMD160 (libawl-0.56.tar.gz) = 8f6b2265c7c95242c7fb251b2aa731dc675662d6 -SHA512 (libawl-0.56.tar.gz) = 6336d6f938330eee0b51f04665776269d974086ba56a3c8f4b7f53e7e17b637d899e9b329aeba3dcd690673a1a95a8cf03ae8417ebb9f356294314790915886a -Size (libawl-0.56.tar.gz) = 769208 bytes +SHA1 (libawl-0.57.tar.gz) = 3895707944695644255bd7070e8755ca4435ab2a +RMD160 (libawl-0.57.tar.gz) = dd659c3fe36919089da1cbb3f8cb4986b04c1a66 +SHA512 (libawl-0.57.tar.gz) = 0000a6ebb8d60c064f4083d2bc0c8d4f3f80fa69e422cab831192a8973749b0a88b2656a02f7d288a6fb7c7381e75b6d7886f4d15e335e886c28e98c277bc504 +Size (libawl-0.57.tar.gz) = 573804 bytes +SHA1 (patch-Makefile) = d56f95c5731321f87baec22bad0b1a830ea9bdef diff --git a/devel/php-libawl/patches/patch-Makefile b/devel/php-libawl/patches/patch-Makefile new file mode 100644 index 00000000000..598a857c701 --- /dev/null +++ b/devel/php-libawl/patches/patch-Makefile @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile,v 1.1 2017/06/05 16:01:56 taca Exp $ + +Do not try to build doc. + +--- Makefile.orig 2017-01-23 22:12:05.000000000 +0000 ++++ Makefile +@@ -10,7 +10,7 @@ snapshot : gitrev = $(shell git rev-pars + snapshot : version = $(majorversion)-git$(gitrev) + snapshot : issnapshot = 1 + +-all: built-docs inc/AWLUtilities.php ++all: inc/AWLUtilities.php + + built-docs: docs/phpdoc.ini inc/*.php + apigen generate --title=AWL --todo --tree --deprecated -s inc -d docs/api || phpdoc -c docs/phpdoc.ini || echo "WARNING: the docs could not be built" -- cgit v1.2.3