Initial import

This commit is contained in:
Lubomir Rintel 2010-09-23 15:26:54 +02:00
parent e85ac38085
commit bbd587f6a1
3 changed files with 87 additions and 0 deletions

1
.gitignore vendored
View File

@ -0,0 +1 @@
/http-parser.tar.gz

85
http-parser.spec Normal file
View File

@ -0,0 +1,85 @@
%global somajor 0
%global sominor 3
Name: http-parser
Version: %{somajor}.%{sominor}
Release: 2.20100911git%{?dist}
Summary: HTTP request/response parser for C
Group: System Environment/Libraries
License: MIT
URL: http://github.com/ry/http-parser
# git clone http://github.com/ry/http-parser.git
# cd http-parser/
# git archive 459507f5 --prefix=http-parser/ |gzip -9 >../http-parser.tar.gz
Source0: http-parser.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%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 applications.
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).
%package devel
Group: Development/Libraries
Summary: Development headers and libraries for http-parser
Requires: %{name} = %{version}-%{release}
%description devel
Development headers and libraries for htt-parser.
%prep
%setup -q -n %{name}
%build
make %{?_smp_mflags} CC="%{__cc} %{optflags} -fPIC" http_parser.o
%{__cc} $(rpm --eval %optflags) -Wl,-soname,http_parser.so.%{somajor} \
-o libhttp_parser.so -shared http_parser.o
%install
rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT%{_includedir}
install -d $RPM_BUILD_ROOT%{_libdir}
install -pm644 http_parser.h $RPM_BUILD_ROOT%{_includedir}
install libhttp_parser.so $RPM_BUILD_ROOT%{_libdir}/libhttp_parser.so.%{somajor}.%{sominor}
ln -sf libhttp_parser.so.%{somajor}.%{sominor} $RPM_BUILD_ROOT%{_libdir}/libhttp_parser.so.%{somajor}
ln -sf libhttp_parser.so.%{somajor}.%{sominor} $RPM_BUILD_ROOT%{_libdir}/libhttp_parser.so
%check
make %{?_smp_mflags} CC="%{__cc} %{optflags} -fPIC" test
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%{_libdir}/libhttp_parser.so.*
%doc CONTRIBUTIONS LICENSE-MIT README.md
%files devel
%defattr(-,root,root,-)
%{_includedir}/*
%{_libdir}/libhttp_parser.so
%changelog
* Mon Sep 20 2010 Lubomir Rintel <lkundrak@v3.sk> - 0.3-2.20100911git
- Call ldconfig (Peter Lemenkov)
* Fri Sep 17 2010 Lubomir Rintel <lkundrak@v3.sk> - 0.3-1.20100911git
- Initial packaging

View File

@ -0,0 +1 @@
d6a9377a4ed8288a8cb544389fd9bf88 http-parser.tar.gz