diff options
author | Andy Postnikov <apostnikov@gmail.com> | 2018-07-28 18:11:57 +0300 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-07-28 19:48:45 +0200 |
commit | c9087253cc7246bcc42b7b6895ec97d957f7217b (patch) | |
tree | b0590560e1d95f5b2983cfd047251197928e5427 /community/php7 | |
parent | 41ad639304423a8f6e045836a62cd979d95b88ba (diff) | |
download | aports-c9087253cc7246bcc42b7b6895ec97d957f7217b.tar.bz2 aports-c9087253cc7246bcc42b7b6895ec97d957f7217b.tar.xz |
community/php7: fix include_path setting, use https url and source
Diffstat (limited to 'community/php7')
-rw-r--r-- | community/php7/APKBUILD | 8 | ||||
-rw-r--r-- | community/php7/sharedir.patch | 11 |
2 files changed, 16 insertions, 3 deletions
diff --git a/community/php7/APKBUILD b/community/php7/APKBUILD index 1104f4d718..8708f345b0 100644 --- a/community/php7/APKBUILD +++ b/community/php7/APKBUILD @@ -26,13 +26,13 @@ pkgname=php7 _pkgreal=php pkgver=7.2.8 -pkgrel=0 +pkgrel=1 _apiver=20170718 _suffix=${pkgname#php} # Is this package the default (latest) PHP version? _default_php="yes" pkgdesc="The PHP$_suffix language runtime engine" -url="http://www.php.net/" +url="https://secure.php.net" arch="all" license="PHP-3.0 BSD LGPL-2.0 MIT Zend" depends="$pkgname-common" @@ -89,13 +89,14 @@ subpackages="$pkgname-dev $pkgname-doc $pkgname-apache2 $pkgname-phpdbg $pkgname-embed $pkgname-litespeed $pkgname-cgi $pkgname-fpm $pkgname-pear::noarch " -source="http://php.net/distributions/$_pkgreal-$pkgver.tar.bz2 +source="https://php.net/distributions/$_pkgreal-$pkgver.tar.bz2 $pkgname-fpm.initd $pkgname-fpm.logrotate $pkgname-module.conf disabled-tests.list install-pear.patch includedir.patch + sharedir.patch php7-fpm-version-suffix.patch allow-build-recode-and-imap-together.patch fix-tests-devserver.patch @@ -645,6 +646,7 @@ cacce7bf789467ff40647b7319e3760c6c587218720538516e8d400baa75651f72165c4e28056cd0 6593accfe1ef0d9d28d257b2825823afdbfaa72bbf2e09e4ed689b644571a0d085cd4d6c92ffdff6ca9d0bb6d31cf84e5db5c4a4d88f192bba3f95a0c9b1dfd7 disabled-tests.list f1177cbf6b1f44402f421c3d317aab1a2a40d0b1209c11519c1158df337c8945f3a313d689c939768584f3e4edbe52e8bd6103fb6777462326a9d94e8ab1f505 install-pear.patch 199aecdbd3b4035aabf5379c215f82412d3c98b79a1ee186944e7fe1f0ed6f40789ea30e2355149491de6be34fc66c5e486e2a79a7e41ab2ae18706ef3ffe79b includedir.patch +db4c47cb254d208e4055db9287f4f4bacc0339f1f5912d2bf9c66e8a0fd0db9d53fb02aaa6d30a823a4b8504a04a9ce906706f3792684654131bb5b26aeb77b2 sharedir.patch 6d4aa75b94ce7c88f97574a06964fafd7cb6657c1cb19c0b93776dedef05857331cce9c40f69a442ef84c66aa9137ad9f6197cc25f2384a27b8fd7350838292e php7-fpm-version-suffix.patch f8ecae241a90cbc3e98aa4deb3d5d35ef555f51380e29f4e182a8060dffeb84be74f030a14c6b452668471030d78964f52795ca74275db05543ccad20ef1f2cc allow-build-recode-and-imap-together.patch 5bb1f90de8c543d4efffa8bc604fb3239e478d9d9625d30cd03449643906a0fe5407123403206ec57f4bf9f18893a7ff4524ccf417b2bd8bce4ee7d18815b576 fix-tests-devserver.patch" diff --git a/community/php7/sharedir.patch b/community/php7/sharedir.patch new file mode 100644 index 0000000000..10bdbc4e31 --- /dev/null +++ b/community/php7/sharedir.patch @@ -0,0 +1,11 @@ +--- a/php.ini-production 2018-07-28 18:05:51.737130931 +0300 ++++ b/php.ini-production 2018-07-28 18:06:45.177774666 +0300 +@@ -711,7 +711,7 @@ + ;;;;;;;;;;;;;;;;;;;;;;;;; + + ; UNIX: "/path1:/path2" +-;include_path = ".:/php/includes" ++include_path = ".:/usr/share/php7" + ; + ; Windows: "\path1;\path2" + ;include_path = ".;c:\php\includes" |