From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] http-parser: New package. Date: Mon, 02 Sep 2019 14:25:54 +0200 Message-ID: <20190902122554.26292-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6976780757895300198==" List-Id: --===============6976780757895300198== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This package is used to build libgit2. Signed-off-by: Stefan Schantl --- http-parser/http-parser.nm | 50 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 http-parser/http-parser.nm diff --git a/http-parser/http-parser.nm b/http-parser/http-parser.nm new file mode 100644 index 000000000..d22337873 --- /dev/null +++ b/http-parser/http-parser.nm @@ -0,0 +1,50 @@ +############################################################################= ### +# IPFire.org - An Open Source Firewall Solution = # +# Copyright (C) - IPFire Development Team = # +############################################################################= ### + +name =3D http-parser +version =3D 2.9.2 +release =3D 1 + +groups =3D System/Libraries +url =3D https://github.com/nodejs/http-parser +license =3D MIT +summary =3D HTTP request/response parser for C + +description + This is a parser for HTTP messages written in C. It parses both requests and + responses. The parser is designed to be used in performance HTTP applicatio= ns. + It does not make any syscalls nor allocations, it does not buffer data, it = can + be interrupted at anytime. Depending on your architecture, it only requires + about 40 bytes of data per message stream (in a web server that is per + connection). +end + +source_dl =3D https://github.com/nodejs/%{name}/archive/v%{version}/ + +build + prepare_cmds + # Remove Werror from Makefile. + sed -i 's/\-Werror//g' Makefile + end + + # Testsuite will be launched automatically + # after compiling has finished. + + make_install_targets +=3D \ + PREFIX=3D%{prefix} \ + LIBDIR=3D%{libdir} +end + +packages + package %{name} + + package %{name}-devel + template DEVEL + end + + package %{name}-debuginfo + template DEBUGINFO + end +end --=20 2.20.1 --===============6976780757895300198==--