Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH]   php8.0: update to 8.0.22. php8.1: update to 8.1.9. composer8.[01]: update to 2.4.1.
@ 2022-08-24 19:25 TinfoilSubmarine
  2022-08-24 19:25 ` TinfoilSubmarine
  2022-08-24 21:03 ` [PR PATCH] [Merged]: " paper42
  0 siblings, 2 replies; 3+ messages in thread
From: TinfoilSubmarine @ 2022-08-24 19:25 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]

There is a new pull request by TinfoilSubmarine against master on the void-packages repository

https://github.com/TinfoilSubmarine/void-packages maint/php8
https://github.com/void-linux/void-packages/pull/38893

  php8.0: update to 8.0.22. php8.1: update to 8.1.9. composer8.[01]: update to 2.4.1.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/38893.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-maint/php8-38893.patch --]
[-- Type: text/x-diff, Size: 5192 bytes --]

From f88ccdf33b8a758ebfcfe3f6bbeff82ff1359c90 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Wed, 24 Aug 2022 15:20:46 -0400
Subject: [PATCH 1/4] php8.0: update to 8.0.22.

---
 srcpkgs/php8.0/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/php8.0/template b/srcpkgs/php8.0/template
index 48c8f2d386cc..9aa552c38e3a 100644
--- a/srcpkgs/php8.0/template
+++ b/srcpkgs/php8.0/template
@@ -1,6 +1,6 @@
 # Template file for 'php8.0'
 pkgname=php8.0
-version=8.0.21
+version=8.0.22
 revision=1
 _php_version=8.0
 wrksrc="php-${version}"
@@ -16,7 +16,7 @@ license="PHP-3.01"
 homepage="https://www.php.net"
 changelog="https://raw.githubusercontent.com/php/php-src/php-${version}/NEWS"
 distfiles="https://www.php.net/distributions/php-${version}.tar.gz"
-checksum=2f51f6e90e2e8efd3a20db08f0dd61d7f8d5a9362f8c7325f1ad28ccea5be0ac
+checksum=56fce7529a9798fd0895bca3539d2a65b9cac5d23ffbdf6338419c62ed083519
 
 conf_files="/etc/php${_php_version}/php.ini"
 

From 103bce5cd276a6475fa8b191e1420ec3600773f8 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Wed, 24 Aug 2022 15:21:35 -0400
Subject: [PATCH 2/4] php8.1: update to 8.1.9.

---
 srcpkgs/php8.1/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/php8.1/template b/srcpkgs/php8.1/template
index c307e3315505..ae058f5fefdb 100644
--- a/srcpkgs/php8.1/template
+++ b/srcpkgs/php8.1/template
@@ -1,6 +1,6 @@
 # Template file for 'php8.1'
 pkgname=php8.1
-version=8.1.8
+version=8.1.9
 revision=1
 _php_version=8.1
 wrksrc="php-${version}"
@@ -16,7 +16,7 @@ license="PHP-3.01"
 homepage="https://www.php.net"
 changelog="https://raw.githubusercontent.com/php/php-src/php-${version}/NEWS"
 distfiles="https://www.php.net/distributions/php-${version}.tar.gz"
-checksum=889d910558d2492f7f2236921b9bcde620674c8b684ec02d126060f8ca45dc8d
+checksum=954cf77f7e0a70dc765e7639acdfdccd164be5cd1bce3dbe9d10c58dca631e76
 
 conf_files="/etc/php${_php_version}/php.ini"
 

From 71ca8f5051536e598ac468b0786f5394cdb15287 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Wed, 24 Aug 2022 15:22:14 -0400
Subject: [PATCH 3/4] composer8.0: update to 2.4.1.

also fix option handling
---
 srcpkgs/composer8.0/files/composer8.0 | 2 +-
 srcpkgs/composer8.0/template          | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/composer8.0/files/composer8.0 b/srcpkgs/composer8.0/files/composer8.0
index 2a3236b4a5ff..1a70e9dcde46 100644
--- a/srcpkgs/composer8.0/files/composer8.0
+++ b/srcpkgs/composer8.0/files/composer8.0
@@ -1,2 +1,2 @@
 #!/bin/sh
-php8.0 -f /usr/libexec/composer.phar8.0 "$@"
+php8.0 /usr/libexec/composer.phar8.0 "$@"
diff --git a/srcpkgs/composer8.0/template b/srcpkgs/composer8.0/template
index ac5fc310df4a..4425abb2d320 100644
--- a/srcpkgs/composer8.0/template
+++ b/srcpkgs/composer8.0/template
@@ -1,6 +1,6 @@
 # Template file for 'composer8.0'
 pkgname=composer8.0
-version=2.3.10
+version=2.4.1
 revision=1
 build_style=fetch
 depends="php8.0"
