Hello community, here is the log from the commit of package newsbeuter for openSUSE:Factory checked in at 2015-03-11 09:57:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/newsbeuter (Old) and /work/SRC/openSUSE:Factory/.newsbeuter.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "newsbeuter" Changes: -------- --- /work/SRC/openSUSE:Factory/newsbeuter/newsbeuter.changes 2012-03-26 11:04:05.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.newsbeuter.new/newsbeuter.changes 2015-03-11 09:57:08.000000000 +0100 @@ -1,0 +2,29 @@ +Thu Mar 5 19:07:04 UTC 2015 - [email protected] + +- Update to version 2.9 + * Fix custom keybindings in tag and filter selection dialogs (fixes #78). + * Fix incorrect reloading of tags after editing the urls file. + * Catch an exception that might be thrown by the "killfile" function. + * Don't override feed titles for hidden feeds. + * Fix dumpconfig. + * Add support for FeedHQ (feedhq.org). + * Fix missing variable in log output (fixes #124). + * Fix type of configuration variables to path where appropriate (fixes #125). + * Update to Brazilian Portuguese translation (fixes #126). + * Fix crash when GUID is lost (fixes #127). + * Fix dependency check (fixes #132). + * Fix segfault in jump_to_next_unread_item (fixes #133). + * Change code base to C++11. + * Don't render inline images (fixes #154). + * Fixed bug where feeds would appear empty due to variable shadowing issue. +- Remove merged patches + * newsbeuter-ncurses.patch + * newsbeuter-gcc47.patch +- Use download Url as source +- Remove obsolete conditional macros +- Split out translation files +- Remove depreciated/obsolete AUTHORS and %clean sections +- Add libjson-c-devel build require; new upstream dependency +- Cleanup requirements list + +------------------------------------------------------------------- Old: ---- newsbeuter-2.4.tar.bz2 newsbeuter-gcc47.patch newsbeuter-ncurses.patch New: ---- newsbeuter-2.9.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ newsbeuter.spec ++++++ --- /var/tmp/diff_new_pack.T2fy5m/_old 2015-03-11 09:57:09.000000000 +0100 +++ /var/tmp/diff_new_pack.T2fy5m/_new 2015-03-11 09:57:09.000000000 +0100 @@ -1,8 +1,7 @@ -# vim: set ts=4 sw=4 et: # # spec file for package newsbeuter # -# Copyright (c) 2012 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 @@ -18,46 +17,31 @@ Name: newsbeuter -Version: 2.4 +Version: 2.9 Release: 0 Summary: RSS/Atom Feed Reader for Text Terminals License: MIT Group: Productivity/Networking/Web/Browsers -# http://www.newsbeuter.org/downloads/newsbeuter-%{version}.tar.gz -Source: newsbeuter-%{version}.tar.bz2 -# pbleser: include <ncurses.h> instead of <ncursesw/ncurses.h> -Patch1: newsbeuter-ncurses.patch +Source: http://www.newsbeuter.org/downloads/newsbeuter-%{version}.tar.gz # pbleser: introduce OPTFLAGS make variable, instead of hard-coded -ggdb Patch2: newsbeuter-makefile.patch -# PATCH-FIX-UPSTREAM newsbeuter-gcc47.patch [email protected] -- Fix build with gcc 4.7 -Patch3: newsbeuter-gcc47.patch Url: http://www.newsbeuter.org BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: libstfl-devel BuildRequires: libxml2-devel BuildRequires: zlib-devel -%if %suse_version >= 1100 BuildRequires: sqlite3-devel -%else -BuildRequires: sqlite-devel -%endif -%if %suse_version >= 1030 BuildRequires: libcurl-devel BuildRequires: libopenssl-devel -%else -BuildRequires: curl-devel -BuildRequires: openssl-devel -%endif -BuildRequires: gcc BuildRequires: gcc-c++ -BuildRequires: gettext BuildRequires: gettext-devel BuildRequires: glibc-devel +BuildRequires: libjson-c-devel BuildRequires: libstdc++-devel -BuildRequires: make BuildRequires: perl BuildRequires: pkgconfig Recommends: lynx +Recommends: %{name}-lang %description Newsbeuter is an open-source RSS/Atom feed reader for text terminals. It runs @@ -66,18 +50,11 @@ it a perfect choice for people that need a slick and fast feed reader that can be completely controlled via keyboard. - - - -Authors: --------- - Andreas Krennmair <[email protected]> +%lang_package %prep %setup -q -%patch1 %patch2 -%patch3 -p1 %build ./config.sh @@ -100,10 +77,7 @@ %find_lang newsbeuter -%clean -%{?buildroot:%__rm -rf "%{buildroot}"} - -%files -f newsbeuter.lang +%files %defattr(-,root,root) %doc RPM-DOC/* %doc AUTHORS CHANGES LICENSE README TODO @@ -112,4 +86,6 @@ %doc %{_mandir}/man1/newsbeuter.1%{ext_man} %doc %{_mandir}/man1/podbeuter.1%{ext_man} +%files lang -f newsbeuter.lang + %changelog ++++++ newsbeuter-makefile.patch ++++++ --- /var/tmp/diff_new_pack.T2fy5m/_old 2015-03-11 09:57:09.000000000 +0100 +++ /var/tmp/diff_new_pack.T2fy5m/_new 2015-03-11 09:57:09.000000000 +0100 @@ -3,10 +3,10 @@ @@ -11,7 +11,8 @@ # compiler and linker flags DEFINES=-DLOCALEDIR=\"$(localedir)\" - WARNFLAGS=-Wall -Wextra --CXXFLAGS+=-ggdb -Iinclude -Istfl -Ifilter -I. -Irss $(WARNFLAGS) $(DEFINES) + WARNFLAGS=-Wall -Wextra -Wunreachable-code +-CXXFLAGS+=-std=c++11 -ggdb -Iinclude -Istfl -Ifilter -I. -Irss $(WARNFLAGS) $(DEFINES) +OPTFLAGS=-ggdb -+CXXFLAGS+=-Iinclude -Istfl -Ifilter -I. -Irss $(WARNFLAGS) $(DEFINES) $(OPTFLAGS) ++CXXFLAGS+=-std=c++11 -ggdb -Iinclude -Istfl -Ifilter -I. -Irss $(WARNFLAGS) $(DEFINES) $(OPTFLAGS) LDFLAGS+=-L. PACKAGE=newsbeuter -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
