diff options
author | Juergen Daubert <jue@jue.li> | 2021-06-05 17:02:30 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-06-05 17:02:30 +0200 |
commit | e67dc4ac370b9f8cc63c8f7c060d81d0ff478719 (patch) | |
tree | 20d0db79f05f9595b17b8eb2ea24e5a32ed7c317 /php-sqlite3 | |
parent | 75cc271693544a437acb00542ad4a89d5c57bf06 (diff) | |
download | opt-e67dc4ac370b9f8cc63c8f7c060d81d0ff478719.tar.gz opt-e67dc4ac370b9f8cc63c8f7c060d81d0ff478719.tar.xz |
[notify] php: update to 8.0.7
new major version, several applications needs probably some
adjustments.
See https://www.php.net/releases/8.0/en.php
Diffstat (limited to 'php-sqlite3')
-rw-r--r-- | php-sqlite3/.signature | 6 | ||||
-rw-r--r-- | php-sqlite3/Pkgfile | 31 |
2 files changed, 19 insertions, 18 deletions
diff --git a/php-sqlite3/.signature b/php-sqlite3/.signature index 1fc2e9720..d6bef2823 100644 --- a/php-sqlite3/.signature +++ b/php-sqlite3/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/c66F+n/zK73evDXqBjXUuD3hZnEW6S/wdg5BApcPrk+bs/N7Tnw1xvZxg9WsPayVS6igSS+DtgFt9AbMRsiAAk= -SHA256 (Pkgfile) = 9bf86949bd1361cbaa3d2962b7dd255b82ec3dd064df845b457abf943a794068 +RWSE3ohX2g5d/Ta4DMMYLxjhqcFNALMmGUBT1t1UzI3VfpiX31g9hwsGnB02HI5asyNOeM/k1mRSPMEAsl1MzbWBn4yTLw26WgA= +SHA256 (Pkgfile) = b5db929b3a0e2b1c6dfcef596cca8830dbbeb5d424dcfd4627a6fa273a9e342b SHA256 (.footprint) = e626528b1bc2b3ce187cc979172f24c489075e0bc584aeb1d082b2f7197d6e49 -SHA256 (php-7.4.18.tar.xz) = ab97f22b128d21dcbc009b50a37aaea0051b2721cbcd122d9e00e6ffc3c4b7e1 +SHA256 (php-8.0.7.tar.xz) = d5fc2e4fc780a32404d88c360e3e0009bc725d936459668e9c2ac992f2d83654 diff --git a/php-sqlite3/Pkgfile b/php-sqlite3/Pkgfile index d90bab423..aacb0d9c4 100644 --- a/php-sqlite3/Pkgfile +++ b/php-sqlite3/Pkgfile @@ -1,25 +1,26 @@ # Description: SQLite3 module for PHP -# URL: https://www.php.net -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: sqlite3 +# URL: https://www.php.net +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: sqlite3 name=php-sqlite3 -version=7.4.18 +version=8.0.7 release=1 source=(https://php.net/distributions/php-$version.tar.xz) -build () { - cd php-$version +build() { + cd php-$version - ./configure --disable-all \ - --enable-pdo=shared \ - --with-sqlite3=shared,/usr \ - --with-pdo-sqlite=shared,/usr + ./configure \ + --disable-all \ + --enable-pdo=shared \ + --with-sqlite3=shared,/usr \ + --with-pdo-sqlite=shared,/usr - make build-modules + make build-modules - install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions} - install -m 755 modules/*sqlite*.so $PKG/usr/lib/php/extensions - - printf 'extension=%s\n' {pdo_sqlite,sqlite3}.so > $PKG/etc/php/conf.d/sqlite3.ini + install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions} + install -m 755 modules/*sqlite*.so $PKG/usr/lib/php/extensions + + printf 'extension=%s\n' {pdo_sqlite,sqlite3}.so > $PKG/etc/php/conf.d/sqlite3.ini } |