Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/nginx-unit/
Date: Tue, 04 Dec 2018 20:39:28
Message-Id: 1543955797.80a258274a54f83c976281f2c9969b3ac4c139e4.mgorny@gentoo
1 commit: 80a258274a54f83c976281f2c9969b3ac4c139e4
2 Author: Ralph Seichter <github <AT> seichter <DOT> de>
3 AuthorDate: Thu Nov 15 18:47:50 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 4 20:36:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80a25827
7
8 www-servers/nginx-unit: upstream release 1.6
9
10 Signed-off-by: Ralph Seichter <gentoo <AT> seichter.de>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12 Closes: https://github.com/gentoo/gentoo/pull/10424
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 www-servers/nginx-unit/Manifest | 1 +
16 www-servers/nginx-unit/nginx-unit-1.6.ebuild | 67 ++++++++++++++++++++++++++++
17 2 files changed, 68 insertions(+)
18
19 diff --git a/www-servers/nginx-unit/Manifest b/www-servers/nginx-unit/Manifest
20 index 9bfd8b4574b..e7a7e5ec739 100644
21 --- a/www-servers/nginx-unit/Manifest
22 +++ b/www-servers/nginx-unit/Manifest
23 @@ -1,2 +1,3 @@
24 DIST nginx-unit-1.3.tar.gz 401670 BLAKE2B 34a0ed9631c7061d1c71f8335103b0e266ef6f949afeb8cef283a7b5dd6c9f0a4835f20fdedd091af6950cd0897cb1ab48dea9f475e1b75a2872da7ac0090d10 SHA512 63a47b920bfdae7a7e034d616f520b27b46151a299cf5854373f7f8472043de0ffc98f9d62317c46e637857e0ef24668ded99be6e058315acf25b4e1c7f1ed09
25 DIST nginx-unit-1.5.tar.gz 437636 BLAKE2B 9f7b89a800c933cc6d55a444c5a6c6326cf1694062026419af5e8a13e68b35c47b631d961611342e20c3d9338ca727ed7cc38c27b43443ec3f9abafd18f6684a SHA512 bde6bc7720cff03bf3967fde265c6763fc84f597a7c785eae0174726cb8ad7676f0adade892c2944abad831a667fff250a75aeacdca2d1bffb8c0f8fcd291ebd
26 +DIST nginx-unit-1.6.tar.gz 439244 BLAKE2B 38e5580eed131b92f7fb73f389bd1dcc713a091d16910fd984a95fb77a47586e7a8afe597fb4774c2f27aac3de66297eb3993815569dde3b11e5b755f3ae319e SHA512 d8a84c2c88017b18dfccf082591177564158e4297632664bc06fd8545b798e0d5efaaae9f840ee485a246c3638cdd022363c455f441d52666f39191e88b14ff8
27
28 diff --git a/www-servers/nginx-unit/nginx-unit-1.6.ebuild b/www-servers/nginx-unit/nginx-unit-1.6.ebuild
29 new file mode 100644
30 index 00000000000..9f7feccf3ea
31 --- /dev/null
32 +++ b/www-servers/nginx-unit/nginx-unit-1.6.ebuild
33 @@ -0,0 +1,67 @@
34 +# Copyright 1999-2018 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=(python2_7 python3_{3,4,5,6,7})
40 +
41 +inherit python-single-r1
42 +
43 +MY_P="unit-${PV}"
44 +DESCRIPTION="A dynamic web and application server"
45 +HOMEPAGE="https://unit.nginx.org"
46 +SRC_URI="https://unit.nginx.org/download/${MY_P}.tar.gz -> ${P}.tar.gz"
47 +
48 +LICENSE="Apache-2.0"
49 +SLOT="0"
50 +KEYWORDS="~amd64"
51 +MY_USE="perl python ruby"
52 +MY_USE_PHP="php5-6 php7-0 php7-1 php7-2"
53 +IUSE="${MY_USE} ${MY_USE_PHP}"
54 +REQUIRED_USE="|| ( ${IUSE} ) python? ( ${PYTHON_REQUIRED_USE} )"
55 +
56 +DEPEND="perl? ( dev-lang/perl:= )
57 + php5-6? ( dev-lang/php:5.6[embed] )
58 + php7-0? ( dev-lang/php:7.0[embed] )
59 + php7-1? ( dev-lang/php:7.1[embed] )
60 + php7-2? ( dev-lang/php:7.2[embed] )
61 + python? ( ${PYTHON_DEPS} )
62 + ruby? ( dev-lang/ruby:= )"
63 +RDEPEND="${DEPEND}"
64 +S="${WORKDIR}/${MY_P}"
65 +
66 +pkg_setup() {
67 + use python && python-single-r1_pkg_setup
68 +}
69 +
70 +src_configure() {
71 + ./configure \
72 + --control=unix:/run/${PN}.sock \
73 + --ld-opt="${LDFLAGS}" \
74 + --log=/var/log/${PN} \
75 + --modules=$(get_libdir)/${PN} \
76 + --pid=/run/${PN}.pid \
77 + --prefix=/usr \
78 + --state=/var/lib/${PN} || die "Core configuration failed"
79 + for flag in ${MY_USE} ; do
80 + if use ${flag} ; then
81 + ./configure ${flag} || die "Module configuration failed: ${flag}"
82 + fi
83 + done
84 + for flag in ${MY_USE_PHP} ; do
85 + if use ${flag} ; then
86 + local php_slot="/usr/$(get_libdir)/${flag/-/.}"
87 + ./configure php \
88 + --module=${flag} \
89 + --config=${php_slot}/bin/php-config \
90 + --lib-path=${php_slot}/$(get_libdir) || die "Module configuration failed: ${flag}"
91 + fi
92 + done
93 +}
94 +
95 +src_install() {
96 + default
97 + diropts -m 0770
98 + keepdir /var/lib/${PN}
99 + newinitd "${FILESDIR}/${PN}.initd" ${PN}
100 +}