Accepting request 62747 from devel:tools:building
Accepted submit request 62747 from user coolo OBS-URL: https://build.opensuse.org/request/show/62747 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ccache?expand=0&rev=14
This commit is contained in:
commit
2e0a1075b9
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c3aa736e1b4a37d06d0098c05c4dbcc977b791ee51a64f5e1bd78e5aa7baaad7
|
|
||||||
size 261539
|
|
3
ccache-3.1.4.tar.bz2
Normal file
3
ccache-3.1.4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5288359487c951e7be7af2e60d3b8fc7b9d89252becf51b31ecc415efdae1a1f
|
||||||
|
size 261391
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 16 18:19:41 UTC 2011 - asterios.dramis@gmail.com
|
||||||
|
|
||||||
|
- update to ccache-3.1.4
|
||||||
|
- Made a work-around for a bug in gzputc() in zlib 1.2.5.
|
||||||
|
- Corrupt manifest files are now removed so that they won't block direct
|
||||||
|
mode hits.
|
||||||
|
- ccache now copes with file systems that don't know about symbolic links.
|
||||||
|
- The file handle in now correctly closed on write error when trying to
|
||||||
|
create a cache dir tag.
|
||||||
|
- Spec file updates:
|
||||||
|
- Changes based on rpmdevtools templates and spec-cleaner run.
|
||||||
|
- Updated Summary: and %description.
|
||||||
|
- Made it compile with external zlib instead of the bundled copy.
|
||||||
|
- Added also the html files in the %doc section.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 29 09:56:02 UTC 2010 - puzel@novell.com
|
Mon Nov 29 09:56:02 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
|
42
ccache.spec
42
ccache.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ccache (Version 3.1.3)
|
# spec file for package ccache (Version 3.1.4)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,24 +17,24 @@
|
|||||||
|
|
||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
|
|
||||||
Name: ccache
|
Name: ccache
|
||||||
Summary: Compiler Cache
|
Version: 3.1.4
|
||||||
Version: 3.1.3
|
|
||||||
Release: 1
|
Release: 1
|
||||||
Group: Development/Languages/C and C++
|
Summary: A Fast C/C++ Compiler Cache
|
||||||
|
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
AutoReqProv: on
|
|
||||||
Url: http://ccache.samba.org/
|
Url: http://ccache.samba.org/
|
||||||
Source: ccache-%{version}.tar.bz2
|
Group: Development/Languages/C and C++
|
||||||
Provides: distcc:/usr/bin/ccache
|
Source0: http://samba.org/ftp/ccache/%{name}-%{version}.tar.bz2
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
|
BuildRequires: zlib-devel
|
||||||
|
Provides: distcc:/usr/bin/ccache
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Ccache is a compiler cache. It acts as a caching preprocessor to C/C++
|
ccache is a compiler cache. It speeds up recompilation by caching the result of
|
||||||
compilers, using the -E compiler switch and a hash to detect when a
|
previous compilations and detecting when the same compilation is being done
|
||||||
compilation can be satisfied from cache. This often results in
|
again. Supported languages are C, C++, Objective-C and Objective-C++.
|
||||||
increased speed for common compilations.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -43,22 +43,22 @@ Authors:
|
|||||||
Andrew Tridgell
|
Andrew Tridgell
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
make
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root,-)
|
||||||
%doc LICENSE.txt README.txt NEWS.txt INSTALL.txt MANUAL.txt AUTHORS.txt
|
%doc AUTHORS.* GPL-3.0.txt INSTALL.* LICENSE.* MANUAL.* NEWS.* README.*
|
||||||
%doc %{_mandir}/man1/ccache.1*
|
%doc %{_mandir}/man1/ccache.1*
|
||||||
%{_bindir}/ccache
|
%{_bindir}/ccache
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user