dev-php/pecl-brotli: Brotli compression extension for PHP

What?
* brotli is widely used compression in web (better than gzip), so is
PHP. PHP applications (i.e. w3 total cache) use this extension to
compress http responses on-the-fly.
* Features live ebuild
* Compatible with php versions currently available in tree
* Links with app-arch/brotli

Why (in ::gentoo)?

* I don't have any strong reason for it to be in ::gentoo. It can be in ::guru too.
* It is not a standalone application or package but the extension to already established PHP ecosystem.
* There are already 200+ dev-php/\* packages including extensions like this one in ::gentoo.
* Alpine and freebsd have already packaged it https://repology.org/project/php:brotli/ indicates that package is trusted by other downstreams as well.

Signed-off-by: Rahil Bhimjiani <me@rahil.rocks>
Closes: https://github.com/gentoo/gentoo/pull/35978
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Rahil Bhimjiani
2024-03-29 13:25:11 +05:30
committed by Sam James
parent 4b2c2f030d
commit f7e5e4fbf6
4 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pecl-brotli-0.15.0.tgz 468436 BLAKE2B 865f1e970157ac1fead313e63133c74b48ef8fc1d916ea1efbba74186f6ba2b9c3e93b67f842df40b3399713c5bef3d62a15dda0f626a0c9a3b0a956c763a9eb SHA512 0e3be424eace7ed50f67dac780fa55c0fa6da1265676cea12588d8713ec6636936379a543bde48f7b30054aeda038200a3f650259e2da589f642447125b32e6a

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person" proxied="yes">
<email>me@rahil.rocks</email>
<name>Rahil Bhimjiani</name>
</maintainer>
<maintainer type="project" proxied="proxy">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<upstream>
<remote-id type="github">kjdev/php-ext-brotli</remote-id>
<bugs-to>https://github.com/kjdev/php-ext-brotli/issues</bugs-to>
<doc>https://github.com/kjdev/php-ext-brotli/blob/master/README.md</doc>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_PHP="php8-1 php8-2 php8-3"
inherit php-ext-pecl-r3
unset SRC_URI
PHP_EXT_PECL_PKG_V="${PHP_EXT_PECL_PKG}-${PV/_/}"
if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/kjdev/php-ext-brotli.git"
EGIT_CHECKOUT_DIR="${WORKDIR}/${PHP_EXT_PECL_PKG_V}"
EGIT_SUBMODULES=()
inherit git-r3
else
SRC_URI="https://pecl.php.net/get/${PHP_EXT_PECL_PKG_V}.tgz -> ${P}.tgz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Brotli compression extension for PHP"
HOMEPAGE+=" https://github.com/kjdev/php-ext-brotli"
LICENSE="MIT"
SLOT="0"
RDEPEND="app-arch/brotli"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PHP_EXT_ECONF_ARGS=(
--with-libbrotli
)

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_PHP="php8-1 php8-2 php8-3"
inherit php-ext-pecl-r3
unset SRC_URI
PHP_EXT_PECL_PKG_V="${PHP_EXT_PECL_PKG}-${PV/_/}"
if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/kjdev/php-ext-brotli.git"
EGIT_CHECKOUT_DIR="${WORKDIR}/${PHP_EXT_PECL_PKG_V}"
EGIT_SUBMODULES=()
inherit git-r3
else
SRC_URI="https://pecl.php.net/get/${PHP_EXT_PECL_PKG_V}.tgz -> ${P}.tgz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Brotli compression extension for PHP"
HOMEPAGE+=" https://github.com/kjdev/php-ext-brotli"
LICENSE="MIT"
SLOT="0"
RDEPEND="app-arch/brotli"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PHP_EXT_ECONF_ARGS=(
--with-libbrotli
)