From b44144ff38d59c2b0baaed01768dc6860ab92ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Cami?= Date: Wed, 22 Jan 2014 20:36:44 +0100 Subject: [PATCH 01/11] Add HAVE_RULES=yes (#1056733). --- cppcheck.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cppcheck.spec b/cppcheck.spec index 3a7c270..a13c45f 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,6 +1,6 @@ Name: cppcheck Version: 1.63 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages License: GPLv3+ @@ -31,6 +31,7 @@ rm -r externals/tinyxml CXXFLAGS="%{optflags} -DNDEBUG $(pcre-config --cflags)" \ LDFLAGS="$RPM_LD_FLAGS" LIBS=-ltinyxml2 make TINYXML= \ CFGDIR=%{_datadir}/%{name} \ + HAVE_RULES=yes \ DB2MAN=%{_datadir}/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl \ %{?_smp_mflags} all man xsltproc --nonet -o man/manual.html \ @@ -62,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Wed Jan 22 2014 François Cami - 1.63-3 +- Add HAVE_RULES=yes (#1056733). + * Tue Jan 07 2014 Susi Lehtola - 1.63-2 - Include cfg files as well. From c43292a4b2f3c0038b43ae51ac8501cb0e186f71 Mon Sep 17 00:00:00 2001 From: Susi Lehtola Date: Tue, 13 May 2014 01:32:54 +0300 Subject: [PATCH 02/11] Update to 1.65. --- .gitignore | 1 + cppcheck.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index efb772e..499443b 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ cppcheck-1.44.tar.bz2 /cppcheck-1.61.tar.bz2 /cppcheck-1.62.tar.bz2 /cppcheck-1.63.tar.bz2 +/cppcheck-1.65.tar.bz2 diff --git a/cppcheck.spec b/cppcheck.spec index a13c45f..b81add0 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,6 +1,6 @@ Name: cppcheck -Version: 1.63 -Release: 3%{?dist} +Version: 1.65 +Release: 1%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages License: GPLv3+ @@ -63,6 +63,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Tue May 13 2014 Susi Lehtola - 1.65-1 +- Update to 1.65. + * Wed Jan 22 2014 François Cami - 1.63-3 - Add HAVE_RULES=yes (#1056733). diff --git a/sources b/sources index b249d52..4771fc1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -bccd494d20610df0f364577f6eac8bf7 cppcheck-1.63.tar.bz2 +817e2af193d0fb2045be2ace561eb3f2 cppcheck-1.65.tar.bz2 From 284c16370e7eab722e1b6de126acb7d86ab2e1f5 Mon Sep 17 00:00:00 2001 From: Susi Lehtola Date: Sun, 18 May 2014 15:33:50 +0300 Subject: [PATCH 03/11] Necessary modifications to really build. --- cppcheck.spec | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/cppcheck.spec b/cppcheck.spec index b81add0..0d91d99 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -9,7 +9,7 @@ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: pcre-devel -BuildRequires: tinyxml2-devel +BuildRequires: tinyxml2-devel >= 2.1.0 BuildRequires: docbook-style-xsl BuildRequires: libxslt @@ -50,7 +50,14 @@ for f in *; do done %check -make TINYXML= check +# Config is not available in the system-wide directory - delete executables and recompile +find . -name \*.o -delete +CXXFLAGS="%{optflags} -DNDEBUG $(pcre-config --cflags)" \ + LDFLAGS="$RPM_LD_FLAGS" LIBS=-ltinyxml2 make TINYXML= \ + CFGDIR=$(pwd)/cfg \ + HAVE_RULES=yes \ + DB2MAN=%{_datadir}/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl \ + %{?_smp_mflags} check %clean rm -rf %{buildroot} From 84ba41c1eed869a6c9541b08ac41e7b790fb2c6b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 01:02:38 -0500 Subject: [PATCH 04/11] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- cppcheck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cppcheck.spec b/cppcheck.spec index 0d91d99..1a73a39 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,6 +1,6 @@ Name: cppcheck Version: 1.65 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages License: GPLv3+ @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.65-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Tue May 13 2014 Susi Lehtola - 1.65-1 - Update to 1.65. From b46ffee5dcab83b21638fcfb41ce4244c99a6fe9 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sat, 16 Aug 2014 01:26:04 +0000 Subject: [PATCH 05/11] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- cppcheck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cppcheck.spec b/cppcheck.spec index 1a73a39..91bbacb 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,6 +1,6 @@ Name: cppcheck Version: 1.65 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages License: GPLv3+ @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Sat Aug 16 2014 Fedora Release Engineering - 1.65-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.65-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From a2f284c6c730394dfec533f2c085c1f02e82f583 Mon Sep 17 00:00:00 2001 From: Susi Lehtola Date: Sun, 24 Aug 2014 05:38:02 +0200 Subject: [PATCH 06/11] Update to 1.66. --- .gitignore | 1 + cppcheck.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 499443b..89a6f61 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ cppcheck-1.44.tar.bz2 /cppcheck-1.62.tar.bz2 /cppcheck-1.63.tar.bz2 /cppcheck-1.65.tar.bz2 +/cppcheck-1.66.tar.bz2 diff --git a/cppcheck.spec b/cppcheck.spec index 91bbacb..d34a4bf 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,6 +1,6 @@ Name: cppcheck -Version: 1.65 -Release: 3%{?dist} +Version: 1.66 +Release: 1%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages License: GPLv3+ @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Sat Aug 23 2014 Susi Lehtola - 1.66-1 +- Update to 1.66. + * Sat Aug 16 2014 Fedora Release Engineering - 1.65-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index 4771fc1..35bae61 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -817e2af193d0fb2045be2ace561eb3f2 cppcheck-1.65.tar.bz2 +5c93518d8eedf00da6915ed814f90a41 cppcheck-1.66.tar.bz2 From 979c4841e661feacf711952988c1ef1ef3012a45 Mon Sep 17 00:00:00 2001 From: Susi Lehtola Date: Mon, 1 Dec 2014 22:04:29 +0100 Subject: [PATCH 07/11] Update to 1.67. --- .gitignore | 1 + cppcheck.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 89a6f61..629e34c 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ cppcheck-1.44.tar.bz2 /cppcheck-1.63.tar.bz2 /cppcheck-1.65.tar.bz2 /cppcheck-1.66.tar.bz2 +/cppcheck-1.67.tar.bz2 diff --git a/cppcheck.spec b/cppcheck.spec index d34a4bf..e52dd19 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,5 +1,5 @@ Name: cppcheck -Version: 1.66 +Version: 1.67 Release: 1%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Mon Dec 01 2014 Susi Lehtola - 1.67-1 +- Update to 1.67. + * Sat Aug 23 2014 Susi Lehtola - 1.66-1 - Update to 1.66. diff --git a/sources b/sources index 35bae61..b03d3db 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5c93518d8eedf00da6915ed814f90a41 cppcheck-1.66.tar.bz2 +6783e261fc6bd3dbc2fbf2c773363956 cppcheck-1.67.tar.bz2 From 1e71254469e1f6a265532b29bfcc6986e60e4f7a Mon Sep 17 00:00:00 2001 From: Susi Lehtola Date: Sun, 4 Jan 2015 06:28:47 +0100 Subject: [PATCH 08/11] Update to 1.68. --- .gitignore | 1 + cppcheck.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 629e34c..6791541 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ cppcheck-1.44.tar.bz2 /cppcheck-1.65.tar.bz2 /cppcheck-1.66.tar.bz2 /cppcheck-1.67.tar.bz2 +/cppcheck-1.68.tar.bz2 diff --git a/cppcheck.spec b/cppcheck.spec index e52dd19..37a5f92 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,5 +1,5 @@ Name: cppcheck -Version: 1.67 +Version: 1.68 Release: 1%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Sat Jan 03 2015 Susi Lehtola - 1.68-1 +- Update to 1.68. + * Mon Dec 01 2014 Susi Lehtola - 1.67-1 - Update to 1.67. diff --git a/sources b/sources index b03d3db..688c2d4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6783e261fc6bd3dbc2fbf2c773363956 cppcheck-1.67.tar.bz2 +c015195f5d61a542f350269030150708 cppcheck-1.68.tar.bz2 From ec8444fe6e9ec58a005762cd2aedbe64b58aac67 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 13:09:30 +0200 Subject: [PATCH 09/11] Rebuilt for GCC 5 C++11 ABI change --- cppcheck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cppcheck.spec b/cppcheck.spec index 37a5f92..8b33217 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,6 +1,6 @@ Name: cppcheck Version: 1.68 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages License: GPLv3+ @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Sat May 02 2015 Kalev Lember - 1.68-2 +- Rebuilt for GCC 5 C++11 ABI change + * Sat Jan 03 2015 Susi Lehtola - 1.68-1 - Update to 1.68. From 70cab1a0efa52cd3d25f0f743ccfc61388a9c659 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 03:19:29 +0000 Subject: [PATCH 10/11] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- cppcheck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cppcheck.spec b/cppcheck.spec index 8b33217..ee422b5 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,6 +1,6 @@ Name: cppcheck Version: 1.68 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages License: GPLv3+ @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 1.68-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat May 02 2015 Kalev Lember - 1.68-2 - Rebuilt for GCC 5 C++11 ABI change From e4571d418297d05c9f8782a15ee5d0ac22b91825 Mon Sep 17 00:00:00 2001 From: Susi Lehtola Date: Tue, 22 Sep 2015 00:16:18 +0200 Subject: [PATCH 11/11] Update to 1.70 --- .gitignore | 1 + cppcheck.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6791541..6727c08 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ cppcheck-1.44.tar.bz2 /cppcheck-1.66.tar.bz2 /cppcheck-1.67.tar.bz2 /cppcheck-1.68.tar.bz2 +/cppcheck-1.70.tar.bz2 diff --git a/cppcheck.spec b/cppcheck.spec index ee422b5..d6fc544 100644 --- a/cppcheck.spec +++ b/cppcheck.spec @@ -1,6 +1,6 @@ Name: cppcheck -Version: 1.68 -Release: 3%{?dist} +Version: 1.70 +Release: 1%{?dist} Summary: Tool for static C/C++ code analysis Group: Development/Languages License: GPLv3+ @@ -70,6 +70,9 @@ rm -rf %{buildroot} %{_mandir}/man1/cppcheck.1* %changelog +* Mon Sep 21 2015 Susi Lehtola - 1.70-1 +- Update to 1.70. + * Wed Jun 17 2015 Fedora Release Engineering - 1.68-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 688c2d4..feeed8f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c015195f5d61a542f350269030150708 cppcheck-1.68.tar.bz2 +5318e3f0c9024f8bde4f8f5fb1b5b15d cppcheck-1.70.tar.bz2