- Update to version 7.18:
* updated configure macros * update config.guess and config.sub OBS-URL: https://build.opensuse.org/package/show/devel:tools/c_count?expand=0&rev=15
This commit is contained in:
parent
bbb743b4c4
commit
1b44619e15
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2a2e1b9b0eb433d5ff4e9091a22ce1a8991b5a3f6bef4dab60456289a21255cf
|
|
||||||
size 106346
|
|
@ -1,8 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
Version: GnuPG v1.4.12 (GNU/Linux)
|
|
||||||
Comment: See http://invisible-island.net/public/public.html for info
|
|
||||||
|
|
||||||
iEYEABECAAYFAlYEniIACgkQcCNT4PfkjttxggCgqYJ6HhB2LGYfJ9pG+1XQhB0i
|
|
||||||
UpMAoNRqYpxgLzSxIcdUrpJNpsNDeErP
|
|
||||||
=oAYz
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
c_count-7.18.tgz
Normal file
3
c_count-7.18.tgz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:25062f376f3c4822b679f770fdfd4b34f8ffe19727f6c1e48dcedc396bc3df45
|
||||||
|
size 107152
|
8
c_count-7.18.tgz.asc
Normal file
8
c_count-7.18.tgz.asc
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
Version: GnuPG v1
|
||||||
|
Comment: See https://invisible-island.net/public/public.html for info
|
||||||
|
|
||||||
|
iEYEABECAAYFAlr2RlsACgkQcCNT4PfkjtsQvQCgo9msAWTUwe9dTT6xHYQMYkbH
|
||||||
|
NFgAoMOXDmktbw2QqF+tWLyM56tCNa4K
|
||||||
|
=Hn17
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 11 08:09:32 UTC 2018 - mpluskal@suse.com
|
||||||
|
|
||||||
|
- Update to version 7.18:
|
||||||
|
* updated configure macros
|
||||||
|
* update config.guess and config.sub
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 5 08:18:46 UTC 2015 - mpluskal@suse.com
|
Thu Nov 5 08:18:46 UTC 2015 - mpluskal@suse.com
|
||||||
|
|
||||||
|
30
c_count.spec
30
c_count.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package c_count
|
# spec file for package c_count
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2012 Pascal Bleser <pascal.bleser@opensuse.org>
|
# Copyright (c) 2012 Pascal Bleser <pascal.bleser@opensuse.org>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -18,45 +18,39 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: c_count
|
Name: c_count
|
||||||
Version: 7.17
|
Version: 7.18
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Source Code Measure Counter for C/C++/Java
|
Summary: Source Code Measure Counter for C/C++/Java
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Tools/Other
|
Group: Development/Tools/Other
|
||||||
Url: http://invisible-island.net/c_count/
|
URL: http://invisible-island.net/c_count/
|
||||||
Source0: ftp://invisible-island.net/c_count/%{name}-%{version}.tgz
|
Source0: ftp://ftp.invisible-island.net/c_count/%{name}-%{version}.tgz
|
||||||
Source1: ftp://invisible-island.net/c_count/%{name}-%{version}.tgz.asc
|
Source1: ftp://ftp.invisible-island.net/c_count/%{name}-%{version}.tgz.asc
|
||||||
Source2: %{name}.keyring
|
Source2: %{name}.keyring
|
||||||
BuildRequires: autoconf
|
|
||||||
BuildRequires: automake
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
c_count counts lines, statements, and other simple measures of C/C++/Java
|
c_count counts lines, statements, and other simple measures of C/C++/Java
|
||||||
source programs. It is not lex/yacc based, and is easily portable to a variety
|
source programs. It is not lex/yacc based, and is easily portable to a
|
||||||
of systems.
|
variety of systems.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -fiv
|
|
||||||
%configure \
|
%configure \
|
||||||
--enable-warnings
|
--enable-warnings
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
%make_install
|
||||||
|
|
||||||
%check
|
%check
|
||||||
pushd testing
|
make %{?_smp_mflags} check
|
||||||
./run_test.sh
|
|
||||||
popd #testing
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%license COPYING
|
||||||
%doc COPYING CHANGES README
|
%doc CHANGES README
|
||||||
%{_bindir}/c_count
|
%{_bindir}/c_count
|
||||||
%{_mandir}/man1/c_count.1%{ext_man}
|
%{_mandir}/man1/c_count.1%{?ext_man}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user