Do not merge this yet! This patch is still an RFC. Refer to the "Questions and problems" section for more detailed explanation of the issues that (more or less) block the merging of the patches.
GitHub PR: https://github.com/gentoo/gentoo/pull/37590 This is an attempt to improve the state of NGINX in the Gentoo tree. The majority of reasoning for introducing this series can be found in the nginx.eclass commit, whereas the actual differences between the previous and the new versions are outlined in the NGINX 1.26.1 revbump commit. Such "refreshes" are important for Gentoo, as to my belief. NGINX has not been maintained for two years now, let alone being rewritten. Thus, NGINX ebuilds are around 42K in size, having accumulated rust over the years. The sheer size and monstrosity of the ebuild hinders the discourages developers from adopting the package. These patches aim to drastically reduce the size and fix numerous issues that NGINX has acquired throughout its lifetime. Questions and problems ====================== (1) Is having separate SLOTs for different NGINX update streams useful? Currently, NGINX is half-slotted. It has the '0' and the 'mainline' slot with both undergoing the same stabilisation, i.e. 'mainline' version can and do have stable keywords (unlike, for example Firefox, where LTS versions are stable and rapid ones are always testing). Therefore, intention for this was to make this half-baked slotting complete, by introducing the 'stable' slot. One use case of such distinction is an ability to subscribe to the 'stable' version and receive updates from that, ignoring 'mainline' versions. One of the downsides of SLOTting NGINX is the fact that mainline versions are not always ahead of the stable ones. As an example of this point, the stable NGINX 1.26.0 version was ahead of the mainline 1.25.5. If, for instance, NGINX utilised SLOTting and a user updated from nginx-1.25.5:mainline to nginx-1.26.0:stable, they would be greeted with rather unwelcoming blocker messages. Is this approach reasonable? If not, the SLOTting machinery can easily be removed :) (2) Do all the previously-bundled modules need to be ported to nginx-module.eclass for this to be considered "mergeable"? This implements somewhat special infrastructure (which could be considered as a hack) to tackle the fact that the NGINX build system does not fully support building external modules out of tree. As a proof of concept, four simple modules have been ported to the introduced nginx-module.eclass. If the nginx-module.eclass approach is deemed suitable, should I port the rest of the modules to maintain their presence in the Gentoo tree or shall we just drop them altogether? I am bringing this up since despite the modules (modsecurity, rtmp, lua, etc.) were not independent packages a lot of people rely on them in their workflow, and, thus, we should not just blindly remove them. Having said this, I am not really willing to maintain third party modules as I have no interest in using them. Nonetheless, I believe that people will be encouraged to adopt the unbundled NGINX modules quicker with a number of simplifications brought forth by these patches. (3) Please, test these patches. Although automated tests do work and the ebuilds pass them, it is entirely possible that I have missed something. Happy hacking :) Zurab Kvachadze (19): nginx.eclass: Add new eclass for building the NGINX server nginx-module.eclass: Add new eclass for building NGINX external modules www-servers/nginx: add myself as a proxy maintainer; update metadata.xml www-servers/nginx: add nginx-r5.initd www-servers/nginx: add nginx-r1.confd www-servers/nginx: add nginx-r2.service www-servers/nginx: add nginx-r2.logrotate www-servers/nginx: add nginx-r4.conf profiles/desc: reword and update nginx_modules_http.desc profiles/desc: reword and update nginx_modules_mail.desc profiles/desc: reword and update nginx_modules_stream.desc profiles/categories: Add www-nginx category for external NGINX modules www-servers/nginx: revbump 1.26.1-r1 to 1.26.1-r2, use nginx.eclass www-servers/nginx: revbump 1.27.0-r1 to 1.27.0-r2, use nginx.eclass www-servers/nginx: add 9999 live version, use nginx.eclass www-nginx/ngx_devel_kit: new package, add 0.3.3 www-nginx/ngx-echo: new package, add 0.63 www-nginx/ngx-encrypted-session: new package, add 0.09 www-nginx/ngx-set-misc: new package, add 0.33 eclass/nginx-module.eclass | 180 ++++ eclass/nginx.eclass | 774 ++++++++++++++++++ profiles/categories | 1 + profiles/desc/nginx_modules_http.desc | 147 ++-- profiles/desc/nginx_modules_mail.desc | 9 +- profiles/desc/nginx_modules_stream.desc | 34 +- www-nginx/metadata.xml | 7 + www-nginx/ngx-echo/Manifest | 1 + www-nginx/ngx-echo/metadata.xml | 8 + www-nginx/ngx-echo/ngx-echo-0.63.ebuild | 18 + www-nginx/ngx-encrypted-session/Manifest | 1 + www-nginx/ngx-encrypted-session/metadata.xml | 8 + .../ngx-encrypted-session-0.09.ebuild | 32 + www-nginx/ngx-set-misc/Manifest | 1 + www-nginx/ngx-set-misc/metadata.xml | 11 + .../ngx-set-misc/ngx-set-misc-0.33.ebuild | 50 ++ www-nginx/ngx_devel_kit/Manifest | 1 + www-nginx/ngx_devel_kit/metadata.xml | 8 + .../ngx_devel_kit/ngx_devel_kit-0.3.3.ebuild | 28 + www-servers/nginx/Manifest | 1 + www-servers/nginx/files/nginx-r1.confd | 37 + www-servers/nginx/files/nginx-r2.logrotate | 11 + www-servers/nginx/files/nginx-r2.service | 12 + www-servers/nginx/files/nginx-r4.conf | 39 + www-servers/nginx/files/nginx-r5.initd | 117 +++ www-servers/nginx/metadata.xml | 61 +- www-servers/nginx/nginx-1.26.1-r2.ebuild | 30 + www-servers/nginx/nginx-1.27.0-r2.ebuild | 30 + www-servers/nginx/nginx-9999.ebuild | 28 + 29 files changed, 1574 insertions(+), 111 deletions(-) create mode 100644 eclass/nginx-module.eclass create mode 100644 eclass/nginx.eclass create mode 100644 www-nginx/metadata.xml create mode 100644 www-nginx/ngx-echo/Manifest create mode 100644 www-nginx/ngx-echo/metadata.xml create mode 100644 www-nginx/ngx-echo/ngx-echo-0.63.ebuild create mode 100644 www-nginx/ngx-encrypted-session/Manifest create mode 100644 www-nginx/ngx-encrypted-session/metadata.xml create mode 100644 www-nginx/ngx-encrypted-session/ngx-encrypted-session-0.09.ebuild create mode 100644 www-nginx/ngx-set-misc/Manifest create mode 100644 www-nginx/ngx-set-misc/metadata.xml create mode 100644 www-nginx/ngx-set-misc/ngx-set-misc-0.33.ebuild create mode 100644 www-nginx/ngx_devel_kit/Manifest create mode 100644 www-nginx/ngx_devel_kit/metadata.xml create mode 100644 www-nginx/ngx_devel_kit/ngx_devel_kit-0.3.3.ebuild create mode 100644 www-servers/nginx/files/nginx-r1.confd create mode 100644 www-servers/nginx/files/nginx-r2.logrotate create mode 100644 www-servers/nginx/files/nginx-r2.service create mode 100644 www-servers/nginx/files/nginx-r4.conf create mode 100644 www-servers/nginx/files/nginx-r5.initd create mode 100644 www-servers/nginx/nginx-1.26.1-r2.ebuild create mode 100644 www-servers/nginx/nginx-1.27.0-r2.ebuild create mode 100644 www-servers/nginx/nginx-9999.ebuild -- 2.44.2