pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/snownews snownew: update to 1.9
details: https://anonhg.NetBSD.org/pkgsrc/rev/075070d44867
branches: trunk
changeset: 768309:075070d44867
user: nia <nia%pkgsrc.org@localhost>
date: Mon Oct 18 11:24:51 2021 +0000
description:
snownew: update to 1.9
msharov released this Oct 2, 2021
* Make the UI more compact.
* Simplify HTML detagging and rewrapping.
* Store feed cache content detagged.
* New translation for Serbian.
* Support ncurses without widechars.
* Quit normally on non-fatal signals.
* Stop using libiconv because only UTF8 is supported.
* Remove the need to configure html_entities.
* Ignore atom link tags where rel != alternate.
* Fix saving of changes to smart feeds.
diffstat:
www/snownews/Makefile | 5 ++---
www/snownews/PLIST | 3 ++-
www/snownews/distinfo | 12 ++++++------
www/snownews/patches/patch-Config.mk.in | 6 +++---
www/snownews/patches/patch-configure | 13 ++++++++-----
5 files changed, 21 insertions(+), 18 deletions(-)
diffs (94 lines):
diff -r 30ac93dba8d2 -r 075070d44867 www/snownews/Makefile
--- a/www/snownews/Makefile Mon Oct 18 11:17:35 2021 +0000
+++ b/www/snownews/Makefile Mon Oct 18 11:24:51 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.63 2021/09/29 19:01:29 adam Exp $
+# $NetBSD: Makefile,v 1.64 2021/10/18 11:24:51 nia Exp $
-DISTNAME= snownews-1.8
-PKGREVISION= 1
+DISTNAME= snownews-1.9
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_GITHUB:=msharov/}
GITHUB_TAG= v${PKGVERSION_NOREV}
diff -r 30ac93dba8d2 -r 075070d44867 www/snownews/PLIST
--- a/www/snownews/PLIST Mon Oct 18 11:17:35 2021 +0000
+++ b/www/snownews/PLIST Mon Oct 18 11:24:51 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2021/07/05 20:14:14 fcambus Exp $
+@comment $NetBSD: PLIST,v 1.10 2021/10/18 11:24:51 nia Exp $
bin/snownews
man/de/man1/snownews.1
man/fr/man1/snownews.1
@@ -19,6 +19,7 @@
share/locale/ru/LC_MESSAGES/snownews.mo
share/locale/se/LC_MESSAGES/snownews.mo
share/locale/sl/LC_MESSAGES/snownews.mo
+share/locale/sr/LC_MESSAGES/snownews.mo
share/locale/uk_UA/LC_MESSAGES/snownews.mo
share/locale/zh_CN/LC_MESSAGES/snownews.mo
share/locale/zh_TW/LC_MESSAGES/snownews.mo
diff -r 30ac93dba8d2 -r 075070d44867 www/snownews/distinfo
--- a/www/snownews/distinfo Mon Oct 18 11:17:35 2021 +0000
+++ b/www/snownews/distinfo Mon Oct 18 11:24:51 2021 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.21 2021/10/07 15:08:51 nia Exp $
+$NetBSD: distinfo,v 1.22 2021/10/18 11:24:51 nia Exp $
-RMD160 (snownews-1.8.tar.gz) = 419865824853fce434388478836a5d07d18439c5
-SHA512 (snownews-1.8.tar.gz) = 023c10667ee80510303955058c21ff6546c8b3f6588a8ec24de103783ae2037e33628f141a6f6028b7338d75b189a3ad26dce74ac818434226629b2c4383c94e
-Size (snownews-1.8.tar.gz) = 154813 bytes
-SHA1 (patch-Config.mk.in) = d16738359c9072c783612e7e0a2f782f2895e947
-SHA1 (patch-configure) = ab33efcce294aa0e889e3f53cb21b384308c2644
+RMD160 (snownews-1.9.tar.gz) = 591c7c9e4cd418ac9e7d4c887680d641e07aca5b
+SHA512 (snownews-1.9.tar.gz) = f833dbb41b5c0215c034b8388d787398360fac0ec9670f8f31b76c3ee2ffd974b4c6ebebc30aebb539b9904f513628124b393f4f473a92d4969f483caeca8596
+Size (snownews-1.9.tar.gz) = 149935 bytes
+SHA1 (patch-Config.mk.in) = 4e0ff89e7c9721bfbde23cbf3b51345f2f3097de
+SHA1 (patch-configure) = ed02a64c3f238aaf7e4c5ebe74a4129dad45bb98
diff -r 30ac93dba8d2 -r 075070d44867 www/snownews/patches/patch-Config.mk.in
--- a/www/snownews/patches/patch-Config.mk.in Mon Oct 18 11:17:35 2021 +0000
+++ b/www/snownews/patches/patch-Config.mk.in Mon Oct 18 11:24:51 2021 +0000
@@ -1,13 +1,13 @@
-$NetBSD: patch-Config.mk.in,v 1.2 2021/04/21 09:28:28 nia Exp $
+$NetBSD: patch-Config.mk.in,v 1.3 2021/10/18 11:24:51 nia Exp $
Do not override CFLAGS.
---- Config.mk.in.orig 2021-04-11 22:41:14.000000000 +0000
+--- Config.mk.in.orig 2021-10-02 22:29:09.000000000 +0000
+++ Config.mk.in
@@ -26,13 +26,6 @@ O := .o/
#debug := 1
- libs := @pkg_libs@ -liconv -lintl
+ libs := @pkg_libs@
-ifdef debug
- cflags := -O0 -ggdb3
- ldflags := -g -rdynamic
diff -r 30ac93dba8d2 -r 075070d44867 www/snownews/patches/patch-configure
--- a/www/snownews/patches/patch-configure Mon Oct 18 11:17:35 2021 +0000
+++ b/www/snownews/patches/patch-configure Mon Oct 18 11:24:51 2021 +0000
@@ -1,15 +1,18 @@
-$NetBSD: patch-configure,v 1.3 2021/07/05 20:14:14 fcambus Exp $
+$NetBSD: patch-configure,v 1.4 2021/10/18 11:24:51 nia Exp $
Allow NetBSD curses to be used.
---- configure.orig 2021-04-20 21:13:10.000000000 +0000
+--- configure.orig 2021-10-02 22:29:09.000000000 +0000
+++ configure
-@@ -34,7 +34,7 @@ seds=[s/^#undef \(USE_UNSUPPORTED_AND_BR
+@@ -34,9 +34,9 @@ seds=[s/^#undef \(USE_UNSUPPORTED_AND_BR
progs="CC=gcc CC=clang CC=cc INSTALL=install MSGFMT=msgfmt"
# Libs found using pkg-config
-pkgs="libcurl libxml-2.0 libcrypto ncursesw"
+pkgs="libcurl libxml-2.0 libcrypto"
# Default pkg flags to substitute when pkg-config is not found
- pkg_libs="-lcurl -lxml2 -lcrypto -lncursesw"
- pkg_cflags="-I\/usr\/include\/libxml2"
+-pkg_libs="-lcurl -lxml2 -lcrypto -lncursesw"
++pkg_libs="-lcurl -lxml2 -lcrypto"
+ pkg_cflags="-I\/usr\/include\/libxml2 -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600"
+ pkg_ldflags=""
+
Home |
Main Index |
Thread Index |
Old Index