Fix makefile problem and version numbers
Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
parent
6ec2611fac
commit
3e0c3a4f53
|
@ -55,7 +55,7 @@ import csv # To support generating CSV format
|
||||||
import hashlib
|
import hashlib
|
||||||
# import formatter
|
# import formatter
|
||||||
|
|
||||||
version = "2.0.11"
|
version = "2.0.12"
|
||||||
|
|
||||||
# Program Options - these are the default values.
|
# Program Options - these are the default values.
|
||||||
# TODO: Switch to boolean types where appropriate.
|
# TODO: Switch to boolean types where appropriate.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Name: flawfinder
|
Name: flawfinder
|
||||||
Summary: Examines C/C++ source code for security flaws
|
Summary: Examines C/C++ source code for security flaws
|
||||||
Version: 2.0.11
|
Version: 2.0.12
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
|
|
4
makefile
4
makefile
|
@ -6,7 +6,7 @@
|
||||||
# how to change version numbers.
|
# how to change version numbers.
|
||||||
|
|
||||||
NAME=flawfinder
|
NAME=flawfinder
|
||||||
VERSION=2.0.11
|
VERSION=2.0.12
|
||||||
RPM_VERSION=1
|
RPM_VERSION=1
|
||||||
VERSIONEDNAME=$(NAME)-$(VERSION)
|
VERSIONEDNAME=$(NAME)-$(VERSION)
|
||||||
ARCH=noarch
|
ARCH=noarch
|
||||||
|
@ -112,7 +112,7 @@ distribute: clean flawfinder.pdf flawfinder.ps
|
||||||
# Don't include (out of date) index.html
|
# Don't include (out of date) index.html
|
||||||
rm -f ,tempdir/index.html
|
rm -f ,tempdir/index.html
|
||||||
tar cvfz flawfinder-$(VERSION).tar.gz flawfinder-$(VERSION)
|
tar cvfz flawfinder-$(VERSION).tar.gz flawfinder-$(VERSION)
|
||||||
chown --reference=. flawfinder-$(VERSION).tar.gz
|
chmod ugo+r flawfinder-$(VERSION).tar.gz
|
||||||
rm -fr flawfinder-$(VERSION)
|
rm -fr flawfinder-$(VERSION)
|
||||||
|
|
||||||
dist: distribute
|
dist: distribute
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -9,7 +9,7 @@ from setuptools import setup # Don't need find_packages
|
||||||
|
|
||||||
setup (# Distribution meta-data
|
setup (# Distribution meta-data
|
||||||
name = "flawfinder",
|
name = "flawfinder",
|
||||||
version = "2.0.11",
|
version = "2.0.12",
|
||||||
# We install a script, not a separate package.
|
# We install a script, not a separate package.
|
||||||
# packages = ["flawfinder"], # Must be same as name
|
# packages = ["flawfinder"], # Must be same as name
|
||||||
# Do not need: packages=find_packages(),
|
# Do not need: packages=find_packages(),
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Flawfinder version 2.0.11, (C) 2001-2019 David A. Wheeler.
|
Flawfinder version 2.0.12, (C) 2001-2019 David A. Wheeler.
|
||||||
Showing hits not in test-saved-hitlist-008.txt
|
Showing hits not in test-saved-hitlist-008.txt
|
||||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 222
|
Number of rules (primarily dangerous function names) in C/C++ ruleset: 222
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<body>
|
<body>
|
||||||
<h1>Flawfinder Results</h1>
|
<h1>Flawfinder Results</h1>
|
||||||
Here are the security scan results from
|
Here are the security scan results from
|
||||||
<a href="https://dwheeler.com/flawfinder">Flawfinder version 2.0.11</a>,
|
<a href="https://dwheeler.com/flawfinder">Flawfinder version 2.0.12</a>,
|
||||||
(C) 2001-2019 <a href="https://dwheeler.com">David A. Wheeler</a>.
|
(C) 2001-2019 <a href="https://dwheeler.com">David A. Wheeler</a>.
|
||||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 222
|
Number of rules (primarily dangerous function names) in C/C++ ruleset: 222
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Flawfinder version 2.0.11, (C) 2001-2019 David A. Wheeler.
|
Flawfinder version 2.0.12, (C) 2001-2019 David A. Wheeler.
|
||||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 222
|
Number of rules (primarily dangerous function names) in C/C++ ruleset: 222
|
||||||
Examining test.c
|
Examining test.c
|
||||||
Examining test2.c
|
Examining test2.c
|
||||||
|
|
Loading…
Reference in New Issue