White space fixes in spec file
This commit is contained in:
parent
5406dc04fe
commit
1977fdf652
47
gc.spec
47
gc.spec
@ -1,13 +1,12 @@
|
|||||||
|
Summary: A garbage collector for C and C++
|
||||||
Summary: A garbage collector for C and C++
|
Name: gc
|
||||||
Name: gc
|
|
||||||
%global base_ver 7.2
|
%global base_ver 7.2
|
||||||
Version: 7.2c
|
Version: 7.2c
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
|
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
License: BSD
|
License: BSD
|
||||||
Url: http://www.hpl.hp.com/personal/Hans_Boehm/gc/
|
Url: http://www.hpl.hp.com/personal/Hans_Boehm/gc/
|
||||||
Source0: http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-%{version}%{?pre}.tar.gz
|
Source0: http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-%{version}%{?pre}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
@ -15,7 +14,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|||||||
|
|
||||||
## upstream patches
|
## upstream patches
|
||||||
|
|
||||||
BuildRequires: automake libtool
|
BuildRequires: automake libtool
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
|
|
||||||
# rpmforge compatibility
|
# rpmforge compatibility
|
||||||
@ -23,11 +22,11 @@ Obsoletes: libgc < %{version}-%{release}
|
|||||||
Provides: libgc = %{version}-%{release}
|
Provides: libgc = %{version}-%{release}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The Boehm-Demers-Weiser conservative garbage collector can be
|
The Boehm-Demers-Weiser conservative garbage collector can be
|
||||||
used as a garbage collecting replacement for C malloc or C++ new.
|
used as a garbage collecting replacement for C malloc or C++ new.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Libraries and header files for %{name} development
|
Summary: Libraries and header files for %{name} development
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
Obsoletes: libgc-devel < %{version}-%{release}
|
Obsoletes: libgc-devel < %{version}-%{release}
|
||||||
@ -38,11 +37,11 @@ Provides: libgc-devel = %{version}-%{release}
|
|||||||
%package -n libatomic_ops-devel
|
%package -n libatomic_ops-devel
|
||||||
Summary: Atomic memory update operations
|
Summary: Atomic memory update operations
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
# libatomic_ops.a is MIT
|
# libatomic_ops.a is MIT
|
||||||
# libatomic_ops_gpl.a is GPLv2+
|
# libatomic_ops_gpl.a is GPLv2+
|
||||||
License: MIT and GPLv2+
|
License: MIT and GPLv2+
|
||||||
Provides: libatomic_ops-static = %{version}-%{release}
|
Provides: libatomic_ops-static = %{version}-%{release}
|
||||||
%description -n libatomic_ops-devel
|
%description -n libatomic_ops-devel
|
||||||
Provides implementations for atomic memory update operations on a
|
Provides implementations for atomic memory update operations on a
|
||||||
number of architectures. This allows direct use of these in reasonably
|
number of architectures. This allows direct use of these in reasonably
|
||||||
portable code. Unlike earlier similar packages, this one explicitly
|
portable code. Unlike earlier similar packages, this one explicitly
|
||||||
@ -81,10 +80,10 @@ make %{?_smp_mflags} -C libatomic_ops
|
|||||||
%install
|
%install
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
make install DESTDIR=%{buildroot}
|
make install DESTDIR=%{buildroot}
|
||||||
make install DESTDIR=%{buildroot} -C libatomic_ops
|
make install DESTDIR=%{buildroot} -C libatomic_ops
|
||||||
|
|
||||||
install -p -D -m644 doc/gc.man %{buildroot}%{_mandir}/man3/gc.3
|
install -p -D -m644 doc/gc.man %{buildroot}%{_mandir}/man3/gc.3
|
||||||
|
|
||||||
## Unpackaged files
|
## Unpackaged files
|
||||||
rm -rfv %{buildroot}%{_datadir}/gc/
|
rm -rfv %{buildroot}%{_datadir}/gc/
|
||||||
@ -104,10 +103,10 @@ rm -rf %{buildroot}
|
|||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc doc/README
|
%doc doc/README
|
||||||
%doc doc/README.changes doc/README.contributors
|
%doc doc/README.changes doc/README.contributors
|
||||||
%doc doc/README.environment doc/README.linux
|
%doc doc/README.environment doc/README.linux
|
||||||
%{_libdir}/libcord.so.1*
|
%{_libdir}/libcord.so.1*
|
||||||
%{_libdir}/libgc.so.1*
|
%{_libdir}/libgc.so.1*
|
||||||
@ -140,6 +139,9 @@ rm -rf %{buildroot}
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Oct 29 2012 Pavel Raiskup <praiskup@redhat.com> - 7.2c-4
|
||||||
|
- trim lines, s/[tabs]/[spaces]/
|
||||||
|
|
||||||
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.2c-3
|
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.2c-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
@ -160,7 +162,7 @@ rm -rf %{buildroot}
|
|||||||
|
|
||||||
* Mon May 14 2012 Rex Dieter <rdieter@fedoraproject.org>
|
* Mon May 14 2012 Rex Dieter <rdieter@fedoraproject.org>
|
||||||
- 7.2-1
|
- 7.2-1
|
||||||
- gc-7.2 (final)
|
- gc-7.2 (final)
|
||||||
|
|
||||||
* Fri Mar 02 2012 Rex Dieter <rdieter@fedoraproject.org> 7.2-0.7.alpha6
|
* Fri Mar 02 2012 Rex Dieter <rdieter@fedoraproject.org> 7.2-0.7.alpha6
|
||||||
- libatomic_ops: use -DAO_USE_PTHREAD_DEFS on ARMv5
|
- libatomic_ops: use -DAO_USE_PTHREAD_DEFS on ARMv5
|
||||||
@ -218,7 +220,7 @@ rm -rf %{buildroot}
|
|||||||
- gc-7.1
|
- gc-7.1
|
||||||
- purge rpaths
|
- purge rpaths
|
||||||
|
|
||||||
* Fri Feb 08 2008 Rex Dieter <rdieter@fedoraproject.org> 7.0-7
|
* Fri Feb 08 2008 Rex Dieter <rdieter@fedoraproject.org> 7.0-7
|
||||||
- respin (gcc43)
|
- respin (gcc43)
|
||||||
|
|
||||||
* Wed Aug 29 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 7.0-6
|
* Wed Aug 29 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 7.0-6
|
||||||
@ -252,11 +254,11 @@ rm -rf %{buildroot}
|
|||||||
* Fri Mar 03 2006 Rex Dieter <rexdieter[AT]users.sf.net> 6.7-1
|
* Fri Mar 03 2006 Rex Dieter <rexdieter[AT]users.sf.net> 6.7-1
|
||||||
- 6.7
|
- 6.7
|
||||||
|
|
||||||
* Wed Mar 1 2006 Rex Dieter <rexdieter[AT]users.sf.net>
|
* Wed Mar 1 2006 Rex Dieter <rexdieter[AT]users.sf.net>
|
||||||
- fc5: gcc/glibc respin
|
- fc5: gcc/glibc respin
|
||||||
|
|
||||||
* Fri Feb 10 2006 Rex Dieter <rexdieter[AT]users.sf.net> 6.6-5
|
* Fri Feb 10 2006 Rex Dieter <rexdieter[AT]users.sf.net> 6.6-5
|
||||||
- gcc(4.1) patch
|
- gcc(4.1) patch
|
||||||
|
|
||||||
* Thu Dec 01 2005 Rex Dieter <rexdieter[AT]users.sf.net> 6.6-4
|
* Thu Dec 01 2005 Rex Dieter <rexdieter[AT]users.sf.net> 6.6-4
|
||||||
- Provides: libgc(-devel)
|
- Provides: libgc(-devel)
|
||||||
@ -305,18 +307,17 @@ rm -rf %{buildroot}
|
|||||||
- OK, put manpage in man3.
|
- OK, put manpage in man3.
|
||||||
|
|
||||||
* Thu Oct 02 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.2
|
* Thu Oct 02 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.2
|
||||||
- drop manpage pending feedback from developer.
|
- drop manpage pending feedback from developer.
|
||||||
|
|
||||||
* Tue Sep 30 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.1
|
* Tue Sep 30 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.1
|
||||||
- fix manpage location
|
- fix manpage location
|
||||||
- remove .la file (it appears unnecessary after all, thanks to opendl patch)
|
- remove .la file (it appears unnecessary after all, thanks to opendl patch)
|
||||||
- remove cvs tag from description
|
- remove cvs tag from description
|
||||||
- touchup -devel desc/summary.
|
- touchup -devel desc/summary.
|
||||||
- macro update to support Fedora Core
|
- macro update to support Fedora Core
|
||||||
|
|
||||||
* Thu Sep 11 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.0
|
* Thu Sep 11 2003 Rex Dieter <rexdieter at sf.net> 0:6.2-0.fdr.0
|
||||||
- 6.2 release.
|
- 6.2 release.
|
||||||
- update license (BSD)
|
- update license (BSD)
|
||||||
- Consider building with: --enable-parallel-mark
|
- Consider building with: --enable-parallel-mark
|
||||||
(for now, no).
|
(for now, no).
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user