pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

newsboat: update to newsboat-2.13



Module Name:	pkgsrc-wip
Committed By:	Yorick Hardy <yorickhardy%gmail.com@localhost>
Pushed By:	yhardy
Date:		Sun Sep 23 11:02:26 2018 +0200
Changeset:	1f1915159c0844abfd1e0a9ec6c2cba30f99b26a

Modified Files:
	newsboat/Makefile
	newsboat/distinfo
Added Files:
	newsboat/patches/patch-newsboat.cpp
Removed Files:
	newsboat/patches/patch-src_controller.cpp

Log Message:
newsboat: update to newsboat-2.13

* Changes for Newsboat

** 2.13 - 2018-09-22

Lists below only mention user-visible changes, but I would also like to
acknowledge contributions from the following people: Anatoly Kalin, Eduardo
Sanchez, Friedrich von Never, Kamil Wsół, glacambre.

*** Added
- Respect TMPDIR environment variable when writing temporary files (ಚಿರಾಗ್ ನಟರಾಜ್)
    (#250)
- `delete-all-articles` operation that marks all articles in the feed as deleted
    (Kamil Wsół)

*** Changed
- Require `cookie-cache` setting if Newsblur API is used (Alexander Batischev)
- Translations: Russian, Ukraininan (Alexander Batischev), Swedish (Dennis
    Öberg), German (Lysander Trischler)
- json.hpp updated to version 3.2.0
- Natural sort order for article titles, so numbers are put in the expected
    order (e.g. 1, 2, 5, 10, 11 rather than 1, 10, 11, 2, 5) (Nikos Tsipinakis)

*** Fixed
- Do not create empty files if history is disabled (Nikos Tsipinakis)

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=1f1915159c0844abfd1e0a9ec6c2cba30f99b26a

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 newsboat/Makefile                         |  4 ++--
 newsboat/distinfo                         | 10 +++++-----
 newsboat/patches/patch-newsboat.cpp       | 20 ++++++++++++++++++++
 newsboat/patches/patch-src_controller.cpp | 20 --------------------
 4 files changed, 27 insertions(+), 27 deletions(-)

diffs:
diff --git a/newsboat/Makefile b/newsboat/Makefile
index 0bcc33fdf1..27287743ab 100644
--- a/newsboat/Makefile
+++ b/newsboat/Makefile
@@ -1,8 +1,8 @@
 # $NetBSD$
 
-DISTNAME=	newsboat-2.12
+DISTNAME=	newsboat-2.13
 CATEGORIES=	news
-MASTER_SITES=	https://newsboat.org/releases/2.12/
+MASTER_SITES=	https://newsboat.org/releases/2.13/
 EXTRACT_SUFX=	.tar.xz
 
 MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
diff --git a/newsboat/distinfo b/newsboat/distinfo
index a028a4a1d4..af5be5a31d 100644
--- a/newsboat/distinfo
+++ b/newsboat/distinfo
@@ -1,8 +1,8 @@
 $NetBSD$
 
-SHA1 (newsboat-2.12.tar.xz) = 59da1802bd4a86805f120661d37c65e46b8fc90f
-RMD160 (newsboat-2.12.tar.xz) = 57b44e1ce0c248cc4c1905e71bdc66af4ffbce5c
-SHA512 (newsboat-2.12.tar.xz) = 211024288c58ac467e1953f2cd6e7cf1cf7d36ae3d1051d8845692a016232a7662b4b6a816663bd0a2a911c89198fac56e674dbca20df45bcbd7f2cbccbce311
-Size (newsboat-2.12.tar.xz) = 442132 bytes
+SHA1 (newsboat-2.13.tar.xz) = cf50d04a69b360864cf9ae31b831fa2bfd281971
+RMD160 (newsboat-2.13.tar.xz) = 3c6d62fef4221bc6aecb9685f1530ed074454f38
+SHA512 (newsboat-2.13.tar.xz) = f7ce9717540e1c38809a44d531d28b26d5f9759479d311c127adec1ed6f3f6e8ad68799559ed31e9ecde7a988a683b0c9f58ff10e8dd4b2de60d75b7f8efe3da
+Size (newsboat-2.13.tar.xz) = 460076 bytes
 SHA1 (patch-config.sh) = 3451c0ad9507c76950860f9d9992791199851819
-SHA1 (patch-src_controller.cpp) = 7209d36b10f2afdc1157dc6fda54e72ca5caa6d7
+SHA1 (patch-newsboat.cpp) = 3ef8b249ba1c25f1a3fb99a742b73706b06e4688
diff --git a/newsboat/patches/patch-newsboat.cpp b/newsboat/patches/patch-newsboat.cpp
new file mode 100644
index 0000000000..72fde75145
--- /dev/null
+++ b/newsboat/patches/patch-newsboat.cpp
@@ -0,0 +1,20 @@
+$NetBSD$
+
+Everything works, but native curses has no curses_version(), so rip out that bit.
+
+--- newsboat.cpp.orig	2018-09-22 16:56:08.000000000 +0000
++++ newsboat.cpp
+@@ -134,9 +134,13 @@ void print_version(const std::string& ar
+ #if defined(__GNUC__) && defined(__VERSION__)
+ 		ss << "Compiler: g++ " << __VERSION__ << std::endl;
+ #endif
++#if defined(__NetBSD__)
++		std::cout << "Native NetBSD curses" << std::endl;
++#else
+ 		ss << "ncurses: " << curses_version()
+ 			  << " (compiled with " << NCURSES_VERSION << ")"
+ 			  << std::endl;
++#endif
+ 		ss << "libcurl: " << curl_version() << " (compiled with "
+ 			  << LIBCURL_VERSION << ")" << std::endl;
+ 		ss << "SQLite: " << sqlite3_libversion()
diff --git a/newsboat/patches/patch-src_controller.cpp b/newsboat/patches/patch-src_controller.cpp
deleted file mode 100644
index f1d05b6e29..0000000000
--- a/newsboat/patches/patch-src_controller.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD$
-
-Everything works, but native curses has no curses_version(), so rip out that bit.
-
---- src/controller.cpp.orig	2018-06-24 19:30:30.000000000 +0000
-+++ src/controller.cpp
-@@ -910,9 +910,13 @@ void controller::print_version_informati
- #if defined(__GNUC__) && defined(__VERSION__)
- 		std::cout << "Compiler: g++ " << __VERSION__ << std::endl;
- #endif
-+#if defined(__NetBSD__)
-+		std::cout << "Native NetBSD curses" << std::endl;
-+#else
- 		std::cout << "ncurses: " << curses_version()
- 			  << " (compiled with " << NCURSES_VERSION << ")"
- 			  << std::endl;
-+#endif
- 		std::cout << "libcurl: " << curl_version() << " (compiled with "
- 			  << LIBCURL_VERSION << ")" << std::endl;
- 		std::cout << "SQLite: " << sqlite3_libversion()


Home | Main Index | Thread Index | Old Index