From owner-svn-ports-all@freebsd.org Tue Mar 16 19:26:04 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1761356A66B; Tue, 16 Mar 2021 19:26:04 +0000 (UTC) (envelope-from nc@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F0NYm0Bc2z3JFb; Tue, 16 Mar 2021 19:26:04 +0000 (UTC) (envelope-from nc@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ED663292C3; Tue, 16 Mar 2021 19:26:03 +0000 (UTC) (envelope-from nc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12GJQ3NA098410; Tue, 16 Mar 2021 19:26:03 GMT (envelope-from nc@FreeBSD.org) Received: (from nc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12GJQ3aF098408; Tue, 16 Mar 2021 19:26:03 GMT (envelope-from nc@FreeBSD.org) Message-Id: <202103161926.12GJQ3aF098408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nc set sender to nc@FreeBSD.org using -f From: Neel Chauhan Date: Tue, 16 Mar 2021 19:26:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568605 - head/www/piwigo X-SVN-Group: ports-head X-SVN-Commit-Author: nc X-SVN-Commit-Paths: head/www/piwigo X-SVN-Commit-Revision: 568605 X-SVN-Commit-Repository: ports 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.34 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: Tue, 16 Mar 2021 19:26:04 -0000 Author: nc Date: Tue Mar 16 19:26:03 2021 New Revision: 568605 URL: https://svnweb.freebsd.org/changeset/ports/568605 Log: www/piwigo: update to 11.3.0 Chanegs: https://piwigo.org/release-11.0.0 PR: 254331 Submitted by: Ralf van der Enden (maintainer) Modified: head/www/piwigo/Makefile head/www/piwigo/distinfo head/www/piwigo/pkg-plist Modified: head/www/piwigo/Makefile ============================================================================== --- head/www/piwigo/Makefile Tue Mar 16 19:13:51 2021 (r568604) +++ head/www/piwigo/Makefile Tue Mar 16 19:26:03 2021 (r568605) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= piwigo -DISTVERSION= 2.10.2 +DISTVERSION= 11.3.0 CATEGORIES= www MASTER_SITES= https://piwigo.org/download/dlcounter.php?code=${PORTVERSION}&/ @@ -12,10 +12,11 @@ COMMENT= PHP based Web Gallery LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/doc/COPYING +RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/sodium.so:security/pecl-libsodium@${PHP_FLAVOR} + USES= cpe php:web zip -USE_PHP= calendar ctype dom exif filter gd gettext hash iconv json \ - mbstring mcrypt mysqli openssl pcre pdf pdo posix session \ - simplexml sockets spl tokenizer xml xmlreader xmlwriter zlib +USE_PHP= ctype dom exif filter gd hash iconv json mbstring mysqli \ + openssl pcre pdo session simplexml spl tokenizer xml zlib NO_ARCH= yes NO_BUILD= yes @@ -34,20 +35,21 @@ PLIST_SUB+= CHOWN="${CHOWN}" \ WWWOWN="${WWWOWN}" PORTDOCS= README_ca.txt README_en.txt README_fr.txt -OPTIONS_DEFINE= DOCS EXAMPLES IMAGICK X11 -OPTIONS_DEFAULT= IMAGICK +OPTIONS_DEFINE= DOCS EXAMPLES +OPTIONS_GROUP= OPT +OPTIONS_GROUP_OPT= EXIFTOOL FFMPEG IMAGICK MEDIAINFO +EXIFTOOL_DESC= exiftool support (for plugins) IMAGICK_DESC= ${IMAGEMAGICK_DESC} +MEDIAINFO_DESC= mediainfo support (for plugins) +OPT_DESC= Optional dependencies -.include +EXIFTOOL_RUN_DEPENDS= exiftool:graphics/p5-Image-ExifTool +FFMPEG_RUN_DEPENDS= ffmpeg:multimedia/ffmpeg +IMAGICK_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:graphics/pecl-imagick@${PHP_FLAVOR} +MEDIAINFO_RUN_DEPENDS= mediainfo:multimedia/mediainfo -.if ${PORT_OPTIONS:MIMAGICK} -.if ${PORT_OPTIONS:MX11} -RUN_DEPENDS+= ${LOCALBASE}/bin/convert:graphics/ImageMagick6 -.else -RUN_DEPENDS+= ${LOCALBASE}/bin/convert:graphics/ImageMagick6-nox11 -.endif -.endif +.include pre-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR}/ Modified: head/www/piwigo/distinfo ============================================================================== --- head/www/piwigo/distinfo Tue Mar 16 19:13:51 2021 (r568604) +++ head/www/piwigo/distinfo Tue Mar 16 19:26:03 2021 (r568605) @@ -1,3 +1,3 @@ -TIMESTAMP = 1585345662 -SHA256 (piwigo-2.10.2.zip) = 0de75de7da9d9b8058e208cf78d6f20852a790fca6d8231d432f3f62d12939ff -SIZE (piwigo-2.10.2.zip) = 17391322 +TIMESTAMP = 1615753020 +SHA256 (piwigo-11.3.0.zip) = 07b0a364484c85acecf9abd6ac2b87e9c8793795b760134b4fab96be99228943 +SIZE (piwigo-11.3.0.zip) = 17695593 Modified: head/www/piwigo/pkg-plist ============================================================================== --- head/www/piwigo/pkg-plist Tue Mar 16 19:13:51 2021 (r568604) +++ head/www/piwigo/pkg-plist Tue Mar 16 19:26:03 2021 (r568605) @@ -4,6 +4,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/language/translation_validated.inc.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/metadata.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/missing_keys.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/piwigo_addSimple.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/piwigo_remote.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/piwigo_upload.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pwg_rel_create.sh @@ -30,6 +31,7 @@ %%WWWDIR%%/admin/cat_move.php %%WWWDIR%%/admin/cat_options.php %%WWWDIR%%/admin/cat_perm.php +%%WWWDIR%%/admin/cat_search.php %%WWWDIR%%/admin/comments.php %%WWWDIR%%/admin/configuration.php %%WWWDIR%%/admin/element_set_ranks.php @@ -56,7 +58,6 @@ %%WWWDIR%%/admin/include/image.class.php %%WWWDIR%%/admin/include/index.php %%WWWDIR%%/admin/include/languages.class.php -%%WWWDIR%%/admin/include/mysqldump.php %%WWWDIR%%/admin/include/pclzip.lib.php %%WWWDIR%%/admin/include/photos_add_direct_prepare.inc.php %%WWWDIR%%/admin/include/plugins.class.php @@ -131,14 +132,6 @@ %%WWWDIR%%/admin/themes/clear/images/external_inactive.png %%WWWDIR%%/admin/themes/clear/images/missing_screenshot.png %%WWWDIR%%/admin/themes/clear/images/quickLocalSync.png -%%WWWDIR%%/admin/themes/clear/images/resizable-e.gif -%%WWWDIR%%/admin/themes/clear/images/resizable-n.gif -%%WWWDIR%%/admin/themes/clear/images/resizable-ne.gif -%%WWWDIR%%/admin/themes/clear/images/resizable-nw.gif -%%WWWDIR%%/admin/themes/clear/images/resizable-s.gif -%%WWWDIR%%/admin/themes/clear/images/resizable-se.gif -%%WWWDIR%%/admin/themes/clear/images/resizable-sw.gif -%%WWWDIR%%/admin/themes/clear/images/resizable-w.gif %%WWWDIR%%/admin/themes/clear/images/stripe-cat.png %%WWWDIR%%/admin/themes/clear/images/transparent.gif %%WWWDIR%%/admin/themes/clear/index.php @@ -272,16 +265,21 @@ %%WWWDIR%%/admin/themes/default/images/cancel.svg %%WWWDIR%%/admin/themes/default/images/cancelhover.svg %%WWWDIR%%/admin/themes/default/images/pbar-ani.gif +%%WWWDIR%%/admin/themes/default/images/piwigo_app_banner.jpg %%WWWDIR%%/admin/themes/default/images/piwigo-grey.svg %%WWWDIR%%/admin/themes/default/images/piwigo-orange.svg %%WWWDIR%%/admin/themes/default/index.php %%WWWDIR%%/admin/themes/default/js/LocalStorageCache.js %%WWWDIR%%/admin/themes/default/js/addAlbum.js %%WWWDIR%%/admin/themes/default/js/batchManagerGlobal.js +%%WWWDIR%%/admin/themes/default/js/cat_move.js %%WWWDIR%%/admin/themes/default/js/common.js %%WWWDIR%%/admin/themes/default/js/datepicker.js %%WWWDIR%%/admin/themes/default/js/doubleSlider.js +%%WWWDIR%%/admin/themes/default/js/group_list.js %%WWWDIR%%/admin/themes/default/js/jquery.geoip.js +%%WWWDIR%%/admin/themes/default/js/stats.js +%%WWWDIR%%/admin/themes/default/js/tags.js %%WWWDIR%%/admin/themes/default/print.css %%WWWDIR%%/admin/themes/default/template/admin.tpl %%WWWDIR%%/admin/themes/default/template/album_notification.tpl @@ -292,6 +290,7 @@ %%WWWDIR%%/admin/themes/default/template/cat_move.tpl %%WWWDIR%%/admin/themes/default/template/cat_options.tpl %%WWWDIR%%/admin/themes/default/template/cat_perm.tpl +%%WWWDIR%%/admin/themes/default/template/cat_search.tpl %%WWWDIR%%/admin/themes/default/template/check_integrity.tpl %%WWWDIR%%/admin/themes/default/template/comments.tpl %%WWWDIR%%/admin/themes/default/template/configuration_comments.tpl @@ -313,10 +312,7 @@ %%WWWDIR%%/admin/themes/default/template/include/autosize.inc.tpl %%WWWDIR%%/admin/themes/default/template/include/colorbox.inc.tpl %%WWWDIR%%/admin/themes/default/template/include/datepicker.inc.tpl -%%WWWDIR%%/admin/themes/default/template/include/dbselect.inc.tpl %%WWWDIR%%/admin/themes/default/template/include/install.inc.tpl -%%WWWDIR%%/admin/themes/default/template/include/resize.inc.tpl -%%WWWDIR%%/admin/themes/default/template/include/tag_selection.inc.tpl %%WWWDIR%%/admin/themes/default/template/install.tpl %%WWWDIR%%/admin/themes/default/template/intro.tpl %%WWWDIR%%/admin/themes/default/template/languages_installed.tpl @@ -372,14 +368,6 @@ %%WWWDIR%%/admin/themes/roma/images/missing_screenshot.png %%WWWDIR%%/admin/themes/roma/images/quickLocalSync_hover.png %%WWWDIR%%/admin/themes/roma/images/quickLocalSync_inactiv.png -%%WWWDIR%%/admin/themes/roma/images/resizable-e.gif -%%WWWDIR%%/admin/themes/roma/images/resizable-n.gif -%%WWWDIR%%/admin/themes/roma/images/resizable-ne.gif -%%WWWDIR%%/admin/themes/roma/images/resizable-nw.gif -%%WWWDIR%%/admin/themes/roma/images/resizable-s.gif -%%WWWDIR%%/admin/themes/roma/images/resizable-se.gif -%%WWWDIR%%/admin/themes/roma/images/resizable-sw.gif -%%WWWDIR%%/admin/themes/roma/images/resizable-w.gif %%WWWDIR%%/admin/themes/roma/images/stripe-cat.png %%WWWDIR%%/admin/themes/roma/images/transparent.gif %%WWWDIR%%/admin/themes/roma/index.php @@ -766,6 +754,9 @@ %%WWWDIR%%/install/db/154-database.php %%WWWDIR%%/install/db/155-database.php %%WWWDIR%%/install/db/156-database.php +%%WWWDIR%%/install/db/157-database.php +%%WWWDIR%%/install/db/158-database.php +%%WWWDIR%%/install/db/159-database.php %%WWWDIR%%/install/db/61-database.php %%WWWDIR%%/install/db/62-database.php %%WWWDIR%%/install/db/63-database.php @@ -829,6 +820,7 @@ %%WWWDIR%%/install/upgrade_2.7.0.php %%WWWDIR%%/install/upgrade_2.8.0.php %%WWWDIR%%/install/upgrade_2.9.0.php +%%WWWDIR%%/install/upgrade_2.10.0.php @mode 750 @owner %%WWWOWN%% @group %%WWWGRP%% @@ -968,6 +960,7 @@ %%WWWDIR%%/language/cs_CZ/help/notification_by_mail.html %%WWWDIR%%/language/cs_CZ/help/permalinks.html %%WWWDIR%%/language/cs_CZ/help/photos_add_ftp.html +%%WWWDIR%%/language/cs_CZ/help/quick_search.html %%WWWDIR%%/language/cs_CZ/help/search.html %%WWWDIR%%/language/cs_CZ/help/synchronize.html %%WWWDIR%%/language/cs_CZ/help/user_list.html @@ -1184,8 +1177,10 @@ %%WWWDIR%%/language/eu_ES/eu_ES.jpg %%WWWDIR%%/language/eu_ES/help/cat_move.html %%WWWDIR%%/language/eu_ES/help/cat_options.html +%%WWWDIR%%/language/eu_ES/help/cat_perm.html %%WWWDIR%%/language/eu_ES/help/group_list.html %%WWWDIR%%/language/eu_ES/help/help_add_photos.html +%%WWWDIR%%/language/eu_ES/help/quick_search.html %%WWWDIR%%/language/eu_ES/install.lang.php %%WWWDIR%%/language/eu_ES/iso.txt %%WWWDIR%%/language/eu_ES/upgrade.lang.php @@ -1831,7 +1826,9 @@ %%WWWDIR%%/language/sr_RS/about.html %%WWWDIR%%/language/sr_RS/admin.lang.php %%WWWDIR%%/language/sr_RS/common.lang.php +%%WWWDIR%%/language/sr_RS/help/cat_move.html %%WWWDIR%%/language/sr_RS/help/help_groups.html +%%WWWDIR%%/language/sr_RS/help/search.html %%WWWDIR%%/language/sr_RS/index.php %%WWWDIR%%/language/sr_RS/install.lang.php %%WWWDIR%%/language/sr_RS/iso.txt @@ -2473,6 +2470,7 @@ %%WWWDIR%%/plugins/TakeATour/language/et_EE/tour_2_7_0.lang.php %%WWWDIR%%/plugins/TakeATour/language/eu_ES/description.txt %%WWWDIR%%/plugins/TakeATour/language/eu_ES/plugin.lang.php +%%WWWDIR%%/plugins/TakeATour/language/eu_ES/tour_2_9_0.lang.php %%WWWDIR%%/plugins/TakeATour/language/fa_IR/description.txt %%WWWDIR%%/plugins/TakeATour/language/fa_IR/plugin.lang.php %%WWWDIR%%/plugins/TakeATour/language/fa_IR/tour_2_9_0.lang.php @@ -2487,6 +2485,8 @@ %%WWWDIR%%/plugins/TakeATour/language/fr_CA/tour_2_7_0.lang.php %%WWWDIR%%/plugins/TakeATour/language/fr_CA/tour_2_8_0.lang.php %%WWWDIR%%/plugins/TakeATour/language/fr_CA/tour_2_9_0.lang.php +%%WWWDIR%%/plugins/TakeATour/language/fr_CA/tour_first_contact.lang.php +%%WWWDIR%%/plugins/TakeATour/language/fr_CA/tour_privacy.lang.php %%WWWDIR%%/plugins/TakeATour/language/fr_FR/description.txt %%WWWDIR%%/plugins/TakeATour/language/fr_FR/index.php %%WWWDIR%%/plugins/TakeATour/language/fr_FR/plugin.lang.php @@ -2515,6 +2515,7 @@ %%WWWDIR%%/plugins/TakeATour/language/ja_JP/plugin.lang.php %%WWWDIR%%/plugins/TakeATour/language/ja_JP/tour_2_8_0.lang.php %%WWWDIR%%/plugins/TakeATour/language/ja_JP/tour_2_9_0.lang.php +%%WWWDIR%%/plugins/TakeATour/language/ja_JP/tour_first_contact.lang.php %%WWWDIR%%/plugins/TakeATour/language/lt_LT/plugin.lang.php %%WWWDIR%%/plugins/TakeATour/language/lt_LT/tour_2_9_0.lang.php %%WWWDIR%%/plugins/TakeATour/language/lv_LV/description.txt @@ -2823,6 +2824,8 @@ %%WWWDIR%%/themes/default/index.php %%WWWDIR%%/themes/default/js/jquery.js %%WWWDIR%%/themes/default/js/jquery.min.js +%%WWWDIR%%/themes/default/js/plugins/Chart.min.css +%%WWWDIR%%/themes/default/js/plugins/Chart.min.js %%WWWDIR%%/themes/default/js/plugins/Jcrop.gif %%WWWDIR%%/themes/default/js/plugins/chosen-sprite.png %%WWWDIR%%/themes/default/js/plugins/chosen-sprite@2x.png @@ -2896,6 +2899,9 @@ %%WWWDIR%%/themes/default/js/plugins/jgrowl-alert.png %%WWWDIR%%/themes/default/js/plugins/jgrowl-check.png %%WWWDIR%%/themes/default/js/plugins/jgrowl-error.png +%%WWWDIR%%/themes/default/js/plugins/jqtree.css +%%WWWDIR%%/themes/default/js/plugins/jquery-confirm.min.css +%%WWWDIR%%/themes/default/js/plugins/jquery-confirm.min.js %%WWWDIR%%/themes/default/js/plugins/jquery.Jcrop.css %%WWWDIR%%/themes/default/js/plugins/jquery.Jcrop.js %%WWWDIR%%/themes/default/js/plugins/jquery.Jcrop.min.js @@ -2912,6 +2918,7 @@ %%WWWDIR%%/themes/default/js/plugins/jquery.tipTip.minified.js %%WWWDIR%%/themes/default/js/plugins/jquery.tokeninput.css %%WWWDIR%%/themes/default/js/plugins/jquery.tokeninput.js +%%WWWDIR%%/themes/default/js/plugins/moment-with-locales.min.js %%WWWDIR%%/themes/default/js/plugins/piecon.js %%WWWDIR%%/themes/default/js/plugins/plupload/Moxie.swf %%WWWDIR%%/themes/default/js/plugins/plupload/Moxie.xap @@ -2984,6 +2991,7 @@ %%WWWDIR%%/themes/default/js/plugins/selectize.clear.css %%WWWDIR%%/themes/default/js/plugins/selectize.dark.css %%WWWDIR%%/themes/default/js/plugins/selectize.min.js +%%WWWDIR%%/themes/default/js/plugins/tree.jquery.js %%WWWDIR%%/themes/default/js/plugins/underscore.js %%WWWDIR%%/themes/default/js/pngfix.js %%WWWDIR%%/themes/default/js/rating.js @@ -3217,7 +3225,6 @@ %%WWWDIR%%/themes/default/template/identification.tpl %%WWWDIR%%/themes/default/template/include/autosize.inc.tpl %%WWWDIR%%/themes/default/template/include/colorbox.inc.tpl -%%WWWDIR%%/themes/default/template/include/resize.inc.tpl %%WWWDIR%%/themes/default/template/index.tpl %%WWWDIR%%/themes/default/template/infos_errors.tpl %%WWWDIR%%/themes/default/template/mail/index.php @@ -3245,6 +3252,7 @@ %%WWWDIR%%/themes/default/template/menubar_identification.tpl %%WWWDIR%%/themes/default/template/menubar_links.tpl %%WWWDIR%%/themes/default/template/menubar_menu.tpl +%%WWWDIR%%/themes/default/template/menubar_related_categories.tpl %%WWWDIR%%/themes/default/template/menubar_specials.tpl %%WWWDIR%%/themes/default/template/menubar_tags.tpl %%WWWDIR%%/themes/default/template/month_calendar.tpl @@ -3370,6 +3378,7 @@ %%WWWDIR%%/themes/modus/css/fontello/font/modus.svg %%WWWDIR%%/themes/modus/css/fontello/font/modus.ttf %%WWWDIR%%/themes/modus/css/fontello/font/modus.woff +%%WWWDIR%%/themes/modus/css/fontello/font/modus.woff2 %%WWWDIR%%/themes/modus/css/hf_base.css %%WWWDIR%%/themes/modus/css/iconfontello.css.tpl %%WWWDIR%%/themes/modus/css/iconset.css @@ -3734,6 +3743,7 @@ %%WWWDIR%%/themes/smartpocket/template/menubar_identification.tpl %%WWWDIR%%/themes/smartpocket/template/menubar_links.tpl %%WWWDIR%%/themes/smartpocket/template/menubar_menu.tpl +%%WWWDIR%%/themes/smartpocket/template/menubar_related_categories.tpl %%WWWDIR%%/themes/smartpocket/template/menubar_specials.tpl %%WWWDIR%%/themes/smartpocket/template/menubar_tags.tpl %%WWWDIR%%/themes/smartpocket/template/navigation_bar.tpl