pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/drupal7
Module Name: pkgsrc
Committed By: taca
Date: Wed Feb 28 15:34:32 UTC 2024
Modified Files:
pkgsrc/www/drupal7: Makefile PLIST distinfo
Log Message:
www/drupal7: update to 7.99
pkgsrc change: exclude php83 since Drupal 7 dose not supoprt it.
7.98 (2023-06-07)
* Session IDs are now hashed in the database in Drupal 7 - read this change
record before running the database update
* Double click prevention introduced in Drupal 7
* Update info is fetched over https by default in Drupal 7
* Content of phpinfo() admin status page is now configurable in Drupal 7
7.99 (2023-12-06)
* Menu link 'Parent link' is limited to the current menu when creating new
custom menu links through the UI in Drupal 7
* hook_field_schema_alter() was added in Drupal 7
* file_validate_image_resolution() now validates minimum dimensions against
the resized image in Drupal 7
* Node translations table now contains a link to delete translation in
Drupal 7
* ModuleUpdater::getSchemaUpdates() was removed in Drupal 7
* When a user fails login, the reset password link no longer pre-fills the
username in Drupal 7
* Drupal 7's aggregator feed now displays up to 255 characters from
description if no title is found
* Protection against abuse of DrupalCacheArray::__destruct() in Drupal 7
To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 pkgsrc/www/drupal7/Makefile
cvs rdiff -u -r1.32 -r1.33 pkgsrc/www/drupal7/PLIST
cvs rdiff -u -r1.63 -r1.64 pkgsrc/www/drupal7/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/drupal7/Makefile
diff -u pkgsrc/www/drupal7/Makefile:1.79 pkgsrc/www/drupal7/Makefile:1.80
--- pkgsrc/www/drupal7/Makefile:1.79 Mon May 1 14:34:00 2023
+++ pkgsrc/www/drupal7/Makefile Wed Feb 28 15:34:32 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.79 2023/05/01 14:34:00 taca Exp $
+# $NetBSD: Makefile,v 1.80 2024/02/28 15:34:32 taca Exp $
-DISTNAME= drupal-7.97
+DISTNAME= drupal-7.99
PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME}
CATEGORIES= www
MASTER_SITES= https://ftp.drupal.org/files/projects/
@@ -10,6 +10,8 @@ HOMEPAGE= http://drupal.org/
COMMENT= Open source content management system
LICENSE= gnu-gpl-v2
+PHP_VERSIONS_ACCEPTED= 56 74 81 82
+
.include "../../lang/php/phpversion.mk"
DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.4.0:../../graphics/php-gd
.if ${PKG_PHP_MAJOR_VERS} < 8
Index: pkgsrc/www/drupal7/PLIST
diff -u pkgsrc/www/drupal7/PLIST:1.32 pkgsrc/www/drupal7/PLIST:1.33
--- pkgsrc/www/drupal7/PLIST:1.32 Sun Mar 19 13:21:16 2023
+++ pkgsrc/www/drupal7/PLIST Wed Feb 28 15:34:32 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.32 2023/03/19 13:21:16 taca Exp $
+@comment $NetBSD: PLIST,v 1.33 2024/02/28 15:34:32 taca Exp $
share/doc/drupal/CHANGELOG.txt
share/doc/drupal/COPYRIGHT.txt
share/doc/drupal/INSTALL.mysql.txt
@@ -109,6 +109,7 @@ share/drupal/misc/farbtastic/mask.png
share/drupal/misc/farbtastic/wheel.png
share/drupal/misc/favicon.ico
share/drupal/misc/feed.png
+share/drupal/misc/form-single-submit.js
share/drupal/misc/form.js
share/drupal/misc/forum-icons.png
share/drupal/misc/grippie.png
@@ -272,6 +273,7 @@ share/drupal/modules/aggregator/tests/ag
share/drupal/modules/aggregator/tests/aggregator_test_atom.xml
share/drupal/modules/aggregator/tests/aggregator_test_rss091.xml
share/drupal/modules/aggregator/tests/aggregator_test_title_entities.xml
+share/drupal/modules/aggregator/tests/aggregator_test_title_from_desc.xml
share/drupal/modules/block/block-admin-display-form.tpl.php
share/drupal/modules/block/block.admin.inc
share/drupal/modules/block/block.api.php
@@ -401,6 +403,9 @@ share/drupal/modules/field/tests/field_t
share/drupal/modules/field/tests/field_test.install
share/drupal/modules/field/tests/field_test.module
share/drupal/modules/field/tests/field_test.storage.inc
+share/drupal/modules/field/tests/field_test_schema_alter.info
+share/drupal/modules/field/tests/field_test_schema_alter.install
+share/drupal/modules/field/tests/field_test_schema_alter.module
share/drupal/modules/field/theme/field-rtl.css
share/drupal/modules/field/theme/field.css
share/drupal/modules/field/theme/field.tpl.php
@@ -656,6 +661,8 @@ share/drupal/modules/simpletest/files/im
share/drupal/modules/simpletest/files/image-test.gif
share/drupal/modules/simpletest/files/image-test.jpg
share/drupal/modules/simpletest/files/image-test.png
+share/drupal/modules/simpletest/files/invalid-img-test.png
+share/drupal/modules/simpletest/files/invalid-img-zero-size.png
share/drupal/modules/simpletest/files/javascript-1.txt
share/drupal/modules/simpletest/files/javascript-2.script
share/drupal/modules/simpletest/files/phar-1.phar
@@ -905,7 +912,6 @@ share/drupal/modules/system/system.api.p
share/drupal/modules/system/system.archiver.inc
share/drupal/modules/system/system.base-rtl.css
share/drupal/modules/system/system.base.css
-share/drupal/modules/system/system.cron.js
share/drupal/modules/system/system.info
share/drupal/modules/system/system.install
share/drupal/modules/system/system.js
Index: pkgsrc/www/drupal7/distinfo
diff -u pkgsrc/www/drupal7/distinfo:1.63 pkgsrc/www/drupal7/distinfo:1.64
--- pkgsrc/www/drupal7/distinfo:1.63 Mon May 1 14:34:00 2023
+++ pkgsrc/www/drupal7/distinfo Wed Feb 28 15:34:32 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.63 2023/05/01 14:34:00 taca Exp $
+$NetBSD: distinfo,v 1.64 2024/02/28 15:34:32 taca Exp $
-BLAKE2s (drupal-7.97.tar.gz) = 33a14b81ca6e3d32a995a473e514e191452ce79d098dc9238410c4997534683d
-SHA512 (drupal-7.97.tar.gz) = 2ea4ae63f9dc87043f3743f7e426c2fe940ca930a764c9eff0cb19e25fb3117599350c8fab92fc1bc45c2e6719ae20caba039180d63672cb1616f7526b798dcb
-Size (drupal-7.97.tar.gz) = 3381082 bytes
+BLAKE2s (drupal-7.99.tar.gz) = b908a9097f3a28d6af1788e322836ffca9980b3cb96e1e9a48f67906f246f321
+SHA512 (drupal-7.99.tar.gz) = bf2a3270d84bcc1fbca74f865463228fb7baecf664e652935e1d4fe009dbab5cf42e326b778a5773ee7d71c644048adf68501477e18c563ba129396e6175ea7c
+Size (drupal-7.99.tar.gz) = 3396118 bytes
Home |
Main Index |
Thread Index |
Old Index