diff --git a/_service b/_service new file mode 100644 index 0000000..66d3290 --- /dev/null +++ b/_service @@ -0,0 +1,6 @@ + + + yes + + + diff --git a/rypper b/rypper index 61a93a9..091613d 100644 --- a/rypper +++ b/rypper @@ -81,7 +81,7 @@ use warnings; use Getopt::Long; -our $VERSION = '0.22'; +our $VERSION = '0.23'; (my $ME = $0) =~ s,.*/,,; @@ -284,14 +284,18 @@ sub list_repos { } 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"; } } diff --git a/rypper.changes b/rypper.changes index fb06f9d..1a3629a 100644 --- a/rypper.changes +++ b/rypper.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Mon Oct 21 14:33:10 BST 2013 - aspiers@suse.com + +- Update to 0.23 + - remove trailing whitespace from each line +- Add download_files source service +- Add missing COPYING source + ------------------------------------------------------------------- Thu Sep 12 11:11:41 BST 2013 - aspiers@suse.com diff --git a/rypper.spec b/rypper.spec index be2414e..4ad4f62 100644 --- a/rypper.spec +++ b/rypper.spec @@ -15,7 +15,6 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# norootforbuild Name: rypper BuildRequires: perl @@ -24,11 +23,12 @@ Requires: zypper 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