auto-import changelog data from cyrus-sasl-1.5.24-11.src.rpm
Wed Oct 25 2000 Nalin Dahyabhai <nalin@redhat.com> - make sure the version of 1.5.24 in the package matches the master (#18968) - re-merge -devel and main for an errata candidate Mon Oct 09 2000 Nalin Dahyabhai <nalin@redhat.com> - re-add the libsasl.so symlink to the -devel package (oops) Fri Oct 06 2000 Nalin Dahyabhai <nalin@redhat.com> - move .so files for modules to their respective packages -- they're not -devel links meant for use by ld anyway Thu Oct 05 2000 Nalin Dahyabhai <nalin@redhat.com> - split off -devel subpackage - add a -gssapi subpackage for the gssapi plugins
This commit is contained in:
parent
ac72ca26d6
commit
bd7c4f813d
@ -1,22 +1,40 @@
|
|||||||
Summary: The Cyrus SASL library.
|
Summary: The Cyrus SASL library.
|
||||||
Name: cyrus-sasl
|
Name: cyrus-sasl
|
||||||
Version: 1.5.24
|
Version: 1.5.24
|
||||||
Release: 6
|
Release: 11
|
||||||
Copyright: distributable
|
Copyright: distributable
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Source: ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-%{version}.tar.gz
|
Source: ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-%{version}.tar.gz
|
||||||
URL: http://asg.web.cmu.edu/sasl/sasl-library.html
|
URL: http://asg.web.cmu.edu/sasl/sasl-library.html
|
||||||
Patch0: cyrus-sasl-1.5.21-des.patch
|
Patch0: cyrus-sasl-1.5.21-des.patch
|
||||||
Buildroot: %{_tmppath}/%{name}-root
|
Buildroot: %{_tmppath}/%{name}-root
|
||||||
BuildPrereq: openssl-devel
|
BuildPrereq: krb5-devel, openssl-devel
|
||||||
Requires: pam
|
Requires: pam
|
||||||
Prereq: /sbin/ldconfig
|
Prereq: /sbin/ldconfig
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The cyrus-sasl package contains the Cyrus SASL implementation. SASL is the
|
The %{name} package contains the Cyrus SASL implementation. SASL is the
|
||||||
Simple Authentication and Security Layer, a method for adding authentication
|
Simple Authentication and Security Layer, a method for adding authentication
|
||||||
support to connection-based protocols.
|
support to connection-based protocols.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Group: Development/Libraries
|
||||||
|
Summary: Files needed for developing applications with Cyrus SASL.
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
The %{name}-devel package contains files needed for developing and
|
||||||
|
compiling applications which use the Cyrus SASL library.
|
||||||
|
|
||||||
|
%package gssapi
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Group: System Environment/Libraries
|
||||||
|
Summary: GSSAPI support for Cyrus SASL.
|
||||||
|
|
||||||
|
%description gssapi
|
||||||
|
The %{name}-gssapi package contains the Cyrus SASL plugins which support
|
||||||
|
GSSAPI authentication. GSSAPI is commonly used for Kerberos authentication.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1 -b .des
|
%patch0 -p1 -b .des
|
||||||
@ -27,7 +45,7 @@ autoconf
|
|||||||
--with-plugindir=%{_libdir}/sasl \
|
--with-plugindir=%{_libdir}/sasl \
|
||||||
--with-dblib=gdbm \
|
--with-dblib=gdbm \
|
||||||
--disable-krb4 \
|
--disable-krb4 \
|
||||||
--disable-gssapi \
|
--enable-gssapi=/usr/kerberos \
|
||||||
--with-rc4 \
|
--with-rc4 \
|
||||||
--enable-anon \
|
--enable-anon \
|
||||||
--enable-cram \
|
--enable-cram \
|
||||||
@ -49,14 +67,50 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS COPYING NEWS README TODO doc/*.html doc/*.txt
|
%doc AUTHORS COPYING NEWS README TODO doc/*.html doc/*.txt
|
||||||
%{_includedir}/*.h
|
%{_libdir}/libsasl*.so.*
|
||||||
%{_libdir}/libsasl*
|
%dir %{_libdir}/sasl/
|
||||||
%{_libdir}/sasl/
|
%{_libdir}/sasl/*anonymous*.so*
|
||||||
%{_mandir}/*/*
|
%{_libdir}/sasl/*crammd5*.so*
|
||||||
|
%{_libdir}/sasl/*digestmd5*.so*
|
||||||
|
%{_libdir}/sasl/*login*.so*
|
||||||
|
%{_libdir}/sasl/*plain*.so*
|
||||||
|
%{_mandir}/man8/*
|
||||||
%{_sbindir}/saslpasswd
|
%{_sbindir}/saslpasswd
|
||||||
%{_sbindir}/sasldblistusers
|
%{_sbindir}/sasldblistusers
|
||||||
|
|
||||||
|
# %files devel
|
||||||
|
# %defattr(-,root,root)
|
||||||
|
%{_includedir}/*.h
|
||||||
|
%{_libdir}/libsasl*.*a
|
||||||
|
%{_libdir}/libsasl*.*so
|
||||||
|
%{_libdir}/sasl/*anonymous*.*a
|
||||||
|
%{_libdir}/sasl/*crammd5*.*a
|
||||||
|
%{_libdir}/sasl/*digestmd5*.*a
|
||||||
|
%{_libdir}/sasl/*gssapi*.*a
|
||||||
|
%{_libdir}/sasl/*login*.*a
|
||||||
|
%{_libdir}/sasl/*plain*.*a
|
||||||
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
|
# %files gssapi
|
||||||
|
# %defattr(-,root,root)
|
||||||
|
# %{_libdir}/sasl/*gssapi*.so*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 25 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- make sure the version of 1.5.24 in the package matches the master (#18968)
|
||||||
|
- re-merge -devel and main for an errata candidate
|
||||||
|
|
||||||
|
* Mon Oct 9 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- re-add the libsasl.so symlink to the -devel package (oops)
|
||||||
|
|
||||||
|
* Fri Oct 6 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- move .so files for modules to their respective packages -- they're not -devel
|
||||||
|
links meant for use by ld anyway
|
||||||
|
|
||||||
|
* Thu Oct 5 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- split off -devel subpackage
|
||||||
|
- add a -gssapi subpackage for the gssapi plugins
|
||||||
|
|
||||||
* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
|
* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
- fix the summary text
|
- fix the summary text
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user