source: projects/specs/trunk/m/make/make-vl.spec @ 7188

Revision 7188, 7.6 KB checked in by daisuke, 11 years ago (diff)

make: update to 3.82

Line 
1Summary:     A GNU tool which simplifies the build process for users.
2Summary(ja): ユーザのビルド手続きを平易にする GNU ツール
3Name: make
4Epoch: 1
5Version: 3.82
6Release: 1%{?_dist_release}
7License: GPL
8Group: Development/Tools
9URL: http://www.gnu.org/software/make/
10Source: ftp://ftp.gnu.org/gnu/make/make-%{version}.tar.bz2
11Source1: make-3.81-ja.po
12
13Patch1: make-3.82-noclock_gettime.patch
14Patch2: make-3.82-j8k.patch
15Patch3: make-3.82-getcwd.patch
16Patch4: make-3.82-err-reporting.patch
17
18# Upstream: https://savannah.gnu.org/bugs/?30748
19Patch6: make-3.82-weird-shell.patch
20
21Patch7: make-3.82-newlines.patch
22Patch8: make-3.82-jobserver.patch
23Patch9: make-3.82-bugfixes.patch
24Patch10: make-3.82-sort-blank.patch
25Patch11: make-3.82-copy-on-expand.patch
26
27# Upstream: https://savannah.gnu.org/bugs/?33873
28Patch12: make-3.82-parallel-remake.patch
29
30# http://savannah.gnu.org/bugs/?34335
31Patch13: make-3.82-warn_undefined_function.patch
32
33# http://lists.gnu.org/archive/html/bug-make/2011-06/msg00032.html
34Patch14: make-3.82-trace.patch
35
36# http://lists.gnu.org/archive/html/bug-make/2011-04/msg00002.html
37Patch15: make-3.82-expensive_glob.patch
38
39# Upstream: https://savannah.gnu.org/bugs/?30653
40Patch16: make-3.82-dont-prune-intermediate.patch
41
42Buildroot: %{_tmppath}/%{name}-%{version}-root
43Requires(post): /sbin/install-info
44Requires(preun): /sbin/install-info
45BuildRequires: automake >= 1.7.3
46BuildRequires: perl
47BuildRequires: procps
48
49%description
50A GNU tool for controlling the generation of executables and other
51non-source files of a program from the program's source files.  Make
52allows users to build and install packages without any significant
53knowledge about the details of the build process.  The details about
54how the program should be built are provided for make in the program's
55makefile.
56
57The GNU make tool should be installed on your system because it is
58commonly used to simplify the process of installing programs.
59
60
61%description -l ja
62プログラムのソースファイルから実行ファイル及びその他のファイルを
63生成する GNU ツールです.Make を使うことでユーザは build 時の
64細かいプロセスを気にせず build しインストールすることが出来ます.
65プログラムがどの様に build されるのかは,プログラムの Makefile に
66書かれています.
67
68GNU make ツールは,プログラムのインストールを容易にするのに
69非常によく使われますので,このパッケージは是非インストールして下さい.
70
71
72%prep
73%setup -q
74
75%patch1 -p1
76%patch2 -p1
77%patch3 -p1
78%patch4 -p1
79%patch6 -p1
80%patch7 -p1
81%patch8 -p1
82%patch9 -p1
83%patch10 -p1
84%patch11 -p1
85%patch12 -p0
86%patch13 -p2
87%patch14 -p1
88%patch15 -p0
89%patch16 -p0
90rm -f tests/scripts/features/parallelism.orig
91
92cp %{SOURCE1} po/ja.po
93
94%build
95config/missing --run aclocal -I config
96config/missing --run automake --gnu Makefile
97config/missing --run autoconf
98%configure
99make
100
101%install
102rm -rf $RPM_BUILD_ROOT
103%makeinstall
104
105pushd $RPM_BUILD_ROOT
106  ln -sf make .%{_bindir}/gmake
107#  gzip -9nf .%{_infodir}/make.info*
108  rm -f .%{_infodir}/dir
109popd
110
111%find_lang %name
112
113
114%check
115echo ============TESTING===============
116/usr/bin/env LANG=C make check
117echo ============END TESTING===========
118
119
120%clean
121rm -rf ${RPM_BUILD_ROOT}
122
123%post
124/sbin/install-info %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make).                 The GNU make utility." || :
125
126%preun
127if [ $1 = 0 ]; then
128   /sbin/install-info --delete %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make).                 The GNU make utility." || :
129fi
130
131
132%files -f %{name}.lang
133%defattr(-,root,root)
134%doc NEWS README
135%{_bindir}/*
136%{_mandir}/man*/*
137%{_infodir}/*.info*
138#%{_datadir}/locale/*/LC_MESSAGES/make*
139
140%changelog
141* Thu Nov 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.82-1
142- new upstream release
143
144* Wed Apr 13 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.81-8
145- rebuild for Vine6
146
147* Mon Jun  9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.81-7
148- applied new versioning policy
149- added BuildRequires: perl (for %%check)
150- spec in UTF-8
151
152* Tue Dec 13 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.81-6vl1
153- updated to 3.81 based on Fedora packages
154  * Fri Mar 16 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-6
155  - Always run testsuite with C locale.
156  - Resolves: #232607
157  * Thu Feb 22 2007 Petr Machata <pmachata@redhat.com> - 1:3.81-5
158  - Fix newline handling for quoted SHELL.
159  - Resolves: #219409
160  * Tue May 23 2006 Petr Machata <pmachata@redhat.com> - 1:3.81-1
161  - Upstream 3.81:
162    - Contains several backwards incompatible changes.  See NEWS inside
163      the source package to find out more.
164  - memory patch and error reporting patch were ported to this version.
165- updated ja.po
166
167* Tue Dec 13 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.80-0vl4
168- added URL
169- s/Copyright/License/
170- added some patches from fedora development 3.80-8
171  * Mon Aug 22 2005 Jakub Jelinek <jakub@redhat.com> 3.80-8
172  - make sure errno for error reporting is not lost accross _() calls
173  - report EOF on read pipe differently from read returning < 0 reporting
174  * Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 3.80-6
175  - refuse -jN where N is bigger than PIPE_BUF (#142691, #17374)
176  * Tue Dec 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
177  - add important bug-fixes from make home-page
178
179* Wed Apr 09 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 3.80-0vl3
180- some patches was included from 3.79.1-17
181
182* Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 3.80-0vl2
183- update ja.po
184
185* Wed Nov 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 3.80-0vl1
186- new upstream release
187
188* Fri Dec 22 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
189- 3.79.1-5vl1
190- based on 3.79.1-5 from Rawhide
191- rebuilt for Vine Linux
192- added Japanese summary and description
193
194* Mon Aug  7 2000 Tim Waugh <twaugh@redhat.com>
195- change info-dir entry so that 'info make' works (#15029).
196
197* Tue Aug  1 2000 Jakub Jelinek <jakub@redhat.com>
198- assume we don't have clock_gettime in configure, so that
199  make is not linked against -lpthread (and thus does not
200  limit stack to 2MB).
201
202* Sat Jul 22 2000 Jeff Johnson <jbj@redhat.com>
203- add locale files (#14362).
204
205* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
206- automatic rebuild
207
208* Sat Jun 24 2000 Preston Brown <pbrown@redhat.com>
209- 3.79.1 bugfix release
210
211* Mon Jun  5 2000 Jeff Johnson <jbj@redhat.com>
212- FHS packaging.
213
214* Sun May  7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
215- Fix build for some odd situations, such as
216  - previously installed make != GNU make
217  - /bin/sh != bash
218
219* Mon Apr 17 2000 Florian La Roche <Florian.LaRoche@redhat.com>
220- update to 3.79
221
222* Thu Feb 24 2000 Cristian Gafton <gafton@redhat.com>
223- add patch from Andreas Jaeger to fix dtype lookups (for glibc 2.1.3
224  builds)
225
226* Mon Feb  7 2000 Jeff Johnson <jbj@redhat.com>
227- compress man page.
228
229* Fri Jan 21 2000 Cristian Gafton <gafton@redhat.com>
230- apply patch to fix a /tmp race condition from Thomas Biege
231- simplify %install
232
233* Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com>
234- update to 3.78.1.
235
236* Thu Apr 15 1999 Bill Nottingham <notting@redhat.com>
237- added a serial tag so it upgrades right
238
239* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
240- auto rebuild in the new build environment (release 5)
241
242* Wed Sep 16 1998 Cristian Gafton <gafton@redhat.com>
243- added a patch for large file support in glob
244 
245* Tue Aug 18 1998 Jeff Johnson <jbj@redhat.com>
246- update to 3.77
247
248* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
249- translations modified for de, fr, tr
250
251* Thu Oct 16 1997 Donnie Barnes <djb@redhat.com>
252- udpated from 3.75 to 3.76
253- various spec file cleanups
254- added install-info support
255
256* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
257- built against glibc
Note: See TracBrowser for help on using the repository browser.