cvs-vl.spec 10 KB

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