tar-vl.spec 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. Summary: A GNU file archiving program.
  2. Summary(ja): GNU ファイルアーカイブプログラム
  3. Name: tar
  4. Version: 1.32
  5. Release: 1%{?_dist_release}
  6. License: GPLv3+
  7. Group: Applications/Archiving
  8. Source: ftp://ftp.gnu.org/pub/gnu/tar/tar-%{version}.tar.xz
  9. # Note that all patches are documented in patch files (git format-patch format)
  10. Patch1: tar-1.28-loneZeroWarning.patch
  11. Patch2: tar-1.28-vfatTruncate.patch
  12. Patch3: tar-1.29-wildcards.patch
  13. Patch4: tar-1.28-atime-rofs.patch
  14. Patch9: tar-1.28-document-exclude-mistakes.patch
  15. Buildroot: %{_tmppath}/%{name}-%{version}-root
  16. BuildRequires: autoconf texinfo gettext
  17. BuildRequires: libacl-devel
  18. Requires(post,postun): install-info
  19. Vendor: Project Vine
  20. Distribution: Vine Linux
  21. %description
  22. The GNU tar program saves many files together in one archive and can
  23. restore individual files (or all of the files) from that archive. Tar
  24. can also be used to add supplemental files to an archive and to update
  25. or list files in the archive. Tar includes multivolume support,
  26. automatic archive compression/decompression, the ability to perform
  27. remote archives, and the ability to perform incremental and full
  28. backups.
  29. If you want to use tar for remote backups, you also need to install
  30. the rmt package.
  31. %description -l ja
  32. GNU tar プログラムは多くのファイルを一つのファイルにまとめたりアーカイブ
  33. から個々のファイルを(または全てのファイルを)リストアしたりします。tar は
  34. また、追加ファイルを加えたりアーカイブファイル中のリストを更新したりする
  35. ために使われます。
  36. tar はマルチボリュームサポート、自動アーカイブ圧縮/伸長、リモートアーカイ
  37. ブの取り扱い機能、そして差分バックアップとフルバックアップをする機能を含ん
  38. でいます。
  39. もしリモートバックアップのために tar をインストールするなら、rmt パッケージ
  40. もまたインストールする必要があります。
  41. %prep
  42. %autosetup -p1
  43. autoreconf -v
  44. # Keep only entries related to the latest release.
  45. mv ChangeLog{,~}
  46. awk 'stop = false; /^2014-07-27/ { stop = true; exit }; { print }' \
  47. < ChangeLog~ > ChangeLog
  48. %build
  49. %configure \
  50. --bindir=/bin --libexecdir=/sbin \
  51. --with-lzma="xz --format=lzma" \
  52. DEFAULT_RMT_DIR=%{_sysconfdir} \
  53. RSH=/usr/bin/ssh
  54. make %{?_smp_mflags}
  55. %install
  56. rm -rf %{buildroot}
  57. make DESTDIR=%{buildroot} install
  58. ln -s tar %{buildroot}/bin/gtar
  59. rm -f %{buildroot}/%{_infodir}/dir
  60. mkdir -p %{buildroot}%{_mandir}/man1
  61. ln -s tar.1.gz %{buildroot}%{_mandir}/man1/gtar.1
  62. # XXX Nuke unpackaged files.
  63. rm -f %{buildroot}%{_sysconfdir}/rmt
  64. rm -f %{buildroot}%{_mandir}/man8/rmt.8*
  65. %find_lang %name
  66. %post
  67. /sbin/install-info %{_infodir}/tar.info.gz %{_infodir}/dir
  68. %preun
  69. if [ $1 = 0 ]; then
  70. /sbin/install-info --delete %{_infodir}/tar.info.gz %{_infodir}/dir
  71. fi
  72. %clean
  73. rm -rf ${buildroot}
  74. %files -f %{name}.lang
  75. %defattr(-,root,root)
  76. %{!?_licensedir:%global license %%doc}
  77. %license COPYING
  78. %doc AUTHORS README THANKS NEWS ChangeLog
  79. /bin/tar
  80. /bin/gtar
  81. %{_mandir}/man1/tar.1*
  82. %{_mandir}/man1/gtar.1*
  83. %{_infodir}/tar.info*
  84. %changelog
  85. * Thu Mar 28 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.32-1
  86. - new upstream release.
  87. - dropped all patches.
  88. - imported patches from rawhide.
  89. * Tue Jan 20 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.28-2
  90. - added LIBS="-lacl" to build on x86_64 (ad-hoc fix, maybe)
  91. - added BR: libacl-devel
  92. * Fri Jan 16 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.28-1
  93. - new upstream release
  94. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.27.1-1
  95. - new upstream release
  96. - remove Patch13 (tar-1.23-oldarchive.patch)
  97. - add Patch15 (tar-1.26-update-with-change-directory.patch) from Fedora
  98. * Wed May 18 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.26-1
  99. - new upstream release
  100. - added BuildRequires: gettext
  101. * Mon Nov 8 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.25-1
  102. - new upstream release
  103. - changed source archive type (gzip to bzip2)
  104. - modified Patch8 a little
  105. - added Patch11,12,13 from Fedora development
  106. - added BuildRequires: autoconf texinfo
  107. - run autoreconf on %%build
  108. * Tue Mar 16 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 1.22-4
  109. - add patch110 for fix CVE-2010-0624 (rmt) from fc11
  110. * Thu Apr 30 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.22-3
  111. - add missing documents
  112. * Mon Apr 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.22-2
  113. - spec in utf-8
  114. * Mon Mar 16 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.22-1
  115. - new upstream release
  116. - improved tar-1.20-loneZeroWarning.patch (refer to Fedora package)
  117. * Thu Apr 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.20-1
  118. - new upstream release
  119. - remove unneeded patches
  120. * Mon Dec 25 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.15.1-0vl3
  121. - rebuilt for VineSeed
  122. * Thu Nov 30 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.15.1-0vl2.1
  123. - add patch120 for fix CVE-2006-6097
  124. * Sun Sep 17 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.15.1-0vl2
  125. - add patch110 for fix CVE-2006-0300
  126. * Mon May 02 2005 Satoshi MACHINO <machino@vinelinux.org> 1.15.1-0vl1
  127. - new upstream release
  128. - fixed patch6 and patch7 for new upstream release
  129. - some patches are imported from fedora package. and fixed
  130. -- stop issuing lone zero block warnings(patch8)
  131. -- fixed testsuite(patch9)
  132. -- don't applyed(patch10)
  133. -- fixed offset had incorrect type(patch11)
  134. * Sun Jun 13 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.14-0vl1
  135. - new upstream release
  136. - some patches are imported from fedora package.
  137. * Fri May 2 2003 IWAI Masaharu <iwai@alib.jp> 1.3.25-8vl4
  138. - rebuild with new toolchain
  139. - update BuildRequire (autoconf253 -> autoconf)
  140. * Thu Oct 31 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.25-8vl3
  141. - add adhoc but useful patch100 for "z" option to accepts bz2 tarball.
  142. * Wed Oct 30 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.3.25-8vl2
  143. - Oops the spec was in Shift-JIS. Fixed.
  144. * Wed Oct 30 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.3.25-8vl1
  145. - based on 1.3.25-8 from Rawhide and built for Vine Linux
  146. - the previous Vine package was 1.3.18-0vl2. Vine's changelog was as follows:
  147. - Wed Feb 20 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.13.18-0vl2
  148. - rebuild to remove rpmlib dependancy
  149. - Sat May 26 2001 <sagami@vinelinux.org>
  150. - 1.13.18-0vl1: based on 1.13.18-1 and added Japanese summary and description
  151. - added barterly patch
  152. * Fri Aug 23 2002 Phil Knirsch <pknirsch@redhat.com> 1.13.25-8
  153. - Included security patch from errata release.
  154. * Mon Jul 1 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.25-7
  155. - Fix argv NULL termination (#64869)
  156. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  157. - automated rebuild
  158. * Tue Apr 9 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.25-4
  159. - Fix build with autoconf253 (LIBOBJ change; autoconf252 worked)
  160. * Wed Jan 09 2002 Tim Powers <timp@redhat.com>
  161. - automated rebuild
  162. * Tue Oct 23 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.25-2
  163. - Don't include hardlinks to sockets in a tar file (#54827)
  164. * Thu Sep 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.25-1
  165. - 1.13.25
  166. * Tue Sep 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.22-1
  167. - Update to 1.13.22, adapt patches
  168. * Mon Aug 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.19-6
  169. - Fix #52084
  170. * Thu May 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.19-5
  171. - Fix build with current autoconf (stricter checking on AC_DEFINE)
  172. - Fix segfault when tarring directories without having read permissions
  173. (#40802)
  174. * Tue Mar 6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  175. - Don't depend on librt.
  176. * Fri Feb 23 2001 Trond Eivind Glomsr <teg@redhat.com>
  177. - langify
  178. * Thu Feb 22 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  179. - Fix up the man page (#28915)
  180. * Wed Feb 21 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  181. - 1.3.19, nukes -I and fixes up -N
  182. - Add -I back in as an alias to -j with a nice loud warning
  183. * Mon Oct 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  184. - 1.3.18
  185. - Update man page to reflect changes
  186. * Thu Oct 5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  187. - Fix the "ignore failed read" option (Bug #8330)
  188. * Mon Sep 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  189. - fix hang on tar tvzf - <something.tar.gz, introduced by
  190. exit code fix (Bug #15448), Patch from Tim Waugh <twaugh@redhat.com>
  191. * Fri Aug 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  192. - really fix exit code (Bug #15448)
  193. * Mon Aug 7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  194. - fix exit code (Bug #15448), patch from Tim Waugh <twaugh@redhat.com>
  195. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  196. - automatic rebuild
  197. * Mon Jun 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  198. - FHSify
  199. * Fri Apr 28 2000 Bill Nottingham <notting@redhat.com>
  200. - fix for ia64
  201. * Wed Feb 9 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  202. - Fix the exclude bug (#9201)
  203. * Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
  204. - man pages are compressed
  205. - fix description
  206. - fix fnmatch build problems
  207. * Sun Jan 9 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  208. - 1.13.17
  209. - remove dotbug patch (fixed in base)
  210. - update download URL
  211. * Fri Jan 7 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  212. - Fix a severe bug (tar xf any_package_containing_. would delete the
  213. current directory)
  214. * Wed Jan 5 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  215. - 1.3.16
  216. - unset LINGUAS before running configure
  217. * Tue Nov 9 1999 Bernhard Rosenkr舅zer <bero@redhat.com>
  218. - 1.13.14
  219. - Update man page to know about -I / --bzip
  220. - Remove dependancy on rmt - tar can be used for anything local
  221. without it.
  222. * Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
  223. - upgrade to 1.13.11.
  224. * Wed Aug 18 1999 Jeff Johnson <jbj@redhat.com>
  225. - update to 1.13.9.
  226. * Thu Aug 12 1999 Jeff Johnson <jbj@redhat.com>
  227. - update to 1.13.6.
  228. - support -y --bzip2 options for bzip2 compression (#2415).
  229. * Fri Jul 23 1999 Jeff Johnson <jbj@redhat.com>
  230. - update to 1.13.5.
  231. * Tue Jul 13 1999 Bill Nottingham <notting@redhat.com>
  232. - update to 1.13
  233. * Sat Jun 26 1999 Jeff Johnson <jbj@redhat.com>
  234. - update to 1.12.64014.
  235. - pipe patch corrected for remote tars now merged in.
  236. * Sun Jun 20 1999 Jeff Johnson <jbj@redhat.com>
  237. - update to tar-1.12.64013.
  238. - subtract (and reopen #2415) bzip2 support using -y.
  239. - move gtar to /bin.
  240. * Tue Jun 15 1999 Jeff Johnson <jbj@redhat.com>
  241. - upgrade to tar-1.12.64011 to
  242. - add bzip2 support (#2415)
  243. - fix filename bug (#3479)
  244. * Mon Mar 29 1999 Jeff Johnson <jbj@redhat.com>
  245. - fix suspended tar with compression over pipe produces error (#390).
  246. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  247. - auto rebuild in the new build environment (release 8)
  248. * Mon Mar 08 1999 Michael Maher <mike@redhat.com>
  249. - added patch for bad name cache.
  250. - FIXES BUG 320
  251. * Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
  252. - Injected new description and group.
  253. * Fri Dec 18 1998 Preston Brown <pbrown@redhat.com>
  254. - bumped spec number for initial rh 6.0 build
  255. * Tue Aug 4 1998 Jeff Johnson <jbj@redhat.com>
  256. - add /usr/bin/gtar symlink (change #421)
  257. * Tue Jul 14 1998 Jeff Johnson <jbj@redhat.com>
  258. - Fiddle bindir/libexecdir to get RH install correct.
  259. - Don't include /sbin/rmt -- use the rmt from dump.
  260. - Turn on nls.
  261. * Mon Apr 27 1998 Prospector System <bugs@redhat.com>
  262. - translations modified for de, fr, tr
  263. * Thu Oct 16 1997 Donnie Barnes <djb@redhat.com>
  264. - updated from 1.11.8 to 1.12
  265. - various spec file cleanups
  266. - /sbin/install-info support
  267. * Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
  268. - built against glibc
  269. * Thu May 29 1997 Michael Fulbright <msf@redhat.com>
  270. - Fixed to include rmt