commit rsstail for openSUSE:Factory

2018-01-23 Thread root
Hello community,

here is the log from the commit of package rsstail for openSUSE:Factory checked 
in at 2018-01-23 13:53:19

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


Package is "rsstail"

Tue Jan 23 13:53:19 2018 rev:3 rq:568428 version:2.1

Changes:

--- /work/SRC/openSUSE:Factory/rsstail/rsstail.changes  2017-03-28 
15:22:54.223774755 +0200
+++ /work/SRC/openSUSE:Factory/.rsstail.new/rsstail.changes 2018-01-23 
13:53:20.392631809 +0100
@@ -1,0 +2,7 @@
+Sun Dec 24 09:59:40 UTC 2017 - sebix+novell@sebix.at
+
+- run spec-cleaner
+- update to version 2.1
+ * No changelog was made available.
+
+---

Old:

  rsstail-1.8.tgz

New:

  rsstail-2.1.tgz



Other differences:
--
++ rsstail.spec ++
--- /var/tmp/diff_new_pack.uIF8za/_old  2018-01-23 13:53:21.068600231 +0100
+++ /var/tmp/diff_new_pack.uIF8za/_new  2018-01-23 13:53:21.072600044 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rsstail
 #
-# 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,7 +17,7 @@
 
 
 Name:   rsstail
-Version:1.8
+Version:2.1
 Release:0
 Summary:RSS Feed Reader
 License:GPL-2.0
@@ -26,9 +26,9 @@
 Source: http://www.vanheusden.com/rsstail/rsstail-%{version}.tgz
 BuildRequires:  gcc
 BuildRequires:  glibc-devel
+BuildRequires:  libiconv_hook-devel
 BuildRequires:  libmrss-devel >= 0.16
 BuildRequires:  make
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 RSSTail is more or less an RSS reader: it monitors an RSS feed and if it
@@ -38,15 +38,15 @@
 %setup -q
 
 %build
-make DEBUG="-g %{optflags}" CC="gcc"
+make %{?_smp_mflags} DEBUG="-g %{optflags}" CC="gcc"
 
 %install
 install -D -m 0755 rsstail %{buildroot}%{_bindir}/rsstail
 install -D -m 0644 -t %{buildroot}%{_mandir}/man1 rsstail.1
 
 %files
-%defattr(-,root,root)
-%doc readme.txt
+%doc README.md
+%license license.txt
 %{_bindir}/rsstail
 %{_mandir}/man1/rsstail.1*
 

++ rsstail-1.8.tgz -> rsstail-2.1.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsstail-1.8/Makefile new/rsstail-2.1/Makefile
--- old/rsstail-1.8/Makefile2011-09-26 20:11:37.0 +0200
+++ new/rsstail-2.1/Makefile2015-10-14 16:25:18.0 +0200
@@ -1,21 +1,28 @@
-VERSION=1.8
+VERSION=2.1
 
 DEBUG=-g
-LDFLAGS=-lmrss $(DEBUG)
-CFLAGS=-O2 -Wall -DVERSION=\"$(VERSION)\" $(DEBUG)
+LDFLAGS=-liconv_hook -lmrss $(DEBUG)
+CFLAGS=-O3 -Wall -DVERSION=\"$(VERSION)\" $(DEBUG)
 
 OBJS=r2t.o
 
+prefix ?= /usr/local
+bindir ?= $(prefix)/bin
+mandir ?= $(prefix)/share/man/man1
+
 all: rsstail
 
 rsstail: $(OBJS)
$(CC) -Wall -W $(OBJS) $(LDFLAGS) -o rsstail
-   #
-   # Oh, blatant plug: http://keetweej.vanheusden.com/wishlist.html
 
 install: rsstail
-   cp rsstail $(DESTDIR)/usr/bin
-   cp rsstail.1 $(DESTDIR)/usr/share/man/man1/
+   mkdir -p $(bindir)
+   mkdir -p $(mandir)
+   install rsstail $(bindir)
+   install -m 644 rsstail.1 $(mandir)
+   
+uninstall:
+   rm $(bindir)/rsstail $(mandir)/rsstail.1
 
 clean:
rm -f $(OBJS) core rsstail
@@ -24,6 +31,9 @@
# source package
rm -rf rsstail-$(VERSION)*
mkdir rsstail-$(VERSION)
-   cp *.c *.1 Makefile* readme.txt license.* rsstail-$(VERSION)
+   cp *.c *.1 Makefile* README.md license.* rsstail-$(VERSION)
tar cf - rsstail-$(VERSION) | gzip -9 > rsstail-$(VERSION).tgz
rm -rf rsstail-$(VERSION)
+
+check:
+   cppcheck -v --enable=all --std=c++11 --inconclusive -I. . 2> err.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rsstail-1.8/README.md new/rsstail-2.1/README.md
--- old/rsstail-1.8/README.md   1970-01-01 01:00:00.0 +0100
+++ new/rsstail-2.1/README.md   2015-10-14 16:25:18.0 +0200
@@ -0,0 +1,58 @@
+rsstail
+===
+rsstail is tail for RSS feeds
+
+
+## Usage
+
+Basic usage:
+   rsstail -u URL -i CHECK_INTERVAL
+
+For example a command below will check every 5 minutes if anything new was 
published:
+
+$ rsstail -u http://www.filmhuisgouda.nl/rss/rss.php -i 300
+Title: Que horas ela volta?
+Title: 45 years
+Title: Madame Bovary
+...
+
+rsstail -h
+   will show a list of what rsstail can do for you.
+
+## Installation
+
+On Debian/Ubuntu:
+   sudo apt-get install rsstail
+
+
+## Building
+
+### Dependencies
+
+rsstail depends on 

commit rsstail for openSUSE:Factory

2017-03-28 Thread root
Hello community,

here is the log from the commit of package rsstail for openSUSE:Factory checked 
in at 2017-03-28 15:22:32

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


Package is "rsstail"

Tue Mar 28 15:22:32 2017 rev:2 rq:482355 version:1.8

Changes:

--- /work/SRC/openSUSE:Factory/rsstail/rsstail.changes  2017-03-12 
20:04:50.506610184 +0100
+++ /work/SRC/openSUSE:Factory/.rsstail.new/rsstail.changes 2017-03-28 
15:22:54.223774755 +0200
@@ -1,0 +2,6 @@
+Thu Mar 23 15:28:35 UTC 2017 - jeng...@inai.de
+
+- Rectify inconsistent grammar in description
+- Drop %__-type macro indirections
+
+---



Other differences:
--
++ rsstail.spec ++
--- /var/tmp/diff_new_pack.d1JilW/_old  2017-03-28 15:22:54.711705652 +0200
+++ /var/tmp/diff_new_pack.d1JilW/_new  2017-03-28 15:22:54.715705085 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rsstail
 #
-# 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
@@ -31,16 +31,14 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-RSSTail is more or less an rss reader: it monitors an rss-feed and if it
-detects a new entry it'll emit only that new entry.
+RSSTail is more or less an RSS reader: it monitors an RSS feed and if it
+detects a new entry, it will emit only that new entry.
 
 %prep
 %setup -q
 
 %build
-%{__make}
-   DEBUG="-g %{optflags}" \
-   CC="gcc"
+make DEBUG="-g %{optflags}" CC="gcc"
 
 %install
 install -D -m 0755 rsstail %{buildroot}%{_bindir}/rsstail