Received: by mail.netbsd.org (Postfix, from userid 605) id 83B4584D65; Sun, 3 Nov 2019 18:50:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0C16784D61 for ; Sun, 3 Nov 2019 18:50:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id LzC5FjYiMmRh for ; Sun, 3 Nov 2019 18:50:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 98A5384C6C for ; Sun, 3 Nov 2019 18:50:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 91CC3FA93; Sun, 3 Nov 2019 18:50:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1572807018209620" MIME-Version: 1.0 Date: Sun, 3 Nov 2019 18:50:18 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBGYXViZXJ0ZWF1?= Subject: CVS commit: pkgsrc/net/php-baikal To: pkgsrc-changes@NetBSD.org Reply-To: triaxx@netbsd.org X-Mailer: log_accum Message-Id: <20191103185018.91CC3FA93@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1572807018209620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: triaxx Date: Sun Nov 3 18:50:18 UTC 2019 Modified Files: pkgsrc/net/php-baikal: Makefile PLIST distinfo Log Message: php-baikal: update to 0.6.0 pkgsrc changes: --------------- * Remove APACHE_{GROUP,USER} definition to appease pkglint. * Remove an executable permission to suppress a warning. upstream changes: ----------------- 0.6.0 (2019-08-25) Added support for php 7.3 REMOVED support for php 5.x Enabled event invitation plugin Enabled calendar sharing plugin Ships with sabre/dav 4.0.1 0.5.3 (2019-05-13) Added confirmation page before upgrading to prevent aborting upgrades accidentally Ships with sabre/dav 3.2.3 0.5.2 (2019-04-26) Fixed creating new users/calendars New front page Increased timeout for database upgrades Ships with sabre/dav 3.2.3 0.5.1 (2019-04-21) Fixed authentication bypass Upgraded sabre/dav to version 3.2.3 Support for PHP 7.2 To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/net/php-baikal/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/net/php-baikal/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/net/php-baikal/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1572807018209620 Content-Disposition: inline Content-Length: 38888 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/php-baikal/Makefile diff -u pkgsrc/net/php-baikal/Makefile:1.10 pkgsrc/net/php-baikal/Makefile:1.11 --- pkgsrc/net/php-baikal/Makefile:1.10 Wed Apr 5 12:33:48 2017 +++ pkgsrc/net/php-baikal/Makefile Sun Nov 3 18:50:18 2019 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2017/04/05 12:33:48 fhajny Exp $ +# $NetBSD: Makefile,v 1.11 2019/11/03 18:50:18 triaxx Exp $ -DISTNAME= baikal-0.4.6 +DISTNAME= baikal-0.6.0 PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=fruux/} GITHUB_RELEASE= ${PKGVERSION_NOREV} @@ -45,6 +44,7 @@ CHECK_INTERPRETER_SKIP+= share/baikal/ve CHECK_INTERPRETER_SKIP+= share/baikal/vendor/sabre/dav/bin/migrateto20.php CHECK_INTERPRETER_SKIP+= share/baikal/vendor/sabre/dav/bin/migrateto21.php CHECK_INTERPRETER_SKIP+= share/baikal/vendor/sabre/dav/bin/migrateto30.php +CHECK_INTERPRETER_SKIP+= share/baikal/vendor/sabre/dav/bin/migrateto32.php CHECK_INTERPRETER_SKIP+= share/baikal/vendor/sabre/dav/bin/naturalselection CHECK_INTERPRETER_SKIP+= share/baikal/vendor/sabre/dav/bin/naturalselection.py CHECK_INTERPRETER_SKIP+= share/baikal/vendor/sabre/event/examples/promise.php @@ -59,8 +59,6 @@ CHECK_INTERPRETER_SKIP+= share/baikal/ve .include "../../mk/bsd.prefs.mk" -APACHE_USER?= www -APACHE_GROUP?= www PKG_GROUPS= ${APACHE_GROUP} PKG_USERS= ${APACHE_USER}:${APACHE_GROUP} @@ -70,6 +68,9 @@ PKG_GROUPS_VARS= APACHE_GROUP FILES_SUBST+= WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \ BAIKALDIR=${BAIKALDIR} +post-extract: + ${CHMOD} -x ${WRKSRC}/vendor/sabre/dav/bin/sabredav.php + do-install: ${RM} -f ${WRKSRC}/*orig ${RM} -f ${WRKSRC}/*/*/*/*/*orig Index: pkgsrc/net/php-baikal/PLIST diff -u pkgsrc/net/php-baikal/PLIST:1.6 pkgsrc/net/php-baikal/PLIST:1.7 --- pkgsrc/net/php-baikal/PLIST:1.6 Mon Aug 22 14:22:30 2016 +++ pkgsrc/net/php-baikal/PLIST Sun Nov 3 18:50:18 2019 @@ -1,13 +1,17 @@ -@comment $NetBSD: PLIST,v 1.6 2016/08/22 14:22:30 wiz Exp $ +@comment $NetBSD: PLIST,v 1.7 2019/11/03 18:50:18 triaxx Exp $ share/baikal/CHANGELOG.md share/baikal/Core/Distrib.php +share/baikal/Core/Frameworks/Baikal/Controller/Main.php +share/baikal/Core/Frameworks/Baikal/Controller/Navigation/Topbar/Anonymous.php share/baikal/Core/Frameworks/Baikal/Core/PDOBasicAuth.php share/baikal/Core/Frameworks/Baikal/Core/Server.php share/baikal/Core/Frameworks/Baikal/Core/Tools.php +share/baikal/Core/Frameworks/Baikal/Core/View.php share/baikal/Core/Frameworks/Baikal/Framework.php share/baikal/Core/Frameworks/Baikal/Model/AddressBook.php share/baikal/Core/Frameworks/Baikal/Model/AddressBook/Contact.php share/baikal/Core/Frameworks/Baikal/Model/Calendar.php +share/baikal/Core/Frameworks/Baikal/Model/Calendar/Calendar.php share/baikal/Core/Frameworks/Baikal/Model/Calendar/Event.php share/baikal/Core/Frameworks/Baikal/Model/Config.php share/baikal/Core/Frameworks/Baikal/Model/Config/Database.php @@ -16,10 +20,17 @@ share/baikal/Core/Frameworks/Baikal/Mode share/baikal/Core/Frameworks/Baikal/Model/Config/System.php share/baikal/Core/Frameworks/Baikal/Model/Principal.php share/baikal/Core/Frameworks/Baikal/Model/User.php +share/baikal/Core/Frameworks/Baikal/Resources/Images/logo-baikal.png +share/baikal/Core/Frameworks/Baikal/Resources/Templates/Main.html +share/baikal/Core/Frameworks/Baikal/Resources/Templates/Navigation/Topbar/Anonymous.html +share/baikal/Core/Frameworks/Baikal/Resources/Templates/Page/index.html +share/baikal/Core/Frameworks/Baikal/View/Main.php +share/baikal/Core/Frameworks/Baikal/View/Navigation/Topbar/Anonymous.php share/baikal/Core/Frameworks/Baikal/WWWRoot/index.php share/baikal/Core/Frameworks/BaikalAdmin/Controller/Dashboard.php share/baikal/Core/Frameworks/BaikalAdmin/Controller/Install/Database.php share/baikal/Core/Frameworks/BaikalAdmin/Controller/Install/Initialize.php +share/baikal/Core/Frameworks/BaikalAdmin/Controller/Install/UpgradeConfirmation.php share/baikal/Core/Frameworks/BaikalAdmin/Controller/Install/VersionUpgrade.php share/baikal/Core/Frameworks/BaikalAdmin/Controller/Login.php share/baikal/Core/Frameworks/BaikalAdmin/Controller/Logout.php @@ -45,6 +56,7 @@ share/baikal/Core/Frameworks/BaikalAdmin share/baikal/Core/Frameworks/BaikalAdmin/Resources/Templates/Dashboard.html share/baikal/Core/Frameworks/BaikalAdmin/Resources/Templates/Install/Database.html share/baikal/Core/Frameworks/BaikalAdmin/Resources/Templates/Install/Initialize.html +share/baikal/Core/Frameworks/BaikalAdmin/Resources/Templates/Install/UpgradeConfirmation.html share/baikal/Core/Frameworks/BaikalAdmin/Resources/Templates/Login.html share/baikal/Core/Frameworks/BaikalAdmin/Resources/Templates/Navigation/Topbar.html share/baikal/Core/Frameworks/BaikalAdmin/Resources/Templates/Navigation/Topbar/Anonymous.html @@ -68,6 +80,7 @@ share/baikal/Core/Frameworks/BaikalAdmin share/baikal/Core/Frameworks/BaikalAdmin/View/Dashboard.php share/baikal/Core/Frameworks/BaikalAdmin/View/Install/Database.php share/baikal/Core/Frameworks/BaikalAdmin/View/Install/Initialize.php +share/baikal/Core/Frameworks/BaikalAdmin/View/Install/UpgradeConfirmation.php share/baikal/Core/Frameworks/BaikalAdmin/View/Login.php share/baikal/Core/Frameworks/BaikalAdmin/View/Navigation/Topbar.php share/baikal/Core/Frameworks/BaikalAdmin/View/Navigation/Topbar/Anonymous.php @@ -132,18 +145,19 @@ share/baikal/Core/Frameworks/TwitterBoot share/baikal/Core/Frameworks/TwitterBootstrap/css/bootstrap-responsive.min.css share/baikal/Core/Frameworks/TwitterBootstrap/css/bootstrap.css share/baikal/Core/Frameworks/TwitterBootstrap/css/bootstrap.min.css -share/baikal/Core/Frameworks/TwitterBootstrap/img/glyphicons-halflings-orig.png share/baikal/Core/Frameworks/TwitterBootstrap/img/glyphicons-halflings-white.png share/baikal/Core/Frameworks/TwitterBootstrap/img/glyphicons-halflings.png -share/baikal/Core/Frameworks/TwitterBootstrap/js/bootstrap-popover.js -share/baikal/Core/Frameworks/TwitterBootstrap/js/bootstrap-tooltip.js share/baikal/Core/Frameworks/TwitterBootstrap/js/bootstrap.js share/baikal/Core/Frameworks/TwitterBootstrap/js/bootstrap.min.js -share/baikal/Core/Frameworks/TwitterBootstrap/js/jquery-1.7.1.min.js +share/baikal/Core/Frameworks/TwitterBootstrap/js/jquery-3.1.0.min.js share/baikal/Core/Resources/Db/MySQL/db.sql share/baikal/Core/Resources/Db/SQLite/db.sql share/baikal/Core/Resources/System/htaccess-documentroot share/baikal/Core/Resources/System/htaccess-specific +share/baikal/Core/Resources/Web/Baikal/Images/logo-baikal.png +share/baikal/Core/Resources/Web/Baikal/Templates/Main.html +share/baikal/Core/Resources/Web/Baikal/Templates/Navigation/Topbar/Anonymous.html +share/baikal/Core/Resources/Web/Baikal/Templates/Page/index.html share/baikal/Core/Resources/Web/BaikalAdmin/GlyphiconsPro/generate-sprite.php share/baikal/Core/Resources/Web/BaikalAdmin/GlyphiconsPro/glyph-dark.png share/baikal/Core/Resources/Web/BaikalAdmin/GlyphiconsPro/glyph2x-dark.png @@ -155,6 +169,7 @@ share/baikal/Core/Resources/Web/BaikalAd share/baikal/Core/Resources/Web/BaikalAdmin/Templates/Dashboard.html share/baikal/Core/Resources/Web/BaikalAdmin/Templates/Install/Database.html share/baikal/Core/Resources/Web/BaikalAdmin/Templates/Install/Initialize.html +share/baikal/Core/Resources/Web/BaikalAdmin/Templates/Install/UpgradeConfirmation.html share/baikal/Core/Resources/Web/BaikalAdmin/Templates/Login.html share/baikal/Core/Resources/Web/BaikalAdmin/Templates/Navigation/Topbar.html share/baikal/Core/Resources/Web/BaikalAdmin/Templates/Navigation/Topbar/Anonymous.html @@ -173,14 +188,11 @@ share/baikal/Core/Resources/Web/TwitterB share/baikal/Core/Resources/Web/TwitterBootstrap/css/bootstrap-responsive.min.css share/baikal/Core/Resources/Web/TwitterBootstrap/css/bootstrap.css share/baikal/Core/Resources/Web/TwitterBootstrap/css/bootstrap.min.css -share/baikal/Core/Resources/Web/TwitterBootstrap/img/glyphicons-halflings-orig.png share/baikal/Core/Resources/Web/TwitterBootstrap/img/glyphicons-halflings-white.png share/baikal/Core/Resources/Web/TwitterBootstrap/img/glyphicons-halflings.png -share/baikal/Core/Resources/Web/TwitterBootstrap/js/bootstrap-popover.js -share/baikal/Core/Resources/Web/TwitterBootstrap/js/bootstrap-tooltip.js share/baikal/Core/Resources/Web/TwitterBootstrap/js/bootstrap.js share/baikal/Core/Resources/Web/TwitterBootstrap/js/bootstrap.min.js -share/baikal/Core/Resources/Web/TwitterBootstrap/js/jquery-1.7.1.min.js +share/baikal/Core/Resources/Web/TwitterBootstrap/js/jquery-3.1.0.min.js share/baikal/LICENSE share/baikal/README.md share/baikal/Specific/db/.empty @@ -191,6 +203,10 @@ share/baikal/html/cal.php share/baikal/html/card.php share/baikal/html/dav.php share/baikal/html/index.php +share/baikal/html/res/core/Baikal/Images/logo-baikal.png +share/baikal/html/res/core/Baikal/Templates/Main.html +share/baikal/html/res/core/Baikal/Templates/Navigation/Topbar/Anonymous.html +share/baikal/html/res/core/Baikal/Templates/Page/index.html share/baikal/html/res/core/BaikalAdmin/GlyphiconsPro/generate-sprite.php share/baikal/html/res/core/BaikalAdmin/GlyphiconsPro/glyph-dark.png share/baikal/html/res/core/BaikalAdmin/GlyphiconsPro/glyph2x-dark.png @@ -202,6 +218,7 @@ share/baikal/html/res/core/BaikalAdmin/S share/baikal/html/res/core/BaikalAdmin/Templates/Dashboard.html share/baikal/html/res/core/BaikalAdmin/Templates/Install/Database.html share/baikal/html/res/core/BaikalAdmin/Templates/Install/Initialize.html +share/baikal/html/res/core/BaikalAdmin/Templates/Install/UpgradeConfirmation.html share/baikal/html/res/core/BaikalAdmin/Templates/Login.html share/baikal/html/res/core/BaikalAdmin/Templates/Navigation/Topbar.html share/baikal/html/res/core/BaikalAdmin/Templates/Navigation/Topbar/Anonymous.html @@ -220,14 +237,12 @@ share/baikal/html/res/core/TwitterBootst share/baikal/html/res/core/TwitterBootstrap/css/bootstrap-responsive.min.css share/baikal/html/res/core/TwitterBootstrap/css/bootstrap.css share/baikal/html/res/core/TwitterBootstrap/css/bootstrap.min.css -share/baikal/html/res/core/TwitterBootstrap/img/glyphicons-halflings-orig.png share/baikal/html/res/core/TwitterBootstrap/img/glyphicons-halflings-white.png share/baikal/html/res/core/TwitterBootstrap/img/glyphicons-halflings.png -share/baikal/html/res/core/TwitterBootstrap/js/bootstrap-popover.js -share/baikal/html/res/core/TwitterBootstrap/js/bootstrap-tooltip.js share/baikal/html/res/core/TwitterBootstrap/js/bootstrap.js share/baikal/html/res/core/TwitterBootstrap/js/bootstrap.min.js -share/baikal/html/res/core/TwitterBootstrap/js/jquery-1.7.1.min.js +share/baikal/html/res/core/TwitterBootstrap/js/jquery-3.1.0.min.js +share/baikal/html/robots.txt share/baikal/vendor/autoload.php share/baikal/vendor/bin/generate_vcards share/baikal/vendor/bin/naturalselection @@ -240,8 +255,24 @@ share/baikal/vendor/composer/autoload_fi share/baikal/vendor/composer/autoload_namespaces.php share/baikal/vendor/composer/autoload_psr4.php share/baikal/vendor/composer/autoload_real.php +share/baikal/vendor/composer/autoload_static.php share/baikal/vendor/composer/installed.json +share/baikal/vendor/psr/log/.gitignore +share/baikal/vendor/psr/log/LICENSE +share/baikal/vendor/psr/log/Psr/Log/AbstractLogger.php +share/baikal/vendor/psr/log/Psr/Log/InvalidArgumentException.php +share/baikal/vendor/psr/log/Psr/Log/LogLevel.php +share/baikal/vendor/psr/log/Psr/Log/LoggerAwareInterface.php +share/baikal/vendor/psr/log/Psr/Log/LoggerAwareTrait.php +share/baikal/vendor/psr/log/Psr/Log/LoggerInterface.php +share/baikal/vendor/psr/log/Psr/Log/LoggerTrait.php +share/baikal/vendor/psr/log/Psr/Log/NullLogger.php +share/baikal/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +share/baikal/vendor/psr/log/Psr/Log/Test/TestLogger.php +share/baikal/vendor/psr/log/README.md +share/baikal/vendor/psr/log/composer.json share/baikal/vendor/sabre/dav/.gitignore +share/baikal/vendor/sabre/dav/.php_cs.dist share/baikal/vendor/sabre/dav/.travis.yml share/baikal/vendor/sabre/dav/CHANGELOG.md share/baikal/vendor/sabre/dav/CONTRIBUTING.md @@ -249,10 +280,10 @@ share/baikal/vendor/sabre/dav/LICENSE share/baikal/vendor/sabre/dav/README.md share/baikal/vendor/sabre/dav/bin/build.php share/baikal/vendor/sabre/dav/bin/googlecode_upload.py -share/baikal/vendor/sabre/dav/bin/migrateto17.php share/baikal/vendor/sabre/dav/bin/migrateto20.php share/baikal/vendor/sabre/dav/bin/migrateto21.php share/baikal/vendor/sabre/dav/bin/migrateto30.php +share/baikal/vendor/sabre/dav/bin/migrateto32.php share/baikal/vendor/sabre/dav/bin/naturalselection share/baikal/vendor/sabre/dav/bin/sabredav share/baikal/vendor/sabre/dav/bin/sabredav.php @@ -262,13 +293,13 @@ share/baikal/vendor/sabre/dav/examples/c share/baikal/vendor/sabre/dav/examples/fileserver.php share/baikal/vendor/sabre/dav/examples/groupwareserver.php share/baikal/vendor/sabre/dav/examples/minimal.php -share/baikal/vendor/sabre/dav/examples/sql/mysql.addressbook.sql +share/baikal/vendor/sabre/dav/examples/sql/mysql.addressbooks.sql share/baikal/vendor/sabre/dav/examples/sql/mysql.calendars.sql share/baikal/vendor/sabre/dav/examples/sql/mysql.locks.sql share/baikal/vendor/sabre/dav/examples/sql/mysql.principals.sql share/baikal/vendor/sabre/dav/examples/sql/mysql.propertystorage.sql share/baikal/vendor/sabre/dav/examples/sql/mysql.users.sql -share/baikal/vendor/sabre/dav/examples/sql/pgsql.addressbook.sql +share/baikal/vendor/sabre/dav/examples/sql/pgsql.addressbooks.sql share/baikal/vendor/sabre/dav/examples/sql/pgsql.calendars.sql share/baikal/vendor/sabre/dav/examples/sql/pgsql.locks.sql share/baikal/vendor/sabre/dav/examples/sql/pgsql.principals.sql @@ -289,6 +320,7 @@ share/baikal/vendor/sabre/dav/lib/CalDAV share/baikal/vendor/sabre/dav/lib/CalDAV/Backend/PDO.php share/baikal/vendor/sabre/dav/lib/CalDAV/Backend/SchedulingSupport.php share/baikal/vendor/sabre/dav/lib/CalDAV/Backend/SharingSupport.php +share/baikal/vendor/sabre/dav/lib/CalDAV/Backend/SimplePDO.php share/baikal/vendor/sabre/dav/lib/CalDAV/Backend/SubscriptionSupport.php share/baikal/vendor/sabre/dav/lib/CalDAV/Backend/SyncSupport.php share/baikal/vendor/sabre/dav/lib/CalDAV/Calendar.php @@ -301,7 +333,6 @@ share/baikal/vendor/sabre/dav/lib/CalDAV share/baikal/vendor/sabre/dav/lib/CalDAV/ICalendar.php share/baikal/vendor/sabre/dav/lib/CalDAV/ICalendarObject.php share/baikal/vendor/sabre/dav/lib/CalDAV/ICalendarObjectContainer.php -share/baikal/vendor/sabre/dav/lib/CalDAV/IShareableCalendar.php share/baikal/vendor/sabre/dav/lib/CalDAV/ISharedCalendar.php share/baikal/vendor/sabre/dav/lib/CalDAV/Notifications/Collection.php share/baikal/vendor/sabre/dav/lib/CalDAV/Notifications/ICollection.php @@ -323,7 +354,6 @@ share/baikal/vendor/sabre/dav/lib/CalDAV share/baikal/vendor/sabre/dav/lib/CalDAV/Schedule/Outbox.php share/baikal/vendor/sabre/dav/lib/CalDAV/Schedule/Plugin.php share/baikal/vendor/sabre/dav/lib/CalDAV/Schedule/SchedulingObject.php -share/baikal/vendor/sabre/dav/lib/CalDAV/ShareableCalendar.php share/baikal/vendor/sabre/dav/lib/CalDAV/SharedCalendar.php share/baikal/vendor/sabre/dav/lib/CalDAV/SharingPlugin.php share/baikal/vendor/sabre/dav/lib/CalDAV/Subscriptions/ISubscription.php @@ -377,6 +407,7 @@ share/baikal/vendor/sabre/dav/lib/DAV/Au share/baikal/vendor/sabre/dav/lib/DAV/Auth/Backend/BackendInterface.php share/baikal/vendor/sabre/dav/lib/DAV/Auth/Backend/BasicCallBack.php share/baikal/vendor/sabre/dav/lib/DAV/Auth/Backend/File.php +share/baikal/vendor/sabre/dav/lib/DAV/Auth/Backend/IMAP.php share/baikal/vendor/sabre/dav/lib/DAV/Auth/Backend/PDO.php share/baikal/vendor/sabre/dav/lib/DAV/Auth/Plugin.php share/baikal/vendor/sabre/dav/lib/DAV/Browser/GuessContentType.php @@ -427,6 +458,7 @@ share/baikal/vendor/sabre/dav/lib/DAV/FS share/baikal/vendor/sabre/dav/lib/DAV/FSExt/File.php share/baikal/vendor/sabre/dav/lib/DAV/File.php share/baikal/vendor/sabre/dav/lib/DAV/ICollection.php +share/baikal/vendor/sabre/dav/lib/DAV/ICopyTarget.php share/baikal/vendor/sabre/dav/lib/DAV/IExtendedCollection.php share/baikal/vendor/sabre/dav/lib/DAV/IFile.php share/baikal/vendor/sabre/dav/lib/DAV/IMoveTarget.php @@ -452,6 +484,8 @@ share/baikal/vendor/sabre/dav/lib/DAV/Pr share/baikal/vendor/sabre/dav/lib/DAV/PropertyStorage/Plugin.php share/baikal/vendor/sabre/dav/lib/DAV/Server.php share/baikal/vendor/sabre/dav/lib/DAV/ServerPlugin.php +share/baikal/vendor/sabre/dav/lib/DAV/Sharing/ISharedNode.php +share/baikal/vendor/sabre/dav/lib/DAV/Sharing/Plugin.php share/baikal/vendor/sabre/dav/lib/DAV/SimpleCollection.php share/baikal/vendor/sabre/dav/lib/DAV/SimpleFile.php share/baikal/vendor/sabre/dav/lib/DAV/StringUtil.php @@ -463,11 +497,15 @@ share/baikal/vendor/sabre/dav/lib/DAV/UU share/baikal/vendor/sabre/dav/lib/DAV/Version.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Element/Prop.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Element/Response.php +share/baikal/vendor/sabre/dav/lib/DAV/Xml/Element/Sharee.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/Complex.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/GetLastModified.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/Href.php +share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/Invite.php +share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/LocalHref.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/LockDiscovery.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/ResourceType.php +share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/ShareAccess.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/SupportedLock.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/SupportedMethodSet.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Property/SupportedReportSet.php @@ -475,9 +513,11 @@ share/baikal/vendor/sabre/dav/lib/DAV/Xm share/baikal/vendor/sabre/dav/lib/DAV/Xml/Request/MkCol.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Request/PropFind.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Request/PropPatch.php +share/baikal/vendor/sabre/dav/lib/DAV/Xml/Request/ShareResource.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Request/SyncCollectionReport.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Response/MultiStatus.php share/baikal/vendor/sabre/dav/lib/DAV/Xml/Service.php +share/baikal/vendor/sabre/dav/lib/DAVACL/ACLTrait.php share/baikal/vendor/sabre/dav/lib/DAVACL/AbstractPrincipalCollection.php share/baikal/vendor/sabre/dav/lib/DAVACL/Exception/AceConflict.php share/baikal/vendor/sabre/dav/lib/DAVACL/Exception/NeedPrivileges.php @@ -502,9 +542,12 @@ share/baikal/vendor/sabre/dav/lib/DAVACL share/baikal/vendor/sabre/dav/lib/DAVACL/Xml/Property/CurrentUserPrivilegeSet.php share/baikal/vendor/sabre/dav/lib/DAVACL/Xml/Property/Principal.php share/baikal/vendor/sabre/dav/lib/DAVACL/Xml/Property/SupportedPrivilegeSet.php +share/baikal/vendor/sabre/dav/lib/DAVACL/Xml/Request/AclPrincipalPropSetReport.php share/baikal/vendor/sabre/dav/lib/DAVACL/Xml/Request/ExpandPropertyReport.php +share/baikal/vendor/sabre/dav/lib/DAVACL/Xml/Request/PrincipalMatchReport.php share/baikal/vendor/sabre/dav/lib/DAVACL/Xml/Request/PrincipalPropertySearchReport.php share/baikal/vendor/sabre/dav/lib/DAVACL/Xml/Request/PrincipalSearchPropertySetReport.php +share/baikal/vendor/sabre/dav/phpstan.neon share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/AbstractPDOTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/AbstractTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/Mock.php @@ -512,7 +555,9 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/MockSharing.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/MockSubscriptionSupport.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/PDOMySQLTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/PDOPgSqlTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/PDOSqliteTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/SimplePDOTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/CalendarHomeNotificationsTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/CalendarHomeSharedCalendarsTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/CalendarHomeSubscriptionsTest.php @@ -556,7 +601,6 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/PluginPropertiesWithSharedCalendarTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/ScheduleDeliverTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/SchedulingObjectTest.php -share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/ShareableCalendarTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/SharedCalendarTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/SharingPluginTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/CreateSubscriptionTest.php @@ -585,6 +629,7 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/AbstractPDOTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/Mock.php share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/PDOMySQLTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/PDOPgSqlTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/PDOSqliteTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/CardTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/IDirectoryTest.php @@ -597,6 +642,7 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/ValidateVCardTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/Xml/Property/SupportedAddressDataTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/Xml/Property/SupportedCollationSetTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/Xml/Request/AddressBookMultiGetTest.php share/baikal/vendor/sabre/dav/tests/Sabre/CardDAV/Xml/Request/AddressBookQueryReportTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/AbstractServer.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/AbstractBasicTest.php @@ -606,8 +652,10 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/ApacheTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/BasicCallBackTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/FileTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/IMAPTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/Mock.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/PDOMySQLTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/PDOPgSqlTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/PDOSqliteTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Auth/PluginTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/BasicNodeTest.php @@ -618,11 +666,14 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/DAV/ClientMock.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/ClientTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/CorePluginTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/DbTestHelperTrait.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Exception/LockedTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Exception/PaymentRequiredTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Exception/ServiceUnavailableTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Exception/TooManyMatchesTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/ExceptionTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/FS/NodeTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/FSExt/DirectoryTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/FSExt/FileTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/FSExt/ServerTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/GetIfConditionsTest.php @@ -638,6 +689,8 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/FileTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/Mock.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/PDOMySQLTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/PDOPgSqlTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/PDOSqliteTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/PDOTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Locks/MSWordTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Plugin2Test.php @@ -645,9 +698,12 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Mock/Collection.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Mock/File.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Mock/PropertiesCollection.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Mock/SharedNode.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Mock/StreamingFile.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/MockLogger.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Mount/PluginTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/ObjectTreeTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PSR3Test.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PartialUpdate/FileMock.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PartialUpdate/PluginTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PartialUpdate/SpecificationTest.php @@ -656,6 +712,7 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/AbstractPDOTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/Mock.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/PDOMysqlTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/PDOPgSqlTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/PDOSqliteTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/PluginTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/ServerEventsTest.php @@ -667,6 +724,9 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/DAV/ServerRangeTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/ServerSimpleTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/ServerUpdatePropertiesTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Sharing/PluginTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Sharing/ShareResourceTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/SimpleCollectionTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/SimpleFileTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/StringUtilTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Sync/MockSyncCollection.php @@ -678,16 +738,23 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/DAV/UUIDUtilTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Element/PropTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Element/ResponseTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Element/ShareeTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/HrefTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/InviteTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/LastModifiedTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/LocalHrefTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/LockDiscoveryTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/ShareAccessTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/SupportedMethodSetTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/SupportedReportSetTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Request/PropFindTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Request/PropPatchTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Request/ShareResourceTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Request/SyncCollectionTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/ServiceTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAV/Xml/XmlTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/ACLMethodTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/AclPrincipalPropSetReportTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/AllowAccessTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/BlockAccessTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/Exception/AceConflictTest.php @@ -707,8 +774,10 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/AbstractPDOTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/Mock.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/PDOMySQLTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/PDOPgSqlTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/PDOSqliteTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalCollectionTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalMatchTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalPropertySearchTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalSearchPropertySetTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalTest.php @@ -718,42 +787,38 @@ share/baikal/vendor/sabre/dav/tests/Sabr share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/Xml/Property/CurrentUserPrivilegeSetTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/Xml/Property/PrincipalTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/Xml/Property/SupportedPrivilegeSetTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/Xml/Request/AclPrincipalPropSetReportTest.php +share/baikal/vendor/sabre/dav/tests/Sabre/DAVACL/Xml/Request/PrincipalMatchReportTest.php share/baikal/vendor/sabre/dav/tests/Sabre/DAVServerTest.php share/baikal/vendor/sabre/dav/tests/Sabre/HTTP/ResponseMock.php share/baikal/vendor/sabre/dav/tests/Sabre/HTTP/SapiMock.php share/baikal/vendor/sabre/dav/tests/Sabre/TestUtil.php share/baikal/vendor/sabre/dav/tests/bootstrap.php share/baikal/vendor/sabre/dav/tests/phpcs/ruleset.xml -share/baikal/vendor/sabre/dav/tests/phpunit.xml +share/baikal/vendor/sabre/dav/tests/phpunit.xml.dist +share/baikal/vendor/sabre/event/.gitattributes share/baikal/vendor/sabre/event/.gitignore share/baikal/vendor/sabre/event/.travis.yml share/baikal/vendor/sabre/event/CHANGELOG.md share/baikal/vendor/sabre/event/LICENSE share/baikal/vendor/sabre/event/README.md +share/baikal/vendor/sabre/event/_config.yml share/baikal/vendor/sabre/event/bin/.empty share/baikal/vendor/sabre/event/composer.json -share/baikal/vendor/sabre/event/examples/promise.php -share/baikal/vendor/sabre/event/examples/tail.php +share/baikal/vendor/sabre/event/lib/Emitter.php +share/baikal/vendor/sabre/event/lib/EmitterInterface.php +share/baikal/vendor/sabre/event/lib/EmitterTrait.php share/baikal/vendor/sabre/event/lib/EventEmitter.php -share/baikal/vendor/sabre/event/lib/EventEmitterInterface.php -share/baikal/vendor/sabre/event/lib/EventEmitterTrait.php share/baikal/vendor/sabre/event/lib/Loop/Loop.php share/baikal/vendor/sabre/event/lib/Loop/functions.php share/baikal/vendor/sabre/event/lib/Promise.php share/baikal/vendor/sabre/event/lib/Promise/functions.php share/baikal/vendor/sabre/event/lib/PromiseAlreadyResolvedException.php share/baikal/vendor/sabre/event/lib/Version.php +share/baikal/vendor/sabre/event/lib/WildcardEmitter.php +share/baikal/vendor/sabre/event/lib/WildcardEmitterTrait.php share/baikal/vendor/sabre/event/lib/coroutine.php share/baikal/vendor/sabre/event/phpunit.xml.dist -share/baikal/vendor/sabre/event/tests/ContinueCallbackTest.php -share/baikal/vendor/sabre/event/tests/CoroutineTest.php -share/baikal/vendor/sabre/event/tests/EventEmitterTest.php -share/baikal/vendor/sabre/event/tests/Loop/FunctionsTest.php -share/baikal/vendor/sabre/event/tests/Loop/LoopTest.php -share/baikal/vendor/sabre/event/tests/Promise/FunctionsTest.php -share/baikal/vendor/sabre/event/tests/Promise/PromiseTest.php -share/baikal/vendor/sabre/event/tests/PromiseTest.php -share/baikal/vendor/sabre/event/tests/benchmark/bench.php share/baikal/vendor/sabre/http/.gitignore share/baikal/vendor/sabre/http/.travis.yml share/baikal/vendor/sabre/http/CHANGELOG.md @@ -786,8 +851,6 @@ share/baikal/vendor/sabre/http/lib/Respo share/baikal/vendor/sabre/http/lib/ResponseDecorator.php share/baikal/vendor/sabre/http/lib/ResponseInterface.php share/baikal/vendor/sabre/http/lib/Sapi.php -share/baikal/vendor/sabre/http/lib/URLUtil.php -share/baikal/vendor/sabre/http/lib/Util.php share/baikal/vendor/sabre/http/lib/Version.php share/baikal/vendor/sabre/http/lib/functions.php share/baikal/vendor/sabre/http/tests/HTTP/Auth/AWSTest.php @@ -798,32 +861,27 @@ share/baikal/vendor/sabre/http/tests/HTT share/baikal/vendor/sabre/http/tests/HTTP/FunctionsTest.php share/baikal/vendor/sabre/http/tests/HTTP/MessageDecoratorTest.php share/baikal/vendor/sabre/http/tests/HTTP/MessageTest.php +share/baikal/vendor/sabre/http/tests/HTTP/NegotiateTest.php share/baikal/vendor/sabre/http/tests/HTTP/RequestDecoratorTest.php share/baikal/vendor/sabre/http/tests/HTTP/RequestTest.php share/baikal/vendor/sabre/http/tests/HTTP/ResponseDecoratorTest.php share/baikal/vendor/sabre/http/tests/HTTP/ResponseTest.php share/baikal/vendor/sabre/http/tests/HTTP/SapiTest.php share/baikal/vendor/sabre/http/tests/HTTP/URLUtilTest.php -share/baikal/vendor/sabre/http/tests/HTTP/UtilTest.php share/baikal/vendor/sabre/http/tests/bootstrap.php share/baikal/vendor/sabre/http/tests/phpcs/ruleset.xml share/baikal/vendor/sabre/http/tests/phpunit.xml +share/baikal/vendor/sabre/uri/.gitattributes share/baikal/vendor/sabre/uri/.gitignore -share/baikal/vendor/sabre/uri/.travis.yml -share/baikal/vendor/sabre/uri/CHANGELOG.md +share/baikal/vendor/sabre/uri/.php_cs.dist share/baikal/vendor/sabre/uri/LICENSE -share/baikal/vendor/sabre/uri/README.md share/baikal/vendor/sabre/uri/composer.json +share/baikal/vendor/sabre/uri/lib/InvalidUriException.php share/baikal/vendor/sabre/uri/lib/Version.php share/baikal/vendor/sabre/uri/lib/functions.php -share/baikal/vendor/sabre/uri/tests/BuildTest.php -share/baikal/vendor/sabre/uri/tests/NormalizeTest.php -share/baikal/vendor/sabre/uri/tests/ParseTest.php -share/baikal/vendor/sabre/uri/tests/ResolveTest.php -share/baikal/vendor/sabre/uri/tests/SplitTest.php -share/baikal/vendor/sabre/uri/tests/phpcs/ruleset.xml -share/baikal/vendor/sabre/uri/tests/phpunit.xml.dist +share/baikal/vendor/sabre/uri/phpstan.neon share/baikal/vendor/sabre/vobject/.gitignore +share/baikal/vendor/sabre/vobject/.php_cs.dist share/baikal/vendor/sabre/vobject/.travis.yml share/baikal/vendor/sabre/vobject/CHANGELOG.md share/baikal/vendor/sabre/vobject/LICENSE @@ -914,6 +972,7 @@ share/baikal/vendor/sabre/vobject/lib/ti share/baikal/vendor/sabre/vobject/lib/timezonedata/php-bc.php share/baikal/vendor/sabre/vobject/lib/timezonedata/php-workaround.php share/baikal/vendor/sabre/vobject/lib/timezonedata/windowszones.php +share/baikal/vendor/sabre/vobject/phpstan.neon share/baikal/vendor/sabre/vobject/resources/schema/xcal.rng share/baikal/vendor/sabre/vobject/resources/schema/xcard.rng share/baikal/vendor/sabre/vobject/tests/VObject/AttachIssueTest.php @@ -945,6 +1004,7 @@ share/baikal/vendor/sabre/vobject/tests/ share/baikal/vendor/sabre/vobject/tests/VObject/ITip/BrokerNewEventTest.php share/baikal/vendor/sabre/vobject/tests/VObject/ITip/BrokerProcessMessageTest.php share/baikal/vendor/sabre/vobject/tests/VObject/ITip/BrokerProcessReplyTest.php +share/baikal/vendor/sabre/vobject/tests/VObject/ITip/BrokerSignificantChangesTest.php share/baikal/vendor/sabre/vobject/tests/VObject/ITip/BrokerTester.php share/baikal/vendor/sabre/vobject/tests/VObject/ITip/BrokerTimezoneInParseEventInfoWithoutMasterTest.php share/baikal/vendor/sabre/vobject/tests/VObject/ITip/BrokerUpdateEventTest.php @@ -1013,6 +1073,7 @@ share/baikal/vendor/sabre/vobject/tests/ share/baikal/vendor/sabre/vobject/tests/bootstrap.php share/baikal/vendor/sabre/vobject/tests/phpunit.xml share/baikal/vendor/sabre/xml/.gitignore +share/baikal/vendor/sabre/xml/.php_cs.dist share/baikal/vendor/sabre/xml/.travis.yml share/baikal/vendor/sabre/xml/CHANGELOG.md share/baikal/vendor/sabre/xml/LICENSE @@ -1040,6 +1101,7 @@ share/baikal/vendor/sabre/xml/lib/XmlSer share/baikal/vendor/sabre/xml/tests/Sabre/Xml/ContextStackTest.php share/baikal/vendor/sabre/xml/tests/Sabre/Xml/Deserializer/EnumTest.php share/baikal/vendor/sabre/xml/tests/Sabre/Xml/Deserializer/KeyValueTest.php +share/baikal/vendor/sabre/xml/tests/Sabre/Xml/Deserializer/MixedContentTest.php share/baikal/vendor/sabre/xml/tests/Sabre/Xml/Deserializer/RepeatingElementsTest.php share/baikal/vendor/sabre/xml/tests/Sabre/Xml/Deserializer/ValueObjectTest.php share/baikal/vendor/sabre/xml/tests/Sabre/Xml/Element/CDataTest.php @@ -1055,8 +1117,6 @@ share/baikal/vendor/sabre/xml/tests/Sabr share/baikal/vendor/sabre/xml/tests/Sabre/Xml/Serializer/RepeatingElementsTest.php share/baikal/vendor/sabre/xml/tests/Sabre/Xml/ServiceTest.php share/baikal/vendor/sabre/xml/tests/Sabre/Xml/WriterTest.php -share/baikal/vendor/sabre/xml/tests/bootstrap.php -share/baikal/vendor/sabre/xml/tests/phpcs/ruleset.xml share/baikal/vendor/sabre/xml/tests/phpunit.xml.dist share/baikal/vendor/twig/twig/.travis.yml share/baikal/vendor/twig/twig/AUTHORS Index: pkgsrc/net/php-baikal/distinfo diff -u pkgsrc/net/php-baikal/distinfo:1.7 pkgsrc/net/php-baikal/distinfo:1.8 --- pkgsrc/net/php-baikal/distinfo:1.7 Mon Aug 22 14:22:30 2016 +++ pkgsrc/net/php-baikal/distinfo Sun Nov 3 18:50:18 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2016/08/22 14:22:30 wiz Exp $ +$NetBSD: distinfo,v 1.8 2019/11/03 18:50:18 triaxx Exp $ -SHA1 (baikal-0.4.6.zip) = bc2850281223da9cc7471a157de754f8feb03783 -RMD160 (baikal-0.4.6.zip) = 98bc26a0fbbfdceb59958f6ef94827bea82b3bb8 -SHA512 (baikal-0.4.6.zip) = 8cb4141deb4233858764e6bd0eb44691c5e31677dd6dde09e8249675a331115af8bbcf181c4371338165a0ef40f894dfc4ed0502b46a6bc8387924f6a65725a1 -Size (baikal-0.4.6.zip) = 3288478 bytes +SHA1 (baikal-0.6.0.zip) = 47398b00cad4330bfac9df8abc03df896e2d206f +RMD160 (baikal-0.6.0.zip) = 3c0e03f2558c18997f0a712d313d67fd6b0dbf87 +SHA512 (baikal-0.6.0.zip) = 75cd3e30c3df4bc5057e14215b320647c9683702171671ed58ac83e12f7770454d81970f036fd96dbb9aefe0928fcf40ae11128687fd261a0dccadf15d148905 +Size (baikal-0.6.0.zip) = 3432758 bytes --_----------=_1572807018209620--