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:   prlw1
Date:           Thu Aug  2 16:18:47 UTC 2018

Modified Files:
        pkgsrc/www/drupal7: Makefile distinfo
Added Files:
        pkgsrc/www/drupal7/patches: patch-modules_system_system.tar.inc

Log Message:
Fix to allow updating of modules with drupal 7 when using PHP 7.


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 pkgsrc/www/drupal7/Makefile
cvs rdiff -u -r1.37 -r1.38 pkgsrc/www/drupal7/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/www/drupal7/patches/patch-modules_system_system.tar.inc

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.49 pkgsrc/www/drupal7/Makefile:1.50
--- pkgsrc/www/drupal7/Makefile:1.49    Wed Apr 25 16:43:35 2018
+++ pkgsrc/www/drupal7/Makefile Thu Aug  2 16:18:47 2018
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.49 2018/04/25 16:43:35 taca Exp $
+# $NetBSD: Makefile,v 1.50 2018/08/02 16:18:47 prlw1 Exp $
 
 DISTNAME=      drupal-7.59
 PKGNAME=       ${PHP_PKG_PREFIX}-${DISTNAME}
+PKGREVISION=   1
 CATEGORIES=    www
 MASTER_SITES=  https://ftp.drupal.org/files/projects/
 

Index: pkgsrc/www/drupal7/distinfo
diff -u pkgsrc/www/drupal7/distinfo:1.37 pkgsrc/www/drupal7/distinfo:1.38
--- pkgsrc/www/drupal7/distinfo:1.37    Wed Apr 25 16:43:35 2018
+++ pkgsrc/www/drupal7/distinfo Thu Aug  2 16:18:47 2018
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.37 2018/04/25 16:43:35 taca Exp $
+$NetBSD: distinfo,v 1.38 2018/08/02 16:18:47 prlw1 Exp $
 
 SHA1 (drupal-7.59.tar.gz) = aa4c5ee88c37b82fc90765189919bbe22c231486
 RMD160 (drupal-7.59.tar.gz) = f7cd3f36611a7004910e4c53cc639aa4285f177a
 SHA512 (drupal-7.59.tar.gz) = 68f02b39d1a4658adc0f0046c22cc1059b68f952f9cd753f5a3e379cf93705be308b4727519e90d77a42437442daebaa78d76745954be4d40e1a5105c319069c
 Size (drupal-7.59.tar.gz) = 3282260 bytes
+SHA1 (patch-modules_system_system.tar.inc) = f5bbca9c1b0f5dbb52b744fd5627f83fb8e71cc6

Added files:

