commit grc for openSUSE:Factory

2020-02-25 Thread root
Hello community,

here is the log from the commit of package grc for openSUSE:Factory checked in 
at 2020-02-25 16:05:54

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


Package is "grc"

Tue Feb 25 16:05:54 2020 rev:5 rq:778908 version:1.11.3

Changes:

--- /work/SRC/openSUSE:Factory/grc/grc.changes  2017-08-14 12:41:00.567664332 
+0200
+++ /work/SRC/openSUSE:Factory/.grc.new.26092/grc.changes   2020-02-25 
16:06:22.080510785 +0100
@@ -1,0 +2,13 @@
+Tue Feb 25 01:04:16 UTC 2020 - Simon Lees 
+
+- Update to v1.11.3
+  * Some new configs
+* iwconfig
+* lolcat
+* ntpupdate
+* whois
+  * Minor changes to some other configs
+  * --color=auto is now default
+  * Do not colorize if output is not a terminal
+
+---

Old:

  v1.11.1.tar.gz

New:

  v1.11.3.tar.gz



Other differences:
--
++ grc.spec ++
--- /var/tmp/diff_new_pack.JfMUVk/_old  2020-02-25 16:06:23.056512827 +0100
+++ /var/tmp/diff_new_pack.JfMUVk/_new  2020-02-25 16:06:23.060512836 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package grc
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,17 +12,17 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   grc
-Version:1.11.1
+Version:1.11.3
 Release:0
 Summary:Generic colouriser for everything
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  System/Console
-Url:http://kassiopeia.juls.savba.sk/~garabik/software/grc.html
+URL:http://kassiopeia.juls.savba.sk/~garabik/software/grc.html
 Source: 
https://github.com/garabik/grc/archive/v%{version}.tar.gz#/v%{version}.tar.gz
 # https://github.com/simotek/grc-osc-conf
 Source1:conf.osc
@@ -41,6 +41,9 @@
 # Nothing to build.
 
 %install
+# fix wrong wrong-script-interpreter
+find . -name 'grc' -exec sed -i "s|#! %{_bindir}/env 
python3$|#!/usr/bin/python3|" {} +
+find . -name 'grcat' -exec sed -i "s|#! %{_bindir}/env 
python3$|#!/usr/bin/python3|" {} +
 install -Dm 0755 grc %{buildroot}%{_bindir}/grc
 install -Dm 0755 grcat %{buildroot}%{_bindir}/grcat
 install -Dm 0644 grc.conf %{buildroot}%{_sysconfdir}/grc.conf

++ v1.11.1.tar.gz -> v1.11.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grc-1.11.1/_grc new/grc-1.11.3/_grc
--- old/grc-1.11.1/_grc 1970-01-01 01:00:00.0 +0100
+++ new/grc-1.11.3/_grc 2018-04-29 16:12:55.0 +0200
@@ -0,0 +1,25 @@
+#compdef grc
+
+setopt localoptions extended_glob
+
+local environ e cmd
+local -a args
+local -a _comp_priv_prefix
+
+zstyle -a ":completion:${curcontext}:" environ environ
+
+for e in "${environ[@]}"
+do local -x "$e"
+done
+
+args=(
+  '(-e --stderr)'{-e,--stderr}'[redirect stderr; do not automatically redirect 
stdout]'
+  '(-s --stdout)'{-s,--stdout}'[redirect stdout; even with -e/--stderr]'
+  '(-c --config=)'{-c+,--config=-}'[use  as configuration 
file for grcat]:file:_files'
+  '--color=-[colo?urize output]:color:(on off auto)'
+  '(-h --help)'{-h,--help}'[display help message and exit]'
+  '--pty[run command in pseudotermnial (experimental)]'
+  '*::arguments:{ _normal }'
+)
+
+_arguments -s $args
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grc-1.11.1/colourfiles/conf.blkid 
new/grc-1.11.3/colourfiles/conf.blkid
--- old/grc-1.11.1/colourfiles/conf.blkid   2017-05-21 16:46:51.0 
+0200
+++ new/grc-1.11.3/colourfiles/conf.blkid   2018-04-29 16:12:55.0 
+0200
@@ -8,16 +8,24 @@
 ==
 # UUID
 regexp=\sUUID="([^"]+)
