symlinks-vl.spec 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. Summary: A utility which maintains a system's symbolic links
  2. Name: symlinks
  3. Version: 1.7
  4. Release: 6%{?_dist_release}
  5. Group: system
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: Copyright only
  9. URL: http://ibiblio.org/pub/Linux/utils/file/
  10. # Upstream maintainer provided tarball, ibiblio no longer allowing uploads
  11. Source0: http://ibiblio.org/pub/Linux/utils/file/%{name}-%{version}.tar.gz
  12. # Taken from http://packages.debian.org/changelogs/pool/main/s/symlinks/symlinks_1.2-4.2/symlinks.copyright
  13. Source1: symlinks-LICENSE.txt
  14. BuildRequires: make
  15. BuildRequires: gcc
  16. %description
  17. The symlinks utility performs maintenance on symbolic links. Symlinks
  18. checks for symlink problems, including dangling symlinks which point
  19. to nonexistent files. Symlinks can also automatically convert
  20. absolute symlinks to relative symlinks.
  21. Install the symlinks package if you need a program for maintaining
  22. symlinks on your system.
  23. %debug_package
  24. %prep
  25. %setup -q
  26. cp %{SOURCE1} .
  27. %build
  28. make \
  29. CFLAGS="%{build_cflags} $(getconf LFS_CFLAGS)" \
  30. LDFLAGS="%{build_ldflags}" \
  31. %{?_smp_mflags}
  32. %install
  33. rm -rf $RPM_BUILD_ROOT
  34. mkdir -p $RPM_BUILD_ROOT%{_bindir}
  35. mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
  36. install -m 755 symlinks $RPM_BUILD_ROOT%{_bindir}
  37. install -m 644 symlinks.1 $RPM_BUILD_ROOT%{_mandir}/man1
  38. %files
  39. %doc symlinks-LICENSE.txt
  40. %{_bindir}/symlinks
  41. %{_mandir}/man1/symlinks.1*
  42. %changelog
  43. * Tue Mar 23 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.7-6
  44. - added Vendor: and Distribution: tag.
  45. * Mon Mar 22 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.7-5
  46. - initial build for Vine Linux.
  47. * Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.7-4
  48. - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
  49. * Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7-3
  50. - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
  51. * Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7-2
  52. - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
  53. * Wed Jan 8 2020 Tim Waugh <twaugh@redhta.com> - 1.7-1
  54. - 1.7, fixes #1786376.
  55. * Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-23
  56. - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
  57. * Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-22
  58. - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
  59. * Mon Jul 23 2018 Tim Waugh <twaugh@redhat.com> - 1.4-21
  60. - Build requires gcc (bug #1606459).
  61. * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-20
  62. - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
  63. * Thu Jun 14 2018 Than Ngo <than@redhat.com> - 1.4-19
  64. - fixed upstream URL reference
  65. * Wed May 09 2018 Tim Waugh <twaugh@redhat.com> - 1.4-18
  66. - Fix partial build flags injection (bug #1573111).
  67. * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-17
  68. - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
  69. * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-16
  70. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
  71. * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-15
  72. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
  73. * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-14
  74. - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
  75. * Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.4-13
  76. - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
  77. * Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-12
  78. - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
  79. * Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.4-11
  80. - Rebuilt for Fedora 23 Change
  81. https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
  82. * Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-10
  83. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
  84. * Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-9
  85. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
  86. * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-8
  87. - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
  88. * Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-7
  89. - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
  90. * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-6
  91. - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
  92. * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-5
  93. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  94. * Fri May 20 2011 Tim Waugh <twaugh@redhat.com> 1.4-4
  95. - Applied patches from Jiri Popelka:
  96. - Fix off-by-one error in call to readlink.
  97. - Fix possible buffer overrun found by coverity.
  98. * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-3
  99. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  100. * Fri Nov 13 2009 Tim Waugh <twaugh@redhat.com> 1.4-2
  101. - 1.4. All patches now upstream.
  102. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-34
  103. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  104. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-33
  105. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  106. * Sat Sep 6 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.2-32
  107. - fix license tag
  108. * Mon Feb 11 2008 Tim Waugh <twaugh@redhat.com> 1.2-31
  109. - Rebuild for GCC 4.3.
  110. * Wed Aug 29 2007 Tim Waugh <twaugh@redhat.com> 1.2-30
  111. - Rebuilt.
  112. * Fri Feb 23 2007 Tim Waugh <twaugh@redhat.com> 1.2-29
  113. - Use smp_mflags (bug #226445).
  114. - Better default attributes (bug #226445).
  115. - Make setup macro quiet (bug #226445).
  116. - Clean build root in %%install section (bug #226445).
  117. * Wed Feb 7 2007 Tim Waugh <twaugh@redhat.com> 1.2-28
  118. - Fixed build root (bug #226445).
  119. * Tue Feb 6 2007 Tim Waugh <twaugh@redhat.com> 1.2-27
  120. - Fixed summary (bug #226445).
  121. - Added token URL tag (bug #226445).
  122. * Tue Jan 30 2007 Florian La Roche <laroche@redhat.com> - 1.2-26
  123. - do not strip away debuginfo
  124. * Thu Jan 18 2007 Tim Waugh <twaugh@redhat.com> - 1.2-25
  125. - Build with LFS support (bug #206407).
  126. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.2-24.2.2
  127. - rebuild
  128. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2-24.2.1
  129. - bump again for double-long bug on ppc(64)
  130. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2-24.2
  131. - rebuilt for new gcc4.1 snapshot and glibc changes
  132. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  133. - rebuilt
  134. * Wed Mar 2 2005 Tim Waugh <twaugh@redhat.com> 1.2-24
  135. - Rebuild for new GCC.
  136. * Wed Feb 9 2005 Tim Waugh <twaugh@redhat.com> 1.2-23
  137. - s/Copyright:/License:/.
  138. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  139. - rebuilt
  140. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  141. - rebuilt
  142. * Thu Oct 16 2003 Florian La Roche <Florian.LaRoche@redhat.de>
  143. - add patch from #89655
  144. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  145. - rebuilt
  146. * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
  147. - rebuilt
  148. * Wed Dec 11 2002 Tim Powers <timp@redhat.com> 1.2-17
  149. - rebuild on all arches
  150. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  151. - automated rebuild
  152. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  153. - automated rebuild
  154. * Wed Jan 09 2002 Tim Powers <timp@redhat.com>
  155. - automated rebuild
  156. * Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
  157. - Bump release + rebuild.
  158. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  159. - automatic rebuild
  160. * Tue Jun 13 2000 Preston Brown <pbrown@redhat.com>
  161. - FHS paths
  162. * Tue May 30 2000 Preston Brown <pbrown@redhat.com>
  163. - fix up help output (#10236)
  164. * Thu Feb 10 2000 Preston Brown <pbrown@redhat.com>
  165. - do not link statically
  166. * Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
  167. - rebuild to gzip man page
  168. * Mon Oct 04 1999 Cristian Gafton <gafton@redhat.com>
  169. - rebuild against the latest glibc in the sparc tree
  170. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  171. - auto rebuild in the new build environment (release 5)
  172. * Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
  173. - Injected new description and group.
  174. * Fri Dec 18 1998 Preston Brown <pbrown@redhat.com>
  175. - bumped spec number for initial rh 6.0 build
  176. * Mon Apr 27 1998 Prospector System <bugs@redhat.com>
  177. - translations modified for de, fr, tr
  178. * Mon Oct 20 1997 Otto Hammersmith <otto@redhat.com>
  179. - changed build root to /var/tmp, not /var/lib
  180. - updated to version 1.2
  181. * Wed Jul 09 1997 Erik Troan <ewt@redhat.com>
  182. - built against glibc
  183. - build-rooted