commit powerstat for openSUSE:Factory

2018-06-07 Thread root
Hello community,

here is the log from the commit of package powerstat for openSUSE:Factory 
checked in at 2018-06-07 19:56:40

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


Package is "powerstat"

Thu Jun  7 19:56:40 2018 rev:5 rq:614061 version:0.02.17

Changes:

--- /work/SRC/openSUSE:Factory/powerstat/powerstat.changes  2018-02-06 
16:51:27.493596345 +0100
+++ /work/SRC/openSUSE:Factory/.powerstat.new/powerstat.changes 2018-06-07 
19:56:44.447576233 +0200
@@ -1,0 +2,23 @@
+Fri Jun  1 19:51:51 UTC 2018 - mar...@gmx.de
+
+- Update to version 0.02.17
+  * Makefile: bump version
+  * voidify returns from log_printf call
+  * Make indices arrays const
+  * Make cpu_freq_scale const
+  * Add hint on how to run if not in "discharge" mode
+  * Add adjustable C-state column width for C-state name column
+  * snapcraft: make confinement strict
+  * snapcraft: add plugs
+
+---
+Sat May 19 08:40:36 UTC 2018 - mar...@gmx.de
+
+- update to version 0.02.16
+  * Makefile: bump version
+  * debian/copyright: use secure https url
+  * debian/control: remove empty last line
+  * update debian/compat to 11
+  * Fix range of CPU frequencies histogram. Scale by 1000 and not 1e9
+
+---

Old:

  powerstat-0.02.15.tar.gz

New:

  powerstat-0.02.17.tar.gz



Other differences:
--
++ powerstat.spec ++
--- /var/tmp/diff_new_pack.6aqFe6/_old  2018-06-07 19:56:45.691530658 +0200
+++ /var/tmp/diff_new_pack.6aqFe6/_new  2018-06-07 19:56:45.695530512 +0200
@@ -18,14 +18,13 @@
 
 
 Name:   powerstat
-Version:0.02.15
+Version:0.02.17
 Release:0
 Summary:Laptop power measuring tool
-License:GPL-2.0
+License:GPL-2.0-only
 Group:  System/Monitoring
-Url:http://kernel.ubuntu.com/~cking/powerstat/
+URL:http://kernel.ubuntu.com/~cking/powerstat/
 Source: 
http://kernel.ubuntu.com/~cking/tarballs/%{name}/%{name}-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Powerstat measures the power consumption of a mobile PC that has a battery
@@ -44,9 +43,8 @@
 %make_install
 
 %files
-%defattr(-,root,root)
-%doc COPYING
+%license COPYING
 %{_bindir}/powerstat
-%{_mandir}/man8/powerstat.8%{ext_man}
+%{_mandir}/man8/powerstat.8%{?ext_man}
 
 %changelog

++ powerstat-0.02.15.tar.gz -> powerstat-0.02.17.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerstat-0.02.15/Makefile 
new/powerstat-0.02.17/Makefile
--- old/powerstat-0.02.15/Makefile  2018-01-31 12:33:29.0 +0100
+++ new/powerstat-0.02.17/Makefile  2018-05-29 14:05:46.0 +0200
@@ -16,7 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
 #
 
-VERSION=0.02.15
+VERSION=0.02.17
 
 CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"'
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/powerstat-0.02.15/powerstat.c 
new/powerstat-0.02.17/powerstat.c
--- old/powerstat-0.02.15/powerstat.c   2018-01-31 12:33:29.0 +0100
+++ new/powerstat-0.02.17/powerstat.c   2018-05-29 14:05:46.0 +0200
@@ -155,7 +155,8 @@
char*suffix;
 } cpu_freq_scale_t;
 
