Hello community, here is the log from the commit of package libmicrohttpd for openSUSE:Factory checked in at Thu Mar 24 14:45:47 CET 2011.
-------- New Changes file: --- /dev/null 2010-08-26 16:28:41.000000000 +0200 +++ /mounts/work_src_done/STABLE/libmicrohttpd/libmicrohttpd.changes 2011-03-05 22:49:52.000000000 +0100 @@ -0,0 +1,64 @@ +------------------------------------------------------------------- +Sat Mar 5 21:38:11 UTC 2011 - [email protected] + +- Updated to 0.9.8 + +------------------------------------------------------------------- +Tue Feb 15 16:54:35 UTC 2011 - [email protected] + +- Updated to 0.9.7 + +------------------------------------------------------------------- +Thu Jan 27 02:33:32 UTC 2011 - [email protected] + +- Updated to 0.9.6 + +------------------------------------------------------------------- +Sat Jan 15 15:02:29 UTC 2011 - [email protected] + +- Updated to 0.9.5 + +------------------------------------------------------------------- +Wed Dec 29 15:15:48 UTC 2010 - [email protected] + +- Updated to 0.9.4 + +------------------------------------------------------------------- +Wed Nov 24 16:02:15 UTC 2010 - [email protected] + +- Updated to 0.9.3 + +------------------------------------------------------------------- +Thu Oct 21 13:21:06 UTC 2010 - [email protected] + +- Updated to 0.9.2 + +------------------------------------------------------------------- +Mon Sep 20 17:17:03 UTC 2010 - [email protected] + +- Updated to 0.9.1 + +------------------------------------------------------------------- +Tue Jul 27 07:26:27 UTC 2010 - [email protected] + +- Updated to 0.9.0 + +------------------------------------------------------------------- +Mon Mar 15 08:35:12 UTC 2010 - [email protected] + +- update to 0.4.6: + * fixes use of poll causing busy waiting + * fixes a segfault if inconsistent options were used + * fixes SSL support on big-endian architectures + * fixes an issue with error signalling for PUT/POST requests in HTTP 1.1 + +------------------------------------------------------------------- +Tue Feb 2 13:10:52 UTC 2010 - [email protected] + +- Updated to 0.4.5. + +------------------------------------------------------------------- +Sun Jan 17 19:52:07 UTC 2010 - [email protected] + +- Initial RPM. + calling whatdependson for head-i586 New: ---- debian.changelog debian.compat debian.control debian.libmicrohttpd-dev.install debian.libmicrohttpd10.install debian.rules libmicrohttpd-0.9.8.tar.gz libmicrohttpd.changes libmicrohttpd.dsc libmicrohttpd.spec ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libmicrohttpd.spec ++++++ # # spec file for package libmicrohttpd # # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # # norootforbuild %define soname 10 Name: libmicrohttpd Version: 0.9.8 Release: 1 License: LGPLv2.1+ Group: Productivity/Networking/Web/Servers Url: http://gnunet.org/libmicrohttpd/ Source: http://ftpmirror.gnu.org/libmicrohttpd/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: libcurl-devel BuildRequires: libgcrypt-devel >= 1.2.4 BuildRequires: libtasn1-devel %if 0%{?suse_version} BuildRequires: libgnutls-devel BuildRequires: pkg-config %else BuildRequires: gnutls-devel BuildRequires: pkgconfig %endif Summary: Small Embeddable HTTP Server Library %description GNU libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. GNU libmicrohttpd is free software and part of the GNU project. Key features that distinguish libmicrohttpd from other projects are: * C library: fast and small * API is simple, expressive and fully reentrant * Implementation is http 1.1 compliant * HTTP server can listen on multiple ports * Support for IPv6 * Support for incremental processing of POST data * Creates binary of only 30k (without TLS/SSL support) * Three different threading models * Supported platforms include GNU/Linux, FreeBSD, OpenBSD, NetBSD, OS X, W32, Symbian and z/OS * Optional support for SSL3 and TLS (requires libgcrypt) libmicrohttpd was started because the author needed an easy way to add a concurrent HTTP server to other projects. Existing alternatives were either non-free, not reentrant, standalone, of terrible code quality or a combination thereof. Do not use libmicrohttpd if you are looking for a standalone http server, there are many other projects out there that provide that kind of functionality already. However, if you want to be able to serve simple WWW pages from within your C or C++ application, check it out. %package -n %{name}%{soname} Group: System/Libraries Summary: Small Embeddable HTTP Server Library %description -n %{name}%{soname} GNU libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. GNU libmicrohttpd is free software and part of the GNU project. Key features that distinguish libmicrohttpd from other projects are: * C library: fast and small * API is simple, expressive and fully reentrant * Implementation is http 1.1 compliant * HTTP server can listen on multiple ports * Support for IPv6 * Support for incremental processing of POST data * Creates binary of only 30k (without TLS/SSL support) * Three different threading models * Supported platforms include GNU/Linux, FreeBSD, OpenBSD, NetBSD, OS X, W32, Symbian and z/OS * Optional support for SSL3 and TLS (requires libgcrypt) libmicrohttpd was started because the author needed an easy way to add a concurrent HTTP server to other projects. Existing alternatives were either non-free, not reentrant, standalone, of terrible code quality or a combination thereof. Do not use libmicrohttpd if you are looking for a standalone http server, there are many other projects out there that provide that kind of functionality already. However, if you want to be able to serve simple WWW pages from within your C or C++ application, check it out. %package devel License: LGPLv2.1+ Group: Development/Libraries/C and C++ Requires: %{name}%{soname} = %{version} PreReq: info Summary: Small Embeddable HTTP Server Library %description devel GNU libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. GNU libmicrohttpd is free software and part of the GNU project. Key features that distinguish libmicrohttpd from other projects are: * C library: fast and small * API is simple, expressive and fully reentrant * Implementation is http 1.1 compliant * HTTP server can listen on multiple ports * Support for IPv6 * Support for incremental processing of POST data * Creates binary of only 30k (without TLS/SSL support) * Three different threading models * Supported platforms include GNU/Linux, FreeBSD, OpenBSD, NetBSD, OS X, W32, Symbian and z/OS * Optional support for SSL3 and TLS (requires libgcrypt) libmicrohttpd was started because the author needed an easy way to add a concurrent HTTP server to other projects. Existing alternatives were either non-free, not reentrant, standalone, of terrible code quality or a combination thereof. Do not use libmicrohttpd if you are looking for a standalone http server, there are many other projects out there that provide that kind of functionality already. However, if you want to be able to serve simple WWW pages from within your C or C++ application, check it out. %prep %setup -q %build %configure --disable-static \ --enable-curl \ --enable-client-side %__make %{?_smp_mflags} %install %makeinstall find %{buildroot} -name "*.la" -delete # Some tests fail due to some issue in gnutls #%check #%__make %{?_smp_mflags} check %post -n %{name}%{soname} -p /sbin/ldconfig %post devel %if 0%{?fedora_version} /sbin/install-info --info-dir=%{_infodir} --info-file=%{_infodir}/microhttpd.info%{ext_info} /sbin/install-info --info-dir=%{_infodir} --info-file=%{_infodir}/microhttpd-tutorial.info%{ext_info} %endif %if 0%{?mandriva_version} %_install_info libmicrohttpd.info %_install_info libmicrohttpd-tutorial.info %endif %if 0%{?suse_version} %install_info --info-dir=%{_infodir} %{_infodir}/libmicrohttpd.info%{ext_info} %install_info --info-dir=%{_infodir} %{_infodir}/libmicrohttpd-tutorial.info%{ext_info} %endif %postun -n %{name}%{soname} -p /sbin/ldconfig %postun devel %if 0%{?fedora_version} /sbin/install-info --delete --info-dir=%{_infodir} --info-file=%{_infodir}/microhttpd.info%{ext_info} /sbin/install-info --delete --info-dir=%{_infodir} --info-file=%{_infodir}/microhttpd-tutorial.info%{ext_info} %endif %if 0%{?mandriva_version} %_remove_install_info libmicrohttpd.info %_remove_install_info libmicrohttpd-tutorial.info %endif %if 0%{?suse_version} %install_info_delete --info-dir=%{_infodir} %{_infodir}/libmicrohttpd.info%{ext_info} %install_info_delete --info-dir=%{_infodir} %{_infodir}/libmicrohttpd-tutorial.info%{ext_info} %endif %clean test "%{buildroot}" != "/" && %__rm -rf "%{buildroot}" %files -n %{name}%{soname} %defattr(-,root,root) %{_libdir}/libmicrohttpd.so.%{soname} %{_libdir}/libmicrohttpd.so.%{soname}.* %files devel %defattr(-,root,root) %{_includedir}/microhttpd.h %{_libdir}/libmicrohttpd.so %{_libdir}/pkgconfig/libmicrohttpd.pc %{_infodir}/microhttpd.info* %{_infodir}/microhttpd-tutorial.info* %{_mandir}/man3/libmicrohttpd.3* # Do NOT delete this cause I need it for Fedora & Mandriva too! %if 0%{?fedora_version} || 0%{?scientificlinux_version} %exclude %{_infodir}/dir %endif %changelog ++++++ debian.changelog ++++++ libmicrohttpd (0.9.8-1) unstable; urgency=low * Updated to 0.9.8. -- Stephan Kleine <[email protected]> Sat, 05 Mar 2011 22:37:25 +0100 libmicrohttpd (0.9.7-1) unstable; urgency=low * Updated to 0.9.7. -- Stephan Kleine <[email protected]> Tue, 15 Feb 2011 17:55:00 +0100 libmicrohttpd (0.9.6-1) unstable; urgency=low * Updated to 0.9.6. -- Stephan Kleine <[email protected]> Thu, 27 Jan 2011 03:34:03 +0100 libmicrohttpd (0.9.5-1) unstable; urgency=low * Updated to 0.9.5. * Enabled hardening-wrapper -- Stephan Kleine <[email protected]> Sat, 15 Jan 2011 16:04:09 +0100 libmicrohttpd (0.9.4-1) unstable; urgency=low * Updated to 0.9.4. -- Stephan Kleine <[email protected]> Wed, 29 Dec 2010 16:15:21 +0100 libmicrohttpd (0.9.3-1) unstable; urgency=low * Updated to 0.9.3. -- Stephan Kleine <[email protected]> Wed, 24 Nov 2010 17:01:38 +0100 libmicrohttpd (0.9.2-1) unstable; urgency=low * Updated to 0.9.2. -- Stephan Kleine <[email protected]> Thu, 21 Oct 2010 15:21:16 +0200 libmicrohttpd (0.9.1-1) unstable; urgency=low * Updated to 0.9.1. -- Stephan Kleine <[email protected]> Mon, 20 Sep 2010 19:15:20 +0200 libmicrohttpd (0.9.0-1) unstable; urgency=low * Updated to 0.9.0. -- Stephan Kleine <[email protected]> Tue, 27 Jul 2010 09:25:19 +0200 libmicrohttpd (0.4.6-1) unstable; urgency=low * Updated to 0.4.6. -- Pascal Bleser <[email protected]> Mon, 15 Mar 2010 09:37:00 +0100 libmicrohttpd (0.4.5-1) unstable; urgency=low * Updated to 0.4.5. -- Stephan Kleine <[email protected]> Sat, 02 Feb 2010 13:10:52 +0100 libmicrohttpd (0.4.4-1) unstable; urgency=low * Initial package. -- Stephan Kleine <[email protected]> Sat, 23 Jan 2010 14:04:38 +0100 ++++++ debian.compat ++++++ 5 ++++++ debian.control ++++++ Source: libmicrohttpd Section: libs Priority: optional Maintainer: Stephan Kleine <[email protected]> Build-Depends: debhelper (>= 5), autotools-dev, libcurl4-openssl-dev, libgcrypt11-dev (>= 1.2.4), libgnutls-dev Standards-Version: 3.8.3 Homepage: http://www.gnu.org/software/libmicrohttpd/ Vcs-Browser: http://git.debian-maintainers.org/?p=gnunet/libmicrohttpd.git Vcs-Git: git://git.debian-maintainers.org/git/gnunet/libmicrohttpd.git Package: libmicrohttpd10 Section: libs Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: library embedding HTTP server functionality libmicrohttpd is a small C library for embedding HTTP server functionality into applications. . It will be used in future GNUnet versions as part of the HTTP transport. Package: libmicrohttpd10-dbg Section: debug Priority: extra Architecture: any Depends: ${misc:Depends}, libmicrohttpd10 (= ${binary:Version}), libmicrohttpd-dev (= ${binary:Version}) Description: library embedding HTTP server functionality (debug) libmicrohttpd is a small C library for embedding HTTP server functionality into applications. . This package contains the debugging symbols. Package: libmicrohttpd-dev Section: libdevel Architecture: any Depends: ${misc:Depends}, libmicrohttpd10 (= ${binary:Version}), Description: library embedding HTTP server functionality (development) libmicrohttpd is a small C library for embedding HTTP server functionality into applications. . This package contains the development files. ++++++ debian.libmicrohttpd-dev.install ++++++ /usr/include/* /usr/lib/*.so /usr/lib/pkgconfig /usr/share/info /usr/share/man ++++++ debian.libmicrohttpd10.install ++++++ usr/lib/*.so.* ++++++ debian.rules ++++++ #!/usr/bin/make -f # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 # Enable hardening-wrapper export DEB_BUILD_HARDENING=1 # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) config.status: configure dh_testdir # Configuring package ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --disable-static --enable-curl --enable-client-side build: build-stamp build-stamp: config.status dh_testdir # Building package $(MAKE) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp # Cleaning package [ ! -f Makefile ] || $(MAKE) distclean ifneq "$(wildcard /usr/share/misc/config.sub)" "" cp -f /usr/share/misc/config.sub config.sub endif ifneq "$(wildcard /usr/share/misc/config.guess)" "" cp -f /usr/share/misc/config.guess config.guess endif dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Installing package $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install binary-indep: build install binary-arch: build install dh_testdir dh_testroot dh_installchangelogs ChangeLog dh_installdocs # Removing useless files rm -f debian/tmp/usr/lib/*.a rm -f debian/tmp/usr/lib/*.la rm -f debian/tmp/usr/share/info/dir* dh_install --fail-missing --sourcedir=debian/tmp dh_link dh_strip --dbg-package=libmicrohttpd10-dbg dh_compress dh_fixperms dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install ++++++ libmicrohttpd.dsc ++++++ Format: 1.0 Source: libmicrohttpd Binary: libmicrohttpd10, libmicrohttpd10-dbg, libmicrohttpd-dev Architecture: any Version: 0.9.8-1 Maintainer: Stephan Kleine <[email protected]> Homepage: http://www.gnu.org/software/libmicrohttpd/ Standards-Version: 3.8.3 Vcs-Browser: http://git.debian-maintainers.org/?p=gnunet/libmicrohttpd.git Vcs-Git: git://git.debian-maintainers.org/git/gnunet/libmicrohttpd.git Build-Depends: debhelper (>= 5), autotools-dev, libcurl4-openssl-dev, libgcrypt11-dev (>= 1.2.4), libgnutls-dev, hardening-wrapper Files: bcd61ebb10286379f55c7db9c79e0465 843590 libmicrohttpd-0.9.8.tar.gz ee55b467a355f4669023ca61fa04aaf4 3595 libmicrohttpd-0.9.8.diff.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
