source: projects/specs/trunk/t/time/time-vl.spec @ 8191

Revision 8191, 4.0 KB checked in by Takemikaduchi, 10 years ago (diff)

new upstream release or rebuild

Line 
1Name: time
2Summary: A GNU utility for monitoring a program's use of system resources.
3Summary(ja): プログラムのシステムリソース使用をモニタする GNU ユーティリティ
4Version: 1.7
5Release: 24%{?_dist_release}
6
7Group: Applications/System
8License: GPLv2+
9URL: http://www.gnu.org/software/time/
10
11Source0: ftp://prep.ai.mit.edu/pub/gnu/%{name}/%{name}-%{version}.tar.gz
12Patch0: time-1.7-destdir.patch
13Patch1: time-1.7-verbose.patch
14
15BuildRoot: %{_tmppath}/%{name}-%{version}-root
16Requires(post): /sbin/install-info
17Requires(preun): /sbin/install-info
18
19Vendor: Project Vine
20Distribution: Vine Linux
21
22%description
23The GNU time utility runs another program, collects information about
24the resources used by that program while it is running, and displays
25the results.
26
27%description -l ja
28GNU time ユーティリティは,他のプログラムを実行し,そのプログラムが
29実行される際にシステムリソースをどの程度使用したかの情報を表示します.
30
31
32%prep
33%setup -q
34%patch0 -p1
35%patch1 -p1
36
37%build
38echo "ac_cv_func_wait3=\${ac_cv_func_wait3='yes'}" >> config.cache
39%configure
40make %{?_smp_mflags}
41
42%install
43rm -rf %{buildroot}
44make install DESTDIR=$RPM_BUILD_ROOT
45
46%clean
47rm -rf %{buildroot}
48
49%post
50/sbin/install-info %{_infodir}/time.info.gz %{_infodir}/dir \
51    --entry="* time: (time).        GNU time Utility" || :
52
53%preun
54if [ "$1" = 0 ]; then
55    /sbin/install-info --delete %{_infodir}/time.info.gz %{_infodir}/dir \
56    --entry="* time: (time).        GNU time Utility" || :
57fi
58
59%files
60%defattr(-,root,root)
61%doc NEWS README COPYING
62%{_bindir}/time
63%{_infodir}/time.info*
64
65%changelog
66* Wed Jan 15 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.7-24
67- rebuild with VineSeed environment
68
69* Sun Apr 10 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.7-23
70- rebuilt with current VineSeed
71
72* Thu Oct 23 2008 Shu KONNO <owa@bg.wakwak.com> 1.7-22
73- spec in utf-8
74
75* Tue Apr 29 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.7-21
76- applied new versioning policy
77- added Patches from Fedora
78  * Tue Mar  4 2008 Roman Rakus <rrakus@redhat.cz> - 1.7-33
79  - Added patch from JW (redhat@zacglen.com), less nonverbose output
80  * Tue Feb 27 2007 Karsten Hopp <karsten@redhat.com> 1.7-29
81  - use make install DESTDIR=
82
83* Wed Jun 07 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.7-20vl2
84- rebuilt with new toolchains
85- updated source URL
86
87* Wed Dec 04 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.7-20vl1
88- based on 1.7-20 from Rawhide and built for Vine Linux
89- added Japanese summary and description
90
91* Tue Nov 19 2002 Tim Powers <timp@redhat.com>
92- rebuild on all arches
93
94* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
95- automated rebuild
96
97* Wed Jun 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
98- do not strip apps, do not compress info page
99
100* Thu May 23 2002 Tim Powers <timp@redhat.com>
101- automated rebuild
102
103* Mon Feb 25 2002 Elliot Lee <sopwith@redhat.com>
104- Remove HAVE_WAIT3 hack, tried to replace it with a requirement for an
105autoconf with the fixed test, didn't work, put in another less-bad hack
106instead.
107
108* Wed Dec 05 2001 Tom Tromey <tromey@redhat.com>
109- Bump release, force HAVE_WAIT3 to be defined at build time
110
111* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
112- Bump release + rebuild.
113
114* Wed Jan 31 2001 Preston Brown <pbrown@redhat.com>
115- prereq install-info (#24715)
116
117* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
118- automatic rebuild
119
120* Thu Jun 29 2000 Preston Brown <pbrown@redhat.com>
121- using / as the file manifesto has weird results.
122
123* Sun Jun  4 2000 Jeff Johnson <jbj@redhat.com>
124- FHS packaging.
125
126* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
127- auto rebuild in the new build environment (release 9)
128
129* Mon Aug 10 1998 Erik Troan <ewt@redhat.com>
130- buildrooted and defattr'd
131
132* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
133- translations modified for de, fr, tr
134
135* Mon Oct 27 1997 Cristian Gafton <gafton@redhat.com>
136- fixed info handling
137
138* Thu Oct 23 1997 Cristian Gafton <gafton@redhat.com>
139- updated the spec file; added info file handling
140
141* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
142- built against glibc
Note: See TracBrowser for help on using the repository browser.