-colours=default,blue
+colours=bold yellow,blue
+==
+#UUID_SUB
+regexp=\sUUID_SUB="([^"]+)
+colours=green,bright_green
 ==
 # TYPE
 regexp=TYPE="([^"]+)
-colours=default,cyan
+colours=bold cyan,cyan
 ==
 # LABEL
-regexp=LABEL="([^"]+)
-colours=default,bright_cyan
+regexp=\sLABEL="([^"]+)
+colours=bold bright_cyan,bright_cyan
 ==
+# PARTLABEL
+regexp=\sPARTLABEL="([^"]+)
+colours=bold green,red
 # PARTUUID
 regexp=PARTUUID="([^"]+)
-colours=default,magenta
+colours=green,magenta
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grc-1.11.1/colourfiles/conf.df 

commit grc for openSUSE:Factory

2017-08-14 Thread root
Hello community,

here is the log from the commit of package grc for openSUSE:Factory checked in 
at 2017-08-14 12:40:57

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


Package is "grc"

Mon Aug 14 12:40:57 2017 rev:4 rq:516731 version:1.11.1

Changes:

--- /work/SRC/openSUSE:Factory/grc/grc.changes  2017-05-29 22:20:03.636508500 
+0200
+++ /work/SRC/openSUSE:Factory/.grc.new/grc.changes 2017-08-14 
12:41:00.567664332 +0200
@@ -1,0 +2,5 @@
+Thu Aug 10 02:27:19 UTC 2017 - simonf.l...@suse.com
+
+- Update to v1.11.1
+  * better error handling if command is not found
+---

Old:

  grc-1.11.tar.gz

New:

  v1.11.1.tar.gz



Other differences:
--
++ grc.spec ++
--- /var/tmp/diff_new_pack.bjXpTF/_old  2017-08-14 12:41:01.379550319 +0200
+++ /var/tmp/diff_new_pack.bjXpTF/_new  2017-08-14 12:41:01.395548073 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   grc
-Version:1.11
+Version:1.11.1
 Release:0
 Summary:Generic colouriser for everything
 License:GPL-2.0+
 Group:  System/Console
 Url:http://kassiopeia.juls.savba.sk/~garabik/software/grc.html
-Source: 
https://github.com/garabik/grc/archive/v%{version}.tar.gz#/grc-%{version}.tar.gz
+Source: 
https://github.com/garabik/grc/archive/v%{version}.tar.gz#/v%{version}.tar.gz
 # https://github.com/simotek/grc-osc-conf
 Source1:conf.osc
 Patch0: quilt-feature-osc-build.patch




commit grc for openSUSE:Factory

2017-05-29 Thread root
Hello community,

here is the log from the commit of package grc for openSUSE:Factory checked in 
at 2017-05-29 22:20:00

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


Package is "grc"

Mon May 29 22:20:00 2017 rev:3 rq:498840 version:1.11

Changes:

--- /work/SRC/openSUSE:Factory/grc/grc.changes  2016-05-10 09:27:31.0 
+0200
+++ /work/SRC/openSUSE:Factory/.grc.new/grc.changes 2017-05-29 
22:20:03.636508500 +0200
@@ -1,0 +2,5 @@
+Sun May 28 11:33:51 UTC 2017 - sfl...@suse.de
+
+- Updating to version 1.11 
+ 
+---

Old:

  grc-1.9.tar.gz

New:

  grc-1.11.tar.gz



Other differences:
--
++ grc.spec ++
--- /var/tmp/diff_new_pack.LxDHuF/_old  2017-05-29 22:20:05.712215404 +0200
+++ /var/tmp/diff_new_pack.LxDHuF/_new  2017-05-29 22:20:05.716214839 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package grc
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -17,7 +17,7 @@
 
 
 Name:   grc
