www-nginx/ngx-iconv: new package, add 0.14

ngx-iconv[1] is a "a character conversion NGINX module using libiconv".

[1]: https://github.com/calio/iconv-nginx-module

Signed-off-by: Zurab Kvachadze <zurabid2016@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/37590
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Zurab Kvachadze 2025-02-18 16:05:34 +01:00 committed by Sam James
parent e3160cece2
commit c537624f1f
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST ngx-iconv-0.14.tar.gz 13133 BLAKE2B e0120a667bc0ee76efee1310b72fa4cbbe0e21fece502dab46b19a87f285f718257464d0c6df8df27fc5b8d4a2acc2e9c88474dfea2fd040220be9affc4b2546 SHA512 63e5e4f1d667438f13aa93f56ec05f0af86147e996ae450f13664668f9813319cc895f0b5e72e05cb2d93722fdb17541972a4d492be8ad226bfc87e4672e29d9

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person" proxied="yes">
<email>zurabid2016@gmail.com</email>
<name>Zurab Kvachadze</name>
</maintainer>
<maintainer type="project" proxied="proxy">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<longdescription>
The ngx-iconv NGINX module allows converting characters of different encoding by using
libiconv. It brings the 'set_iconv' command to NGINX.
</longdescription>
<upstream>
<bugs-to>https://github.com/calio/iconv-nginx-module/issues</bugs-to>
<remote-id type="github">calio/iconv-nginx-module</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,25 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="iconv-nginx-module"
NGINX_MOD_S="${WORKDIR}/${MY_PN}-${PV}"
NGINX_MOD_LINK_MODULES=( www-nginx/ngx_devel_kit )
inherit nginx-module
DESCRIPTION="A character conversion NGINX module using libiconv"
HOMEPAGE="https://github.com/calio/iconv-nginx-module"
SRC_URI="
https://github.com/calio/iconv-nginx-module/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
"
LICENSE="BSD-2"
SLOT="0"
RESTRICT="test"
DEPEND="virtual/libiconv"
RDEPEND="${DEPEND}"