f8b8dbb
# Use PAM for pserver autentization
4130890
%define pamified 1
4130890
# Use kerberos
4130890
%define kerberized 1  
f8b8dbb
67d40df
Summary: A version control system
cvsdist 3e4e84f
Name: cvs
3f85626
Version: 1.11.23
3f85626
Release: 1%{?dist}
cvsdist 9460651
License: GPL
cvsdist 3e4e84f
Group: Development/Tools
4130890
Source0: ftp://ftp.gnu.org/non-gnu/cvs/source/stable/%{version}/cvs-%{version}.tar.bz2
4130890
Source1: cvs.xinetd
4130890
Source2: cvs.pam
4130890
Source3: cvs.sh
30d0a65
Source4: cvs.csh
cvsdist fd7c576
URL: http://www.cvshome.org/
67d40df
Requires(post): /sbin/install-info
67d40df
Requires(preun): /sbin/install-info
4130890
Requires: vim-minimal
67d40df
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
67d40df
BuildRequires: autoconf >= 2.58, automake >= 1.7.9, libtool, zlib-devel, vim-minimal
4130890
%if %{kerberized}
67d40df
BuildRequires: krb5-devel
4130890
%endif
4130890
%if %{pamified}
67d40df
BuildRequires: pam-devel
4130890
%endif
4130890
cb00119
Patch0: cvs-1.11.22-cvspass.patch
eabb0fc
Patch1: cvs-1.11.19-extzlib.patch
eabb0fc
Patch2: cvs-1.11.19-netbsd-tag.patch
eabb0fc
Patch3: cvs-1.11.19-abortabort.patch
cvsdist cfc0271
Patch4: cvs-1.11.1p1-bs.patch
210e050
Patch5: cvs-1.11.21-proxy.patch
8aaf9dc
Patch7: cvs-1.11.19-logmsg.patch
a232616
Patch8: cvs-1.11.19-tagname.patch
a256eb2
Patch9: cvs-1.11.19-comp.patch
d92eb65
Patch11: cvs-1.11.19-tmp.patch
f8b8dbb
Patch12: cvs-1.11.21-pam.patch
e12e2df
Patch13: cvs-1.11.21-diff.patch
31b1418
Patch14: cvs-1.11.21-diff-kk.patch
0cda9e1
Patch15: cvs-1.11.21-sort.patch
3f85626
#Patch16: cvs-1.11.22-free.patch //unneeded
593b63d
Patch17: cvs-1.11.22-ipv6-proxy.patch
3f85626
#Patch18: cvs-1.11.22-diff-rm.patch
3f85626
Patch19: cvs-1.11.23-getline64.patch
f8b8dbb
cvsdist 3e4e84f
cvsdist 3e4e84f
%description
eabb0fc
CVS (Concurrent Versions System) is a version control system that can
cvsdist 3e4e84f
record the history of your files (usually, but not always, source
cvsdist 3e4e84f
code). CVS only stores the differences between versions, instead of
cvsdist 3531e2f
every version of every file you have ever created. CVS also keeps a log
cvsdist 3531e2f
of who, when, and why changes occurred.
cvsdist 3e4e84f
cvsdist 3e4e84f
CVS is very helpful for managing releases and controlling the
cvsdist 3e4e84f
concurrent editing of source files among multiple authors. Instead of
cvsdist 3e4e84f
providing version control for a collection of files in a single
cvsdist 3e4e84f
directory, CVS provides version control for a hierarchical collection
cvsdist 3531e2f
of directories consisting of revision controlled files. These
cvsdist 3e4e84f
directories and files can then be combined together to form a software
cvsdist 3e4e84f
release.
cvsdist 3e4e84f
cvsdist 3e4e84f
%prep
cvsdist 3e4e84f
%setup -q
cvsdist cfc0271
%patch0 -p1 -b .cvspass
cvsdist cfc0271
%patch1 -p1 -b .extzlib
eabb0fc
%patch2 -p1 -b .netbsd-tag
cvsdist cfc0271
%patch3 -p1 -b .abortabort
cvsdist cfc0271
%patch4 -p1 -b .bs
210e050
%patch5 -p1 -b .proxy
cb00119
%patch7 -p1 -b .log
a232616
%patch8 -p1
a256eb2
%patch9 -p1
d92eb65
%patch11 -p1 -b .tmp
f8b8dbb
f8b8dbb
%if %{pamified}
f8b8dbb
%patch12 -p1 -b .pam
f8b8dbb
%endif
f8b8dbb
e12e2df
%patch13 -p1 -b .diff
31b1418
%patch14 -p1 -b .diff-kk
0cda9e1
%patch15 -p1 -b .env
3f85626
#%patch16 -p1 -b .free
593b63d
%patch17 -p1 -b .ipv6
3f85626
#%patch18 -p1 -b .diff-rm
3f85626
%patch19 -p1 -b getline64
e12e2df
cvsdist cfc0271
# Apply a patch to the generated files, OR
cvsdist cfc0271
# run autoreconf and require autoconf >= 2.58, automake >= 1.7.9
cvsdist 3e4e84f
cvsdist 3e4e84f
%build
eabb0fc
eabb0fc
autoreconf
eabb0fc
f8b8dbb
%if %{pamified} 
f8b8dbb
PAM_CONFIG="--enable-pam"
f8b8dbb
%endif
f8b8dbb
4130890
%if %{kerberized}
4130890
	k5prefix=`krb5-config --prefix`
