Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=wXSlz+Gr; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=duyz6aID Received: by mail.netbsd.org (Postfix, from userid 605) id AA5C284D45; Sat, 27 Apr 2024 15:00:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714230014; bh=oUiebhC3S46PvP6GYf/d/3dwszhXu9t9nUl7iZ0P75Y=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=wXSlz+Grle4UJ5epRVjUbOkz0Cx07DnXvIc5HjiR6mZenXxjgV0v/zcfMS4VWatRT EMzLfQCKQu6iXBGVaeDzxQ3gT+X9NOgOxoL4Fxydnwe8aLJPrKZo4B5twtq1S2mReG 2rHoyzB/EhyiinAjhGWzxNgb+JJmmjYaK9K5cYN0= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9432F84D45 for ; Sat, 27 Apr 2024 15:00:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id scD606l4H697 for ; Sat, 27 Apr 2024 15:00:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C5A1A84D43 for ; Sat, 27 Apr 2024 15:00:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714230012; bh=oUiebhC3S46PvP6GYf/d/3dwszhXu9t9nUl7iZ0P75Y=; h=Date:From:Subject:To:Reply-To; b=duyz6aIDxLD9ynQdpr5BZ5CxsIO0o7gB2+qnuX82n9s1x/TxerYTAZi+nXxVAPY82 axhArFl7d2T1lxngplzDxZcRDL+DE5LD7PGF+Hai6TFxvZhBdo+eJMNWUKSBYdWk5h P96O/M4e09/PFDIFNJyTLEreNAq1hWuzUMfqKheU= Received: by cvs.NetBSD.org (Postfix, from userid 500) id BC977FA2C; Sat, 27 Apr 2024 15:00:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171423001290960" MIME-Version: 1.0 Date: Sat, 27 Apr 2024 15:00:12 +0000 From: "Olaf Seibert" Subject: CVS commit: pkgsrc/news/pan To: pkgsrc-changes@NetBSD.org Reply-To: rhialto@netbsd.org X-Mailer: log_accum Message-Id: <20240427150012.BC977FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171423001290960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rhialto Date: Sat Apr 27 15:00:12 UTC 2024 Modified Files: pkgsrc/news/pan: Makefile PLIST distinfo Log Message: news/pan: update to 0.158 0.156: (no notes) 0.157: This release fix a few bugs and add support for cmake. Pan can now be built with cmake. Building pan with autotools is deprecated. 0.158: This release fix the installation of man and help files with cmake. Building pan with autotools is still deprecated. To generate a diff of this commit: cvs rdiff -u -r1.141 -r1.142 pkgsrc/news/pan/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/news/pan/PLIST cvs rdiff -u -r1.48 -r1.49 pkgsrc/news/pan/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171423001290960 Content-Disposition: inline Content-Length: 5615 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/news/pan/Makefile diff -u pkgsrc/news/pan/Makefile:1.141 pkgsrc/news/pan/Makefile:1.142 --- pkgsrc/news/pan/Makefile:1.141 Sun Apr 7 07:34:51 2024 +++ pkgsrc/news/pan/Makefile Sat Apr 27 15:00:12 2024 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.141 2024/04/07 07:34:51 wiz Exp $ +# $NetBSD: Makefile,v 1.142 2024/04/27 15:00:12 rhialto Exp $ -PKGNAME= pan-0.155 -PKGREVISION= 5 +PKGNAME= pan-0.158 CATEGORIES= news TAG= ${PKGNAME_NOREV:S/pan-/v/} # e.g. v0.151 MASTER_SITES= https://gitlab.gnome.org/GNOME/pan/-/archive/${TAG}/ @@ -25,7 +24,7 @@ CONFIGURE_ARGS+= --with-gnutls CONFIGURE_ARGS+= --with-gtkspell .include "../../mk/bsd.prefs.mk" -.if (${OPSYS} != "Darwin" && ${OPSYS} != "SunOS" && ${OPSYS} != "Linux") +.if ${OPSYS} != "Darwin" && ${OPSYS} != "SunOS" && ${OPSYS} != "Linux" LIBS+= -lcompat .endif Index: pkgsrc/news/pan/PLIST diff -u pkgsrc/news/pan/PLIST:1.18 pkgsrc/news/pan/PLIST:1.19 --- pkgsrc/news/pan/PLIST:1.18 Sat Nov 4 12:36:04 2023 +++ pkgsrc/news/pan/PLIST Sat Apr 27 15:00:12 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.18 2023/11/04 12:36:04 rhialto Exp $ +@comment $NetBSD: PLIST,v 1.19 2024/04/27 15:00:12 rhialto Exp $ bin/pan man/man1/pan.1 share/applications/org.gnome.pan.desktop @@ -31,6 +31,7 @@ share/locale/gl/LC_MESSAGES/pan.mo share/locale/hr/LC_MESSAGES/pan.mo share/locale/hu/LC_MESSAGES/pan.mo share/locale/id/LC_MESSAGES/pan.mo +share/locale/ie/LC_MESSAGES/pan.mo share/locale/it/LC_MESSAGES/pan.mo share/locale/ja/LC_MESSAGES/pan.mo share/locale/ka/LC_MESSAGES/pan.mo @@ -58,3 +59,73 @@ share/locale/vi/LC_MESSAGES/pan.mo share/locale/zh_CN/LC_MESSAGES/pan.mo share/locale/zh_TW/LC_MESSAGES/pan.mo share/metainfo/org.gnome.pan.metainfo.xml +share/pan/icons/icon_article_read.png +share/pan/icons/icon_article_unread.png +share/pan/icons/icon_binary_complete.png +share/pan/icons/icon_binary_complete_read.png +share/pan/icons/icon_binary_incomplete.png +share/pan/icons/icon_binary_incomplete_read.png +share/pan/icons/icon_bluecheck.png +share/pan/icons/icon_by_me.png +share/pan/icons/icon_by_others.png +share/pan/icons/icon_cert.png +share/pan/icons/icon_collapse_thread.png +share/pan/icons/icon_compose_followup.png +share/pan/icons/icon_compose_post.png +share/pan/icons/icon_disk.png +share/pan/icons/icon_empty.png +share/pan/icons/icon_expand_thread.png +share/pan/icons/icon_filter.png +share/pan/icons/icon_filter_only_attachments.png +share/pan/icons/icon_filter_only_cached.png +share/pan/icons/icon_filter_only_me.png +share/pan/icons/icon_filter_only_read.png +share/pan/icons/icon_filter_only_unread.png +share/pan/icons/icon_filter_only_watched.png +share/pan/icons/icon_get_dialog.png +share/pan/icons/icon_get_flagged.png +share/pan/icons/icon_get_selected.png +share/pan/icons/icon_get_subscribed.png +share/pan/icons/icon_layout_1.png +share/pan/icons/icon_layout_2.png +share/pan/icons/icon_layout_3.png +share/pan/icons/icon_layout_4.png +share/pan/icons/icon_layout_5.png +share/pan/icons/icon_mozilla_frown.png +share/pan/icons/icon_mozilla_smile.png +share/pan/icons/icon_mozilla_surprised.png +share/pan/icons/icon_mozilla_tongueout.png +share/pan/icons/icon_mozilla_wink.png +share/pan/icons/icon_pan.png +share/pan/icons/icon_pan_about_logo.png +share/pan/icons/icon_plain.png +share/pan/icons/icon_prefs_actions.png +share/pan/icons/icon_prefs_applications.png +share/pan/icons/icon_prefs_behavior.png +share/pan/icons/icon_prefs_colors.png +share/pan/icons/icon_prefs_extras.png +share/pan/icons/icon_prefs_fonts.png +share/pan/icons/icon_prefs_headers.png +share/pan/icons/icon_prefs_hotkeys.png +share/pan/icons/icon_prefs_layout.png +share/pan/icons/icon_prefs_panes.png +share/pan/icons/icon_prefs_upload.png +share/pan/icons/icon_read_group.png +share/pan/icons/icon_read_less.png +share/pan/icons/icon_read_more.png +share/pan/icons/icon_read_unread_article.png +share/pan/icons/icon_read_unread_thread.png +share/pan/icons/icon_red_flag.png +share/pan/icons/icon_score.png +share/pan/icons/icon_search_pulldown.png +share/pan/icons/icon_show_signature.png +share/pan/icons/icon_sig_fail.png +share/pan/icons/icon_sig_ok.png +share/pan/icons/icon_status_active.png +share/pan/icons/icon_status_error.png +share/pan/icons/icon_status_idle.png +share/pan/icons/icon_status_new_articles.png +share/pan/icons/icon_status_offline.png +share/pan/icons/icon_status_online.png +share/pan/icons/icon_status_queue_empty.png +share/pan/icons/icon_x.png Index: pkgsrc/news/pan/distinfo diff -u pkgsrc/news/pan/distinfo:1.48 pkgsrc/news/pan/distinfo:1.49 --- pkgsrc/news/pan/distinfo:1.48 Sat Nov 4 12:36:04 2023 +++ pkgsrc/news/pan/distinfo Sat Apr 27 15:00:12 2024 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.48 2023/11/04 12:36:04 rhialto Exp $ +$NetBSD: distinfo,v 1.49 2024/04/27 15:00:12 rhialto Exp $ -BLAKE2s (pan-v0.155.tar.bz2) = b784602e651840db60e665193ac19c2ca97ca427d77781c9f7fc1b10e11e8b92 -SHA512 (pan-v0.155.tar.bz2) = 85605a76dad1868926cc021a4642c40dca737b0fb77410c4e82981bf02e8157f8347518fccc82157804e89bd0786863a00bd1cc963637da3a54b82043e9c15f0 -Size (pan-v0.155.tar.bz2) = 1797355 bytes +BLAKE2s (pan-v0.158.tar.bz2) = d240f393148aba89bbdce5c0ae7619cc585ac2e40fe8bffeb041e02045b70601 +SHA512 (pan-v0.158.tar.bz2) = d2c12d92c5715ac585a8da340cb5ca03783a116ae64d2fc0dda7f7603ccb11783a78e4bbb5a4daf90605d401b78c2b3b80ddd8d0106ae8e60c38b0d2f4ab389d +Size (pan-v0.158.tar.bz2) = 1819095 bytes SHA1 (patch-pan_general_text-match.cc) = d719a6d5a59714f228cfd208627d2d6a70da07ff SHA1 (patch-pan_general_text-match.h) = 77dae6ba00c3b58b4353f60d90756a409b5699e2 --_----------=_171423001290960--