commit kcov for openSUSE:Factory

2020-09-21 Thread root
Hello community,

here is the log from the commit of package kcov for openSUSE:Factory checked in 
at 2020-09-21 17:46:30

Comparing /work/SRC/openSUSE:Factory/kcov (Old)
 and  /work/SRC/openSUSE:Factory/.kcov.new.4249 (New)


Package is "kcov"

Mon Sep 21 17:46:30 2020 rev:3 rq:835795 version:38

Changes:

--- /work/SRC/openSUSE:Factory/kcov/kcov.changes2019-05-20 
10:29:53.209886641 +0200
+++ /work/SRC/openSUSE:Factory/.kcov.new.4249/kcov.changes  2020-09-21 
17:49:12.313237904 +0200
@@ -1,0 +2,8 @@
+Thu Sep 17 06:41:18 UTC 2020 - Dirk Mueller 
+
+- update to 38:
+  This release fixes a kcov hang on the Aarch64 (ARM64) platform
+  The Cobertura writer now supports the coverage-04.dtd version of the standard
+- remove python3.patch (upstream):
+
+---

Old:

  python3.patch
  v36.tar.gz

New:

  v38.tar.gz



Other differences:
--
++ kcov.spec ++
--- /var/tmp/diff_new_pack.RbijNU/_old  2020-09-21 17:49:17.377242443 +0200
+++ /var/tmp/diff_new_pack.RbijNU/_new  2020-09-21 17:49:17.381242447 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kcov
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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,14 @@
 
 
 Name:   kcov
-Version:36
+Version:38
 Release:0
 Summary:Code coverage tool without special compilation options 
 License:GPL-2.0-only
 Group:  Development/Tools/Other
-Url:https://github.com/SimonKagstrom/kcov
-Source0:https://github.com/SimonKagstrom/kcov/archive/v36.tar.gz 
+URL:https://github.com/SimonKagstrom/kcov
+Source0:
https://github.com/SimonKagstrom/kcov/archive/v%{version}.tar.gz
 Patch0: link_order.patch
-Patch1: python3.patch
-
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-
 BuildRequires:  binutils-devel
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
@@ -47,7 +43,6 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
 # remove LLDB headers bundled for MacOS
 rm -frv external/
 
@@ -65,6 +60,6 @@
 %{_bindir}/*
 %{_mandir}/man1/*
 # ignore ChangeLog and COPYING* files from install
-%exclude /usr/share/doc/kcov
+%exclude %{_datadir}/doc/kcov
 
 %changelog

++ v36.tar.gz -> v38.tar.gz ++
 8383 lines of diff (skipped)




commit kcov for openSUSE:Factory

2019-05-20 Thread root
Hello community,

here is the log from the commit of package kcov for openSUSE:Factory checked in 
at 2019-05-20 10:29:46

Comparing /work/SRC/openSUSE:Factory/kcov (Old)
 and  /work/SRC/openSUSE:Factory/.kcov.new.5148 (New)


Package is "kcov"

Mon May 20 10:29:46 2019 rev:2 rq:704053 version:36

Changes:

--- /work/SRC/openSUSE:Factory/kcov/kcov.changes2019-05-15 
12:33:53.456620829 +0200
+++ /work/SRC/openSUSE:Factory/.kcov.new.5148/kcov.changes  2019-05-20 
10:29:53.209886641 +0200
@@ -1,0 +2,6 @@
+Sat May 18 22:41:29 UTC 2019 - Doug Miller 
+
+- updated to use python3 when compiling via python3.patch which
+  removes python2 need
+
+---

New:

  python3.patch



Other differences:
--
++ kcov.spec ++
--- /var/tmp/diff_new_pack.aCduk5/_old  2019-05-20 10:29:55.473885890 +0200
+++ /var/tmp/diff_new_pack.aCduk5/_new  2019-05-20 10:29:55.473885890 +0200
@@ -12,30 +12,31 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   kcov
 Version:36
-Release:3
+Release:0
 Summary:Code coverage tool without special compilation options 
 License:GPL-2.0-only
 Group:  Development/Tools/Other
 Url:https://github.com/SimonKagstrom/kcov
 Source0:https://github.com/SimonKagstrom/kcov/archive/v36.tar.gz 
 Patch0: link_order.patch
+Patch1: python3.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  binutils-devel
-BuildRequires:  gcc-c++
 BuildRequires:  cmake
+BuildRequires:  gcc-c++
 BuildRequires:  libcurl-devel
 BuildRequires:  libdw-devel
 BuildRequires:  libelf-devel
+BuildRequires:  python3
 BuildRequires:  zlib-devel
-BuildRequires:  python2
 
 %description
 Kcov is a code coverage tester for compiled programs, Python scripts and shell
@@ -46,6 +47,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 # remove LLDB headers bundled for MacOS
 rm -frv external/
 

++ python3.patch ++
diff -Naur kcov-36.orig/src/bin-to-c-source.py kcov-36/src/bin-to-c-source.py
--- kcov-36.orig/src/bin-to-c-source.py 2018-08-23 05:53:41.0 -0500
+++ kcov-36/src/bin-to-c-source.py  2019-05-18 17:37:39.055757588 -0500
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function