Received: by mail.netbsd.org (Postfix, from userid 605) id 0D69C84D7E; Wed, 6 Mar 2019 08:03:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 888D384D39 for ; Wed, 6 Mar 2019 08:03:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id MC9gDIDB-Y8P for ; Wed, 6 Mar 2019 08:03:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B6B3B84D04 for ; Wed, 6 Mar 2019 08:03:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ACAA2FB16; Wed, 6 Mar 2019 08:03:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155185940294460" MIME-Version: 1.0 Date: Wed, 6 Mar 2019 08:03:22 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/editors/pluma To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20190306080322.ACAA2FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_155185940294460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Wed Mar 6 08:03:22 UTC 2019 Modified Files: pkgsrc/editors/pluma: Makefile PLIST distinfo Log Message: pluma: update to 1.22 ### pluma 1.22.0 tx: sync with transifex Add update-authors.pl script which helps to update pluma.about Read authors (updated) from pluma.about file show enchant version when configure Replace the deprecated enchant_dict_add_to_pwl with enchant_dict_add. Make translatable the documenters in the about dialog Ensure proper translation of the about dialog title initial travis support Add License button in About Pluma dialog Make translatable the copyright in about dialog Update Documenters remove type & url attr of ulink in translation remove deprecated help section: Opening a File from a URI eggsmclient: avoid deprecated 'g_type_class_add_private' addresses #391 - gets snippet window size before destroying it simple bug fix of misplaced underscore disable deprecation warnings for distcheck move appdata to metainfo directory pluma-utils: Fix memory leak pluma-window: Fix memory leaks To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/editors/pluma/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/editors/pluma/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/editors/pluma/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155185940294460 Content-Disposition: inline Content-Length: 3425 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/pluma/Makefile diff -u pkgsrc/editors/pluma/Makefile:1.18 pkgsrc/editors/pluma/Makefile:1.19 --- pkgsrc/editors/pluma/Makefile:1.18 Wed Jan 16 18:18:53 2019 +++ pkgsrc/editors/pluma/Makefile Wed Mar 6 08:03:22 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2019/01/16 18:18:53 youri Exp $ +# $NetBSD: Makefile,v 1.19 2019/03/06 08:03:22 gutteridge Exp $ # XXX: meta-pkgs/mate/Makefile.common includes pyversion.mk which sets the # python version too early and clashes with PYTHON_VERSIONS_INCOMPATIBLE @@ -7,7 +7,7 @@ .include "../../devel/libpeas/buildlink3.mk" .include "../../meta-pkgs/mate/Makefile.common" -DISTNAME= pluma-${VERSION:R}.2 +DISTNAME= pluma-${VERSION} CATEGORIES= editors COMMENT= Small and lightweight UTF-8 text editor for MATE Index: pkgsrc/editors/pluma/PLIST diff -u pkgsrc/editors/pluma/PLIST:1.4 pkgsrc/editors/pluma/PLIST:1.5 --- pkgsrc/editors/pluma/PLIST:1.4 Wed Jan 16 18:18:53 2019 +++ pkgsrc/editors/pluma/PLIST Wed Mar 6 08:03:22 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2019/01/16 18:18:53 youri Exp $ +@comment $NetBSD: PLIST,v 1.5 2019/03/06 08:03:22 gutteridge Exp $ bin/pluma include/pluma/pluma-app.h include/pluma/pluma-commands.h @@ -134,7 +134,6 @@ lib/pluma/plugins/time.plugin lib/pluma/plugins/trailsave.plugin libexec/pluma/pluma-bugreport.sh man/man1/pluma.1 -share/appdata/pluma.appdata.xml share/applications/pluma.desktop share/gir-1.0/Pluma-1.0.gir share/glib-2.0/schemas/org.mate.pluma.gschema.xml @@ -697,6 +696,7 @@ share/locale/zh_CN/LC_MESSAGES/pluma.mo share/locale/zh_HK/LC_MESSAGES/pluma.mo share/locale/zh_TW/LC_MESSAGES/pluma.mo share/locale/zu/LC_MESSAGES/pluma.mo +share/metainfo/pluma.appdata.xml share/pluma/icons/pluma-plugin.png share/pluma/plugins/docinfo/docinfo.ui share/pluma/plugins/externaltools/tools/build @@ -745,6 +745,7 @@ share/pluma/plugins/taglist/XSLT.tags.gz share/pluma/plugins/taglist/XUL.tags.gz share/pluma/plugins/time/pluma-time-dialog.ui share/pluma/plugins/time/pluma-time-setup-dialog.ui +share/pluma/pluma.about share/pluma/ui/pluma-encodings-dialog.ui share/pluma/ui/pluma-preferences-dialog.ui share/pluma/ui/pluma-print-preferences.ui Index: pkgsrc/editors/pluma/distinfo diff -u pkgsrc/editors/pluma/distinfo:1.5 pkgsrc/editors/pluma/distinfo:1.6 --- pkgsrc/editors/pluma/distinfo:1.5 Wed Jan 16 18:18:53 2019 +++ pkgsrc/editors/pluma/distinfo Wed Mar 6 08:03:22 2019 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.5 2019/01/16 18:18:53 youri Exp $ +$NetBSD: distinfo,v 1.6 2019/03/06 08:03:22 gutteridge Exp $ -SHA1 (pluma-1.21.2.tar.xz) = 617540e874a9924fccbcf91646b2c806397de280 -RMD160 (pluma-1.21.2.tar.xz) = 771da4f6d54a7c185efb2d4a921b05dfaa7adab6 -SHA512 (pluma-1.21.2.tar.xz) = 976df6733250c2e6074fc239443504c7bfc721409e65e34a56be2dc778c9422823ab669f7be3703abb14cbaea77b813d6235177f936605c69b623b98e0793fc6 -Size (pluma-1.21.2.tar.xz) = 3251656 bytes -SHA1 (patch-configure) = 9fc23946abf5197603ce28bef2c0e54b5be96c86 +SHA1 (pluma-1.22.0.tar.xz) = a427e728afd5be8777c4823638eb5e5b73fb74fc +RMD160 (pluma-1.22.0.tar.xz) = 86e1229cda53602bd18bc1b3e18c4cf54e03b26d +SHA512 (pluma-1.22.0.tar.xz) = 7c74c2ce0a89ec3813c936449d3114957e7b319433875ef567ecc508a28a1d3ddc3d0da418b2eb1278b6dc9dbaa3c75a279524f5a061b5aecb52955edcf28f51 +Size (pluma-1.22.0.tar.xz) = 3235612 bytes +SHA1 (patch-configure) = c2f4aef21c7b23bafeb0c6d3f751e7d21e0a618e --_----------=_155185940294460--