OBS User unknown
2007-07-18 20:11:00 +00:00
committed by Git OBS Bridge
parent 04f948f20f
commit 0da8a25dab
4 changed files with 46 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
#
# spec file for package neon (Version 0.26.3)
# spec file for package neon (Version 0.26.4)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -13,9 +13,9 @@
Name: neon
BuildRequires: libexpat-devel openssl-devel zlib-devel
Summary: An HTTP and WebDAV Client Library
Version: 0.26.3
Release: 14
License: GNU General Public License (GPL)
Version: 0.26.4
Release: 1
License: GPL v2 or later
Group: Development/Libraries/Other
URL: http://www.webdav.org/neon
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -74,31 +74,24 @@ Authors:
%build
rm -f aclocal.m4 ltmain.sh
sh autogen.sh
CFLAGS="$RPM_OPT_FLAGS -g -Wall" \
./configure --prefix=/usr \
--sysconfdir=/etc \
--libdir=%{_libdir} \
--mandir=%{_mandir} \
--infodir=%{_infodir} \
--with-ssl \
--disable-nls \
--enable-shared \
--enable-warnings
%configure \
--with-ssl \
--disable-nls \
--enable-shared \
--enable-warnings
make %{?jobs:-j%jobs}
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/usr
make DESTDIR=$RPM_BUILD_ROOT docdir=%{_defaultdocdir}/neon install install-man install-html
make DESTDIR=$RPM_BUILD_ROOT docdir=%{_defaultdocdir}/%{name} install install-man install-html
%clean
rm -rf $RPM_BUILD_ROOT
%post
%run_ldconfig
/sbin/ldconfig
%postun
%run_ldconfig
/sbin/ldconfig
%files
%defattr(-,root,root)
@@ -109,8 +102,8 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root)
%doc doc/*.txt doc/html
%defattr(-,root,root)
/usr/bin/neon-config
/usr/include/neon
%{_bindir}/neon-config
%{_includedir}/neon
%{_mandir}/*/*
%{_libdir}/*.a
%{_libdir}/*.la
@@ -118,6 +111,19 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/pkgconfig/neon.pc
%changelog
* Tue Jul 17 2007 - prusnak@suse.cz
- update to 0.26.4
* Fix Negotiate Authentication-Info response header verification with GSSAPI
* Fix multiple handlers with ne_add_{server,proxy}_auth (Werner Baumann)
* Fix SSPI build with some versions of MinGW (Gisle Vanem)
* Fix for SSPI segfault in response header verification (Mike DiCuccio)
* Fix error strings for CONNECT SSL proxy tunnel request failure
* Fix install-nls for VPATH builds (Hans Meine)
* Fix use of unencrypted client certs with GnuTLS
* Fix ne_lock* If: header insertion to use CRLF-terminated headers
* Fix test suite failures on QNX by working around send() length limit
* Fix handling of POSIX strerror_r failure case in ne_strerror
* Fix alignment issues in test suite MD5 code
* Fri Apr 27 2007 - dmueller@suse.de
- fix buildrequires
* Tue Apr 17 2007 - prusnak@suse.cz