From 754dbc48634f6dde5aaabe881fbfac906d186321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 30 May 2011 18:25:04 +0300 Subject: [PATCH 1/3] Update to 3.1.5. --- .gitignore | 2 +- ccache.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index d98cc99..9452199 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/ccache-3.1.4.tar.xz +/*.tar.xz diff --git a/ccache.spec b/ccache.spec index c709900..ed80a89 100644 --- a/ccache.spec +++ b/ccache.spec @@ -12,8 +12,8 @@ %global relccache %(%abs2rel %{_bindir}/ccache %{_libdir}/ccache) Name: ccache -Version: 3.1.4 -Release: 4%{?dist} +Version: 3.1.5 +Release: 1%{?dist} Summary: C/C++ compiler cache Group: Development/Tools @@ -142,6 +142,9 @@ getent group ccache >/dev/null || groupadd -r ccache || : %changelog +* Mon May 30 2011 Ville Skyttä - 3.1.5-1 +- Update to 3.1.5. + * Sat Apr 2 2011 Ville Skyttä - 3.1.4-4 - Replace Requires(trigger*) with plain requires to appease rpmbuild >= 4.9. diff --git a/sources b/sources index 98a74bb..64ddef8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6c70a6e2e5da8d957d175343412e494b ccache-3.1.4.tar.xz +b22060dbf5c3c56bf01a92900c0423fb ccache-3.1.5.tar.xz From f443a74f12e24dc3882bcd43827447b8f569541f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 22 Aug 2011 23:42:51 +0300 Subject: [PATCH 2/3] Update to 3.1.6. --- ccache.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ccache.spec b/ccache.spec index ed80a89..0d950ce 100644 --- a/ccache.spec +++ b/ccache.spec @@ -12,7 +12,7 @@ %global relccache %(%abs2rel %{_bindir}/ccache %{_libdir}/ccache) Name: ccache -Version: 3.1.5 +Version: 3.1.6 Release: 1%{?dist} Summary: C/C++ compiler cache @@ -142,6 +142,9 @@ getent group ccache >/dev/null || groupadd -r ccache || : %changelog +* Mon Aug 22 2011 Ville Skyttä - 3.1.6-1 +- Update to 3.1.6. + * Mon May 30 2011 Ville Skyttä - 3.1.5-1 - Update to 3.1.5. diff --git a/sources b/sources index 64ddef8..1ac65ce 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b22060dbf5c3c56bf01a92900c0423fb ccache-3.1.5.tar.xz +4adee18e0e7a767112913c56fdb06792 ccache-3.1.6.tar.xz From 98ad636d9da10cc3a5bddc84c7f316e7aca3db32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sat, 17 Dec 2011 23:58:28 +0200 Subject: [PATCH 3/3] Turn on CCACHE_HASHDIR by default (#759592, Jan Kratochvil). --- ccache.csh.in | 2 ++ ccache.sh.in | 2 ++ ccache.spec | 3 +++ 3 files changed, 7 insertions(+) diff --git a/ccache.csh.in b/ccache.csh.in index 4edbb51..0f58940 100644 --- a/ccache.csh.in +++ b/ccache.csh.in @@ -24,3 +24,5 @@ else if ( $uid != 0 ) then unsetenv CCACHE_HARDLINK endif endif + +setenv CCACHE_HASHDIR diff --git a/ccache.sh.in b/ccache.sh.in index 0ce4d64..29f8303 100644 --- a/ccache.sh.in +++ b/ccache.sh.in @@ -25,3 +25,5 @@ elif [ "${EUID:-}" != 0 ] ; then unset CCACHE_HARDLINK fi fi + +export CCACHE_HASHDIR= diff --git a/ccache.spec b/ccache.spec index 0d950ce..4849d69 100644 --- a/ccache.spec +++ b/ccache.spec @@ -142,6 +142,9 @@ getent group ccache >/dev/null || groupadd -r ccache || : %changelog +* Sun Dec 4 2011 Ville Skyttä - 3.1.6-2 +- Turn on CCACHE_HASHDIR by default (#759592, Jan Kratochvil). + * Mon Aug 22 2011 Ville Skyttä - 3.1.6-1 - Update to 3.1.6.