commit nghttp2 for openSUSE:Factory
Hello community, here is the log from the commit of package nghttp2 for openSUSE:Factory checked in at 2015-04-06 00:26:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/nghttp2 (Old) and /work/SRC/openSUSE:Factory/.nghttp2.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "nghttp2" Changes: -------- --- /work/SRC/openSUSE:Factory/nghttp2/nghttp2.changes 2015-03-19 21:21:01.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.nghttp2.new/nghttp2.changes 2015-04-06 00:26:24.000000000 +0200 @@ -1,0 +2,22 @@ +Sat Apr 4 16:55:55 UTC 2015 - mpluskal@suse.com + +- Enable python bindings +- Update to 0.7.9 + * Implements h2-14 protocol (http://tools.ietf.org/html/draft-ietf-httpbis-http2-14) + * Implements HPACK 09 (http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-09) + * h2load: Fix crash if -t > -c + * h2load: Add -d option to upload data to server + * nghttpx: Forward only "trailers" keyword in te when forwarding HTTP/2 backend + * nghttpx: Fix PUSH_PROMISE header field corruption [GH-194] + * nghttpx: Fix te header field is duplicated when forwarding HTTP/2 backend + * nghttp, nghttpd: Add --hexdump option to hexdump incoming traffic. + * examples: Place AM_CPPFLAGS first to use in-package header files first [GH-192] +- Changes for 0.7.8 + * Implements h2-14 protocol (http://tools.ietf.org/html/draft-ietf-httpbis-http2-14) + * Implements HPACK 09 (http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-09) + * Validate :path header field for http or https URI scheme + * NULL-terminate header field name and value presented by callback + * README.rst: Cleaned up the grammar a bit (Patch from Ross Smith II) + * h2load: fix for segfault by reserving correct worker count (Patch from Stefan Eissing) + +------------------------------------------------------------------- Old: ---- nghttp2-0.7.5.tar.xz New: ---- nghttp2-0.7.9.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ nghttp2.spec ++++++ --- /var/tmp/diff_new_pack.2KlEba/_old 2015-04-06 00:26:24.000000000 +0200 +++ /var/tmp/diff_new_pack.2KlEba/_new 2015-04-06 00:26:24.000000000 +0200 @@ -16,19 +16,21 @@ # +%define lib_name lib%{name}-5 +%define lib_name_asio lib%{name}_asio1 Name: nghttp2 -Version: 0.7.5 +Version: 0.7.9 Release: 0 Summary: Implementation of Hypertext Transfer Protocol version 2 in C License: MIT Group: Development/Libraries/C and C++ Url: https://nghttp2.org/ - #Git-Clone: git://github.com/tatsuhiro-t/nghttp2 Source: https://github.com/tatsuhiro-t/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.xz BuildRequires: boost-devel BuildRequires: gcc-c++ BuildRequires: pkg-config +BuildRequires: python-Cython BuildRequires: python-Sphinx BuildRequires: pkgconfig(cunit) BuildRequires: pkgconfig(jansson) @@ -48,24 +50,31 @@ HPACK encoder and decoder are available as public API. -%package -n lib%{name}-5 +%package -n %{lib_name} Summary: Shared library for %{name} Group: System/Libraries -%description -n lib%{name}-5 +%description -n %{lib_name} Shared C libraries for implementation of Hypertext Transfer Protocol version 2 -%package -n lib%{name}_asio0 +%package -n %{lib_name_asio} Summary: Shared library for %{name} Group: System/Libraries -%description -n lib%{name}_asio0 +%description -n %{lib_name_asio} Shared librarios for asynchronous implementation of Hypertext Transfer Protocol version 2 +%package -n python-%{name} +Summary: Python bindings for %{name} +Group: Development/Libraries/Python + +%description -n python-%{name} +Python bindings for implementation of Hypertext Transfer Protocol version 2 + %package -n lib%{name}-devel Summary: Development files for %{name} Group: Development/Languages/C and C++ -Requires: lib%{name}-5 = %{version} +Requires: %{lib_name} = %{version} Provides: %{name}-devel %description -n lib%{name}-devel @@ -75,7 +84,7 @@ %package -n lib%{name}_asio-devel Summary: Development files for %{name} Group: Development/Languages/C and C++ -Requires: lib%{name}_asio0 = %{version} +Requires: %{lib_name_asio} = %{version} %description -n lib%{name}_asio-devel Development files for usage with lib%{name}_aio, which implements asynchronous @@ -95,6 +104,7 @@ %build %configure \ --enable-asio-lib \ + --enable-python-bindings \ --disable-static make %{?_smp_mflags} all html @@ -103,34 +113,38 @@ %install make DESTDIR=%{buildroot} install %{?_smp_mflags} -rm -f "%{buildroot}/%{_libdir}"/*.la +find %{buildroot} -type f -name "*.la" -delete -print # none of applications using these man pages is built rm -rf %{buildroot}%{_mandir}/man1/* rm -rf doc/manual/html/.buildinfo -%post -n lib%{name}-5 -p /sbin/ldconfig +%post -n %{lib_name} -p /sbin/ldconfig -%post -n lib%{name}_asio0 -p /sbin/ldconfig +%post -n %{lib_name_asio} -p /sbin/ldconfig -%postun -n lib%{name}-5 -p /sbin/ldconfig +%postun -n %{lib_name} -p /sbin/ldconfig -%postun -n lib%{name}_asio0 -p /sbin/ldconfig +%postun -n %{lib_name_asio} -p /sbin/ldconfig %files %defattr(-,root,root) %{_bindir}/deflatehd %{_bindir}/inflatehd -%files -n lib%{name}-5 +%files -n %{lib_name} %defattr(-,root,root) %doc COPYING %{_libdir}/lib%{name}.so.* -%files -n lib%{name}_asio0 +%files -n %{lib_name_asio} %defattr(-,root,root) %doc COPYING %{_libdir}/lib%{name}_asio.so.* +%files -n python-%{name} +%defattr(-,root,root) +%{python_sitearch}/* + %files -n lib%{name}-devel %defattr(-,root,root) %doc ChangeLog @@ -144,6 +158,8 @@ %defattr(-,root,root) %dir %{_includedir}/%{name} %{_includedir}/%{name}/asio_http2.h +%{_includedir}/nghttp2/asio_http2_client.h +%{_includedir}/nghttp2/asio_http2_server.h %{_libdir}/lib%{name}_asio.so %{_libdir}/pkgconfig/lib%{name}_asio.pc ++++++ nghttp2-0.7.5.tar.xz -> nghttp2-0.7.9.tar.xz ++++++ ++++ 18403 lines of diff (skipped)
participants (1)
-
root@hilbert.suse.de