-Version:1.9
+Version:1.11
 Release:0
 Summary:Generic colouriser for everything
 License:GPL-2.0+
@@ -48,12 +48,12 @@
 install -Dm 0644 grc.1 %{buildroot}%{_mandir}/man1/grc.1
 install -Dm 0644 grcat.1 %{buildroot}%{_mandir}/man1/grcat.1
 mkdir -p %{buildroot}%{_datadir}/grc/
-install -m 0644 conf.* %{buildroot}%{_datadir}/grc/
+install -m 0644 colourfiles/conf.* %{buildroot}%{_datadir}/grc/
 install -m 0644 %{SOURCE1} %{buildroot}%{_datadir}/grc/
 
 %files
 %defattr(-,root,root)
-%doc COPYING CREDITS README TODO Regexp.txt debian/changelog debian/copyright
+%doc COPYING CREDITS README.markdown TODO Regexp.txt debian/changelog 
debian/copyright
 %config(noreplace) %{_sysconfdir}/grc.conf
 %config %{_sysconfdir}/profile.d/grc.bash
 %{_bindir}/grc*

++ grc-1.9.tar.gz -> grc-1.11.tar.gz ++
 5335 lines of diff (skipped)

++ quilt-feature-osc-build.patch ++
--- /var/tmp/diff_new_pack.LxDHuF/_old  2017-05-29 22:20:06.020171919 +0200
+++ /var/tmp/diff_new_pack.LxDHuF/_new  2017-05-29 22:20:06.024171354 +0200
@@ -1,13 +1,12 @@
-Index: ogrc.conf
+Index: grc.conf
 ===
 grc.conf
+--- grc.conf.orig
 +++ grc.conf
-@@ -81,3 +81,8 @@ conf.mount
- # df
- (^|[/\w\.]+/)df\s?
- conf.df
-+
+@@ -1,3 +1,7 @@
 +# osc build
 +(^|[/\w\.]+/)osc (build\s?|bl.?)
 +conf.osc
 +
+ # anything to do with irc
+ \b\w+\b.*irc.*
+ conf.irclog




commit grc for openSUSE:Factory

2016-05-10 Thread h_root
Hello community,

here is the log from the commit of package grc for openSUSE:Factory checked in 
at 2016-05-10 09:27:29

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


Package is "grc"

Changes:

--- /work/SRC/openSUSE:Factory/grc/grc.changes  2016-05-05 08:12:41.0 
+0200
+++ /work/SRC/openSUSE:Factory/.grc.new/grc.changes 2016-05-10 
09:27:31.0 +0200
@@ -1,0 +2,6 @@
+Fri Apr 29 12:15:59 UTC 2016 - jseg...@novell.com
+
+- Changed regexp in quilt-feature-osc-build.patch to also match old
+  buildlogs, not just live builds
+
+---



Other differences:
--
++ quilt-feature-osc-build.patch ++
--- /var/tmp/diff_new_pack.5PLDPq/_old  2016-05-10 09:27:32.0 +0200
+++ /var/tmp/diff_new_pack.5PLDPq/_new  2016-05-10 09:27:32.0 +0200
@@ -8,6 +8,6 @@
  conf.df
 +
 +# osc build
-+(^|[/\w\.]+/)osc build\s?
++(^|[/\w\.]+/)osc (build\s?|bl.?)
 +conf.osc
 +




commit grc for openSUSE:Factory

2016-05-05 Thread h_root
Hello community,

here is the log from the commit of package grc for openSUSE:Factory checked in 
at 2016-05-05 08:12:40

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


Package is "grc"

Changes:

New Changes file:

--- /dev/null   2016-04-07 01:36:33.300037506 +0200
+++ /work/SRC/openSUSE:Factory/.grc.new/grc.changes 2016-05-05 
08:12:41.0 +0200
@@ -0,0 +1,4 @@
+---
+Thu Apr  9 11:11:11 UTC 2015 - sor.ale...@meowr.ru
+
+- Initial package.

New:

  conf.osc
  grc-1.9.tar.gz
  grc.changes
  grc.spec
  quilt-feature-osc-build.patch



