commit the_silver_searcher for openSUSE:Factory

2020-06-11 Thread root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2020-06-11 14:52:24

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


Package is "the_silver_searcher"

Thu Jun 11 14:52:24 2020 rev:14 rq:813414 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2018-08-15 10:35:42.819998450 +0200
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new.3606/the_silver_searcher.changes
2020-06-11 14:52:57.374959360 +0200
@@ -1,0 +2,6 @@
+Wed Jun 10 12:00:30 UTC 2020 - Frederic Crozat 
+
+- Add the_silver_searcher-2.2.0-portabilityfixes.patch to fix
+  build with latest gcc/glibc (gh#ggreer/the_silver_searcher#1377).
+
+---

New:

  the_silver_searcher-2.2.0-portabilityfixes.patch



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.OtVEKi/_old  2020-06-11 14:52:58.934964117 +0200
+++ /var/tmp/diff_new_pack.OtVEKi/_new  2020-06-11 14:52:58.934964117 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package the_silver_searcher
 #
-# Copyright (c) 2018 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,7 +12,7 @@
 # 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/
 #
 
 
@@ -27,6 +27,8 @@
 Source2:http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz.asc
 Source3:%{name}.keyring
 Source4:%{name}.changes
+# PATCH-FIX-UPSTREAM the_silver_searcher-2.2.0-portabilityfixes.patch 
gh#ggreer/the_silver_searcher#1377 -- Fix multiple global symbols definitions
+Patch0: the_silver_searcher-2.2.0-portabilityfixes.patch
 BuildRequires:  pkgconfig >= 0.9.0
 Requires:   bash-completion
 %if 0%{?suse_version} > 1110
@@ -44,6 +46,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure

++ the_silver_searcher-2.2.0-portabilityfixes.patch ++
Index: the_silver_searcher-2.2.0/src/ignore.c
===
--- the_silver_searcher-2.2.0.orig/src/ignore.c 2017-12-31 03:07:51.0 
+0100
+++ the_silver_searcher-2.2.0/src/ignore.c  2020-06-10 14:07:36.570899021 
+0200
@@ -20,6 +20,8 @@
 const int fnmatch_flags = FNM_PATHNAME;
 #endif
 
+ignores *root_ignores;
+
 /* TODO: build a huge-ass list of files we want to ignore by default (build 
cache stuff, pyc files, etc) */
 
 const char *evil_hardcoded_ignore_files[] = {
Index: the_silver_searcher-2.2.0/src/ignore.h
===
--- the_silver_searcher-2.2.0.orig/src/ignore.h 2017-06-04 09:58:06.0 
+0200
+++ the_silver_searcher-2.2.0/src/ignore.h  2020-06-10 14:07:36.570899021 
+0200
@@ -29,7 +29,7 @@
 };
 typedef struct ignores ignores;
 
-ignores *root_ignores;
+extern ignores *root_ignores;
 
 extern const char *evil_hardcoded_ignore_files[];
 extern const char *ignore_pattern_files[];
Index: the_silver_searcher-2.2.0/src/log.c
===
--- the_silver_searcher-2.2.0.orig/src/log.c2017-01-11 08:41:55.0 
+0100
+++ the_silver_searcher-2.2.0/src/log.c 2020-06-10 14:07:36.570899021 +0200
@@ -4,6 +4,7 @@
 #include "log.h"
 #include "util.h"
 
+pthread_mutex_t print_mtx = PTHREAD_MUTEX_INITIALIZER;
 static enum log_level log_threshold = LOG_LEVEL_ERR;
 
 void set_log_level(enum log_level threshold) {
Index: the_silver_searcher-2.2.0/src/log.h
===
--- the_silver_searcher-2.2.0.orig/src/log.h2017-01-11 08:41:55.0 
+0100
+++ the_silver_searcher-2.2.0/src/log.h 2020-06-10 14:07:36.570899021 +0200
@@ -9,7 +9,7 @@
 #include 
 #endif
 
-pthread_mutex_t print_mtx;
+extern pthread_mutex_t print_mtx;
 
 enum log_level {
 LOG_LEVEL_DEBUG = 10,
Index: the_silver_searcher-2.2.0/src/options.c
===
--- the_silver_searcher-2.2.0.orig/src/options.c2018-08-07 
08:36:00.0 +0200
+++ the_silver_searcher-2.2.0/src/options.c 2020-06-10 14:07:36.570899021 
+0200
@@ -20,6 +20,8 @@
 const char *color_match = "\033[30;43m";  /* black with yellow background 
*/
 const char *color_path = "\033[1;32m";

commit the_silver_searcher for openSUSE:Factory

2018-08-15 Thread root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2018-08-15 10:35:02

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


Package is "the_silver_searcher"

Wed Aug 15 10:35:02 2018 rev:13 rq:628891 version:2.2.0

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2017-09-28 12:35:38.781352392 +0200
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2018-08-15 10:35:42.819998450 +0200
@@ -1,0 +2,8 @@
+Mon Aug 13 09:10:41 UTC 2018 - astie...@suse.com
+
+- update to 2.2.0:
+  * Add support for Idris, APL, J, D, TLA+, Isabelle, Coq, jinja2,
+PDB, Naccess, thrift, pug, terraform, devicetree, stata
+  * Updates support for Haskell
+
+---

Old:

  the_silver_searcher-2.1.0.tar.gz
  the_silver_searcher-2.1.0.tar.gz.asc

New:

  the_silver_searcher-2.2.0.tar.gz
  the_silver_searcher-2.2.0.tar.gz.asc



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.o5JMKA/_old  2018-08-15 10:35:44.076000739 +0200
+++ /var/tmp/diff_new_pack.o5JMKA/_new  2018-08-15 10:35:44.076000739 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package the_silver_searcher
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,19 +17,18 @@
 
 
 Name:   the_silver_searcher
-Version:2.1.0
+Version:2.2.0
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0
 Group:  Productivity/File utilities
-Url:https://github.com/ggreer/the_silver_searcher
+URL:https://github.com/ggreer/the_silver_searcher
 Source: http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz
 Source2:http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz.asc
 Source3:%{name}.keyring
 Source4:%{name}.changes
 BuildRequires:  pkgconfig >= 0.9.0
 Requires:   bash-completion
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} > 1110
 BuildRequires:  pkgconfig(liblzma)
 BuildRequires:  pkgconfig(libpcre)
@@ -56,10 +55,10 @@
 mv -v %{buildroot}%{_datadir}/%{name}/completions/ag.bashcomp.sh 
%{buildroot}/%{_sysconfdir}/bash_completion.d/%{name}
 
 %files
-%defattr(-,root,root)
-%doc LICENSE NOTICE README.md
+%license LICENSE
+%doc NOTICE README.md
 %{_bindir}/ag
-%{_mandir}/man1/ag.1%{ext_man}
+%{_mandir}/man1/ag.1%{?ext_man}
 %config %{_sysconfdir}/bash_completion.d/%{name}
 %dir %{_datadir}/zsh
 %dir %{_datadir}/zsh/site-functions

++ the_silver_searcher-2.1.0.tar.gz -> the_silver_searcher-2.2.0.tar.gz 
++
 2821 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/the_silver_searcher-2.1.0/README.md new/the_silver_searcher-2.2.0/README.md
--- old/the_silver_searcher-2.1.0/README.md 2017-08-25 07:45:20.0 
+0200
+++ new/the_silver_searcher-2.2.0/README.md 2018-04-23 02:53:46.0 
+0200
@@ -101,6 +101,10 @@
 * Win32/64
 
   Unofficial daily builds are 
[available](https://github.com/k-takata/the_silver_searcher-win32).
+  
+* Chocolatey
+
+choco install ag
 * MSYS2
 
 pacman -S mingw-w64-{i686,x86_64}-ag
@@ -163,7 +167,7 @@
 
 ### Vim
 
-You can use Ag with [ack.vim][] by adding the following line to your `.vimrc`:
+You can use Ag with [ack.vim](https://github.com/mileszs/ack.vim) by adding 
the following line to your `.vimrc`:
 
 let g:ackprg = 'ag --nogroup --nocolor --column'
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/the_silver_searcher-2.1.0/configure.ac 
new/the_silver_searcher-2.2.0/configure.ac
--- old/the_silver_searcher-2.1.0/configure.ac  2017-08-25 08:16:37.0 
+0200
+++ new/the_silver_searcher-2.2.0/configure.ac  2018-08-07 08:39:48.0 
+0200
@@ -1,6 +1,6 @@
 AC_INIT(
  

commit the_silver_searcher for openSUSE:Factory

2017-09-28 Thread root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2017-09-28 12:35:14

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


Package is "the_silver_searcher"

Thu Sep 28 12:35:14 2017 rev:12 rq:528988 version:2.1.0

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2017-07-24 12:33:21.781553486 +0200
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2017-09-28 12:35:38.781352392 +0200
@@ -1,0 +2,7 @@
+Wed Sep 27 15:35:34 UTC 2017 - astie...@suse.com
+
+- update to 2.1.0:
+  * Make '-A n -B n' act like '-C n' by printing blank lines
+  * Stream decompress zipped files
+
+---

Old:

  the_silver_searcher-2.0.0.tar.gz
  the_silver_searcher-2.0.0.tar.gz.asc

New:

  the_silver_searcher-2.1.0.tar.gz
  the_silver_searcher-2.1.0.tar.gz.asc



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.Nb1GIb/_old  2017-09-28 12:35:39.493252288 +0200
+++ /var/tmp/diff_new_pack.Nb1GIb/_new  2017-09-28 12:35:39.497251726 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   the_silver_searcher
-Version:2.0.0
+Version:2.1.0
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0

++ the_silver_searcher-2.0.0.tar.gz -> the_silver_searcher-2.1.0.tar.gz 
++
 2776 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/the_silver_searcher-2.0.0/Makefile.am 
new/the_silver_searcher-2.1.0/Makefile.am
--- old/the_silver_searcher-2.0.0/Makefile.am   2017-06-03 06:25:51.0 
+0200
+++ new/the_silver_searcher-2.1.0/Makefile.am   2017-06-28 07:10:58.0 
+0200
@@ -1,7 +1,7 @@
 ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
 
 bin_PROGRAMS = ag
-ag_SOURCES = src/ignore.c src/ignore.h src/log.c src/log.h src/options.c 
src/options.h src/print.c src/print_w32.c src/print.h src/scandir.c 
src/scandir.h src/search.c src/search.h src/lang.c src/lang.h src/util.c 
src/util.h src/decompress.c src/decompress.h src/uthash.h src/main.c
+ag_SOURCES = src/ignore.c src/ignore.h src/log.c src/log.h src/options.c 
src/options.h src/print.c src/print_w32.c src/print.h src/scandir.c 
src/scandir.h src/search.c src/search.h src/lang.c src/lang.h src/util.c 
src/util.h src/decompress.c src/decompress.h src/uthash.h src/main.c src/zfile.c
 ag_LDADD = ${PCRE_LIBS} ${LZMA_LIBS} ${ZLIB_LIBS} $(PTHREAD_LIBS)
 
 dist_man_MANS = doc/ag.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/the_silver_searcher-2.0.0/README.md new/the_silver_searcher-2.1.0/README.md
--- old/the_silver_searcher-2.0.0/README.md 2017-06-03 06:25:51.0 
+0200
+++ new/the_silver_searcher-2.1.0/README.md 2017-08-25 07:45:20.0 
+0200
@@ -6,7 +6,7 @@
 
 [![Floobits 
Status](https://floobits.com/ggreer/ag.svg)](https://floobits.com/ggreer/ag/redirect)
 
-[![#ag on 
Freenode](http://img.shields.io/Freenode/%23ag.png)](https://webchat.freenode.net/?channels=ag)
+[![#ag on 
Freenode](https://img.shields.io/badge/Freenode-%23ag-brightgreen.svg)](https://webchat.freenode.net/?channels=ag)
 
 Do you know C? Want to improve ag? [I invite you to pair with 
me](http://geoff.greer.fm/2014/10/13/help-me-get-to-ag-10/).
 
@@ -67,7 +67,7 @@
 yum install epel-release.noarch the_silver_searcher
 * Gentoo
 
-emerge the_silver_searcher
+emerge -a sys-apps/the_silver_searcher
 * Arch
 
 pacman -S the_silver_searcher
@@ -96,9 +96,17 @@
 
 pkg_add the_silver_searcher
 
-### Cygwin
+### Windows
 
-Run the relevant [`setup-*.exe`](https://cygwin.com/install.html), and select 
"the\_silver\_searcher" in the "Utils" category.
+* Win32/64
+
+  Unofficial daily builds are 
[available](https://github.com/k-takata/the_silver_searcher-win32).
+* MSYS2
+
+pacman -S mingw-w64-{i686,x86_64}-ag
+* Cygwin
+
+  Run the relevant [`setup-*.exe`](https://cygwin.com/install.html), and 
select "the\_silver\_searcher" in the "Utils" category.
 
 ## Building from 

commit the_silver_searcher for openSUSE:Factory

2017-07-24 Thread root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2017-07-24 12:33:19

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


Package is "the_silver_searcher"

Mon Jul 24 12:33:19 2017 rev:11 rq:512185 version:2.0.0

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2017-05-27 13:18:51.499320675 +0200
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2017-07-24 12:33:21.781553486 +0200
@@ -1,0 +2,12 @@
+Mon Jul 24 07:37:04 UTC 2017 - astie...@suse.com
+
+- update to 2.0.0:
+  * Added file types: Haxe (hx), JSP tag and fragment files
+  * No longer read from .agignore, .ignore is the canonical file
+  * Add --print-all-files options to print all files searched
+  * Add support for inverting ignore rules (e.g. !blah.txt)
+  * Fix heap buffer overflow when searching an absolute path
+bsc#1050057
+  * documentation updates
+
+---

Old:

  the_silver_searcher-1.0.3.tar.gz
  the_silver_searcher-1.0.3.tar.gz.asc

New:

  the_silver_searcher-2.0.0.tar.gz
  the_silver_searcher-2.0.0.tar.gz.asc



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.TBXrBA/_old  2017-07-24 12:33:22.609436620 +0200
+++ /var/tmp/diff_new_pack.TBXrBA/_new  2017-07-24 12:33:22.613436056 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   the_silver_searcher
-Version:1.0.3
+Version:2.0.0
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0

++ the_silver_searcher-1.0.3.tar.gz -> the_silver_searcher-2.0.0.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-1.0.3/Makefile.am 
new/the_silver_searcher-2.0.0/Makefile.am
--- old/the_silver_searcher-1.0.3/Makefile.am   2017-01-12 18:55:37.0 
+0100
+++ new/the_silver_searcher-2.0.0/Makefile.am   2017-06-03 06:25:51.0 
+0200
@@ -13,6 +13,9 @@
 
 EXTRA_DIST = Makefile.w32 LICENSE NOTICE the_silver_searcher.spec README.md
 
+all:
+   @$(MAKE) ag -r
+
 test: ag
cram -v tests/*.t
 if HAS_CLANG_FORMAT
@@ -27,4 +30,4 @@
 test_fail: ag
cram -v tests/fail/*.t
 
-.PHONY : all test clean
+.PHONY : all clean test test_big test_fail
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-1.0.3/Makefile.in 
new/the_silver_searcher-2.0.0/Makefile.in
--- old/the_silver_searcher-1.0.3/Makefile.in   2017-05-03 08:34:49.0 
+0200
+++ new/the_silver_searcher-2.0.0/Makefile.in   2017-06-04 23:28:53.0 
+0200
@@ -948,6 +948,9 @@
 .PRECIOUS: Makefile
 
 
+all:
+   @$(MAKE) ag -r
+
 test: ag
cram -v tests/*.t
 @HAS_CLANG_FORMAT_TRUE@CLANG_FORMAT=${CLANG_FORMAT} ./format.sh test
@@ -959,7 +962,7 @@
 test_fail: ag
cram -v tests/fail/*.t
 
-.PHONY : all test clean
+.PHONY : all clean test test_big test_fail
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-1.0.3/README.md 
new/the_silver_searcher-2.0.0/README.md
--- old/the_silver_searcher-1.0.3/README.md 2017-01-12 18:55:41.0 
+0100
+++ new/the_silver_searcher-2.0.0/README.md 2017-06-03 06:25:51.0 
+0200
@@ -42,7 +42,7 @@
 
 ## Installing
 
-### MacOS
+### macOS
 
 brew install the_silver_searcher
 
@@ -80,6 +80,10 @@
 
 zypper install the_silver_searcher
 
+* CentOS:
+
+yum install the_silver_searcher
+
 * SUSE Linux Enterprise: Follow [these simple 
instructions](https://software.opensuse.org/download.html?project=utilities=the_silver_searcher).
 
 
@@ -101,7 +105,7 @@
 ### Building master
 
 1. Install dependencies (Automake, pkg-config, PCRE, LZMA):
-* MacOS:
+* macOS:
 
 brew install automake pkg-config pcre xz
 or
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-1.0.3/configure 
new/the_silver_searcher-2.0.0/configure
--- old/the_silver_searcher-1.0.3/configure 2017-05-03 08:34:48.0 
+0200
+++ new/the_silver_searcher-2.0.0/configure 2017-06-04 23:26:10.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for the_silver_searcher 1.0.3.
+# Generated by GNU Autoconf 2.69 

commit the_silver_searcher for openSUSE:Factory

2017-05-27 Thread root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2017-05-27 13:17:48

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


Package is "the_silver_searcher"

Sat May 27 13:17:48 2017 rev:10 rq:498006 version:1.0.3

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2017-01-22 00:21:58.208032218 +0100
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2017-05-27 13:18:51.499320675 +0200
@@ -1,0 +2,7 @@
+Wed May 24 14:27:46 UTC 2017 - astie...@suse.com
+
+- update to 1.0.3:
+  * add log, elm, twig file types
+  * *.js now ignores *.min.js, add .es6 to js file type
+
+---

Old:

  the_silver_searcher-1.0.2.tar.gz
  the_silver_searcher-1.0.2.tar.gz.asc

New:

  the_silver_searcher-1.0.3.tar.gz
  the_silver_searcher-1.0.3.tar.gz.asc



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.zLWBXK/_old  2017-05-27 13:18:52.595165751 +0200
+++ /var/tmp/diff_new_pack.zLWBXK/_new  2017-05-27 13:18:52.595165751 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package the_silver_searcher
 #
-# 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:   the_silver_searcher
-Version:1.0.2
+Version:1.0.3
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0
@@ -51,7 +51,7 @@
 make %{?_smp_mflags}
 
 %install
-make %{?_smp_mflags} DESTDIR=%{buildroot} install
+%make_install
 mkdir -p %{buildroot}/%{_sysconfdir}/bash_completion.d
 mv -v %{buildroot}%{_datadir}/%{name}/completions/ag.bashcomp.sh 
%{buildroot}/%{_sysconfdir}/bash_completion.d/%{name}
 

++ the_silver_searcher-1.0.2.tar.gz -> the_silver_searcher-1.0.3.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-1.0.2/README.md 
new/the_silver_searcher-1.0.3/README.md
--- old/the_silver_searcher-1.0.2/README.md 2016-12-03 22:34:14.0 
+0100
+++ new/the_silver_searcher-1.0.3/README.md 2017-01-12 18:55:41.0 
+0100
@@ -76,6 +76,12 @@
 
 sbopkg -i the_silver_searcher
 
+* openSUSE:
+
+zypper install the_silver_searcher
+
+* SUSE Linux Enterprise: Follow [these simple 
instructions](https://software.opensuse.org/download.html?project=utilities=the_silver_searcher).
+
 
 ### BSD
 
@@ -111,6 +117,10 @@
 
 yum -y groupinstall "Development Tools"
 yum -y install pcre-devel xz-devel
+* openSUSE:
+
+zypper source-install --build-deps-only the_silver_searcher
+
 * Windows: It's complicated. See [this wiki 
page](https://github.com/ggreer/the_silver_searcher/wiki/Windows).
 2. Run the build script (which just runs aclocal, automake, etc):
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-1.0.2/aclocal.m4 
new/the_silver_searcher-1.0.3/aclocal.m4
--- old/the_silver_searcher-1.0.2/aclocal.m42016-12-03 23:41:18.0 
+0100
+++ new/the_silver_searcher-1.0.3/aclocal.m42017-05-03 08:34:47.0 
+0200
@@ -1187,9 +1187,9 @@
 AC_SUBST([am__untar])
 ]) # _AM_PROG_TAR
 
-dnl pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
-dnl serial 11 (pkg-config-0.29.1)
-dnl
+# pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
+# serial 12 (pkg-config-0.29.2)
+
 dnl Copyright © 2004 Scott James Remnant .
 dnl Copyright © 2012-2015 Dan Nicholson 
 dnl
@@ -1230,7 +1230,7 @@
 dnl See the "Since" comment for each macro you use to see what version
 dnl of the macros you require.
 m4_defun([PKG_PREREQ],
-[m4_define([PKG_MACROS_VERSION], [0.29.1])
+[m4_define([PKG_MACROS_VERSION], [0.29.2])
 m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
 [m4_fatal([pkg.m4 version $1 or higher is required but 
]PKG_MACROS_VERSION[ found])])
 ])dnl PKG_PREREQ
@@ -1331,7 +1331,7 @@
 AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
 
 pkg_failed=no
-AC_MSG_CHECKING([for $1])
+AC_MSG_CHECKING([for $2])
 
 _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
 _PKG_CONFIG([$1][_LIBS], [libs], [$2])
@@ -1341,11 +1341,11 @@
 See the pkg-config man page for more details.])
 
 if test $pkg_failed = yes; then
-   

commit the_silver_searcher for openSUSE:Factory

2017-01-21 Thread root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2017-01-22 00:21:56

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


Package is "the_silver_searcher"

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2016-09-30 15:35:33.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2017-01-22 00:21:58.208032218 +0100
@@ -1,0 +2,16 @@
+Mon Dec  5 08:26:41 UTC 2016 - astie...@suse.com
+
+- update to 1.0.2:
+ * updated for platforms other than Linux
+
+---
+Mon Nov 28 09:20:39 UTC 2016 - astie...@suse.com
+
+- update to 1.0.1:
+  * faster substring search
+  * fix context line printing when reading from a pipe
+  * ignore local-domain socket just like named pipes
+  * updates of common file extensions
+  * add zsh completion function 
+
+---

Old:

  the_silver_searcher-0.33.0.tar.gz
  the_silver_searcher-0.33.0.tar.gz.asc

New:

  the_silver_searcher-1.0.2.tar.gz
  the_silver_searcher-1.0.2.tar.gz.asc



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.Q0DSc5/_old  2017-01-22 00:21:59.471853336 +0100
+++ /var/tmp/diff_new_pack.Q0DSc5/_new  2017-01-22 00:21:59.471853336 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   the_silver_searcher
-Version:0.33.0
+Version:1.0.2
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0
@@ -61,5 +61,8 @@
 %{_bindir}/ag
 %{_mandir}/man1/ag.1%{ext_man}
 %config %{_sysconfdir}/bash_completion.d/%{name}
+%dir %{_datadir}/zsh
+%dir %{_datadir}/zsh/site-functions
+%{_datadir}/zsh/site-functions/_the_silver_searcher
 
 %changelog

++ the_silver_searcher-0.33.0.tar.gz -> the_silver_searcher-1.0.2.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.33.0/Makefile.am 
new/the_silver_searcher-1.0.2/Makefile.am
--- old/the_silver_searcher-0.33.0/Makefile.am  2016-05-10 19:39:38.0 
+0200
+++ new/the_silver_searcher-1.0.2/Makefile.am   2016-12-03 21:46:47.0 
+0100
@@ -8,6 +8,8 @@
 
 bashcompdir = $(pkgdatadir)/completions
 dist_bashcomp_DATA = ag.bashcomp.sh
+zshcompdir = $(datadir)/zsh/site-functions
+dist_zshcomp_DATA = _the_silver_searcher
 
 EXTRA_DIST = Makefile.w32 LICENSE NOTICE the_silver_searcher.spec README.md
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.33.0/Makefile.in 
new/the_silver_searcher-1.0.2/Makefile.in
--- old/the_silver_searcher-0.33.0/Makefile.in  2016-09-25 02:22:41.0 
+0200
+++ new/the_silver_searcher-1.0.2/Makefile.in   2016-12-03 23:42:23.0 
+0100
@@ -97,7 +97,8 @@
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
 DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
-   $(am__configure_deps) $(dist_bashcomp_DATA) $(am__DIST_COMMON)
+   $(am__configure_deps) $(dist_bashcomp_DATA) \
+   $(dist_zshcomp_DATA) $(am__DIST_COMMON)
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  configure.lineno config.status.lineno
 mkinstalldirs = $(install_sh) -d
@@ -105,7 +106,7 @@
 CONFIG_CLEAN_FILES = the_silver_searcher.spec
 CONFIG_CLEAN_VPATH_FILES =
 am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" \
-   "$(DESTDIR)$(bashcompdir)"
+   "$(DESTDIR)$(bashcompdir)" "$(DESTDIR)$(zshcompdir)"
 PROGRAMS = $(bin_PROGRAMS)
 am__dirstamp = $(am__leading_dot)dirstamp
 am_ag_OBJECTS = src/ignore.$(OBJEXT) src/log.$(OBJEXT) \
@@ -182,7 +183,7 @@
 man1dir = $(mandir)/man1
 NROFF = nroff
 MANS = $(dist_man_MANS)
-DATA = $(dist_bashcomp_DATA)
+DATA = $(dist_bashcomp_DATA) $(dist_zshcomp_DATA)
 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
 # Read a list of newline-separated strings from the standard input,
 # and print each of them once, without duplicates.  Input order is
@@ -338,6 +339,8 @@
 dist_man_MANS = doc/ag.1
 bashcompdir = $(pkgdatadir)/completions
 dist_bashcomp_DATA = ag.bashcomp.sh
+zshcompdir = $(datadir)/zsh/site-functions
+dist_zshcomp_DATA = _the_silver_searcher
 EXTRA_DIST = Makefile.w32 LICENSE NOTICE the_silver_searcher.spec README.md
 all: all-am
 
@@ -561,6 +564,27 @@
@list='$(dist_bashcomp_DATA)'; test -n "$(bashcompdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \

commit the_silver_searcher for openSUSE:Factory

2016-09-30 Thread h_root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2016-09-30 15:35:17

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


Package is "the_silver_searcher"

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2016-05-19 12:16:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2016-09-30 15:35:33.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 29 09:55:32 UTC 2016 - astie...@suse.com
+
+- update to 0.33.0:
+  * Fix --word-regexp not applying to alternates
+  * The preferred ignore file is .ignore, .agignore is deprecated
+
+---

Old:

  the_silver_searcher-0.32.0.tar.gz
  the_silver_searcher-0.32.0.tar.gz.asc

New:

  the_silver_searcher-0.33.0.tar.gz
  the_silver_searcher-0.33.0.tar.gz.asc



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.nltduY/_old  2016-09-30 15:35:35.0 +0200
+++ /var/tmp/diff_new_pack.nltduY/_new  2016-09-30 15:35:35.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   the_silver_searcher
-Version:0.32.0
+Version:0.33.0
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0
@@ -27,7 +27,7 @@
 Source2:http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz.asc
 Source3:%{name}.keyring
 Source4:%{name}.changes
-BuildRequires:  pkg-config >= 0.9.0
+BuildRequires:  pkgconfig >= 0.9.0
 Requires:   bash-completion
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} > 1110
@@ -51,7 +51,7 @@
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 mkdir -p %{buildroot}/%{_sysconfdir}/bash_completion.d
 mv -v %{buildroot}%{_datadir}/%{name}/completions/ag.bashcomp.sh 
%{buildroot}/%{_sysconfdir}/bash_completion.d/%{name}
 
@@ -59,7 +59,7 @@
 %defattr(-,root,root)
 %doc LICENSE NOTICE README.md
 %{_bindir}/ag
-%{_mandir}/man1/ag.1.gz
+%{_mandir}/man1/ag.1%{ext_man}
 %config %{_sysconfdir}/bash_completion.d/%{name}
 
 %changelog

++ the_silver_searcher-0.32.0.tar.gz -> the_silver_searcher-0.33.0.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.32.0/NOTICE 
new/the_silver_searcher-0.33.0/NOTICE
--- old/the_silver_searcher-0.32.0/NOTICE   2016-05-10 19:39:40.0 
+0200
+++ new/the_silver_searcher-0.33.0/NOTICE   2016-06-23 20:33:43.0 
+0200
@@ -1,2 +1,2 @@
 The Silver Searcher
-Copyright 2011-2014 Geoff Greer
+Copyright 2011-2016 Geoff Greer
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.32.0/README.md 
new/the_silver_searcher-0.33.0/README.md
--- old/the_silver_searcher-0.32.0/README.md2016-05-10 19:39:39.0 
+0200
+++ new/the_silver_searcher-0.33.0/README.md2016-09-24 03:33:26.0 
+0200
@@ -15,7 +15,7 @@
 
 * It is an order of magnitude faster than `ack`.
 * It ignores file patterns from your `.gitignore` and `.hgignore`.
-* If there are files in your source repo you don't want to search, just add 
their patterns to a `.agignore` file. (\*cough\* extern \*cough\*)
+* If there are files in your source repo you don't want to search, just add 
their patterns to a `.ignore` file. (\*cough\* `*.min.js` \*cough\*)
 * The command name is 33% shorter than `ack`, and all keys are on the home row!
 
 Ag is quite stable now. Most changes are new features, minor bug fixes, or 
performance improvements. It's much faster than Ack in my benchmarks:
@@ -64,8 +64,7 @@
 dnf install the_silver_searcher
 * RHEL7+
 
-rpm -Uvh 
http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
-yum install the_silver_searcher
+yum install epel-release.noarch the_silver_searcher
 * Gentoo
 
 emerge the_silver_searcher
@@ -158,7 +157,7 @@
 
 ### Emacs
 
-You can use [ag.el][] as an Emacs fronted to Ag. See also: [helm-ag].
+You can use [ag.el][] as an Emacs front-end to Ag. See also: [helm-ag].
 
 [ag.el]: https://github.com/Wilfred/ag.el
 [helm-ag]: https://github.com/syohex/emacs-helm-ag
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.32.0/ag.bashcomp.sh 
new/the_silver_searcher-0.33.0/ag.bashcomp.sh
--- old/the_silver_searcher-0.32.0/ag.bashcomp.sh   2016-05-10 
19:39:40.0 +0200
+++ 

commit the_silver_searcher for openSUSE:Factory

2016-05-19 Thread h_root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2016-05-19 12:15:31

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


Package is "the_silver_searcher"

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2015-09-24 06:14:42.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2016-05-19 12:16:00.0 +0200
@@ -1,0 +2,8 @@
+Wed May 18 10:32:20 UTC 2016 - idon...@suse.com
+
+- Update to version 0.32.0
+  * Add support for Fish, Chapel, Factor, Kotlin, Julia, TypeScript,
+RDoc, Velocity, RestructuredText, TOML, BitBake, Bro file types.
+  * Various bugfixes.
+
+---

Old:

  the_silver_searcher-0.31.0.tar.gz
  the_silver_searcher-0.31.0.tar.gz.asc

New:

  the_silver_searcher-0.32.0.tar.gz
  the_silver_searcher-0.32.0.tar.gz.asc



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.SMV7Cx/_old  2016-05-19 12:16:01.0 +0200
+++ /var/tmp/diff_new_pack.SMV7Cx/_new  2016-05-19 12:16:01.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package the_silver_searcher
 #
-# Copyright (c) 2015 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
@@ -17,7 +17,7 @@
 
 
 Name:   the_silver_searcher
-Version:0.31.0
+Version:0.32.0
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0

++ the_silver_searcher-0.31.0.tar.gz -> the_silver_searcher-0.32.0.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.31.0/Makefile.am 
new/the_silver_searcher-0.32.0/Makefile.am
--- old/the_silver_searcher-0.31.0/Makefile.am  2015-08-31 10:26:29.0 
+0200
+++ new/the_silver_searcher-0.32.0/Makefile.am  2016-05-10 19:39:38.0 
+0200
@@ -22,4 +22,7 @@
 test_big: ag
cram -v tests/big/*.t
 
+test_fail: ag
+   cram -v tests/fail/*.t
+
 .PHONY : all test clean
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.31.0/Makefile.in 
new/the_silver_searcher-0.32.0/Makefile.in
--- old/the_silver_searcher-0.31.0/Makefile.in  2015-09-07 07:31:07.0 
+0200
+++ new/the_silver_searcher-0.32.0/Makefile.in  2016-05-16 07:15:58.0 
+0200
@@ -930,6 +930,9 @@
 test_big: ag
cram -v tests/big/*.t
 
+test_fail: ag
+   cram -v tests/fail/*.t
+
 .PHONY : all test clean
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.31.0/Makefile.w32 
new/the_silver_searcher-0.32.0/Makefile.w32
--- old/the_silver_searcher-0.31.0/Makefile.w32 2015-08-28 22:32:41.0 
+0200
+++ new/the_silver_searcher-0.32.0/Makefile.w32 2016-05-10 19:39:37.0 
+0200
@@ -1,7 +1,8 @@
-GREP=grep
-VERSION:=$(shell $(GREP) -Po "(?<=\[)([0-9.]+.[0-9]+.[0-9]+)(?=\])" 
configure.ac)
+SED=sed
+VERSION:=$(shell "$(SED)" -n "s/[^[]*\[\([0-9]\+\.[0-9]\+\.[0-9]\+\)\],/\1/p" 
configure.ac)
 
 CC=gcc
+RM=/bin/rm
 
 SRCS = \
src/decompress.c \
@@ -23,11 +24,12 @@
 
 all : $(TARGET)
 
-$(TARGET) : $(OBJS)
+# depend on configure.ac to account for version changes
+$(TARGET) : $(OBJS) configure.ac
$(CC) -o $@ $(OBJS) $(LIBS)
 
 .c.o :
$(CC) -c $(CFLAGS) -Isrc $< -o $@
 
 clean :
-   rm -f src/*.o $(TARGET)
+   $(RM) -f src/*.o $(TARGET)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.31.0/README.md 
new/the_silver_searcher-0.32.0/README.md
--- old/the_silver_searcher-0.31.0/README.md2015-09-01 23:07:51.0 
+0200
+++ new/the_silver_searcher-0.32.0/README.md2016-05-10 19:39:39.0 
+0200
@@ -56,9 +56,12 @@
 * Ubuntu >= 13.10 (Saucy) or Debian >= 8 (Jessie)
 
 apt-get install silversearcher-ag
-* Fedora 19+
+* Fedora 21 and lower
 
 yum install the_silver_searcher
+* Fedora 22+
+
+dnf install the_silver_searcher
 * RHEL7+
 
 rpm -Uvh 
http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
@@ -84,7 +87,9 @@
 
 pkg_add the_silver_searcher
 
+### Cygwin
 
+Run the relevant 

commit the_silver_searcher for openSUSE:Factory

2015-09-23 Thread h_root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2015-09-24 06:14:38

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


Package is "the_silver_searcher"

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2015-05-18 22:21:40.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2015-09-24 06:14:42.0 +0200
@@ -1,0 +2,8 @@
+Sat Sep 19 12:27:24 UTC 2015 - fcro...@suse.com
+
+- Update to version 0.31.0:
+ * Improve bash completion.
+ * Add support for Elixir, Mako, Racket and Standard ML file types.
+ * various bugfixes.
+
+---

Old:

  the_silver_searcher-0.30.0.tar.gz
  the_silver_searcher-0.30.0.tar.gz.asc

New:

  the_silver_searcher-0.31.0.tar.gz
  the_silver_searcher-0.31.0.tar.gz.asc



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.bkem7e/_old  2015-09-24 06:14:43.0 +0200
+++ /var/tmp/diff_new_pack.bkem7e/_new  2015-09-24 06:14:43.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package the_silver_searcher
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products 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:   the_silver_searcher
-Version:0.30.0
+Version:0.31.0
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0

++ the_silver_searcher-0.30.0.tar.gz -> the_silver_searcher-0.31.0.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.30.0/README.md 
new/the_silver_searcher-0.31.0/README.md
--- old/the_silver_searcher-0.30.0/README.md2015-04-22 19:41:53.0 
+0200
+++ new/the_silver_searcher-0.31.0/README.md2015-09-01 23:07:51.0 
+0200
@@ -4,7 +4,7 @@
 
 [![Build 
Status](https://travis-ci.org/ggreer/the_silver_searcher.svg?branch=master)](https://travis-ci.org/ggreer/the_silver_searcher)
 
-[![Floobits 
Status](https://floobits.com/ggreer/ag.png)](https://floobits.com/ggreer/ag/redirect)
+[![Floobits 
Status](https://floobits.com/ggreer/ag.svg)](https://floobits.com/ggreer/ag/redirect)
 
 [![#ag on 
Freenode](http://img.shields.io/Freenode/%23ag.png)](https://webchat.freenode.net/?channels=ag)
 
@@ -122,6 +122,8 @@
 
 ### Building a release tarball
 
+GPG-signed releases are available [here](http://geoff.greer.fm/ag).
+
 Building release tarballs requires the same dependencies, except for automake 
and pkg-config. Once you've installed the dependencies, just run:
 
 ./configure
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/the_silver_searcher-0.30.0/aclocal.m4 
new/the_silver_searcher-0.31.0/aclocal.m4
--- old/the_silver_searcher-0.30.0/aclocal.m4   2015-04-28 13:30:12.0 
+0200
+++ new/the_silver_searcher-0.31.0/aclocal.m4   2015-09-07 07:29:00.0 
+0200
@@ -20,221 +20,6 @@
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically 
'autoreconf'.])])
 
-# pkg.m4 - Macros to locate and utilise pkg-config.-*- Autoconf -*-
-# serial 1 (pkg-config-0.24)
-# 
-# Copyright © 2004 Scott James Remnant .
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-#
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-# PKG_PROG_PKG_CONFIG([MIN-VERSION])
-# 

commit the_silver_searcher for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2015-05-18 22:21:38

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


Package is the_silver_searcher

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2015-01-20 12:38:45.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2015-05-18 22:21:40.0 +0200
@@ -1,0 +2,12 @@
+Fri May 15 23:29:41 UTC 2015 - astie...@suse.com
+
+- update to version 0.30.0:
+  * --one-device option
+  * language types and filter updates
+  * performance improvements
+  * bug fixes
+- use bootstrapped upstream release tarballs, do not re-bootstrap
+- add source signature and signing key
+- update bash completion location
+
+---

Old:

  the_silver_searcher-0.28.0.tar.gz

New:

  the_silver_searcher-0.30.0.tar.gz
  the_silver_searcher-0.30.0.tar.gz.asc
  the_silver_searcher.keyring



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.I78Flc/_old  2015-05-18 22:21:41.0 +0200
+++ /var/tmp/diff_new_pack.I78Flc/_new  2015-05-18 22:21:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package the_silver_searcher
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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,20 +17,28 @@
 
 
 Name:   the_silver_searcher
-Version:0.28.0
+Version:0.30.0
 Release:0
 Summary:A code-searching tool similar to ack, but faster
 License:Apache-2.0
 Group:  Productivity/File utilities
 Url:https://github.com/ggreer/the_silver_searcher
-# url is 
https://github.com/ggreer/the_silver_searcher/archive/%{version}.tar.gz
-Source: %{name}-%{version}.tar.gz
-BuildRequires:  automake
+Source: http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz
+Source2:http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz.asc
+Source3:%{name}.keyring
+Source4:%{name}.changes
+BuildRequires:  pkg-config = 0.9.0
+Requires:   bash-completion
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version}  1110
+BuildRequires:  pkgconfig(liblzma)
+BuildRequires:  pkgconfig(libpcre)
+BuildRequires:  pkgconfig(zlib)
+%else
 BuildRequires:  pcre-devel
-BuildRequires:  pkg-config
 BuildRequires:  xz-devel
 BuildRequires:  zlib-devel
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%endif
 
 %description
 A code searching tool similar to ack, with a focus on speed.
@@ -39,21 +47,19 @@
 %setup -q
 
 %build
-aclocal
-autoconf
-autoheader
-automake --add-missing
 %configure
 make %{?_smp_mflags}
 
 %install
-make install DESTDIR=%{buildroot}
+make DESTDIR=%{buildroot} install %{?_smp_mflags}
+mkdir -p %{buildroot}/%{_sysconfdir}/bash_completion.d
+mv -v %{buildroot}%{_datadir}/%{name}/completions/ag.bashcomp.sh 
%{buildroot}/%{_sysconfdir}/bash_completion.d/%{name}
 
 %files
 %defattr(-,root,root)
+%doc LICENSE NOTICE README.md
 %{_bindir}/ag
 %{_mandir}/man1/ag.1.gz
-%{_datadir}/the_silver_searcher
-%doc LICENSE NOTICE README.md
+%config %{_sysconfdir}/bash_completion.d/%{name}
 
 %changelog

++ the_silver_searcher-0.28.0.tar.gz - the_silver_searcher-0.30.0.tar.gz 
++
 17553 lines of diff (skipped)




commit the_silver_searcher for openSUSE:Factory

2015-01-20 Thread h_root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2015-01-20 12:35:57

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


Package is the_silver_searcher

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2014-02-11 11:03:40.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2015-01-20 12:38:45.0 +0100
@@ -1,0 +2,5 @@
+Mon Jan 12 14:26:05 UTC 2015 - multyre...@gmail.com
+
+- Update to version 0.28.0
+
+---

Old:

  the_silver_searcher-0.19.2.tar.gz

New:

  the_silver_searcher-0.28.0.tar.gz



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.TC42oY/_old  2015-01-20 12:38:46.0 +0100
+++ /var/tmp/diff_new_pack.TC42oY/_new  2015-01-20 12:38:46.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package 
+# spec file for package the_silver_searcher
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,13 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   the_silver_searcher
-Version:0.19.2
+Version:0.28.0
 Release:0
-License:Apache-2.0
 Summary:A code-searching tool similar to ack, but faster
-Url:https://github.com/ggreer/the_silver_searcher
+License:Apache-2.0
 Group:  Productivity/File utilities
+Url:https://github.com/ggreer/the_silver_searcher
 # url is 
https://github.com/ggreer/the_silver_searcher/archive/%{version}.tar.gz
 Source: %{name}-%{version}.tar.gz
 BuildRequires:  automake

++ the_silver_searcher-0.19.2.tar.gz - the_silver_searcher-0.28.0.tar.gz 
++
 7170 lines of diff (skipped)

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



commit the_silver_searcher for openSUSE:Factory

2014-02-11 Thread h_root
Hello community,

here is the log from the commit of package the_silver_searcher for 
openSUSE:Factory checked in at 2014-02-11 11:03:39

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


Package is the_silver_searcher

Changes:

--- /work/SRC/openSUSE:Factory/the_silver_searcher/the_silver_searcher.changes  
2014-02-02 22:24:10.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.the_silver_searcher.new/the_silver_searcher.changes 
2014-02-11 11:03:40.0 +0100
@@ -1,0 +2,16 @@
+Fri Jan 31 14:54:11 UTC 2014 - fcro...@suse.com
+
+- Update to version 0.19.2:
+  + Improve output
+- Changes from 0.19.1:
+  + Don't print two slashes at the start of a path
+- Changes from 0.19.0:
+- Changes from 0.18.1:
+  + performance fixes
+  + fix infinite loop in EOF detection
+  + Handle '-i' before '-g' or '-G' properly
+  + fix build without lzma
+- Switch to .tar.gz as they are generated directly by github.
+- Replace %{_prefix}/data by %{_datadir} in specfile.
+
+---

Old:

  the_silver_searcher-0.18.tar.bz2

New:

  the_silver_searcher-0.19.2.tar.gz



Other differences:
--
++ the_silver_searcher.spec ++
--- /var/tmp/diff_new_pack.R7GZ7W/_old  2014-02-11 11:03:41.0 +0100
+++ /var/tmp/diff_new_pack.R7GZ7W/_new  2014-02-11 11:03:41.0 +0100
@@ -16,13 +16,14 @@
 #
 
 Name:   the_silver_searcher
-Version:0.18
+Version:0.19.2
 Release:0
 License:Apache-2.0
 Summary:A code-searching tool similar to ack, but faster
 Url:https://github.com/ggreer/the_silver_searcher
 Group:  Productivity/File utilities
-Source: %{name}-%{version}.tar.bz2
+# url is 
https://github.com/ggreer/the_silver_searcher/archive/%{version}.tar.gz
+Source: %{name}-%{version}.tar.gz
 BuildRequires:  automake
 BuildRequires:  pcre-devel
 BuildRequires:  pkg-config
@@ -51,7 +52,7 @@
 %defattr(-,root,root)
 %{_bindir}/ag
 %{_mandir}/man1/ag.1.gz
-%{_prefix}/share/the_silver_searcher
+%{_datadir}/the_silver_searcher
 %doc LICENSE NOTICE README.md
 
 %changelog

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