-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
1,153 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package: | ||
name: php-8.1-apcu | ||
version: 5.1.23 | ||
epoch: 0 | ||
description: "PHP extension for User Cache" | ||
copyright: | ||
- license: PHP-3.01 | ||
dependencies: | ||
runtime: | ||
- ${{package.name}}-config | ||
- php-8.1 | ||
provides: | ||
- php-apcu=${{package.full-version}} | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- autoconf | ||
- build-base | ||
- busybox | ||
- php-8.1 | ||
- php-8.1-dev | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
repository: https://github.com/krakjoe/apcu | ||
tag: "v${{package.version}}" | ||
expected-commit: 1b725692b80b4856e8d705a7eda3ac416951aa1f | ||
|
||
- name: Prepare build | ||
runs: phpize | ||
|
||
- name: Build | ||
runs: | | ||
set -x | ||
./configure | ||
- name: Make install | ||
runs: | | ||
INSTALL_ROOT="${{targets.destdir}}" DESTDIR="${{targets.destdir}}" make install | ||
subpackages: | ||
- name: ${{package.name}}-config | ||
dependencies: | ||
provides: | ||
- php-apcu-config=${{package.full-version}} | ||
pipeline: | ||
- runs: | | ||
mkdir -p "${{targets.subpkgdir}}/etc/php/conf.d" | ||
echo "extension=apcu.so" > "${{targets.subpkgdir}}/etc/php/conf.d/apcu.ini" | ||
update: | ||
enabled: true | ||
github: | ||
identifier: krakjoe/apcu | ||
strip-prefix: v | ||
tag-filter: v | ||
use-tag: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package: | ||
name: php-8.1-excimer | ||
version: 1.2.1 | ||
epoch: 0 | ||
description: "Excimer is a PHP extension that provides an interrupting timer and a low-overhead sampling profiler." | ||
copyright: | ||
- license: Apache-2.0 | ||
dependencies: | ||
runtime: | ||
- ${{package.name}}-config | ||
- php-8.1 | ||
provides: | ||
- php-excimer=${{package.full-version}} | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- autoconf | ||
- build-base | ||
- busybox | ||
- php-8.1 | ||
- php-8.1-dev | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
repository: https://github.com/wikimedia/mediawiki-php-excimer | ||
tag: "${{package.version}}" | ||
expected-commit: 986209d032a1cc53ac930e44f50acb74ecee8816 | ||
|
||
- name: Prepare build | ||
runs: phpize | ||
|
||
- name: Configure | ||
runs: | | ||
set -x | ||
./configure | ||
- uses: autoconf/make | ||
|
||
- name: Make install | ||
runs: | | ||
set -x | ||
INSTALL_ROOT="${{targets.destdir}}" DESTDIR="${{targets.destdir}}" make install | ||
subpackages: | ||
- name: ${{package.name}}-config | ||
dependencies: | ||
provides: | ||
- php-excimer-config=${{package.full-version}} | ||
pipeline: | ||
- runs: | | ||
mkdir -p "${{targets.subpkgdir}}/etc/php/conf.d" | ||
echo "extension=excimer.so" > "${{targets.subpkgdir}}/etc/php/conf.d/excimer.ini" | ||
update: | ||
enabled: true | ||
github: | ||
identifier: wikimedia/mediawiki-php-excimer | ||
use-tag: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package: | ||
name: php-8.1-grpc | ||
version: 1.62.1 | ||
epoch: 0 | ||
description: "A PHP extension for gRPC" | ||
copyright: | ||
- license: Apache-2.0 | ||
dependencies: | ||
runtime: | ||
- ${{package.name}}-config | ||
- grpc | ||
- php-8.1 | ||
provides: | ||
- php-grpc=${{package.full-version}} | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- autoconf | ||
- build-base | ||
- busybox | ||
- grpc-dev | ||
- php-8.1 | ||
- php-8.1-dev | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
repository: https://github.com/grpc/grpc | ||
tag: "v${{package.version}}" | ||
expected-commit: 6d7a55890e076a3a8abc8185b6bf0153fcf9d179 | ||
|
||
- name: Prepare build | ||
runs: cd src/php/ext/grpc && phpize | ||
|
||
- name: Configure | ||
runs: cd src/php/ext/grpc && ./configure | ||
|
||
- name: Make install | ||
runs: | | ||
cd src/php/ext/grpc | ||
INSTALL_ROOT="${{targets.destdir}}" DESTDIR="${{targets.destdir}}" make install | ||
subpackages: | ||
- name: ${{package.name}}-config | ||
dependencies: | ||
provides: | ||
- php-grpc-config=${{package.full-version}} | ||
pipeline: | ||
- runs: | | ||
mkdir -p "${{targets.subpkgdir}}/etc/php/conf.d" | ||
echo "extension=grpc.so" > "${{targets.subpkgdir}}/etc/php/conf.d/grpc.ini" | ||
update: | ||
enabled: true | ||
github: | ||
identifier: grpc/grpc | ||
strip-prefix: v | ||
tag-filter: v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package: | ||
name: php-8.1-imagick | ||
version: 3.7.0 | ||
epoch: 0 | ||
description: "PHP extension for ImageMagick" | ||
copyright: | ||
- license: PHP-3.01 | ||
dependencies: | ||
runtime: | ||
- ${{package.name}}-config | ||
- imagemagick | ||
- php-8.1 | ||
provides: | ||
- php-imagick=${{package.full-version}} | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- autoconf | ||
- build-base | ||
- busybox | ||
- imagemagick-dev | ||
- php-8.1 | ||
- php-8.1-dev | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
repository: https://github.com/Imagick/imagick | ||
tag: "${{package.version}}" | ||
expected-commit: 52ec37ff633de0e5cca159a6437b8c340afe7831 | ||
|
||
- name: Prepare build | ||
runs: phpize | ||
|
||
- name: Configure | ||
runs: | | ||
set -x | ||
./configure | ||
- name: Make install | ||
runs: | | ||
INSTALL_ROOT="${{targets.destdir}}" DESTDIR="${{targets.destdir}}" make install | ||
subpackages: | ||
- name: ${{package.name}}-config | ||
dependencies: | ||
provides: | ||
- php-imagick-config=${{package.full-version}} | ||
pipeline: | ||
- runs: | | ||
mkdir -p "${{targets.subpkgdir}}/etc/php/conf.d" | ||
echo "extension=imagick.so" > "${{targets.subpkgdir}}/etc/php/conf.d/imagick.ini" | ||
update: | ||
enabled: true | ||
github: | ||
identifier: Imagick/imagick | ||
use-tag: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package: | ||
name: php-8.1-opentelemetry | ||
version: 1.0.1 | ||
epoch: 0 | ||
description: "OpenTelemetry PHP auto-instrumentation extension" | ||
copyright: | ||
- license: Apache-2.0 | ||
dependencies: | ||
runtime: | ||
- ${{package.name}}-config | ||
- php-8.1 | ||
provides: | ||
- php-opentelemetry=${{package.full-version}} | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- autoconf | ||
- build-base | ||
- busybox | ||
- php-8.1 | ||
- php-8.1-dev | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
repository: https://github.com/open-telemetry/opentelemetry-php-instrumentation | ||
tag: ${{package.version}} | ||
expected-commit: 7010de909f8fa65ae83ffe3ffa815c82c71842c6 | ||
|
||
- name: Prepare build | ||
runs: cd ext && phpize | ||
|
||
- name: Configure | ||
runs: | | ||
set -x | ||
cd ext | ||
./configure | ||
- name: Make install | ||
runs: | | ||
set -x | ||
cd ext | ||
INSTALL_ROOT="${{targets.destdir}}" DESTDIR="${{targets.destdir}}" make install | ||
subpackages: | ||
- name: ${{package.name}}-config | ||
dependencies: | ||
provides: | ||
- php-opentelemetry-config=${{package.full-version}} | ||
pipeline: | ||
- runs: | | ||
mkdir -p "${{targets.subpkgdir}}/etc/php/conf.d" | ||
echo "extension=opentelemetry.so" > "${{targets.subpkgdir}}/etc/php/conf.d/opentelemetry.ini" | ||
update: | ||
enabled: true | ||
github: | ||
identifier: open-telemetry/opentelemetry-php-instrumentation |
Oops, something went wrong.