X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;ds=sidebyside;f=ccache.spec;h=f56dc834404f19c4e4ce675c43889f1ad4c82d14;hb=812382e9727aec0b7f84ea22127dc322791c5325;hp=55ec24ac727f05976a70732fed7d7928921e9f38;hpb=8b92ebec9b0d7b80fa04765061f9bb82c8de3155;p=packages%2Fccache.git diff --git a/ccache.spec b/ccache.spec index 55ec24a..f56dc83 100644 --- a/ccache.spec +++ b/ccache.spec @@ -1,43 +1,108 @@ +Summary: Compiler cache +Summary(pl.UTF-8): Pamięć podręczna dla kompilatora +Summary(pt_BR.UTF-8): Cache para compiladores C/C++ Name: ccache -Summary: compiler cache -Summary(pl): przyspieszacz kompilowania -Url: http://ccache.samba.org/ -Version: 1.8 +Version: 3.2.2 Release: 1 -License: GPL +License: GPL v3 Group: Development/Tools -Source0: http://ccache.samba.org/ftp/ccache/%{name}-%{version}.tar.gz -BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) +Source0: https://www.samba.org/ftp/ccache/%{name}-%{version}.tar.xz +# Source0-md5: 7e5e6245b21ccc84a66a9c39a83ed8a9 +URL: http://ccache.samba.org/ +BuildRequires: automake +BuildRequires: tar >= 1:1.22 +BuildRequires: xz +BuildRequires: zlib-devel >= 1.2.3 +BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) + +%define _libdir %{_prefix}/%{_lib}/%{name} + %description ccache is a compiler cache. It acts as a caching pre-processor to C/C++ compilers, using the -E compiler switch and a hash to detect when a compilation can be satisfied from cache. This often results in a 5 to 10 times speedup in common compilations. -%description -l pl +%description -l pl.UTF-8 +ccache to pamięć podręczna dla kompilatora - działa jako cachujący +preprocesor dla kompilatorów C/C++, wykorzystujący opcję kompilatora +-E oraz tablicę haszującą do wykrywania, czy do kompilacji wystarczy +zawartość pamięci podręcznej. Daje to zazwyczaj przyspieszenie +kompilacji 5 do 10 razy. + +%description -l pt_BR.UTF-8 +ccache é um cache para compiladores. Ele funciona mantendo um cache de +pré-processamento para compiladores C/C++ utilizando-se do parâmetro +- -E e de um hash para detectar quando uma compilação pode ser + reaproveitada de um cache armazenado em disco. O ganho de tempo em + compilações comuns pode chegar a uma escala de até 10 vezes em relação + ao tempo normal. + +%package wrapper +Summary: Symlinks for c++/cc/g++/gcc +Summary(pl.UTF-8): Dowiązania symboliczne do c++/cc/g++/gcc +Group: Development/Tools +Requires: %{name} = %{version}-%{release} + +%description wrapper +This package contains the softlinks to ccache for each compiler. + +%description wrapper -l pl.UTF-8 +Ten pakiet zawiera dowiązania symboliczne do ccache dla każdego +kompilatora. %prep -%setup -q -n ccache-1.8 +%setup -q + +# Make sure system zlib is used +%{__rm} -r zlib %build +cp -f /usr/share/automake/config.* . +CPPFLAGS="%{rpmcppflags} -D_FILE_OFFSET_BITS=64" %configure %{__make} %install rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT/etc/env.d + +%{__make} install \ + DESTDIR=$RPM_BUILD_ROOT -install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1} -install ccache $RPM_BUILD_ROOT%{_bindir} -install ccache.1 $RPM_BUILD_ROOT%{_mandir}/man1 +for X in CCACHE_DIR CCACHE_TEMPDIR CCACHE_LOGFILE CCACHE_PATH CCACHE_CC CCACHE_PREFIX \ + CCACHE_DISABLE CCACHE_READONLY CCACHE_CPP2 CCACHE_NOSTATS CCACHE_NLEVELS \ + CCACHE_HARDLINK CCACHE_RECACHE CCACHE_UMASK CCACHE_HASHDIR CCACHE_UNIFY \ + CCACHE_EXTENSION CCACHE_NOHASH_SIZE_MTIME +do + echo "#${X}=\"\"" > $RPM_BUILD_ROOT/etc/env.d/${X} +done -gzip -9nf README +install -d $RPM_BUILD_ROOT{%{_bindir},%{_libdir},/etc/profile.d} +for cc in cc c++ g++ gcc %{_target_cpu}-pld-linux-gcc %{_target_cpu}-pld-linux-g++; do + ln -s ../../bin/%{name} $RPM_BUILD_ROOT%{_libdir}/$cc +done +echo 'export PATH=%{_libdir}:$PATH' > \ + $RPM_BUILD_ROOT/etc/profile.d/%{name}.sh %clean -rm -fr $RPM_BUILD_ROOT +rm -rf $RPM_BUILD_ROOT %files %defattr(644,root,root,755) +%doc AUTHORS.txt MANUAL.txt NEWS.txt README.txt %attr(755,root,root) %{_bindir}/ccache -%{_mandir}/man1/ccache* -%doc *.gz +%{_mandir}/man1/ccache.1.* +%config(noreplace,missingok) %verify(not md5 mtime size) /etc/env.d/CCACHE_* + +%files wrapper +%defattr(644,root,root,755) +%attr(755,root,root) /etc/profile.d/%{name}.sh +%dir %{_libdir} +%attr(755,root,root) %{_libdir}/c++ +%attr(755,root,root) %{_libdir}/cc +%attr(755,root,root) %{_libdir}/g++ +%attr(755,root,root) %{_libdir}/gcc +%attr(755,root,root) %{_libdir}/%{_target_cpu}-pld-linux-g++ +%attr(755,root,root) %{_libdir}/%{_target_cpu}-pld-linux-gcc