Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/passenger/
Date: Fri, 16 Jul 2021 06:43:43
Message-Id: 1626417816.dc232fb36d320eddeab05b73dbd77e9f683132b6.graaff@gentoo
1 commit: dc232fb36d320eddeab05b73dbd77e9f683132b6
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 16 06:40:40 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 06:43:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc232fb3
7
8 www-apache/passenger: add 6.0.10
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 www-apache/passenger/Manifest | 1 +
14 www-apache/passenger/passenger-6.0.10.ebuild | 129 +++++++++++++++++++++++++++
15 2 files changed, 130 insertions(+)
16
17 diff --git a/www-apache/passenger/Manifest b/www-apache/passenger/Manifest
18 index d873677eade..fb8daffd3c7 100644
19 --- a/www-apache/passenger/Manifest
20 +++ b/www-apache/passenger/Manifest
21 @@ -1,2 +1,3 @@
22 +DIST passenger-6.0.10.tar.gz 8178910 BLAKE2B 9c7b8e05130e7242cb13986b97582786d77c2d5341620bd3594f428ecf26bf983262ad92b7b8a21666bfa262de0f4d148cef56de2015c0e2b42a3d7d87db2b43 SHA512 5ef2170cb9e55de37cc2b561f2f5c6a6406c71d70b248078ac5086d9d6e9ba90efcf223f1ed6b14774c8eb008d7cb6e98f3d5f8a088126ea697638a8dce6741c
23 DIST passenger-6.0.8.tar.gz 7567855 BLAKE2B ea8577c07a57eaea4e3b2b236808c9e54badb35368e948132af04220026b2676a71d066625a64cd98ce35118ae613bcbca8a0a1f8e0bc2a8d321c1165dec72f5 SHA512 ad35bee4a1c855b8f5401ab44e2a9b0cf3281e7fb1d8e09c8b12c54a465545d43285301c7d0fe16914e3c0fd5407d0d5cef31bb296f850d787903e6e006b368f
24 DIST passenger-6.0.9.tar.gz 8180342 BLAKE2B 41bdfe06fe3dd94cbcbe44b8a9e2945447662a00b082c94d84196c13ec597c8aa6f5b34ff7855d06a983a27673c6e5c65426dfee20bcd601cea03cc2035a9da0 SHA512 fbb7a5a9e222672ea2db13f92de0710b84cde530d67633ad31265a1e34bf8a79f006a9db35eec45200d61c1084f0846275a06b55c717cf35ccdc7a8e878d37b4
25
26 diff --git a/www-apache/passenger/passenger-6.0.10.ebuild b/www-apache/passenger/passenger-6.0.10.ebuild
27 new file mode 100644
28 index 00000000000..52d626c53cb
29 --- /dev/null
30 +++ b/www-apache/passenger/passenger-6.0.10.ebuild
31 @@ -0,0 +1,129 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +USE_RUBY="ruby26 ruby27 ruby30"
37 +
38 +inherit apache-module flag-o-matic multilib ruby-ng toolchain-funcs
39 +
40 +DESCRIPTION="Passenger makes deployment of Ruby on Rails applications a breeze"
41 +HOMEPAGE="https://www.phusionpassenger.com/"
42 +SRC_URI="https://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
47 +IUSE="apache2 debug"
48 +
49 +ruby_add_bdepend "dev-ruby/rake"
50 +
51 +ruby_add_rdepend "
52 + >=dev-ruby/rack-1.0.0:*
53 + >=dev-ruby/rake-0.8.1"
54 +
55 +# libev is bundled but with adapations that do not seem to be accepted
56 +# upstream, so we must use the bundled version :-(
57 +CDEPEND="
58 + >=dev-libs/libuv-1.8.0
59 + net-misc/curl[ssl]
60 + apache2? ( www-servers/apache[apache2_modules_unixd(+)] )"
61 +
62 +RDEPEND="${RDEPEND} ${CDEPEND}"
63 +DEPEND="${DEPEND} ${CDEPEND}"
64 +
65 +APACHE2_MOD_CONF="30_mod_${PN}-5.0.0 30_mod_${PN}"
66 +APACHE2_MOD_DEFINE="PASSENGER"
67 +
68 +want_apache2
69 +
70 +pkg_setup() {
71 + use debug && append-flags -DPASSENGER_DEBUG
72 + depend.apache_pkg_setup
73 +}
74 +
75 +all_ruby_prepare() {
76 + eapply "${FILESDIR}"/${PN}-5.1.11-gentoo.patch
77 +
78 + # Change these with sed instead of a patch so that we can easily use
79 + # the toolchain-funcs methods.
80 + sed -i -e "/^CC/ s/=.*$/= '$(tc-getCC)'/" \
81 + -e "/^CXX\s/ s/=.*$/= '$(tc-getCXX)'/" \
82 + -e 's/PlatformInfo.debugging_cflags//' build/basics.rb || die
83 +
84 + # Avoid fixed debugging CFLAGs.
85 + sed -e '/debugging_cflags/areturn ""' -i src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb || die
86 +
87 + # Use sed here so that we can dynamically set the documentation directory.
88 + sed -i -e "s:/usr/share/doc/passenger:/usr/share/doc/${P}:" \
89 + -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" \
90 + src/ruby_supportlib/phusion_passenger.rb || die
91 + sed -i -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" src/cxx_supportlib/ResourceLocator.h || die
92 +
93 + # Don't install a tool that won't work in our setup.
94 + sed -i -e '/passenger-install-apache2-module/d' src/ruby_supportlib/phusion_passenger/packaging.rb || die
95 + rm -f bin/passenger-install-apache2-module || die "Unable to remove unneeded install script."
96 +
97 + # Make sure we use the system-provided version where possible
98 + rm -rf src/cxx_supportlib/vendor-copy/libuv || die "Unable to remove vendored code."
99 +
100 + # Avoid building documentation to avoid a dependency on mizuho.
101 + #sed -i -e 's/, :doc//' build/packaging.rb || die
102 + touch doc/*.html || die
103 +
104 + # Fix hard-coded use of AR
105 + sed -i -e "s/ar cru/"$(tc-getAR)" cru/" build/support/cplusplus.rb || die
106 +
107 + # Make sure apache support is not attempted with -apache2
108 + if ! use apache2 ; then
109 + sed -i -e '/fakeroot/ s/:apache2, //' build/packaging.rb || die
110 + fi
111 +}
112 +
113 +all_ruby_compile() {
114 + if use apache2 ; then
115 + V=1 EXTRA_LDFLAGS="${LDFLAGS}" \
116 + APXS2="${APXS}" \
117 + HTTPD="${APACHE_BIN}" \
118 + FS_LIBDIR='/usr/'$(get_libdir) \
119 + USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \
120 + RANLIB=$(tc-getRANLIB) \
121 + ruby -S rake apache2 || die "rake failed"
122 + fi
123 +}
124 +
125 +each_ruby_compile() {
126 + append-flags -fno-strict-aliasing
127 +
128 + V=1 EXTRA_LDFLAGS="${LDFLAGS}" \
129 + APXS2="${APXS}" \
130 + HTTPD="${APACHE_BIN}" \
131 + FS_LIBDIR='/usr/'$(get_libdir) \
132 + USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \
133 + RANLIB=$(tc-getRANLIB) \
134 + ${RUBY} -S rake native_support || die "rake failed"
135 +}
136 +
137 +all_ruby_install() {
138 + if use apache2 ; then
139 + APACHE2_MOD_FILE="${S}/buildout/apache2/mod_${PN}.so"
140 + apache-module_src_install
141 +
142 + # Patch in the correct libdir
143 + sed -i -e 's:/usr/lib/:/usr/'$(get_libdir)'/:' "${D}${APACHE_MODULES_CONFDIR}/30_mod_${PN}.conf" || die
144 + fi
145 +
146 + dodoc CHANGELOG README.md
147 +}
148 +
149 +each_ruby_install() {
150 + DISTDIR="${D}" \
151 + RUBYLIBDIR="$(ruby_rbconfig_value vendordir)" \
152 + RUBYARCHDIR="$(ruby_rbconfig_value archdir)" \
153 + APXS2="${APXS}" \
154 + HTTPD="${APACHE_BIN}" \
155 + FS_LIBDIR='/usr/'$(get_libdir) \
156 + EXTRA_LDFLAGS="${LDFLAGS}" \
157 + USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \
158 + RANLIB=$(tc-getRANLIB) \
159 + ${RUBY} -S rake fakeroot || die "rake failed"
160 +}