Package Details: php73-xmlrpc 7.3.33-11

Git Clone URL: https://aur.archlinux.org/php73.git (read-only, click to copy)
Package Base: php73
Description: xmlrpc 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.003084
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 »

neoire commented on 2022-01-26 05:54 (UTC)

For those coming here because php command is gone after the latest update, one must now install php73-cli separately. @el_aur is this intended?

el_aur commented on 2022-01-25 10:13 (UTC)

@Teddytrombone should be working fine now. Implemented new PKGBUILD

Teddytrombone commented on 2021-12-01 09:19 (UTC)

With ICU 70.1 build for me is broken:

php-7.3.33/ext/intl/breakiterator/codepointiterator_internal.h:42:31: error: conflicting return type specified for 'virtual UBool PHP::CodePointBreakIterator::operator==(const icu_70::BreakIterator&) const'
42 |                 virtual UBool operator==(const BreakIterator& that) const;
   |

I got it working again by applying this patch from Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-lang/php/files/php-icu-70.patch

shahi commented on 2021-08-28 13:34 (UTC)

@vitiok78 @matth

when I try to update from Manjaro GUI it failed with error status

Error: Failed to prepare transaction: target not found: php73

Then I just only try to build php73 from terminal and it built successfully. Then I build the php73-apache php73-cgi php73-fpm.

It worked.

vitiok78 commented on 2021-08-27 06:58 (UTC)

@shahi

I didn't solve it and put the project in Docker

shahi commented on 2021-08-27 05:09 (UTC) (edited on 2021-08-27 05:14 (UTC) by shahi)

I am also facing the same problem as @vitiok78.

Error: Failed to prepare transaction: target not found: php73

How to solved it?

matth commented on 2021-08-03 18:20 (UTC)

@vitiok78

I don't know what that error would mean. It builds just fine for me in a clean chroot with extra-x86_64-build

vitiok78 commented on 2021-08-03 03:35 (UTC)

Can't update to the latest version

Error: Failed to prepare transaction: target not found: php73

Renfield commented on 2021-07-09 11:28 (UTC)

I found a problem in check(), where it is looking for /usr/bin/sendmail. My path has /bin first, and so /bin/sendmail is found, which does not match the grep. I looked for any documentation suggesting that /usr/bin should be before /bin, and could not find anything. I've had this for probably decades. I think it should be okay to just grep for /bin/sendmail. postfix puts sendmail in both locations.

matth commented on 2021-04-28 18:17 (UTC) (edited on 2021-04-28 18:19 (UTC) by matth)

tunght13488 and jonquan

You just need to rebuild your php73 package so it builds against your installed icu version. https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_and_upgrading_packages

Quote from the wiki:

If packages in the official repositories are updated, you will need to rebuild any AUR packages that depend on those libraries.