Update to 1.61.
This commit is contained in:
parent
192c4f2c55
commit
ad51908b51
1
.gitignore
vendored
1
.gitignore
vendored
@ -16,3 +16,4 @@ cppcheck-1.44.tar.bz2
|
|||||||
/cppcheck-1.58.tar.bz2
|
/cppcheck-1.58.tar.bz2
|
||||||
/cppcheck-1.59.tar.bz2
|
/cppcheck-1.59.tar.bz2
|
||||||
/cppcheck-1.60.1.tar.bz2
|
/cppcheck-1.60.1.tar.bz2
|
||||||
|
/cppcheck-1.61.tar.bz2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: cppcheck
|
Name: cppcheck
|
||||||
Version: 1.60.1
|
Version: 1.61
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Tool for static C/C++ code analysis
|
Summary: Tool for static C/C++ code analysis
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
@ -9,7 +9,7 @@ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
|
|||||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||||
|
|
||||||
BuildRequires: pcre-devel
|
BuildRequires: pcre-devel
|
||||||
BuildRequires: tinyxml-devel
|
BuildRequires: tinyxml2-devel
|
||||||
BuildRequires: docbook-style-xsl
|
BuildRequires: docbook-style-xsl
|
||||||
BuildRequires: libxslt
|
BuildRequires: libxslt
|
||||||
|
|
||||||
@ -23,14 +23,13 @@ errors in the code (i.e. have zero false positives).
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
# Make sure bundled tinyxml is not used
|
# Make sure bundled tinyxml is not used
|
||||||
rm -r externals/tinyxml
|
rm -r externals/tinyxml
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# TINYXML= prevents use of bundled tinyxml
|
# TINYXML= prevents use of bundled tinyxml
|
||||||
CXXFLAGS="%{optflags} -DNDEBUG $(pcre-config --cflags)" \
|
CXXFLAGS="%{optflags} -DNDEBUG $(pcre-config --cflags)" \
|
||||||
LDFLAGS="$RPM_LD_FLAGS" LIBS=-ltinyxml make TINYXML= \
|
LDFLAGS="$RPM_LD_FLAGS" LIBS=-ltinyxml2 make TINYXML= \
|
||||||
DB2MAN=%{_datadir}/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl \
|
DB2MAN=%{_datadir}/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl \
|
||||||
%{?_smp_mflags} all man
|
%{?_smp_mflags} all man
|
||||||
xsltproc --nonet -o man/manual.html \
|
xsltproc --nonet -o man/manual.html \
|
||||||
@ -55,6 +54,9 @@ rm -rf %{buildroot}
|
|||||||
%{_mandir}/man1/cppcheck.1*
|
%{_mandir}/man1/cppcheck.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Aug 10 2013 Susi Lehtola <jussilehtola@fedoraproject.org> - 1.61-1
|
||||||
|
- Update to 1.61.
|
||||||
|
|
||||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60.1-2
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60.1-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user