-static cpu_freq_scale_t cpu_freq_scale[] = {
+/* Different freq scaling rates */
+static const cpu_freq_scale_t cpu_freq_scale[] = {
{ 1e1,  1e0,  "Hz" },
{ 1e4,  1e3,  "KHz" },
{ 1e7,  1e6,  "MHz" },
@@ -796,7 +797,7 @@
char buf[4096];
int i, j;
 
-   static stat_type indices[] = {
+   static const stat_type indices[] = {
CPU_USER, CPU_NICE, CPU_SYS, CPU_IDLE,
CPU_IOWAIT, CPU_IRQ, CPU_SOFTIRQ, CPU_CTXT,
CPU_INTR, CPU_PROCS_RUN, CPU_PROCS_BLK, -1
@@ -894,7 +895,7 @@
int i, j;
bool inaccurate = false;
 
-   static int indices[] = {
+   static const int indices[] = {
CPU_USER, CPU_NICE, CPU_SYS, CPU_IDLE,
CPU_IOWAIT, -1
};
@@ -1462,6 +1463,11 @@
return 0;
}
(void)printf("Device is not discharging, cannot measure power 
usage.\n");
+   (void)printf("Perhaps re-run with -z (ignore zero power)"
+#if defined(POWERSTAT_X86)
+" or -R (RAPL)"
+#endif
+"\n");
return -1;
}
 
@@ -2309,6 +2315,7 @@
cpu_state_t *s;
double c0_percent = 100.0;
bool c0 = false;
+   int name_wi

commit octave for openSUSE:Factory

2018-06-07 Thread root
Hello community,

here is the log from the commit of package octave for openSUSE:Factory checked 
in at 2018-06-07 15:29:16

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


Package is "octave"

Thu Jun  7 15:29:16 2018 rev:56 rq:614262 version:4.4.0

Changes:

--- /work/SRC/openSUSE:Factory/octave/octave.changes2018-05-29 
10:32:55.211072719 +0200
+++ /work/SRC/openSUSE:Factory/.octave.new/octave.changes   2018-06-07 
15:29:22.23024 +0200
@@ -1,0 +2,6 @@
+Mon Jun  4 12:26:52 UTC 2018 - christo...@krop.fr
+
+- Add Fix-build-with-Qt-511.patch.
+- Use %license for license files
+
+---

New:

  Fix-build-with-Qt-511.patch



Other differences:
--
++ octave.spec ++
--- /var/tmp/diff_new_pack.bLLuDg/_old  2018-06-07 15:29:23.672378089 +0200
+++ /var/tmp/diff_new_pack.bLLuDg/_new  2018-06-07 15:29:23.676377942 +0200
@@ -67,6 +67,8 @@
 Source: ftp://ftp.gnu.org/gnu/octave/%{name}-%{src_ver}.tar.lz
 Source2:octave.pc.in
 Source3:octave.macros
+# PATCH-FIX-UPSTREAM -- Fix-build-with-Qt-511.patch Add a missing include
+Patch0: Fix-build-with-Qt-511.patch
 BuildRequires:  arpack-ng-devel
 BuildRequires:  bison
 %if 0%{?with_openblas}
@@ -231,6 +233,7 @@
 
 %prep
 %setup -q -n %{name}-%{src_ver}
+%patch0 -p1
 
 # define octave_blas macros
 %if 0%{?with_openblas}
@@ -329,8 +332,8 @@
 %install_info_delete --info-dir=%{_infodir} %{_infodir}/octave.info.gz
 
 %files
-%defattr(-,root,root,-)
-%doc AUTHORS BUGS COPYING NEWS
+%license COPYING
+%doc AUTHORS BUGS  NEWS
 %doc README ChangeLog
 %if 0%{?with_gui}
 %{_libdir}/%{name}/%{src_ver}/exec/*-*-linux-gnu*/octave-gui
@@ -345,7 +348,6 @@
 %endif
 
 %files cli
-%defattr(-,root,root)
 %{_bindir}/octave
 %{_bindir}/octave-%{src_ver}
 %{_bindir}/octave-cli
@@ -379,7 +381,6 @@
 %{_libdir}/%{name}/site
 
 %files devel
-%defattr(-,root,root)
 %{_bindir}/mkoctfile
 %{_bindir}/mkoctfile-%{src_ver}
 %if 0%{?with_doc}
@@ -392,7 +393,6 @@
 %config %{_sysconfdir}/rpm/macros.octave
 
 %files doc
-%defattr(-,root,root)
 %doc doc/interpreter/octave.pdf
 %doc doc/liboctave/liboctave.pdf
 %doc doc/refcard/refcard-a4.pdf

++ Fix-build-with-Qt-511.patch ++
changeset:   25410:cdaa884568b1
branch:  stable
parent:  25394:9e39a53b4e00
user:Mike Miller 
date:Thu May 24 19:20:35 2018 -0700
summary: add Qt include needed to build against Qt 5.11 (bug #53978)

diff -r 9e39a53b4e00 -r cdaa884568b1 libgui/src/settings-dialog.cc
--- a/libgui/src/settings-dialog.cc Fri May 18 19:26:41 2018 -0400
+++ b/libgui/src/settings-dialog.cc Thu May 24 19:20:35 2018 -0700
@@ -34,6 +34,8 @@
 #include "workspace-model.h"
 #include "settings-dialog.h"
 #include "ui-settings-dialog.h"
+
+#include 
 #include 
 #include 
 #include 





commit 000product for openSUSE:Factory

2018-06-07 Thread root
Hello community,

here is the log from the commit of package 000product for openSUSE:Factory 
checked in at 2018-06-07 15:18:08

Comparing /work/SRC/openSUSE:Factory/000product (Old)
 and  /work/SRC/openSUSE:Factory/.000product.new (New)


Package is "000product"

Thu Jun  7 15:18:08 2018 rev:261 rq: version:unknown

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
_service:product_converter:openSUSE-Addon-NonOss-ftp-ftp-i586_x86_64.kiwi: same 
change
_service:product_converter:openSUSE-Addon-NonOss-release.spec: same change
++ 
_service:product_converter:openSUSE-Tumbleweed-Kubic-dvd5-dvd-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.vIMc1v/_old  2018-06-07 15:18:44.107786023 +0200
+++ /var/tmp/diff_new_pack.vIMc1v/_new  2018-06-07 15:18:44.107786023 +0200
@@ -1,4 +1,4 @@
-
+
   
 The SUSE Team
 bu...@opensuse.org
@@ -35,9 +35,9 @@
   true
   -x -2
   openSUSE
-  20180605
+  20180606
   11
-  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180605,openSUSE 
Tumbleweed Kubic
+  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180606,openSUSE 
Tumbleweed Kubic
   en_US 
   openSUSE
   /usr/share/kiwi/modules/plugins/suse-tumbleweed

++ _service:product_converter:openSUSE-Tumbleweed-Kubic-release.spec ++
--- /var/tmp/diff_new_pack.vIMc1v/_old  2018-06-07 15:18:44.143784705 +0200
+++ /var/tmp/diff_new_pack.vIMc1v/_new  2018-06-07 15:18:44.147784559 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   openSUSE-Tumbleweed-Kubic-release
-Version:20180605
+Version:20180606
 Release:0
 Summary:openSUSE Tumbleweed Kubic 
 License:GPL-2.0-or-later
@@ -38,9 +38,9 @@
 ExclusiveArch:  %ix86 x86_64 ppc64le s390x aarch64
 Provides:   %name-%version
 Provides:   product() = openSUSE-Tumbleweed-Kubic
-Provides:   product(openSUSE-Tumbleweed-Kubic) = 20180605-0
+Provides:   product(openSUSE-Tumbleweed-Kubic) = 20180606-0
 Provides:   product-label() = openSUSE%20Tumbleweed%20Kubic
-Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dtumbleweed%2Dkubic%3A20180605
+Provides:   product-cpeid() = 
cpe%3A%2Fo%3Aopensuse%3Aopensuse%2Dtumbleweed%2Dkubic%3A20180606
 Provides:   product-url(releasenotes) = 
http%3A%2F%2Fdoc.opensuse.org%2Frelease%2Dnotes%2Fx86_64%2FopenSUSE%2FTumbleweed%2Frelease%2Dnotes%2DopenSUSE.rpm
 Provides:   product-endoflife()
 Requires:   product_flavor(openSUSE-Tumbleweed-Kubic)
@@ -61,7 +61,7 @@
 Group:  System/Fhs
 Provides:   product_flavor()
 Provides:   flavor(dvd)
-Provides:   product_flavor(openSUSE-Tumbleweed-Kubic) = 20180605-0
+Provides:   product_flavor(openSUSE-Tumbleweed-Kubic) = 20180606-0
 Summary:openSUSE Tumbleweed Kubic
 
 %description dvd
@@ -85,9 +85,9 @@
 
 %install
 mkdir -p %{buildroot}%{_sysconfdir}
-mkdir -p %{buildroot}%{_prefix}/lib/issue.d
-echo -e "\nWelcome to openSUSE Tumbleweed Kubic (%{_target_cpu}) - Kernel \\\r 
(\\\l).\n" > %{buildroot}%{_prefix}/lib/issue.d/10-OS
-echo -e "\n" > %{buildroot}%{_prefix}/lib/issue.d/90-OS
+mkdir -p %{buildroot}%{_libexecdir}/issue.d
+echo -e "\nWelcome to openSUSE Tumbleweed Kubic (%{_target_cpu}) - Kernel \\\r 
(\\\l).\n" > %{buildroot}%{_libexecdir}/issue.d/10-OS
+echo -e "\n" > %{buildroot}%{_libexecdir}/issue.d/90-OS
 
 touch %{buildroot}%{_sysconfdir}/motd
 
@@ -96,14 +96,14 @@
 cd %{buildroot}/%{_sysconfdir}/YaST2/licenses/base
 if [ -f /CD1/license.tar.gz ]; then
   tar -xzf /CD1/license.tar.gz
-elif [ -f %{_prefix}/lib/skelcd/CD1/license.tar.gz ]; then
-  tar -xzf %{_prefix}/lib/skelcd/CD1/license.tar.gz
+elif [ -f %{_libexecdir}/skelcd/CD1/license.tar.gz ]; then
+  tar -xzf %{_libexecdir}/skelcd/CD1/license.tar.gz
 fi
 
 VERSION_ID=`echo %{version}|tr '[:upper:]' '[:lower:]'|sed -e 's/ //g;'`
 # note: VERSION is an optional field and has no meaning other than informative 
on a rolling distro
 # We do thus not add it to the os-release file
-cat > %{buildroot}%{_prefix}/lib/os-release < %{buildroot}%{_libexecdir}/os-release $RPM_BUILD_ROOT/etc/products.d/openSUSE-Tumbleweed-Kubic.prod << EOF
@@ -123,11 +123,11 @@
 
   openSUSE
   openSUSE-Tumbleweed-Kubic
-  20180605
+  20180606
   0
   
   %{_target_cpu}
-  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180605
+  cpe:/o:opensuse:opensuse-tumbleweed-kubic:20180606
   openSUSE-Tumbleweed-Kubic
   
 
@@ -179,7 +179,7 @@
 %files
 %defattr(644,root,root,755)
 %{_sysconfdir}/os-release
-%{_pr

commit kernel-source for openSUSE:Factory

2018-06-07 Thread root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2018-06-07 15:16:15

Comparing /work/SRC/openSUSE:Factory/kernel-source (Old)
 and  /work/SRC/openSUSE:Factory/.kernel-source.new (New)


Package is "kernel-source"

Thu Jun  7 15:16:15 2018 rev:432 rq: version:4.16.12

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/dtb-aarch64.changes
2018-06-03 12:32:49.403618346 +0200
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/dtb-aarch64.changes   
2018-06-07 15:16:24.832884614 +0200
@@ -2,453 +1,0 @@
-Thu May 31 07:56:10 CEST 2018 - jsl...@suse.cz
-
-- Linux 4.16.13 (bnc#1012628).
-- drm/vmwgfx: Set dmabuf_size when vmw_dmabuf_init is successful
-  (bnc#1012628).
-- kdb: make "mdr" command repeat (bnc#1012628).
-- pinctrl: mcp23s08: spi: Fix regmap debugfs entries
-  (bnc#1012628).
-- pinctrl: msm: Use dynamic GPIO numbering (bnc#1012628).
-- regulator: of: Add a missing 'of_node_put()' in an error
-  handling path of 'of_regulator_match()' (bnc#1012628).
-- ARM: dts: porter: Fix HDMI output routing (bnc#1012628).
-- ARM: dts: imx7d: cl-som-imx7: fix pinctrl_enet (bnc#1012628).
-- i40e: Add delay after EMP reset for firmware to recover
-  (bnc#1012628).
-- soc: amlogic: meson-gx-pwrc-vpu: fix error on shutdown when
-  domain is powered off (bnc#1012628).
-- regmap: Correct comparison in regmap_cached (bnc#1012628).
-- ARM: dts: at91: tse850: use the correct compatible for the
-  eeprom (bnc#1012628).
-- ARM: dts: at91: nattis: use the correct compatible for the
-  eeprom (bnc#1012628).
-- selftests: Add FIB onlink tests (bnc#1012628).
-- drm: rcar-du: lvds: Fix LVDS startup on R-Car Gen2
-  (bnc#1012628).
-- drm: rcar-du: lvds: Fix LVDS startup on R-Car Gen3
-  (bnc#1012628).
-- netlabel: If PF_INET6, check sk_buff ip header version
-  (bnc#1012628).
-- drm/vblank: Data type fixes for 64-bit vblank sequences
-  (bnc#1012628).
-- selftests/net: fixes psock_fanout eBPF test case (bnc#1012628).
-- perf tests: Fix dwarf unwind for stripped binaries
-  (bnc#1012628).
-- perf report: Fix memory corruption in --branch-history mode
-  --branch-history (bnc#1012628).
-- perf tests: Use arch__compare_symbol_names to compare symbols
-  (bnc#1012628).
-- perf report: Fix wrong jump arrow (bnc#1012628).
-- perf test: Fix test case inet_pton to accept inlines
-  (bnc#1012628).
-- x86/apic: Set up through-local-APIC mode on the boot CPU if
-  'noapic' specified (bnc#1012628).
-- drm/rockchip: Respect page offset for PRIME mmap calls
-  (bnc#1012628).
-- soc: renesas: r8a77970-sysc: fix power area parents
-  (bnc#1012628).
-- MIPS: Octeon: Fix logging messages with spurious periods after
-  newlines (bnc#1012628).
-- dpaa_eth: fix pause capability advertisement logic
-  (bnc#1012628).
-- drm/amd/display: Set vsc pack revision when DPCD revision is >=
-  1.2 (bnc#1012628).
-- dt-bindings: display: msm/dsi: Fix the PHY regulator supply
-  props (bnc#1012628).
-- pinctrl: sh-pfc: r8a7796: Fix MOD_SEL register pin assignment
-  for SSI pins group (bnc#1012628).
-- rcu: Call touch_nmi_watchdog() while printing stall warnings
-  (bnc#1012628).
-- net: stmmac: call correct function in
-  stmmac_mac_config_rx_queues_routing() (bnc#1012628).
-- audit: return on memory error to avoid null pointer dereference
-  (bnc#1012628).
-- hwrng: bcm2835 - Handle deferred clock properly (bnc#1012628).
-- PCMCIA / PM: Avoid noirq suspend aborts during suspend-to-idle
-  (bnc#1012628).
-- ARM: dts: bcm283x: Fix pin function of JTAG pins (bnc#1012628).
-- ARM: dts: bcm283x: Fix probing of bcm2835-i2s (bnc#1012628).
-- power: supply: ltc2941-battery-gauge: Fix temperature units
-  (bnc#1012628).
-- sh_eth: fix TSU init on SH7734/R8A7740 (bnc#1012628).
-- ixgbe: prevent ptp_rx_hang from running when in FILTER_ALL mode
-  (bnc#1012628).
-- udf: Provide saner default for invalid uid / gid (bnc#1012628).
-- PCI: Add function 1 DMA alias quirk for Marvell 88SE9220
-  (bnc#1012628).
-- dpaa_eth: fix SG mapping (bnc#1012628).
-- cpufreq: Reorder cpufreq_online() error code path (bnc#1012628).
-- net: stmmac: ensure that the MSS desc is the last desc to set
-  the own bit (bnc#1012628).
-- net: stmmac: ensure that the device has released ownership
-  before reading data (bnc#1012628).
-- ibmvnic: Allocate statistics buffers during probe (bnc#1012628).
-- drm/amdgpu: adjust timeout for ib_ring_tests(v2) (bnc#1012628).
-- drm/amdgpu: disable GFX ring and disable PQ wptr in hw_fini
-  (bnc#1012628).
-- ARM: dts: dra71-evm: Correct evm_sd regulator max voltage
-  (bnc#1012628).
-- drm: omapdrm: dss: Move initialization code from component
-  bind to probe (bnc#1012628).
-- dmaengine: qcom: bam_dma: get num-channels and num-ees from dt
-  (bnc#1012628).
-- vfio-ccw: fence off transport mode (bnc#1012628).
-- pinctrl: artpec6: dt: add mi

commit Test-DVD-x86_64 for openSUSE:Factory

2018-06-07 Thread root
Hello community,

here is the log from the commit of package Test-DVD-x86_64 for openSUSE:Factory 
checked in at 2018-06-07 13:37:14

Comparing /work/SRC/openSUSE:Factory/Test-DVD-x86_64 (Old)
 and  /work/SRC/openSUSE:Factory/.Test-DVD-x86_64.new (New)


Package is "Test-DVD-x86_64"

Thu Jun  7 13:37:14 2018 rev:101 rq: version:Factory

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ PRODUCT-x86_64.kiwi ++
--- /var/tmp/diff_new_pack.uvBWbx/_old  2018-06-07 13:37:17.846018367 +0200
+++ /var/tmp/diff_new_pack.uvBWbx/_new  2018-06-07 13:37:17.846018367 +0200
@@ -24,18 +24,19 @@
   openSUSE
   dvd
   Test
-  no
+  false
   /
   $DISTNAME-$FLAVOR
+  0
+  openSUSE
   openSUSE
   $VERSION
+  true
   -x -2
   openSUSE
   Factory
   11
-  x86_64 
   openSUSE
-  Test Product for Factory Staging 
Projects
   cs da de en en_GB en_US es fi fr hu it ja nb 
nl pl pt pt_BR ru sv zh zh_CN zh_TW 
   openSUSE
   https://doc.opensuse.org/release-notes/x86_64/openSUSE/Tumbleweed/release-notes-openSUSE.rpm