Package Details: php73-pspell 7.3.33-11

Git Clone URL: https://aur.archlinux.org/php73.git (read-only, click to copy)
Package Base: php73
Description: pspell module for php73
Upstream URL: http://www.php.net
Licenses: PHP
Submitter: matth
Maintainer: matth (el_aur)
Last Packager: el_aur
Votes: 11
Popularity: 0.001892
First Submitted: 2019-12-24 17:08 (UTC)
Last Updated: 2024-03-27 14:58 (UTC)

Pinned Comments

el_aur commented on 2022-02-02 09:14 (UTC) (edited on 2022-02-04 11:29 (UTC) by el_aur)

Created binary repository on build.opensuse.org

https://build.opensuse.org/project/show/home:el:archphp

For Arch Linux, edit /etc/pacman.conf and add the following (note that the order of repositories in pacman.conf is important, since pacman always downloads the first found package):

[home_el_archphp_Arch]
Server = https://download.opensuse.org/repositories/home:/el:/archphp/Arch/$arch

Then run the following as root

key=$(curl -fsSL https://download.opensuse.org/repositories/home:el:archphp/Arch/$(uname -m)/home_el_archphp_Arch.key)
fingerprint=$(gpg --quiet --with-colons --import-options show-only --import --fingerprint <<< "${key}" | awk -F: '$1 == "fpr" { print $10 }')
pacman-key --init
pacman-key --add - <<< "${key}"
pacman-key --lsign-key "${fingerprint}"

Refresh packages database

pacman -Syy

Now search for php packages you need:

pacman -Ss php73

Install with pacman -S packages you need or all PHP 7.3 packages with:

sudo pacman -S $(pacman -Ssq | grep '^php73')

el_aur commented on 2022-01-27 12:08 (UTC) (edited on 2022-01-27 15:18 (UTC) by el_aur)

Read Carefully! Breaking changes in compare with native PHP package

  1. Console version /usr/bin/php73 is installed with php73-cli subpackage, php73 doesn't include it anymore!!!

  2. PEAR and PECL are available as php73-pear and php73-pecl subpackages

  3. All shared modules are respresented as stand-alone subpackages and are not included with php73 package anymore.

  4. No more extensions in php.ini itself!

Separate INI files for each extension are placed in /etc/php73/conf.d

They are loaded in correct order according to priority

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 Next › Last »

tompear commented on 2020-01-24 09:56 (UTC)

PHP 7.3.14 released.

debitux commented on 2020-01-20 11:38 (UTC)

Thanks, that worked!

tompear commented on 2020-01-20 09:34 (UTC)

You must import the key.

I do not know which AUR helper you are using but executing in shell as an user:

gpg --recv-keys D66C9593118BCCB6

should resolve your problem.

debitux commented on 2020-01-19 17:49 (UTC)

I'm struggling with a signing error: php-7.3.13.tar.xz ... FAILED (unknown public key D66C9593118BCCB6) Am I missing anything for this?

tompear commented on 2020-01-07 09:00 (UTC) (edited on 2020-01-07 09:01 (UTC) by tompear)

As far as I know it is impossible to run two different versions of PHP apache module with one apache instance at once.

So the only error i can see is in "/etc/httpd/conf/extra/php73_module.conf". There is "<IfModule php73_module>" and this must be change to "<IfModule php7_module>" if you want this to work.

In main apache conf file there is definition of this module pointing to correct .so file to load: "LoadModule php7_module modules/libphp73.so".

matth commented on 2020-01-03 14:57 (UTC)

I've added php73-imagick and php73-redis as separate packages now.

@axolotl that might be a good idea for better Apache support, but I'm not sure what should be done to make those changes. I haven't used Apache in about 10 years so I'm not very familiar with the config anymore.

If anyone has any specific code changes to the PKGBUILD to handle that, feel free to share them and I'll add them in.

emphire commented on 2020-01-03 02:53 (UTC)

Any chance you could add php73-imagick and php73-redis?

arnottcr commented on 2020-01-02 06:32 (UTC)

While trying to get this working (with httpd), I came across a few things that would be worth including in the package: - The aforementioned LoadModule fix. - Not really sure where to put this, but there should be a conf.d somewhere? - The aforementioned ExecStart fix. - /etc/httpd/conf/extra/php73_module.conf incorrectly references the non-existent php73_module, changing this to php7_module works like a charm. - If we want to allow users to run 7.4 and 7.3 in httpd, maybe the .so file should reference php73_module?

Kalinda commented on 2020-01-01 04:00 (UTC)

That did the trick, thanks!