]> git.pld-linux.org Git - packages/ccache.git/commitdiff
- updated to 3.2 auto/th/ccache-3.2-1
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 19 Nov 2014 18:10:22 +0000 (19:10 +0100)
committerJakub Bogusz <qboosh@pld-linux.org>
Wed, 19 Nov 2014 18:10:22 +0000 (19:10 +0100)
- removed outdated nohash_size_mtime patch (compiler upgrade check method is configurable now)

ccache-nohash_size_mtime.patch [deleted file]
ccache.spec

diff --git a/ccache-nohash_size_mtime.patch b/ccache-nohash_size_mtime.patch
deleted file mode 100644 (file)
index b28550a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
---- ccache-3.1/ccache.c~       2010-09-16 19:01:09.000000000 +0200
-+++ ccache-3.1/ccache.c        2010-10-02 18:16:57.670019849 +0200
-@@ -814,8 +814,10 @@
-               /* Do nothing. */
-       } else if (str_eq(compilercheck, "mtime")) {
-               hash_delimiter(hash, "cc_mtime");
--              hash_int(hash, st->st_size);
--              hash_int(hash, st->st_mtime);
-+              if (!getenv("CCACHE_NOHASH_SIZE_MTIME")) {
-+                      hash_int(hash, st->st_size);
-+                      hash_int(hash, st->st_mtime);
-+              }
-       } else if (str_eq(compilercheck, "content") || !allow_command) {
-               hash_delimiter(hash, "cc_content");
-               hash_file(hash, path);
index a2a0f8735109a531c7076e584f5a08bc434b989a..a794f4b4f60db44c83eaf222eab93551731b0031 100644 (file)
@@ -2,13 +2,12 @@ Summary:      Compiler cache
 Summary(pl.UTF-8):     Pamięć podręczna dla kompilatora
 Summary(pt_BR.UTF-8):  Cache para compiladores C/C++
 Name:          ccache
-Version:       3.1.10
+Version:       3.2
 Release:       1
 License:       GPL v3
 Group:         Development/Tools
 Source0:       http://www.samba.org/ftp/ccache/%{name}-%{version}.tar.xz
-# Source0-md5: 20cd43818f84e3208fb4859e9679060e
-Patch0:                %{name}-nohash_size_mtime.patch
+# Source0-md5: 7922ad7b8b44377df78896de8f7b39d1
 URL:           http://ccache.samba.org/
 BuildRequires: automake
 BuildRequires: tar >= 1:1.22
@@ -54,7 +53,6 @@ kompilatora.
 
 %prep
 %setup -q
-%patch0 -p1
 
 # Make sure system zlib is used
 %{__rm} -r zlib
This page took 0.151417 seconds and 4 git commands to generate.