@@ -11,7 +11,7 @@ homepage="https://getcomposer.org/"
 changelog="https://raw.githubusercontent.com/composer/composer/main/CHANGELOG.md"
 distfiles="https://github.com/composer/composer/releases/download/${version}/composer.phar
  https://raw.githubusercontent.com/composer/composer/main/LICENSE"
-checksum="d808272f284fa8e0f8b470703e1438ac8f362030bbc9d12e29530277d767aff0
+checksum="ea8cf6308ec76ff9645c3818841a7588096b9dc2767345fbd4bd492dd8a6dca6
  7855ac293067aebe7e51afdd23b9dea54b8be24187dbecc9b9142581c37f596c"
 
 do_install() {

From 12dd47430e1e7efbeb3e1e7dafdcf18e32e6e879 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Wed, 24 Aug 2022 15:18:18 -0400
Subject: [PATCH 4/4] composer8.1: update to 2.4.1.

also fix option handling
---
 srcpkgs/composer8.1/files/composer8.1 | 2 +-
 srcpkgs/composer8.1/template          | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/composer8.1/files/composer8.1 b/srcpkgs/composer8.1/files/composer8.1
index a3f41b8b5578..a42b58d7bf15 100644
--- a/srcpkgs/composer8.1/files/composer8.1
+++ b/srcpkgs/composer8.1/files/composer8.1
@@ -1,2 +1,2 @@
 #!/bin/sh
-php8.1 -f /usr/libexec/composer.phar8.1 "$@"
+php8.1 /usr/libexec/composer.phar8.1 "$@"
diff --git a/srcpkgs/composer8.1/template b/srcpkgs/composer8.1/template
index e78c09bd575f..a8068ac00d06 100644
--- a/srcpkgs/composer8.1/template
+++ b/srcpkgs/composer8.1/template
@@ -1,6 +1,6 @@
 # Template file for 'composer8.1'
 pkgname=composer8.1
-version=2.3.10
+version=2.4.1
 revision=1
 build_style=fetch
 depends="php8.1"
@@ -11,7 +11,7 @@ homepage="https://getcomposer.org/"
 changelog="https://raw.githubusercontent.com/composer/composer/main/CHANGELOG.md"
 distfiles="https://github.com/composer/composer/releases/download/${version}/composer.phar
  https://raw.githubusercontent.com/composer/composer/main/LICENSE"
-checksum="d808272f284fa8e0f8b470703e1438ac8f362030bbc9d12e29530277d767aff0
+checksum="ea8cf6308ec76ff9645c3818841a7588096b9dc2767345fbd4bd492dd8a6dca6
  7855ac293067aebe7e51afdd23b9dea54b8be24187dbecc9b9142581c37f596c"
 
 do_install() {

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re:   php8.0: update to 8.0.22. php8.1: update to 8.1.9. composer8.[01]: update to 2.4.1.
  2022-08-24 19:25 [PR PATCH] php8.0: update to 8.0.22. php8.1: update to 8.1.9. composer8.[01]: update to 2.4.1 TinfoilSubmarine
@ 2022-08-24 19:25 ` TinfoilSubmarine
  2022-08-24 21:03 ` [PR PATCH] [Merged]: " paper42
  1 sibling, 0 replies; 3+ messages in thread
From: TinfoilSubmarine @ 2022-08-24 19:25 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 226 bytes --]

New comment by TinfoilSubmarine on void-packages repository

https://github.com/void-linux/void-packages/pull/38893#issuecomment-1226148593

Comment:
Supersedes/obsoletes https://github.com/void-linux/void-packages/pull/38536

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Merged]:   php8.0: update to 8.0.22. php8.1: update to 8.1.9. composer8.[01]: update to 2.4.1.
  2022-08-24 19:25 [PR PATCH] php8.0: update to 8.0.22. php8.1: update to 8.1.9. composer8.[01]: update to 2.4.1 TinfoilSubmarine
  2022-08-24 19:25 ` TinfoilSubmarine
@ 2022-08-24 21:03 ` paper42
  1 sibling, 0 replies; 3+ messages in thread
From: paper42 @ 2022-08-24 21:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1146 bytes --]

There's a merged pull request on the void-packages repository

  php8.0: update to 8.0.22. php8.1: update to 8.1.9. composer8.[01]: update to 2.4.1.
https://github.com/void-linux/void-packages/pull/38893

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-08-24 21:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-24 19:25 [PR PATCH] php8.0: update to 8.0.22. php8.1: update to 8.1.9. composer8.[01]: update to 2.4.1 TinfoilSubmarine
2022-08-24 19:25 ` TinfoilSubmarine
2022-08-24 21:03 ` [PR PATCH] [Merged]: " paper42

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).