cvs-vl.spec 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. %define version 1.12.13
  2. Summary: A version control system.
  3. Summary(ja): バージョン管理システム
  4. Name: cvs
  5. Version: %{version}
  6. Release: 3%{?_dist_release}
  7. License: GPL
  8. Group: Development/Tools
  9. URL: http://www.cvshome.org/
  10. Source0: http://ftp.cvshome.org/release/feature/cvs-%{version}/cvs-%{version}.tar.bz2
  11. Source100: filter-requires-getopts-pl.sh
  12. Patch2: cvs-1.12.13-authserver.patch
  13. Patch3: cvs-1.11.2-cvspass.patch
  14. Patch5: cvs-1.11.2-install.patch
  15. Patch101: can-2005-2693.patch
  16. Requires(pre): install-info
  17. Prefix: %{_prefix}
  18. Buildroot: %{_tmppath}/%{name}-%{version}-root
  19. Requires: perl, zlib
  20. BuildRequires: zlib-devel
  21. BuildRequires: openssl-devel
  22. BuildRequires: vim
  23. # for perl
  24. %define __find_requires %{SOURCE100}
  25. %description
  26. CVS (Concurrent Version System) is a version control system which can
  27. record the history of your files (usually, but not always, source
  28. code). CVS only stores the differences between versions, instead of
  29. every version of every file you've ever created. CVS also keeps a log
  30. of who, when and why changes occurred.
  31. CVS is very helpful for managing releases and controlling the
  32. concurrent editing of source files among multiple authors. Instead of
  33. providing version control for a collection of files in a single
  34. directory, CVS provides version control for a hierarchical collection
  35. of directories consisting of revision controlled files. These
  36. directories and files can then be combined together to form a software
  37. release.
  38. Install the cvs package if you need to use a version control system.
  39. #'
  40. %description -l ja
  41. CVS (Concurrent Version System) はバージョン管理システムで,
  42. ファイル (必ずしもそうとは限りませんが多くの場合ソースコード) の
  43. 変更履歴を記録することが出来ます.CVS はファイルの全バージョンを
  44. 保存しておくのではなく,バージョン間の変更差分だけを保存します.
  45. CVS はまた誰が何故変更を行ったのかのログも記録します.
  46. CVS は,ソースファイルを複数の開発者が同時に編集する際のリリース管理に
  47. 非常に役立ちます.
  48. バージョン管理システムが必要なら cvs パッケージをインストールして下さい.
  49. %prep
  50. %setup -q
  51. %patch2 -p1 -b .authserver
  52. %patch3 -p1 -b .cvspass
  53. %patch5 -p1 -b .install
  54. %patch101 -p1 -b .can-2005-2693
  55. %build
  56. %configure --with-external-zlib
  57. make %{?_smp_mflags}
  58. make -C doc info
  59. %install
  60. [ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
  61. %{makeinstall}
  62. gzip %{buildroot}%{_infodir}/cvs* || true
  63. %clean
  64. [ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
  65. %post
  66. /sbin/install-info /%{_infodir}/cvs.info.gz /%{_infodir}/dir
  67. /sbin/install-info /%{_infodir}/cvsclient.info.gz /%{_infodir}/dir
  68. %preun
  69. if [ $1 = 0 ]; then
  70. /sbin/install-info --delete /%{_infodir}/cvs.info.gz /%{_infodir}/dir
  71. /sbin/install-info --delete /%{_infodir}/cvsclient.info.gz /%{_infodir}/dir
  72. fi
  73. %files
  74. %defattr(-,root,root)
  75. %doc AUTHORS BUGS COPYING COPYING.LIB ChangeLog ChangeLog.zoo DEVEL-CVS HACKING FAQ INSTALL MINOR-BUGS NEWS PROJECTS TODO README README.VMS
  76. %doc doc/*.ps
  77. %{_bindir}/cvs
  78. %{_bindir}/cvsbug
  79. %{_bindir}/rcs2log
  80. %{_mandir}/man1/cvs.1*
  81. %{_mandir}/man5/cvs.5*
  82. %{_mandir}/man8/cvsbug.8*
  83. %{_infodir}/cvs*
  84. %{_datadir}/cvs
  85. %changelog
  86. * Tue Jan 11 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.12.13-3
  87. - rebuild with openssl-1.0.0c
  88. - add BuildRequires: openssl-devel, vim
  89. * Wed Apr 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> %{version}-2
  90. - spec in utf-8
  91. * Sat Apr 26 2008 IWAI, Masaharu <iwaim@cc.mbn.or.jp> 1.12.13-1
  92. - rebuild with perl-5.10.0-1vl5
  93. - add filter-requires-getopts-pl.sh (Source100)
  94. * Sun Jun 11 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.13-0vl1
  95. - new upstream release
  96. - drop Patch100 which are merged in upstream.
  97. * Mon Jan 30 2006 Shu KONNO <owa@bg.wakwak.com> 1.12.9-0vl4
  98. - rebuilt with VineSeed
  99. * Fri Aug 26 2005 IKEDA Katsumi <ikeda@webmasters.gr.jp> 1.12.9-0vl3.1
  100. - added a security patch for CAN-2005-2693 (CVS temporary file issue).
  101. * Wed Apr 27 2005 IKEDA Katsumi <ikeda@webmasters.gr.jp> 1.12.9-0vl3
  102. - added a security patch for can-2005-0753 (Buffer Overflow and DoS).
  103. * Thu Jun 17 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.9-0vl2
  104. - remove unneeded dependency
  105. - change Prereq: info to install-info
  106. - add %%{_smp_mflags} to make option
  107. * Thu Jun 10 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.9-0vl1
  108. - new upstream release
  109. - security update
  110. This release fixes several serious security issues in the CVS server
  111. executable. It also contains one minor bug fix and the cvs log' and cvs ls'
  112. commands now output times in the client's local timezone.
  113. * Thu May 20 2004 NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp> 1.12.8-0vl1
  114. - new upstream release
  115. - security update
  116. This release fixes a serious security issue in the CVS server executable.
  117. * Mon Apr 19 2004 NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp> 1.12.7-0vl2
  118. - fixed typo in description
  119. * Mon Apr 19 2004 NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp> 1.12.7-0vl1
  120. - new upstream release
  121. - security update
  122. This release fixes serious security issues in both the client and
  123. server executables. It also contains many bug fixes and support for
  124. accessing CVS pservers via intervening HTTP proxies.
  125. - fixed broken description
  126. - changed Source0 URL
  127. * Sat Dec 20 2003 Satoshi MACHINO <machino@vinelinux.org> 1.12.5-0vl2
  128. - fixed typo in changelog
  129. * Fri Dec 19 2003 Satoshi MACHINO <machino@vinelinux.org> 1.12.5-0vl1
  130. - new upstream release
  131. - added "--with-external-zlib2" to configure option
  132. -- dropped patch4
  133. * Fri Dec 19 2003 Satoshi MACHINO <machino@vinelinux.org> 1.11.11-0vl1
  134. - new upstream release
  135. - security update
  136. pserver can no longer be configured to run as root via the
  137. $CVSROOT/CVSROOT/passwd file, so if your passwd file is compromised, it no
  138. longer leads directly to a root hack. Attempts to root will also be logged
  139. via the syslog.
  140. * Tue Dec 09 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.11.10-0vl1
  141. - new upstream release
  142. - security update
  143. This release fixes a security issue with no known exploits that could cause
  144. previous versions of CVS to attempt to create files and directories in the
  145. filesystem root.
  146. * Sat Oct 11 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.11.9-0vl1
  147. - new upstream release
  148. * Wed Jan 22 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.11.5-0vl1
  149. - updated to new upstream release (security update)
  150. * Mon Dec 30 2002 Satoshi MACHINO <machino@vinelinux.org> 1.11.4-0vl1
  151. - new upstream version
  152. -- Some minor changes to allow the code to compile on Windows platforms.
  153. -- NEWS: Add dummy entry for since 1.11.3.
  154. -- configure.in: Update to dev version 1.11.3.
  155. -- configure: Regenerated.
  156. * Sat Dec 28 2002 Satoshi MACHINO <machino@vinelinux.org> 1.11.3-0vl1
  157. - new upstream version
  158. -- When waiting for another user's lock, the message timestamps are now
  159. in UTC rather than the server's local time.
  160. -- The options.h file is no longer used. This fixes a bug that occurred when 1.11.2 was compiled on Windows platforms.
  161. -- standardized on Automake version 1.6.3 and Autoconf version 2.53.
  162. - dropped kbr4 patch
  163. * Thu May 09 2002 Satoshi MACHINO <machino@vinelinux.org> 1.11.2-0vl2
  164. - clean up patch files
  165. - added some documents files
  166. * Tue May 07 2002 Satoshi MACHINO <machino@vinelinux.org> 1.11.2-0vl1
  167. - updated cvs-1.11.2
  168. -- updated cvs-1.11.2-mktemp.patch
  169. * Tue Mar 12 2002 Toru Sagami <sagami@vinelinux.org> 1.11.1p1-7vl1
  170. - paches are taken from RHSA-2002:026-35 1.11.1p1-7 with its fixes.
  171. The most notable feature is: build with an external zlib
  172. * Mon May 21 2001 Satoshi MACHINO <machino@vinelinux.org> 1.11.1p1-0vl1
  173. - updated cvs-1.11.1p1
  174. - removed some patches
  175. - changed contrib dir to /usr/share from /usr/lib
  176. * Thu Dec 28 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  177. - 1.11-0vl2
  178. - rebuilt with new %%{_mandir} definition
  179. - added Japanese summary and description
  180. * Tue Nov 21 2000 Satoshi MACHINO <machino@vinelinux.org> 1.11-0vl1
  181. - updated 1.11
  182. - removed auth.patch
  183. - added errno.patch from rawhide's cvs-1.11-1
  184. - partially used rpmmacros
  185. * Fri Sep 08 2000 MACHINO, Satoshi <mac@netfort.gr.jp>
  186. - 1.10.8-0vl3
  187. - fixed %post and %preun section
  188. - 1.10.8-0vl2
  189. - removed gzip and strip in %install
  190. * Tue Jul 04 2000 MACHINO, Satoshi <mac@netfort.gr.jp>
  191. - updated 1.10.8
  192. - switch to using the system's zlib instead of built-in
  193. - removed kerberos
  194. * Wed Mar 1 2000 Nalin Dahyabhai <nalin@redhat.com>
  195. - make kerberos support conditional at build-time
  196. * Wed Mar 1 2000 Bill Nottingham <notting@redhat.com>
  197. - integrate kerberos support into main tree
  198. * Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
  199. - build with gssapi auth (--with-gssapi, --with-encryption)
  200. - apply patch to update libs to krb5 1.1.1
  201. * Fri Feb 04 2000 Cristian Gafton <gafton@redhat.com>
  202. - fix the damn info pages too while we're at it.
  203. - fix description
  204. - man pages are compressed
  205. - make sure %post and %preun work okay
  206. * Sun Jan 9 2000 Jim Kingdon <http://bugzilla.redhat.com/bugzilla>
  207. - update to 1.10.7.
  208. * Wed Jul 14 1999 Jim Kingdon <http://developer.redhat.com>
  209. - add the patch to make 1.10.6 usable
  210. (http://www.cyclic.com/cvs/dev-known.html).
  211. * Tue Jun 1 1999 Jeff Johnson <jbj@redhat.com>
  212. - update to 1.10.6.
  213. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  214. - auto rebuild in the new build environment (release 2)
  215. * Mon Feb 22 1999 Jeff Johnson <jbj@redhat.com>
  216. - updated text in spec file.
  217. * Mon Feb 22 1999 Jeff Johnson <jbj@redhat.com>
  218. - update to 1.10.5.
  219. * Tue Feb 2 1999 Jeff Johnson <jbj@redhat.com>
  220. - update to 1.10.4.
  221. * Tue Oct 20 1998 Jeff Johnson <jbj@redhat.com>
  222. - update to 1.10.3.
  223. * Mon Sep 28 1998 Jeff Johnson <jbj@redhat.com>
  224. - update to 1.10.2.
  225. * Wed Sep 23 1998 Jeff Johnson <jbj@redhat.com>
  226. - remove trailing characters from rcs2log mktemp args
  227. * Thu Sep 10 1998 Jeff Johnson <jbj@redhat.com>
  228. - update to 1.10.1
  229. * Mon Aug 31 1998 Jeff Johnson <jbj@redhat.com>
  230. - fix race conditions in cvsbug/rcs2log
  231. * Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
  232. - update to 1.10.
  233. * Wed Aug 12 1998 Jeff Johnson <jbj@redhat.com>
  234. - update to 1.9.30.
  235. * Mon Jun 08 1998 Prospector System <bugs@redhat.com>
  236. - translations modified for de, fr
  237. * Mon Jun 8 1998 Jeff Johnson <jbj@redhat.com>
  238. - build root
  239. - update to 1.9.28
  240. * Mon Apr 27 1998 Prospector System <bugs@redhat.com>
  241. - translations modified for de, fr, tr
  242. * Wed Oct 29 1997 Otto Hammersmith <otto@redhat.com>
  243. - added install-info stuff
  244. - added changelog section