Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package suseconnect-ng for openSUSE:Factory checked in at 2024-02-16 21:41:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/suseconnect-ng (Old) and /work/SRC/openSUSE:Factory/.suseconnect-ng.new.1815 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "suseconnect-ng" Fri Feb 16 21:41:43 2024 rev:22 rq:1146892 version:1.7.0~git2.21ba08e Changes: -------- --- /work/SRC/openSUSE:Factory/suseconnect-ng/suseconnect-ng.changes 2023-08-11 15:55:21.659701125 +0200 +++ /work/SRC/openSUSE:Factory/.suseconnect-ng.new.1815/suseconnect-ng.changes 2024-02-16 21:41:45.764416708 +0100 @@ -1,0 +2,28 @@ +Wed Feb 14 18:28 UTC 2024 - Felix Schnizlein <fschnizl...@suse.com> + +- Update to version 1.7.0~git2.21ba08e + * Allow SUSEConnect on read write transactional systems (bsc#1219425) + +------------------------------------------------------------------- +Tue Jan 18 16:00 UTC 2024 - Thomas Schmidt <tschm...@suse.com> + +- Update to version 1.6.0 + * Disable EULA display for addons (bsc#1218649 and bsc#1217961) + +------------------------------------------------------------------- +Tue Dec 22 08:57:50 UTC 2023 - Miquel Sabate Sola <msab...@suse.com> + +- Update to version 1.5.0 + * Configure docker credentials for registry authentication + * Feature: Support usage from Agama + Cockpit for ALP Micro system registration (bsc#1218364) + * Add --json output option + +------------------------------------------------------------------- +Tue Sep 26 08:57:50 UTC 2023 - Miquel Sabate Sola <msab...@suse.com> + +- Update to version 1.4.0 + * Added EULA display for addons (bsc#1170267) + * Fix zypper argument for auto-agreeing licenses (bsc#1214781) + * Enable building on SLE12 SP5 (jsc#PED-3179) + +------------------------------------------------------------------- Old: ---- connect-ng-1.3.0~git0.ae8ba1e.tar.xz New: ---- connect-ng-1.7.0~git2.21ba08e.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ suseconnect-ng.spec ++++++ --- /var/tmp/diff_new_pack.7mFA9A/_old 2024-02-16 21:41:46.620447593 +0100 +++ /var/tmp/diff_new_pack.7mFA9A/_new 2024-02-16 21:41:46.620447593 +0100 @@ -1,7 +1,7 @@ # # spec file for package suseconnect-ng # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,7 +24,7 @@ Name: suseconnect-ng # the version will get set by the 'set_version' service -Version: 1.3.0~git0.ae8ba1e +Version: 1.7.0~git2.21ba08e Release: 0 URL: https://github.com/SUSE/connect-ng License: LGPL-2.1-or-later @@ -32,14 +32,16 @@ Group: System/Management Source: connect-ng-%{version}.tar.xz Source1: %name-rpmlintrc -BuildRequires: golang-packaging -# use FIPS compliant go version for SLE targets and Leap 15.5+ targets -%if ( 0%{?is_opensuse} == 0 && 0%{?sle_version} ) || ( 0%{?is_opensuse} == 1 && 0%{?sle_version} >= 150500 ) -# temporary until BuildRequires: go-openssl >= 1.16 works -BuildRequires: go1.18-openssl + +# Build against latest golang in Tumbleweed and +# go1.18-openssl on all other distributions +%if 0%{?suse_version} >= 1600 +BuildRequires: golang(API) %else -BuildRequires: go >= 1.16 +BuildRequires: go1.18-openssl %endif + +BuildRequires: golang-packaging BuildRequires: ruby-devel BuildRequires: zypper @@ -144,6 +146,7 @@ install -D -m 644 %_builddir/go/src/%import_path/man/SUSEConnect.8 %buildroot/%_mandir/man8/SUSEConnect.8 install -D -m 644 %_builddir/go/src/%import_path/man/zypper-migration.8 %buildroot/%_mandir/man8/zypper-migration.8 install -D -m 644 %_builddir/go/src/%import_path/man/zypper-search-packages.8 %buildroot/%_mandir/man8/zypper-search-packages.8 +install -D -m 644 %_builddir/go/src/%import_path/SUSEConnect.example %{buildroot}%_sysconfdir/SUSEConnect.example # Install the SUSEConnect --keepalive timer and service. install -D -m 644 %_builddir/go/src/%import_path/suseconnect-keepalive.timer %buildroot/%_unitdir/suseconnect-keepalive.timer @@ -200,6 +203,13 @@ fi %post +# Randomize schedule time for SLES12. SLES12 systemd does not support RandomizedDelaySec. +%if (0%{?sle_version} > 0 && 0%{?sle_version} < 150000) + TIMER_HOUR=$(( RANDOM % 24 )) + TIMER_MINUTE=$(( RANDOM % 60 )) + sed -i '/RandomizedDelaySec*/d' %{_unitdir}/suseconnect-keepalive.timer + sed -i "s/OnCalendar=daily/OnCalendar=*-*-* $TIMER_HOUR:$TIMER_MINUTE:00/" %{_unitdir}/suseconnect-keepalive.timer +%endif %service_add_post suseconnect-keepalive.service suseconnect-keepalive.timer %preun @@ -235,6 +245,7 @@ %_mandir/man5/* %_unitdir/suseconnect-keepalive.service %_unitdir/suseconnect-keepalive.timer +%config %{_sysconfdir}/SUSEConnect.example %files -n libsuseconnect %license LICENSE LICENSE.LGPL ++++++ _service ++++++ --- /var/tmp/diff_new_pack.7mFA9A/_old 2024-02-16 21:41:46.648448604 +0100 +++ /var/tmp/diff_new_pack.7mFA9A/_new 2024-02-16 21:41:46.652448748 +0100 @@ -7,7 +7,7 @@ <service name="tar_scm" mode="manual"> <param name="scm">git</param> <param name="url">https://github.com/SUSE/connect-ng.git</param> - <param name="revision">ae8ba1ea979da277824e8f905114a723ae66def1</param> + <param name="revision">main</param> <param name="version">_auto_</param> <param name="versionformat">@PARENT_TAG@~git@TAG_OFFSET@.%h</param> <param name="filename">connect-ng</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.7mFA9A/_old 2024-02-16 21:41:46.672449470 +0100 +++ /var/tmp/diff_new_pack.7mFA9A/_new 2024-02-16 21:41:46.672449470 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/SUSE/connect-ng.git</param> - <param name="changesrevision">ae8ba1ea979da277824e8f905114a723ae66def1</param></service></servicedata> + <param name="changesrevision">21ba08ee39e18e237d920dba3f66db4faebdf47f</param></service></servicedata> (No newline at EOF) ++++++ connect-ng-1.3.0~git0.ae8ba1e.tar.xz -> connect-ng-1.7.0~git2.21ba08e.tar.xz ++++++ ++++ 2871 lines of diff (skipped)