Index: pkgsrc/www/drupal7/patches/patch-modules_system_system.tar.inc
diff -u /dev/null pkgsrc/www/drupal7/patches/patch-modules_system_system.tar.inc:1.1
--- /dev/null   Thu Aug  2 16:18:47 2018
+++ pkgsrc/www/drupal7/patches/patch-modules_system_system.tar.inc      Thu Aug  2 16:18:47 2018
@@ -0,0 +1,152 @@
+$NetBSD: patch-modules_system_system.tar.inc,v 1.1 2018/08/02 16:18:47 prlw1 Exp $
+
+Issue #2946045
+Unable to update modules due to Archive_Tar incompatibility with PHP 7.2
+commit 127ffe91fffb5813c32490672d68c824595d75a0
+
+--- modules/system/system.tar.inc.orig 2018-04-25 15:32:27.000000000 +0000
++++ modules/system/system.tar.inc
+@@ -41,8 +41,8 @@
+ 
+  /**
+  * Note on Drupal 8 porting.
+- * This file origin is Tar.php, release 1.4.0 (stable) with some code
+- * from PEAR.php, release 1.9.5 (stable) both at http://pear.php.net.
++ * This file origin is Tar.php, release 1.4.3 (stable) with some code
++ * from PEAR.php, release 1.10.5 (stable) both at http://pear.php.net.
+  * To simplify future porting from pear of this file, you should not
+  * do cosmetic or other non significant changes to this file.
+  * The following changes have been done:
+@@ -259,6 +259,19 @@ class Archive_Tar
+                 return false;
+             }
+         }
++
++
++        if (version_compare(PHP_VERSION, "5.5.0-dev") < 0) {
++            $this->_fmt = "a100filename/a8mode/a8uid/a8gid/a12size/a12mtime/" .
++                   "a8checksum/a1typeflag/a100link/a6magic/a2version/" .
++                   "a32uname/a32gname/a8devmajor/a8devminor/a131prefix";
++        } else {
++            $this->_fmt = "Z100filename/Z8mode/Z8uid/Z8gid/Z12size/Z12mtime/" .
++                   "Z8checksum/Z1typeflag/Z100link/Z6magic/Z2version/" .
++                   "Z32uname/Z32gname/Z8devmajor/Z8devminor/Z131prefix";
++        }
++
++
+     }
+ 
+     public function __destruct()
+@@ -278,7 +291,7 @@ class Archive_Tar
+     * @param string $ext The extension name
+     * @return bool Success or not on the dl() call
+     */
+-    function loadExtension($ext)
++    public static function loadExtension($ext)
+     {
+         if (extension_loaded($ext)) {
+             return true;
+@@ -287,8 +300,7 @@ class Archive_Tar
+         // if either returns true dl() will produce a FATAL error, stop that
+         if (
+             function_exists('dl') === false ||
+-            ini_get('enable_dl') != 1 ||
+-            ini_get('safe_mode') == 1
++            ini_get('enable_dl') != 1
+         ) {
+             return false;
+         }
+@@ -714,7 +726,7 @@ class Archive_Tar
+         }
+ 
+         // ----- Get the arguments
+-        $v_att_list = & func_get_args();
++        $v_att_list = func_get_args();
+ 
+         // ----- Read the attributes
+         $i = 0;
+@@ -1720,28 +1732,13 @@ class Archive_Tar
+         // ----- Calculate the checksum
+         $v_checksum = 0;
+         // ..... First part of the header
+-        for ($i = 0; $i < 148; $i++) {
+-            $v_checksum += ord(substr($v_binary_data, $i, 1));
+-        }
+-        // ..... Ignore the checksum value and replace it by ' ' (space)
+-        for ($i = 148; $i < 156; $i++) {
+-            $v_checksum += ord(' ');
+-        }
+-        // ..... Last part of the header
+-        for ($i = 156; $i < 512; $i++) {
+-            $v_checksum += ord(substr($v_binary_data, $i, 1));
+-        }
++        $v_binary_split = str_split($v_binary_data);
++        $v_checksum += array_sum(array_map('ord', array_slice($v_binary_split, 0, 148)));
++        $v_checksum += array_sum(array_map('ord', array(' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',)));
++        $v_checksum += array_sum(array_map('ord', array_slice($v_binary_split, 156, 512)));
+ 
+-        if (version_compare(PHP_VERSION, "5.5.0-dev") < 0) {
+-            $fmt = "a100filename/a8mode/a8uid/a8gid/a12size/a12mtime/" .
+-                "a8checksum/a1typeflag/a100link/a6magic/a2version/" .
+-                "a32uname/a32gname/a8devmajor/a8devminor/a131prefix";
+-        } else {
+-            $fmt = "Z100filename/Z8mode/Z8uid/Z8gid/Z12size/Z12mtime/" .
+-                "Z8checksum/Z1typeflag/Z100link/Z6magic/Z2version/" .
+-                "Z32uname/Z32gname/Z8devmajor/Z8devminor/Z131prefix";
+-        }
+-        $v_data = unpack($fmt, $v_binary_data);
++
++        $v_data = unpack($this->_fmt, $v_binary_data);
+ 
+         if (strlen($v_data["prefix"]) > 0) {
+             $v_data["filename"] = "$v_data[prefix]/$v_data[filename]";
+@@ -1777,7 +1774,7 @@ class Archive_Tar
+         $v_header['mode'] = OctDec(trim($v_data['mode']));
+         $v_header['uid'] = OctDec(trim($v_data['uid']));
+         $v_header['gid'] = OctDec(trim($v_data['gid']));
+-        $v_header['size'] = OctDec(trim($v_data['size']));
++        $v_header['size'] = $this->_tarRecToSize($v_data['size']);
+         $v_header['mtime'] = OctDec(trim($v_data['mtime']));
+         if (($v_header['typeflag'] = $v_data['typeflag']) == "5") {
+             $v_header['size'] = 0;
+@@ -1797,6 +1794,40 @@ class Archive_Tar
+     }
+ 
+     /**
++     * Convert Tar record size to actual size
++     *
++     * @param string $tar_size
++     * @return size of tar record in bytes
++     */
++    private function _tarRecToSize($tar_size)
++    {
++        /*
++         * First byte of size has a special meaning if bit 7 is set.
++         *
++         * Bit 7 indicates base-256 encoding if set.
++         * Bit 6 is the sign bit.
++         * Bits 5:0 are most significant value bits.
++         */
++        $ch = ord($tar_size[0]);
++        if ($ch & 0x80) {
++            // Full 12-bytes record is required.
++            $rec_str = $tar_size . "\x00";
++
++            $size = ($ch & 0x40) ? -1 : 0;
++            $size = ($size << 6) | ($ch & 0x3f);
++
++            for ($num_ch = 1; $num_ch < 12; ++$num_ch) {
++                $size = ($size * 256) + ord($rec_str[$num_ch]);
++            }
++
++            return $size;
++
++        } else {
++            return OctDec(trim($tar_size));
++        }
++    }
++
++    /**
+      * Detect and report a malicious file name
+      *
+      * @param string $file



Home | Main Index | Thread Index | Old Index