cpio-vl.spec 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. %ifos linux
  2. %define _bindir /bin
  3. %define _libexecdir /sbin
  4. %endif
  5. Summary: A GNU archiving program.
  6. Summary(ja): GNU アーカイブプログラム
  7. Name: cpio
  8. Version: 2.11
  9. Release: 1%{?_dist_release}
  10. License: GPLv3
  11. Group: Applications/Archiving
  12. URL: ftp://ftp.gnu.org/pub/gnu/cpio/
  13. Source: ftp://ftp.gnu.org/gnu/cpio/cpio-%{version}.tar.bz2
  14. Source1: cpio.1
  15. Patch1: cpio-2.6-setLocale.patch
  16. Patch2: cpio-2.9-rh.patch
  17. Patch3: cpio-2.9-chmodRaceC.patch
  18. Patch4: cpio-2.9-exitCode.patch
  19. Patch5: cpio-2.9-dir_perm.patch
  20. Patch6: cpio-2.9-dev_number.patch
  21. %ifnos linux
  22. Requires(post): /sbin/rmt
  23. %endif
  24. Requires(post): /sbin/install-info
  25. Requires(preun): /sbin/install-info
  26. BuildRequires: texinfo autoconf gettext
  27. Buildroot: %{_tmppath}/%{name}-%{version}-root
  28. %description
  29. GNU cpio copies files into or out of a cpio or tar archive. Archives
  30. are files which contain a collection of other files plus information
  31. about them, such as their file name, owner, timestamps, and access
  32. permissions. The archive can be another file on the disk, a magnetic
  33. tape, or a pipe. GNU cpio supports the following archive formats: binary,
  34. old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar and POSIX.1
  35. tar. By default, cpio creates binary format archives, so that they are
  36. compatible with older cpio programs. When it is extracting files from
  37. archives, cpio automatically recognizes which kind of archive it is reading
  38. and can read archives created on machines with a different byte-order.
  39. Install cpio if you need a program to manage file archives.
  40. %description -l ja
  41. GNU cpio は cpio アーカイブ或いは tar アーカイブにファイルをコピーしたり
  42. 取り出したりするプログラムです.アーカイブというのは,(1つ以上の)ファイルと
  43. その情報(ファイル名,オーナー,更新日付,パーミッション等)がまとめられた
  44. 1つのファイルのことです.アーカイブはディスク上のファイル,磁気テープ,
  45. 或いはパイプであっても構いません.
  46. GNU cpio がサポートしているアーカイブ形式は以下の通りです:
  47. バイナリ, old ASCII, new ASCII, crc, HPUX バイナリ, HPUX old ASCII,
  48. old tar, POSIX.1 tar
  49. デフォルトでは cpio はバイナリ形式のアーカイブを作成します.
  50. これは古いバージョンの cpio との互換性の為です.
  51. アーカイブを展開する場合は,cpio はアーカイブの形式を自動認識しますし,
  52. バイトオーダの異なる機械で作成されたアーカイブを読むことも可能です.
  53. ファイルアーカイブを扱うプログラムが必要なら,cpio をインストールして下さい.
  54. %prep
  55. %setup -q
  56. %patch1 -p1 -b .setLocale
  57. %patch2 -p1 -b .rh
  58. #patch3 -p1 -b .chmodRaceC
  59. %patch4 -p1 -b .exitCode
  60. #patch5 -p1 -b .dir_perm
  61. %patch6 -p1 -b .dev_number
  62. autoheader
  63. %build
  64. CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -pedantic -Wall" %configure
  65. make %{?_smp_mflags}
  66. %install
  67. rm -rf $RPM_BUILD_ROOT
  68. make DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" install
  69. { cd $RPM_BUILD_ROOT
  70. %ifos linux
  71. # XXX these from mt-st
  72. rm -f .%{_bindir}/mt .%{_mandir}/man1/mt.1
  73. %endif
  74. }
  75. rm -f $RPM_BUILD_ROOT%{_infodir}/dir
  76. rm -f $RPM_BUILD_ROOT/sbin/rmt
  77. rm -f $RPM_BUILD_ROOT%{_mandir}/man1/*.1*
  78. install -c -p -m 0644 %{SOURCE1} ${RPM_BUILD_ROOT}%{_mandir}/man1
  79. %clean
  80. rm -rf $RPM_BUILD_ROOT
  81. %post
  82. /sbin/install-info %{_infodir}/cpio.info.gz %{_infodir}/dir
  83. %preun
  84. if [ $1 = 0 ]; then
  85. /sbin/install-info --delete %{_infodir}/cpio.info.gz %{_infodir}/dir
  86. fi
  87. %files
  88. %defattr(-,root,root)
  89. %doc AUTHORS ChangeLog NEWS README THANKS TODO
  90. %ifnos linux
  91. %{_libexecdir}/*
  92. %endif
  93. %{_bindir}/*
  94. %{_mandir}/man*/*
  95. %{_infodir}/*.info*
  96. %{_datadir}/locale/*
  97. %changelog
  98. * Sat Apr 16 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.11-1
  99. - new upstream release
  100. - rebuilt with current VineSeed
  101. * Fri Jan 1 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.10-1
  102. - new upstream release
  103. * Sun Sep 21 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.9.90-1vl5
  104. - new upstream from alpha version
  105. - applied new versioning policy
  106. - spec in UTF-8
  107. - added Patch5 and 6 from FC
  108. * Fri Jul 18 2008 Kamil Dudka <kdudka@redhat.com> 2.9.90-2
  109. - Support major/minor device numbers over 127 (bz#450109)
  110. * Mon Mar 03 2008 Radek Brich <rbrich@redhat.com> 2.9-7
  111. - fix -dir_perm patch to restore permissions correctly even
  112. in passthrough mode -- revert affected code to cpio 2.8 state
  113. (bz#430835)
  114. * Sat Aug 25 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.9-1vl1
  115. - new upstream release
  116. * Sat Apr 16 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6-5vl1
  117. - based on Fedora development 2.6-5
  118. * Mon Jan 24 2005 Peter Vrabec <pvrabec@redhat.com>
  119. - insecure file creation (#145721)
  120. * Mon Jan 17 2005 Peter Vrabec <pvrabec@redhat.com>
  121. - fix symlinks pack (#145225)
  122. * Fri Jan 14 2005 Peter Vrabec <pvrabec@redhat.com>
  123. - new fixed version of lfs patch (#144688)
  124. * Tue Nov 09 2004 Peter Vrabec <pvrabec@redhat.com>
  125. - fixed "cpio -oH ustar (or tar) saves bad mtime date after Jan 10 2004" (#114580)
  126. * Mon Nov 01 2004 Peter Vrabec <pvrabec@redhat.com>
  127. - support large files > 2GB (#105617)
  128. * Wed Dec 04 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.5-1vl1
  129. - based on 2.5-1 from rawhide and built for Vine Linux
  130. - added Japanese summary and description
  131. * Mon Nov 18 2002 Jeff Johnson <jbj@redhat.com> 2.5-1
  132. - update 2.5, restack and consolidate patches.
  133. - don't apply (but include for now) freebsd and #56346 patches.
  134. - add url (#54598).
  135. * Thu Nov 7 2002 Jeff Johnson <jbj@redhat.com> 2.4.2-30
  136. - rebuild from CVS.
  137. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  138. - automated rebuild
  139. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  140. - automated rebuild
  141. * Wed Jan 09 2002 Tim Powers <timp@redhat.com>
  142. - automated rebuild
  143. * Thu Nov 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.4.2-25
  144. - Fix up extraction of multiply linked files when the first link is
  145. excluded (Bug #56346)
  146. * Mon Oct 1 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.4.2-24
  147. - Merge and adapt patches from FreeBSD, this should fix FIFO handling
  148. * Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  149. - Add and adapt Debian patch (pl36), fixes #45285 and a couple of other issues
  150. * Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
  151. - Bump release + rebuild.
  152. * Tue Aug 8 2000 Jeff Johnson <jbj@redhat.com>
  153. - update man page with decription of -c behavior (#10581).
  154. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  155. - automatic rebuild
  156. * Thu Jun 29 2000 Preston Brown <pbrown@redhat.com>
  157. - patch from HJ Lu for better error codes upon exit
  158. * Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
  159. - FHS packaging.
  160. * Wed Feb 9 2000 Jeff Johnson <jbj@redhat.com>
  161. - missing defattr.
  162. * Mon Feb 7 2000 Bill Nottingham <notting@redhat.com>
  163. - handle compressed manpages
  164. * Fri Dec 17 1999 Jeff Johnson <jbj@redhat.com>
  165. - revert the stdout patch (#3358), restoring original GNU cpio behavior
  166. (#6376, #7538), the patch was dumb.
  167. * Tue Aug 31 1999 Jeff Johnson <jbj@redhat.com>
  168. - fix infinite loop unpacking empty files with hard links (#4208).
  169. - stdout should contain progress information (#3358).
  170. * Sun Mar 21 1999 Crstian Gafton <gafton@redhat.com>
  171. - auto rebuild in the new build environment (release 12)
  172. * Sat Dec 5 1998 Jeff Johnson <jbj@redhat.com>
  173. - longlong dev wrong with "-o -H odc" headers (formerly "-oc").
  174. * Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
  175. - patch to compile on glibc 2.1, where strdup is a macro
  176. * Tue Jul 14 1998 Jeff Johnson <jbj@redhat.com>
  177. - Fiddle bindir/libexecdir to get RH install correct.
  178. - Don't include /sbin/rmt -- use the rmt from dump package.
  179. - Don't include /bin/mt -- use the mt from mt-st package.
  180. - Add prereq's
  181. * Tue Jun 30 1998 Jeff Johnson <jbj@redhat.com>
  182. - fix '-c' to duplicate svr4 behavior (problem #438)
  183. - install support programs & info pages
  184. * Mon Apr 27 1998 Prospector System <bugs@redhat.com>
  185. - translations modified for de, fr, tr
  186. * Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
  187. - added BuildRoot
  188. - removed "(used by RPM)" comment in Summary
  189. * Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
  190. - built against glibc
  191. - no longer statically linked as RPM doesn't use cpio for unpacking packages