forked from pool/cflow
Accepting request 943855 from home:dirkmueller:Factory
- update to 1.7: * Multiple start functions are allowed * New option --target=FUNCTION * New output format: dot The '-f dot' (or '--format=dot') option instructs cflow to output graph as a description in DOT language, suitable as input to graphviz programs. * Bugfixes: ** CVE-2019-16165 ** CVE-2019-16166 ** Fix parsing of K&R style function declarations ** Improve parsing of typecasts ** Fix recursive call detection OBS-URL: https://build.opensuse.org/request/show/943855 OBS-URL: https://build.opensuse.org/package/show/devel:tools/cflow?expand=0&rev=11
This commit is contained in:
parent
ee5058e0a3
commit
33a0ebf1f6
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d5392a6d8a63ba2f41df9f88b51f97bc0452c5262762a3c27e0412a6c03c06db
|
||||
size 679760
|
@ -1,7 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iG4EABECAC4WIQQyX2UMTCtq1YgHMno2ArB/VdDHMgUCXHE+ABAcZ3JheUBnbnUu
|
||||
b3JnLnVhAAoJEDYCsH9V0Mcy04IAmQFBY7G34UIk5jeQAYn/V2N4LE32AJ49H3gJ
|
||||
Yl3v9eYZU8I1F29ytw2UeQ==
|
||||
=XWT/
|
||||
-----END PGP SIGNATURE-----
|
3
cflow-1.7.tar.xz
Normal file
3
cflow-1.7.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9e278b10ea420a1ab7ecccd8335fc31fb1921e91ab99d77e33df0729e19dca3b
|
||||
size 727604
|
7
cflow-1.7.tar.xz.sig
Normal file
7
cflow-1.7.tar.xz.sig
Normal file
@ -0,0 +1,7 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1
|
||||
|
||||
iEYEABECAAYFAmHNhqUACgkQNgKwf1XQxzIkGQCdFUiRA89EbITvf2oto/hZ+Rg1
|
||||
I38AoJ/zElXjUJzAKKiUvMFM4pJyrjX/
|
||||
=U5qY
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 4 21:52:10 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.7:
|
||||
* Multiple start functions are allowed
|
||||
* New option --target=FUNCTION
|
||||
* New output format: dot
|
||||
The '-f dot' (or '--format=dot') option instructs cflow to output
|
||||
graph as a description in DOT language, suitable as input to graphviz
|
||||
programs.
|
||||
* Bugfixes:
|
||||
** CVE-2019-16165
|
||||
** CVE-2019-16166
|
||||
** Fix parsing of K&R style function declarations
|
||||
** Improve parsing of typecasts
|
||||
** Fix recursive call detection
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 19 09:26:16 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
|
16
cflow.spec
16
cflow.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cflow
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,18 +17,18 @@
|
||||
|
||||
|
||||
Name: cflow
|
||||
Version: 1.6
|
||||
Version: 1.7
|
||||
Release: 0
|
||||
Summary: Tool to generate flowcharts for C sources
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Tools/Other
|
||||
URL: http://www.gnu.org/software/cflow
|
||||
Source0: https://ftp.gnu.org/gnu/cflow/cflow-1.6.tar.xz
|
||||
Source1: https://ftp.gnu.org/gnu/cflow/cflow-1.6.tar.xz.sig
|
||||
URL: https://www.gnu.org/software/cflow
|
||||
Source0: https://ftp.gnu.org/gnu/cflow/cflow-%{version}.tar.xz
|
||||
Source1: https://ftp.gnu.org/gnu/cflow/cflow-%{version}.tar.xz.sig
|
||||
Source2: %{name}.keyring
|
||||
BuildRequires: flex
|
||||
Requires(post): %{install_info_prereq}
|
||||
Requires(preun): %{install_info_prereq}
|
||||
Requires(preun):%{install_info_prereq}
|
||||
|
||||
%description
|
||||
GNU cflow analyzes a collection of C source files and prints a graph, charting
|
||||
@ -43,10 +43,10 @@ files can optionally be preprocessed before analyzing.
|
||||
%build
|
||||
%configure \
|
||||
--disable-silent-rules
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%check
|
||||
make %{?_smp_mflags} check
|
||||
%make_build check
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
Loading…
Reference in New Issue
Block a user