make-vl.spec 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. Summary: A GNU tool which simplifies the build process for users.
  2. Summary(ja): ユーザのビルド手続きを平易にする GNU ツール
  3. Name: make
  4. Epoch: 1
  5. Version: 4.4
  6. Release: 1%{?_dist_release}
  7. Group: programming
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. License: GPL
  11. URL: http://www.gnu.org/software/make/
  12. Source: https://ftp.gnu.org/gnu/make/make-%{version}.tar.gz
  13. Source1: http://translationproject.org/PO-files/ja/make-4.3.92.ja.po
  14. Patch0: make-4.3-getcwd.patch
  15. # Assume we don't have clock_gettime in configure, so that
  16. # make is not linked against -lpthread (and thus does not
  17. # limit stack to 2MB).
  18. Patch2: make-4.0-noclock_gettime.patch
  19. # BZs #142691, #17374
  20. Patch3: make-4.3-j8k.patch
  21. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  22. BuildRequires: automake >= 1.7.3
  23. BuildRequires: guile30-devel
  24. BuildRequires: perl
  25. BuildRequires: procps
  26. BuildRequires: texinfo
  27. %description
  28. A GNU tool for controlling the generation of executables and other
  29. non-source files of a program from the program's source files. Make
  30. allows users to build and install packages without any significant
  31. knowledge about the details of the build process. The details about
  32. how the program should be built are provided for make in the program's
  33. makefile.
  34. The GNU make tool should be installed on your system because it is
  35. commonly used to simplify the process of installing programs.
  36. %description -l ja
  37. プログラムのソースファイルから実行ファイル及びその他のファイルを
  38. 生成する GNU ツールです.Make を使うことでユーザは build 時の
  39. 細かいプロセスを気にせず build しインストールすることが出来ます.
  40. プログラムがどの様に build されるのかは,プログラムの Makefile に
  41. 書かれています.
  42. GNU make ツールは,プログラムのインストールを容易にするのに
  43. 非常によく使われますので,このパッケージは是非インストールして下さい.
  44. %debug_package
  45. %prep
  46. %autosetup -p1
  47. rm -f tests/scripts/features/parallelism.orig
  48. cp -f %{SOURCE1} po/ja.po
  49. %build
  50. autoreconf -vfi
  51. %configure --with-guile
  52. make -C po ja.gmo
  53. make %{?_smp_mflags}
  54. %install
  55. rm -rf ${RPM_BUILD_ROOT}
  56. make DESTDIR=$RPM_BUILD_ROOT install
  57. ln -sf make ${RPM_BUILD_ROOT}/%{_bindir}/gmake
  58. ln -sf make.1 ${RPM_BUILD_ROOT}/%{_mandir}/man1/gmake.1
  59. rm -f ${RPM_BUILD_ROOT}/%{_infodir}/dir
  60. %find_lang %name
  61. %check
  62. export PATH=$PATH:/bin
  63. echo ============TESTING===============
  64. /usr/bin/env LANG=C make check
  65. echo ============END TESTING===========
  66. %clean
  67. rm -rf ${RPM_BUILD_ROOT}
  68. %files -f %{name}.lang
  69. %defattr(-,root,root)
  70. %doc NEWS README COPYING AUTHORS
  71. %{_bindir}/*
  72. %{_mandir}/man*/*
  73. %{_infodir}/*.info*
  74. %{_includedir}/gnumake.h
  75. %changelog
  76. * Fri Nov 18 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.4-1
  77. - new upstream release.
  78. - updated ja.po.
  79. - dropped install-info scriptlets.
  80. - dropped Patch4: fixed in upstream.
  81. - updated patches.
  82. * Wed Feb 24 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3-1
  83. - new upstream release.
  84. - updated ja.po.
  85. - dropped Patch1, 4-9.
  86. - updated Patch0 and 3.
  87. - imported Patch4 from rawhide.
  88. * Wed Sep 11 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.2.1-1
  89. - new upstream release.
  90. - updated patches.
  91. - updated ja.po.
  92. * Wed May 25 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1-1
  93. - new upstream release.
  94. - dropped all patches.
  95. - imported patches from rawhide.
  96. - added Patch1000 to fix ja.po.
  97. * Sun Feb 02 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.82-2
  98. - rebuild with VineSeed environment
  99. * Thu Nov 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.82-1
  100. - new upstream release
  101. * Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.81-8
  102. - rebuild for Vine6
  103. * Mon Jun 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.81-7
  104. - applied new versioning policy
  105. - added BuildRequires: perl (for %%check)
  106. - spec in UTF-8
  107. * Thu Dec 13 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.81-6vl1
  108. - updated to 3.81 based on Fedora packages
  109. * Fri Mar 16 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-6
  110. - Always run testsuite with C locale.
  111. - Resolves: #232607
  112. * Thu Feb 22 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-5
  113. - Fix newline handling for quoted SHELL.
  114. - Resolves: #219409
  115. * Tue May 23 2006 Petr Machata <pmachata@redhat.com> - 1:3.81-1
  116. - Upstream 3.81:
  117. - Contains several backwards incompatible changes. See NEWS inside
  118. the source package to find out more.
  119. - memory patch and error reporting patch were ported to this version.
  120. - updated ja.po
  121. * Tue Dec 13 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.80-0vl4
  122. - added URL
  123. - s/Copyright/License/
  124. - added some patches from fedora development 3.80-8
  125. * Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 3.80-8
  126. - make sure errno for error reporting is not lost accross _() calls
  127. - report EOF on read pipe differently from read returning < 0 reporting
  128. * Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 3.80-6
  129. - refuse -jN where N is bigger than PIPE_BUF (#142691, #17374)
  130. * Tue Dec 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
  131. - add important bug-fixes from make home-page
  132. * Wed Apr 09 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 3.80-0vl3
  133. - some patches was included from 3.79.1-17
  134. * Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 3.80-0vl2
  135. - update ja.po
  136. * Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 3.80-0vl1
  137. - new upstream release
  138. * Fri Dec 22 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  139. - 3.79.1-5vl1
  140. - based on 3.79.1-5 from Rawhide
  141. - rebuilt for Vine Linux
  142. - added Japanese summary and description
  143. * Mon Aug 7 2000 Tim Waugh <twaugh@redhat.com>
  144. - change info-dir entry so that 'info make' works (#15029).
  145. * Tue Aug 1 2000 Jakub Jelinek <jakub@redhat.com>
  146. - assume we don't have clock_gettime in configure, so that
  147. make is not linked against -lpthread (and thus does not
  148. limit stack to 2MB).
  149. * Sat Jul 22 2000 Jeff Johnson <jbj@redhat.com>
  150. - add locale files (#14362).
  151. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  152. - automatic rebuild
  153. * Sat Jun 24 2000 Preston Brown <pbrown@redhat.com>
  154. - 3.79.1 bugfix release
  155. * Mon Jun 5 2000 Jeff Johnson <jbj@redhat.com>
  156. - FHS packaging.
  157. * Sun May 7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  158. - Fix build for some odd situations, such as
  159. - previously installed make != GNU make
  160. - /bin/sh != bash
  161. * Mon Apr 17 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  162. - update to 3.79
  163. * Thu Feb 24 2000 Cristian Gafton <gafton@redhat.com>
  164. - add patch from Andreas Jaeger to fix dtype lookups (for glibc 2.1.3
  165. builds)
  166. * Mon Feb 7 2000 Jeff Johnson <jbj@redhat.com>
  167. - compress man page.
  168. * Fri Jan 21 2000 Cristian Gafton <gafton@redhat.com>
  169. - apply patch to fix a /tmp race condition from Thomas Biege
  170. - simplify %install
  171. * Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com>
  172. - update to 3.78.1.
  173. * Thu Apr 15 1999 Bill Nottingham <notting@redhat.com>
  174. - added a serial tag so it upgrades right
  175. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  176. - auto rebuild in the new build environment (release 5)
  177. * Wed Sep 16 1998 Cristian Gafton <gafton@redhat.com>
  178. - added a patch for large file support in glob
  179. * Tue Aug 18 1998 Jeff Johnson <jbj@redhat.com>
  180. - update to 3.77
  181. * Mon Apr 27 1998 Prospector System <bugs@redhat.com>
  182. - translations modified for de, fr, tr
  183. * Thu Oct 16 1997 Donnie Barnes <djb@redhat.com>
  184. - udpated from 3.75 to 3.76
  185. - various spec file cleanups
  186. - added install-info support
  187. * Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
  188. - built against glibc