commit rypper for openSUSE:Factory

2017-04-13 Thread root
Hello community,

here is the log from the commit of package rypper for openSUSE:Factory checked 
in at 2017-04-13 10:45:22

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


Package is "rypper"

Thu Apr 13 10:45:22 2017 rev:5 rq:487464 version:0.24

Changes:

--- /work/SRC/openSUSE:Factory/rypper/rypper.changes2013-10-29 
09:35:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.rypper.new/rypper.changes   2017-04-13 
10:45:22.518837346 +0200
@@ -1,0 +2,7 @@
+Sun Oct  2 16:49:00 BST 2016 - aspi...@suse.com
+
+- Update to 0.24
+  - Fix parsing of zypper lr -d, which now lists a
+gpg check field
+
+---



Other differences:
--
++ rypper.spec ++
--- /var/tmp/diff_new_pack.Jn1cp5/_old  2017-04-13 10:45:23.222737803 +0200
+++ /var/tmp/diff_new_pack.Jn1cp5/_new  2017-04-13 10:45:23.222737803 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rypper
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 Summary:Wrapper around zypper for managing multiple repositories
 License:GPL-3.0+
 Group:  System/Packages
-Version:0.23
+Version:0.24
 Release:0
 Url:http://www.adamspiers.org/computing/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ rypper ++
--- /var/tmp/diff_new_pack.Jn1cp5/_old  2017-04-13 10:45:23.282729319 +0200
+++ /var/tmp/diff_new_pack.Jn1cp5/_new  2017-04-13 10:45:23.282729319 +0200
@@ -176,7 +176,7 @@
 
 sub get_repo_ids {
   my (@ids, %repos);
-  my @FIELDS = qw(id alias name enabled refresh priority type uri service);
+  my @FIELDS = qw(id alias name enabled gpg refresh priority type uri service);
   # Thanks to Michal Marek for pointing out that on openSUSE 11.1 at
   # least, zypper's output can sometimes start with a strange escape
   # sequence when localised.  We work-around by setting LC_MESSAGES=C.




commit rypper for openSUSE:Factory

2013-10-29 Thread h_root
Hello community,

here is the log from the commit of package rypper for openSUSE:Factory checked 
in at 2013-10-29 09:35:17

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


Package is "rypper"

Changes:

--- /work/SRC/openSUSE:Factory/rypper/rypper.changes2013-09-12 
18:12:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.rypper.new/rypper.changes   2013-10-29 
09:35:19.0 +0100
@@ -1,0 +2,8 @@
+Mon Oct 21 14:33:10 BST 2013 - aspi...@suse.com
+
+- Update to 0.23
+  - remove trailing whitespace from each line
+- Add download_files source service
+- Add missing COPYING source
+
+---

New:

  _service



Other differences:
--
++ rypper.spec ++
--- /var/tmp/diff_new_pack.Qf5vU5/_old  2013-10-29 09:35:21.0 +0100
+++ /var/tmp/diff_new_pack.Qf5vU5/_new  2013-10-29 09:35:21.0 +0100
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 Name:   rypper
 BuildRequires:  perl
@@ -24,11 +23,12 @@
 Summary:Wrapper around zypper for managing multiple repositories
 License:GPL-3.0+
 Group:  System/Packages
-Version:0.22
-Release:1
+Version:0.23
+Release:0
 Url:http://www.adamspiers.org/computing/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:rypper
+Source0:https://raw.github.com/aspiers/SUSE-dist/master/bin/rypper
+Source1:COPYING
 BuildArch:  noarch
 
 %description

++ _service ++

  
yes
  


++ rypper ++
--- /var/tmp/diff_new_pack.Qf5vU5/_old  2013-10-29 09:35:21.0 +0100
+++ /var/tmp/diff_new_pack.Qf5vU5/_new  2013-10-29 09:35:21.0 +0100
@@ -81,7 +81,7 @@
 
 use Getopt::Long;
 
-our $VERSION = '0.22';
+our $VERSION = '0.23';
 
 (my $ME = $0) =~ s,.*/,,;
 
@@ -284,14 +284,18 @@
   }
   my $delimiter = $l_opts{delimiter} || $DEFAULT_L_DELIMITER;
   my $format = join($delimiter,
-map { get_col_format($_, $widths{$_}) } @cols) . "\n";
+map { get_col_format($_, $widths{$_}) } @cols);
 
   unless ($l_opts{'no-header'}) {
 my $header = sprintf $format, @cols;
-print $header, '-' x length($header), "\n";
+my $divider = '-' x length($header);
+$header =~ s/\s+$//;
+print "$header\n$divider\n";
   }
   foreach my $repo (@repos) {
-printf $format, map { $repo->{$_} } @cols;
+my $line = sprintf $format, map { $repo->{$_} } @cols;
+$line =~ s/\s+$//;
+print $line, "\n";
   }
 }
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org