Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package SUSEConnect for openSUSE:Factory checked in at 2021-10-29 22:33:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/SUSEConnect (Old) and /work/SRC/openSUSE:Factory/.SUSEConnect.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "SUSEConnect" Fri Oct 29 22:33:07 2021 rev:25 rq:927797 version:0.3.32 Changes: -------- --- /work/SRC/openSUSE:Factory/SUSEConnect/SUSEConnect.changes 2021-07-22 22:43:23.579197260 +0200 +++ /work/SRC/openSUSE:Factory/.SUSEConnect.new.1890/SUSEConnect.changes 2021-10-29 22:33:21.347662235 +0200 @@ -1,0 +2,8 @@ +Wed Oct 27 13:26:23 UTC 2021 - Thomas Schmidt <tschm...@suse.com> + +- Update to 0.3.32 +- Allow --regcode and --instance-data attributes at the same time (jsc#PCT-164) +- Document that 'debug' can also get set in the config file +- --status will also print the subscription name + +------------------------------------------------------------------- @@ -5,0 +14 @@ +- Add subscription name to output of 'SUSEConnect --status' Old: ---- suse-connect-0.3.31.gem New: ---- suse-connect-0.3.32.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ SUSEConnect.spec ++++++ --- /var/tmp/diff_new_pack.ncURKk/_old 2021-10-29 22:33:21.751662387 +0200 +++ /var/tmp/diff_new_pack.ncURKk/_new 2021-10-29 22:33:21.759662390 +0200 @@ -17,7 +17,7 @@ Name: SUSEConnect -Version: 0.3.31 +Version: 0.3.32 Release: 0 %define mod_name suse-connect %define mod_full_name %{mod_name}-%{version} ++++++ SUSEConnect.5 ++++++ --- /var/tmp/diff_new_pack.ncURKk/_old 2021-10-29 22:33:21.803662407 +0200 +++ /var/tmp/diff_new_pack.ncURKk/_new 2021-10-29 22:33:21.803662407 +0200 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "SUSECONNECT" "5" "April 2019" "" "SUSEConnect" +.TH "SUSECONNECT" "5" "October 2021" "" "SUSEConnect" . .SH "NAME" \fBSUSEConnect\fR \- SUSE Customer Center registration tool config file @@ -19,9 +19,6 @@ \fB\-\-\-\fR . .P -\fBregcode: <regcode>\fR -. -.P \fBurl: https://scc\.suse\.com\fR . .P @@ -31,10 +28,10 @@ \fBinsecure: false\fR . .P -Each line of the file specifies a single parameter\. The fields are as follows: +\fBdebug: false\fR . -.IP "\(bu" 4 -regcode: (mandatory) Registration code to use for the base product on the system +.P +Each line of the file specifies a single parameter\. The fields are as follows: . .IP "\(bu" 4 url: (optional) URL of the registration server\. Corresponds to the \-\-url argument to SUSEConnect\. Defaults to https://scc\.suse\.com @@ -45,6 +42,9 @@ .IP "\(bu" 4 insecure: (optional) Do not verify SSL certificates when using https (default: false) . +.IP "\(bu" 4 +debug: (optional) Enable additional debugging output (default: false) +. .IP "" 0 . .SH "AUTHOR" ++++++ SUSEConnect.8 ++++++ --- /var/tmp/diff_new_pack.ncURKk/_old 2021-10-29 22:33:21.831662417 +0200 +++ /var/tmp/diff_new_pack.ncURKk/_new 2021-10-29 22:33:21.835662419 +0200 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "SUSECONNECT" "8" "August 2020" "" "SUSEConnect" +.TH "SUSECONNECT" "8" "February 2021" "" "SUSEConnect" . .SH "NAME" \fBSUSEConnect\fR \- SUSE Customer Center registration tool ++++++ SUSEConnect.example ++++++ --- /var/tmp/diff_new_pack.ncURKk/_old 2021-10-29 22:33:21.859662428 +0200 +++ /var/tmp/diff_new_pack.ncURKk/_new 2021-10-29 22:33:21.859662428 +0200 @@ -12,3 +12,6 @@ ## Do not refresh zypper service when registering (default: false) # no_zypper_refs: false + +## Enable additional debug output (default: false) +# debug: false ++++++ suse-connect-0.3.31.gem -> suse-connect-0.3.32.gem ++++++ Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/suse/connect/cli.rb new/lib/suse/connect/cli.rb --- old/lib/suse/connect/cli.rb 2021-07-21 09:47:02.000000000 +0200 +++ new/lib/suse/connect/cli.rb 2021-10-27 15:33:25.000000000 +0200 @@ -39,9 +39,6 @@ if @config.instance_data_file && @config.url_default? log.error 'Please use --instance-data only in combination with --url pointing to your RMT or SMT server' exit(1) - elsif @config.token && @config.instance_data_file - log.error 'Please use either --regcode or --instance-data' - exit(1) elsif @config.url_default? && !@config.token && !@config.product puts @opts exit(1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/suse/connect/status.rb new/lib/suse/connect/status.rb --- old/lib/suse/connect/status.rb 2021-07-21 09:47:02.000000000 +0200 +++ new/lib/suse/connect/status.rb 2021-10-27 15:33:25.000000000 +0200 @@ -103,6 +103,7 @@ unless product_status.remote_product && product_status.remote_product.free if product_status.related_activation activation = product_status.related_activation + status[:name] = activation.name status[:regcode] = activation.regcode status[:starts_at] = activation.starts_at ? Time.parse(activation.starts_at) : nil status[:expires_at] = activation.expires_at ? Time.parse(activation.expires_at) : nil diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/suse/connect/templates/product_statuses.text.erb new/lib/suse/connect/templates/product_statuses.text.erb --- old/lib/suse/connect/templates/product_statuses.text.erb 2021-07-21 09:47:02.000000000 +0200 +++ new/lib/suse/connect/templates/product_statuses.text.erb 2021-10-27 15:33:25.000000000 +0200 @@ -10,6 +10,7 @@ Subscription: <% activation = product_status.related_activation %> + Name: <%= activation.name %> Regcode: <%= activation.regcode %> Starts at: <%= activation.starts_at ? Time.parse(activation.starts_at) : nil %> Expires at: <%= activation.expires_at ? Time.parse(activation.expires_at) : nil %> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/suse/connect/version.rb new/lib/suse/connect/version.rb --- old/lib/suse/connect/version.rb 2021-07-21 09:47:02.000000000 +0200 +++ new/lib/suse/connect/version.rb 2021-10-27 15:33:25.000000000 +0200 @@ -1,5 +1,5 @@ module SUSE module Connect - VERSION = '0.3.31' + VERSION = '0.3.32' end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2021-07-21 09:47:02.000000000 +0200 +++ new/metadata 2021-10-27 15:33:25.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: suse-connect version: !ruby/object:Gem::Version - version: 0.3.31 + version: 0.3.32 platform: ruby authors: - SUSE Customer Center Team autorequire: bindir: bin cert_chain: [] -date: 2021-07-21 00:00:00.000000000 Z +date: 2021-10-27 00:00:00.000000000 Z dependencies: [] description: This package provides a command line tool and rubygem library for connecting a client system to the SUSE Customer Center. It will connect the system to your @@ -85,7 +85,8 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubygems_version: 3.0.8 +rubyforge_project: +rubygems_version: 2.7.3 signing_key: specification_version: 4 summary: SUSE Connect utility to register a system with the SUSE Customer Center