diff options
author | Kent Fredric <kentnl@gentoo.org> | 2020-08-21 17:03:49 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2020-08-21 17:04:53 +1200 |
commit | c8cdd712e630db26cebb50d5883cbeded36e797f (patch) | |
tree | 1b7c8c2d3ef9e5ac89e38df8d8ebc06a717fe46b /dev-perl/FCGI/FCGI-0.790.0.ebuild | |
parent | app-editors/xemacs: Stabilize 21.4.24-r2 arm64, #738268 (diff) | |
download | gentoo-c8cdd712e630db26cebb50d5883cbeded36e797f.tar.gz gentoo-c8cdd712e630db26cebb50d5883cbeded36e797f.tar.bz2 gentoo-c8cdd712e630db26cebb50d5883cbeded36e797f.zip |
dev-perl/FCGI: Bump to version 0.790.0
- EAPI7
- Ensure CFLAGS passed to make/compiler
Upstream:
- Check socket path length in OS_{CreateLocalIpcFd,OS_FcgiConnect}
to avoid buffer overrun
- Fix memory leak in ProcessManagementRecord()
Security:
- This includes fixes for both memory leaks and buffer overruns, and may
be subject to security issues
* https://github.com/perl-catalyst/FCGI/pull/4
* https://github.com/perl-catalyst/FCGI/pull/5
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/FCGI/FCGI-0.790.0.ebuild')
-rw-r--r-- | dev-perl/FCGI/FCGI-0.790.0.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-perl/FCGI/FCGI-0.790.0.ebuild b/dev-perl/FCGI/FCGI-0.790.0.ebuild new file mode 100644 index 000000000000..24bb0550fa1b --- /dev/null +++ b/dev-perl/FCGI/FCGI-0.790.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=ETHER +DIST_VERSION=0.79 +inherit perl-module + +DESCRIPTION="Fast CGI module" + +LICENSE="FastCGI" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +RDEPEND=" + virtual/perl-XSLoader +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker +" +src_compile() { + mymake=( + "OPTIMIZE=${CFLAGS}" + ) + perl-module_src_compile +} |