Other differences:
--
++ grc.spec ++
#
# spec file for package grc
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:   grc
Version:1.9
Release:0
Summary:Generic colouriser for everything
License:GPL-2.0+
Group:  System/Console
Url:http://kassiopeia.juls.savba.sk/~garabik/software/grc.html
Source: 
https://github.com/garabik/grc/archive/v%{version}.tar.gz#/grc-%{version}.tar.gz
# https://github.com/simotek/grc-osc-conf
Source1:conf.osc
Patch0: quilt-feature-osc-build.patch
BuildArch:  noarch

%description
Generic Colouriser is yet another colouriser for beautifying your
logfiles or commands output.

%prep
%setup -q
%patch0

%build
# Nothing to build.

%install
install -Dm 0755 grc %{buildroot}%{_bindir}/grc
install -Dm 0755 grcat %{buildroot}%{_bindir}/grcat
install -Dm 0644 grc.conf %{buildroot}%{_sysconfdir}/grc.conf
install -Dm 0644 grc.bashrc %{buildroot}%{_sysconfdir}/profile.d/grc.bash
install -Dm 0644 grc.1 %{buildroot}%{_mandir}/man1/grc.1
install -Dm 0644 grcat.1 %{buildroot}%{_mandir}/man1/grcat.1
mkdir -p %{buildroot}%{_datadir}/grc/
install -m 0644 conf.* %{buildroot}%{_datadir}/grc/
install -m 0644 %{SOURCE1} %{buildroot}%{_datadir}/grc/

%files
%defattr(-,root,root)
%doc COPYING CREDITS README TODO Regexp.txt debian/changelog debian/copyright
%config(noreplace) %{_sysconfdir}/grc.conf
%config %{_sysconfdir}/profile.d/grc.bash
%{_bindir}/grc*
%{_datadir}/grc/
%{_mandir}/man?/grc*

%changelog
++ conf.osc ++
#
# The following config file is designed for osc build, it is based off the 
# gcc and configure config files. 
#
# Author: Simon Lees sfl...@suse.de
# Source: https://github.com/simotek/grc-osc-conf
# License: GPL-2.0+
#
# .
#
# From gcc
#
regexp=\sgcc\s
colours=bold blue
count=more
.
#
regexp=^[^:\s]*?:\d+:
colours=bold magenta
.
regexp=^[^:\s]*?:
colours=cyan
count=once
.
#
regexp=\`[A-Za-z0-9_():&*]+( const)?\'
colours=magenta
.
# -O
regexp=\-O\d
colours=green
.
# -o
regexp=\-o\s[^\s]+
colours=bold magenta
.
# warning and error won't work, unless you redirect also
# stderr to grcat
#
# warning
regexp=warning:.*
colours=white
.
regexp=warning:
colours=bold yellow
count=once
.
# error
regexp=error:.*
colours=bold white
.
regexp=error:
colours=bold white on_red
count=once
.
#
# Configure
#
#note
regexp=note:
colours=bold cyan
count=once
.
regexp=^checking
colours=bold blue
.
regexp=\.\.\. .*$
colours=bold blue
.
regexp=\.\.\. yes$
colours=bold cyan
.
regexp=\.\.\. no$
colours=bold red
.
regexp=\.\.\.[ ]
colours=default
.
#
# osc build
#
# Timestamp - take advantage of coming first
regexp=\[
colours= bold black
count=once
.
regexp=\]
colours= bold black
count=once
.
# Timestamp - take advantage of coming first
regexp=[0-9]+s
colours= magenta
count=once
.
regexp=cumulate
colours= bold cyan
.
regexp=Provides:
colours= bold cyan
.
regexp=Requires:
colours= bold blue
.
regexp=Requires\(rpmlib\):
colours= bold blue
.
regexp=cycle:
colours= bold blue
.
regexp=breaking dependency
colours= bold cyan
.
regexp=->
colours= bold magenta
.
regexp=Processing files:
colours= yellow
.
regexp=Executing\(%[A-Za-z]+\):
colours= yellow
.
regexp=Preparing