4130890
	CPPFLAGS=-I${k5prefix}/include/kerberosIV; export CPPFLAGS
4130890
	CFLAGS=-I${k5prefix}/include/kerberosIV; export CFLAGS
4130890
	LIBS="-lkrb4 -ldes425 -lk5crypto"; export LIBS
e8881d8
	KRB_CONFIG="--with-gssapi --with-krb4 --enable-encryption"
4130890
%endif
cvsdist 3e4e84f
e8881d8
%configure CFLAGS="$CFLAGS $RPM_OPT_FLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE" \
e8881d8
  $PAM_CONFIG $KRB_CONFIG CSH=/bin/csh
e8881d8
cvsdist 3e4e84f
make
67d40df
67d40df
%check
cvsdist 9460651
if [ `id -u` -ne 0 ] ; then
cvsdist 9460651
	make check
cvsdist 9460651
fi
cvsdist 3e4e84f
cvsdist 3e4e84f
%install
cvsdist 3e4e84f
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
e8881d8
make DESTDIR="$RPM_BUILD_ROOT" install
cvsdist 9460651
# forcefully compress the info pages so that install-info will work properly
cvsdist 9460651
# in the %%post
cvsdist 3e4e84f
gzip $RPM_BUILD_ROOT/%{_infodir}/cvs* || true
cvsdist 46778ca
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
4130890
install -D -m 644 %{SOURCE1} $RPM_BUILD_ROOT/%{_sysconfdir}/xinetd.d/%{name}
f47510b
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/%{name}
f8b8dbb
%if %{pamified}
4130890
install -D -m 644 %{SOURCE2} $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d/cvs
f8b8dbb
%endif
30d0a65
install -D -m 644 %{SOURCE3} $RPM_BUILD_ROOT/%{_sysconfdir}/profile.d/cvs.sh
30d0a65
install -D -m 644 %{SOURCE4} $RPM_BUILD_ROOT/%{_sysconfdir}/profile.d/cvs.csh
e8881d8
# Don't let find provides to add csh to automatic requires
e8881d8
chmod a-x $RPM_BUILD_ROOT/%{_datadir}/%{name}/contrib/sccs2rcs
f8b8dbb
cvsdist 3e4e84f
cvsdist 3e4e84f
%clean
cvsdist 3e4e84f
[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
cvsdist 3e4e84f
cvsdist 3e4e84f
%post
cvsdist 3e4e84f
/sbin/install-info /%{_infodir}/cvs.info.gz /%{_infodir}/dir
3842b97
/sbin/install-info /%{_infodir}/cvsclient.info.gz /%{_infodir}/dir
3842b97
exit 0
cvsdist 3e4e84f
cvsdist 3e4e84f
%preun
cvsdist 3e4e84f
if [ $1 = 0 ]; then
67d40df
	/sbin/install-info --delete /%{_infodir}/cvs.info.gz /%{_infodir}/dir
67d40df
	/sbin/install-info --delete /%{_infodir}/cvsclient.info.gz /%{_infodir}/dir
cvsdist 3e4e84f
fi
3842b97
exit 0
cvsdist 3e4e84f
cvsdist 3e4e84f
%files
cvsdist 3e4e84f
%defattr(-,root,root)
cvsdist fe0a5d9
%doc AUTHORS BUGS COPYING* DEVEL-CVS FAQ HACKING MINOR-BUGS NEWS
cvsdist fe0a5d9
%doc PROJECTS TODO README
cvsdist 9460651
%{_bindir}/*
cvsdist 9460651
%{_mandir}/*/*
cvsdist 9460651
%{_infodir}/*.info*
cvsdist 9460651
%{_datadir}/%{name}
f47510b
%config(noreplace) %{_sysconfdir}/xinetd.d/%{name}
f47510b
%dir %{_localstatedir}/%{name}
f8b8dbb
%{_sysconfdir}/pam.d/*
f8b8dbb
%{_sysconfdir}/profile.d/*
cvsdist 3e4e84f
cvsdist 3e4e84f
%changelog
3f85626
* Tue Jun  3 2008 Jiri Moskovcak <jmoskovc@redhat.com> 1.11.23.1
3f85626
- updated to new version 1.11.23
3f85626
- fixed build on x86_64
3f85626
- rewritten sanity.sh patch to match current version
3f85626
- Resolves: #449424
3f85626
56ec870
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.11.22-13
56ec870
- Autorebuild for GCC 4.3
56ec870
57f6aab
* Mon Sep 17 2007 Jiri Moskovcak <jmoskovc@redhat.com> - 1.11.22-12
57f6aab
- rewriten previous patch when trying to diff  removed files
57f6aab
- Resolves: #277501, #242049
57f6aab
09796dd
* Mon Jul 30 2007 Jiri Moskovcak <jmoskovc@redhat.com> - 1.11.22-11
09796dd
- fix diff on removed file when "-r BASE" tag is used
09796dd
- Resolves: #242049
09796dd
e8881d8
* Fri Jun 15 2007 Stepan Kasal <skasal@redhat.com> - 1.11.22-10
fb32a7f
- make sccs2rcs non-executable, so that find-requires does not add
e8881d8
  dependency on /bin/csh when /bin/csh is available
e8881d8
- add CSH=/bin/csh to configure, so that sccs2rcs #! line is not
e8881d8
  corrupted  when /bin/csh is not available
e8881d8
- replace the deprecated %%makeinstall (see Packaging Guidelines)
e8881d8
30d0a65
* Mon Feb 19 2007 Jindrich Novy <jnovy@redhat.com> - 1.11.22-9
30d0a65
- fix permissions of cvs.sh, add cvs.csh to /etc/profile.d (#225672)
30d0a65
30d0a65
* Fri Jan  5 2007 Jindrich Novy <jnovy@redhat.com> - 1.11.22-8
3842b97
- fix post/preun scriptlets so that they won't fail with docs disabled
3842b97
67d40df
* Fri Dec  1 2006 Jindrich Novy <jnovy@redhat.com> - 1.11.22-7
67d40df
- remove/replace obsolete rpm tags, fix rpmlint errors
67d40df
ea3d820
* Sat Oct 28 2006 Jindrich Novy <jnovy@redhat.com> - 1.11.22-6
ea3d820
- respect explicit port specification in CVS_PROXY (#212418)
ea3d820
4130890
* Wed Oct 25 2006 Jindrich Novy <jnovy@redhat.com> - 1.11.22-5
4130890
- spec cleanup
4130890
- use dist, SOURCE0 now points to correct upstream URL
4130890
593b63d
* Thu Jul 28 2006 Martin Stransky <stransky@redhat.com> - 1.11.22-4
593b63d
- added ipv6 patch (#199404)
593b63d
6dcf516
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.11.22-3.1
6dcf516
- rebuild
6dcf516
7858e40
* Wed Jun 28 2006 Maros Barabas <mbarabas@redhat.com> - 1.11.22-3
7858e40
- fix for #196848 - double free coruption
7858e40
06a538e
* Thu Jun 22 2006 Martin Stransky <stransky@redhat.com> - 1.11.22-2
06a538e
- added LFS support (#196259)
06a538e
cb00119
* Mon Jun 12 2006 Martin Stransky <stransky@redhat.com> - 1.11.22-1
cb00119
- new upstream
cb00119
0cda9e1
* Tue May 9  2006 Martin Stransky <stransky@redhat.com> - 1.11.21-4
0cda9e1
- fix for #189858 - /etc/profile.d/cvs.sh overwrite personal settings
0cda9e1
- fix for #190009 - rcs2log uses obsolete sort option
0cda9e1
e196cdd
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.11.21-3.2
e196cdd
- bump again for double-long bug on ppc(64)
e196cdd
d4110ba
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.11.21-3.1
d4110ba
- rebuilt for new gcc4.1 snapshot and glibc changes
d4110ba
31b1418
* Wed Dec 21 2005 Martin Stransky <stransky@redhat.com> 1.11.21-3
31b1418
- fix for #150031 - cvs diff -kk -u fails
31b1418
f8b8dbb
* Wed Dec 14 2005 Martin Stransky <stransky@redhat.com> 1.11.21-2
e12e2df
- fix for cvs diff with two -r switches (#18161)
f8b8dbb
- pam patch (#48937)
f8b8dbb
- CVS_RSH is set to ssh (#58699)
f8b8dbb
c21e40a
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
c21e40a
- rebuilt
c21e40a
210e050
* Thu Nov 10 2005 Martin Stransky <stransky@redhat.com> 1.11.21-1
210e050
- new upstream
210e050
d92eb65
* Thu Aug 23 2005 Martin Stransky <stransky@redhat.com> 1.11.19-10
d92eb65
- fix for #166366 - CVS temporary file issue
d92eb65
eb991bc
* Thu Jul 21 2005 Martin Stransky <stransky@redhat.com> 1.11.19-9
eb991bc
- add vim-minimal to Requires (#163030)
eb991bc
eb991bc
* Mon Apr 18 2005 Martin Stransky <stransky@redhat.com> 1.11.19-8
a08abb8
- add security fix CAN-2005-0753 (Derek Price)
a08abb8
a256eb2
* Thu Mar 17 2005 Martin Stransky <stransky@redhat.com> 1.11.19-7
a256eb2
- fix NULL pointer comparsion (#63365)
a256eb2
a232616
* Mon Mar 14 2005 Martin Stransky <stransky@redhat.com> 1.11.19-6
a232616
- add '/' to invalid RCS tag characters (#56162)
a232616
8aaf9dc
* Wed Mar 9  2005 Martin Stransky <stransky@redhat.com> 1.11.19-5
8aaf9dc
- fix newline issue in log (#64182)
8aaf9dc
8e644d4
* Mon Mar 7  2005 Martin Stransky <stransky@redhat.com> 1.11.19-4
8e644d4
- remove check of HTTP_PROXY variable (#150434)
8e644d4
f47510b
* Thu Mar 3  2005 Martin Stransky <stransky@redhat.com> 1.11.19-3
f47510b
- add xinetd config file (#136929)
f47510b
- add proxy-support patch (#144297)
f47510b
876e9a6
* Mon Feb 28 2005 Martin Stransky <stransky@redhat.com> 1.11.19-2
876e9a6
- add opt flags
876e9a6
eabb0fc
* Mon Feb 28 2005 Martin Stransky <stransky@redhat.com> 1.11.19-1
eabb0fc
- update to 1.11.19
eabb0fc
havill 4d05e54
* Mon Feb 14 2005 Adrian Havill <havill@redhat.com>
havill 755ecf5
- rebuilt
havill 755ecf5
cvsdist ab7ffe4
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist ab7ffe4
- rebuilt
cvsdist ab7ffe4
cvsdist ab7ffe4
* Thu Jun 10 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.17-2
cvsdist ab7ffe4
- rebuild
cvsdist ab7ffe4
cvsdist ab7ffe4
* Thu Jun 10 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.17-1
cvsdist ab7ffe4
- update to 1.11.17, which includes those last few fixes
cvsdist ab7ffe4
cvsdist ab7ffe4
* Fri May 28 2004 Nalin Dahyabhai <nalin@redhat.com>
cvsdist ab7ffe4
- add security fix for CAN-2004-0416,CAN-2004-0417,CAN-2004-0418 (Stefan Esser)
cvsdist ab7ffe4
cvsdist ab7ffe4
* Fri May 28 2004 Robert Scheck 1.11.16-0
cvsdist ab7ffe4
- update to 1.11.16 (#124239)
cvsdist ab7ffe4
cvsdist ab7ffe4
* Tue May 18 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.15-6
cvsdist ab7ffe4
- rebuild
cvsdist ab7ffe4
cvsdist ab7ffe4
* Thu May 13 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.15-5
cvsdist ab7ffe4
- use revised version of Stefan Esser's patch provided by Derek Robert Price
cvsdist ab7ffe4
cvsdist ab7ffe4
* Mon May  3 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.15-4
cvsdist ab7ffe4
- rebuild
cvsdist ab7ffe4
cvsdist ab7ffe4
* Mon May  3 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.15-3
cvsdist ab7ffe4
- add patch from Stefan Esser to close CAN-2004-0396
cvsdist ab7ffe4
cvsdist ea6e9b0
* Wed Apr 21 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.15-2
cvsdist ea6e9b0
- rebuild
cvsdist ea6e9b0
cvsdist ea6e9b0
* Wed Apr 21 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.15-1
cvsdist ea6e9b0
- update to 1.11.15, fixing CAN-2004-0180 (#120969)
cvsdist ea6e9b0
cvsdist ea6e9b0
* Tue Mar 23 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.14-1
cvsdist ea6e9b0
- update to 1.11.14
cvsdist ea6e9b0
cvsdist 1b52505
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 1b52505
- rebuilt
cvsdist 1b52505
cvsdist bc90347
* Wed Jan  7 2004 Nalin Dahyabhai <nalin@redhat.com> 1.11.11-1
cvsdist bc90347
- turn kserver, which people shouldn't use any more, back on
cvsdist bc90347
cvsdist bc90347
* Tue Dec 30 2003 Nalin Dahyabhai <nalin@redhat.com>
cvsdist bc90347
- update to 1.11.11
cvsdist bc90347
cvsdist cfc0271
* Thu Dec 18 2003 Nalin Dahyabhai <nalin@redhat.com> 1.11.10-1
cvsdist cfc0271
- update to 1.11.10
cvsdist cfc0271
cvsdist 6844161
* Mon Jul 21 2003 Nalin Dahyabhai <nalin@redhat.com> 1.11.5-3
cvsdist 9d4b545
- rebuild
cvsdist 9d4b545
cvsdist 6844161
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist 6844161
- rebuilt
cvsdist e3b2b27
cvsdist 6844161
* Wed Apr 30 2003 Nalin Dahyabhai <nalin@redhat.com> 1.11.5-1
cvsdist 6844161
- update to 1.11.5
cvsdist 6844161
- disable kerberos 4 support
cvsdist fee6143
cvsdist d2e3729
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist d2e3729
- rebuilt
cvsdist d2e3729
cvsdist d2e3729
* Tue Jan 21 2003 Nalin Dahyabhai <nalin@redhat.com> 1.11.2-9
cvsdist d2e3729
- rebuild
cvsdist d2e3729
cvsdist 46778ca
* Thu Jan 16 2003 Nalin Dahyabhai <nalin@redhat.com> 1.11.2-8
cvsdist 46778ca
- incorporate fix for double-free in server (CAN-2003-0015)
cvsdist 46778ca
cvsdist 46778ca
* Tue Nov 26 2002 Nalin Dahyabhai <nalin@redhat.com> 1.11.2-7
cvsdist 46778ca
- don't error out in %%install if the info dir file we remove from the build
cvsdist 46778ca
  root isn't there (depends on the version of texinfo installed, reported by
cvsdist 46778ca
  Arnd Bergmann)
cvsdist 46778ca
cvsdist 46778ca
* Fri Oct  4 2002 Nalin Dahyabhai <nalin@redhat.com> 1.11.2-6
cvsdist 46778ca
- fixup LDFLAGS to find multilib Kerberos for linking
cvsdist 46778ca
cvsdist 46778ca
* Thu Sep 24 2002 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 46778ca
- incorporate patch to add 't' as a loginfo format specifier, from NetBSD
cvsdist 46778ca
cvsdist 8a2f03b
* Thu Jul 18 2002 Tim Waugh 
cvsdist 8a2f03b
- Fix mktemp patch (bug #66669)
cvsdist 8a2f03b
- Incorporate patch to fix verifymsg behaviour on empty logs (bug #66022)
cvsdist 8a2f03b
cvsdist 8a2f03b
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 1.11.2-4
cvsdist fe0a5d9
- automated rebuild
cvsdist fe0a5d9
cvsdist fe0a5d9
* Tue Jun  4 2002 Nalin Dahyabhai <nalin@redhat.com> 1.11.2-3
cvsdist fe0a5d9
- incorporate patch to fix incorrect socket descriptor usage (#65225)
cvsdist fe0a5d9
- incorporate patches to not choke on empty commit messages and to always
cvsdist fe0a5d9
  send them (#66017)
cvsdist fe0a5d9
- incorporate patch to not infinitely recurse on assertion failures (#66019)
cvsdist fe0a5d9
cvsdist fe0a5d9
* Sun May 26 2002 Tim Powers <timp@redhat.com>
cvsdist fe0a5d9
- automated rebuild
cvsdist fe0a5d9
cvsdist fe0a5d9
* Thu May  9 2002 Nalin Dahyabhai <nalin@redhat.com> 1.11.2-1
cvsdist fe0a5d9
- update to 1.11.2
cvsdist 10eacd4
cvsdist 49e1804
* Mon Feb 18 2002 Nalin Dahyabhai <nalin@redhat.com> 1.11.1p1-7
cvsdist 49e1804
- build with an external zlib
cvsdist 49e1804
- don't run automake in the %%build phase
cvsdist 49e1804
cvsdist 49e1804
* Tue Jan 15 2002 Nalin Dahyabhai <nalin@redhat.com> 1.11.1p1-6
cvsdist 49e1804
- merge patch to handle timestamping of symlinks in the repository properly,
cvsdist 49e1804
  from dwmw2 (#23333)
cvsdist 49e1804
cvsdist 49e1804
* Wed Jan 09 2002 Tim Powers <timp@redhat.com> 1.11.1p1-5
cvsdist 49e1804
- automated rebuild
cvsdist 49e1804
cvsdist 49e1804
* Tue Nov 13 2001 Nalin Dahyabhai <nalin@redhat.com> 1.11.1p1-4
cvsdist 49e1804
- remove explicit dependency on krb5-libs
cvsdist 49e1804
cvsdist 3531e2f
* Tue Jul 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.11.1p1-3
cvsdist 3531e2f
- Fix up initial cvs login (#47457)
cvsdist 3531e2f
- Bring back the leading newline at the beginning of commit messages
cvsdist 3531e2f
  "a" is one key less than "O". ;)
cvsdist 3531e2f
- Fix build in the current build system
cvsdist 3531e2f
cvsdist 9460651
* Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
cvsdist 9460651
- don't own /usr/share/info/dir
cvsdist 9460651
cvsdist 9460651
* Fri Jun 22 2001 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 9460651
- fix the files list
cvsdist 9460651
cvsdist 9460651
* Mon Jun 18 2001 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 9460651
- update to 1.11.1p1
cvsdist 9460651
- drop no-longer-necessary patches
cvsdist 9460651
- use bundled zlib, because it's apparently not the same as the system zlib
cvsdist 9460651
- run the test suite in the build phase
cvsdist 9460651
- drop explicit Requires: on perl (RPM will catch the interpreter req)
cvsdist 9460651
cvsdist fd7c576
* Mon Jan 29 2001 Nalin Dahyabhai <nalin@redhat.com>
cvsdist fd7c576
- fix cvs-1.11-security.patch, which had CR-LF line terminators (#25090)
cvsdist fd7c576
- check for and ignore ENOENT errors when attempting to remove symlinks (#25173)
cvsdist fd7c576
cvsdist fd7c576
* Mon Jan 08 2001 Preston Brown <pbrown@redhat.com>
cvsdist fd7c576
- patch from Olaf Kirch <okir@lst.de> to do tmp files safely.
cvsdist fd7c576
cvsdist fd7c576
* Tue Oct 10 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist fd7c576
- 1.11
cvsdist bbb7cca
cvsdist 3e4e84f
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist 3e4e84f
- automatic rebuild
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Jul 10 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 3e4e84f
- always zero errno before calling readdir (#10374)
cvsdist 3e4e84f
cvsdist 3e4e84f
* Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 3e4e84f
- rebuild in new build environment (release 6)
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Jun  5 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 3e4e84f
- rebuild in new build environment (release 5)
cvsdist 3e4e84f
- FHS tweaks
cvsdist 3e4e84f
- actually gzip the info pages
cvsdist 3e4e84f
cvsdist 3e4e84f
* Wed May 10 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 3e4e84f
- reverse sense of conditional kerberos dependency
cvsdist 3e4e84f
- add kerberos IV patch from Ken Raeburn
cvsdist 3e4e84f
- switch to using the system's zlib instead of built-in
cvsdist 3e4e84f
- default to unstripped binaries
cvsdist 3e4e84f
cvsdist 3e4e84f
* Tue Apr  4 2000 Bill Nottingham <notting@redhat.com>
cvsdist 3e4e84f
- eliminate explicit krb5-configs dependency
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Mar 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 3e4e84f
- 1.10.8
cvsdist 3e4e84f
cvsdist 3e4e84f
* Wed Mar  1 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 3e4e84f
- make kerberos support conditional at build-time
cvsdist 3e4e84f
cvsdist 3e4e84f
* Wed Mar  1 2000 Bill Nottingham <notting@redhat.com>
cvsdist 3e4e84f
- integrate kerberos support into main tree
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
cvsdist 3e4e84f
- build with gssapi auth (--with-gssapi, --with-encryption)
cvsdist 3e4e84f
- apply patch to update libs to krb5 1.1.1
cvsdist 3e4e84f
cvsdist 3e4e84f
* Fri Feb 04 2000 Cristian Gafton <gafton@redhat.com>
cvsdist 3e4e84f
- fix the damn info pages too while we're at it.
cvsdist 3e4e84f
- fix description
cvsdist 3e4e84f
- man pages are compressed
67d40df
- make sure %%post and %%preun work okay
cvsdist 3e4e84f
cvsdist 3e4e84f
* Sun Jan 9 2000  Jim Kingdon <http://bugzilla.redhat.com/bugzilla>
cvsdist 3e4e84f
- update to 1.10.7.
cvsdist 3e4e84f
cvsdist 3e4e84f
* Wed Jul 14 1999 Jim Kingdon <http://developer.redhat.com>
cvsdist 3e4e84f
- add the patch to make 1.10.6 usable
cvsdist 3e4e84f
  (http://www.cyclic.com/cvs/dev-known.html).
cvsdist 3e4e84f
cvsdist 3e4e84f
* Tue Jun  1 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- update to 1.10.6.
cvsdist 3e4e84f
cvsdist 3e4e84f
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist 3e4e84f
- auto rebuild in the new build environment (release 2)
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Feb 22 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- updated text in spec file.
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Feb 22 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- update to 1.10.5.
cvsdist 3e4e84f
cvsdist 3e4e84f
* Tue Feb  2 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- update to 1.10.4.
cvsdist 3e4e84f
cvsdist 3e4e84f
* Tue Oct 20 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- update to 1.10.3.
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Sep 28 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- update to 1.10.2.
cvsdist 3e4e84f
cvsdist 3e4e84f
* Wed Sep 23 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- remove trailing characters from rcs2log mktemp args
cvsdist 3e4e84f
cvsdist 3e4e84f
* Thu Sep 10 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- update to 1.10.1
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Aug 31 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- fix race conditions in cvsbug/rcs2log
cvsdist 3e4e84f
cvsdist 3e4e84f
* Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- update to 1.10.
cvsdist 3e4e84f
cvsdist 3e4e84f
* Wed Aug 12 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- update to 1.9.30.
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Jun 08 1998 Prospector System <bugs@redhat.com>
cvsdist 3e4e84f
- translations modified for de, fr
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Jun  8 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 3e4e84f
- build root
cvsdist 3e4e84f
- update to 1.9.28
cvsdist 3e4e84f
cvsdist 3e4e84f
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
cvsdist 3e4e84f
- translations modified for de, fr, tr
cvsdist 3e4e84f
cvsdist 3e4e84f
* Wed Oct 29 1997 Otto Hammersmith <otto@redhat.com>
cvsdist 3e4e84f
- added install-info stuff
cvsdist 3e4e84f
- added changelog section