Received: by mail.netbsd.org (Postfix, from userid 605) id AFAE785595; Sun, 27 Aug 2017 15:26:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 42CA784D76 for ; Sun, 27 Aug 2017 15:26:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 90HhDA6Jspfw for ; Sun, 27 Aug 2017 15:26:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6DCD584C86 for ; Sun, 27 Aug 2017 15:26:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 684E8FA94; Sun, 27 Aug 2017 15:26:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_15038475633690" MIME-Version: 1.0 Date: Sun, 27 Aug 2017 15:26:03 +0000 From: "Patrick Welche" Subject: CVS commit: pkgsrc/x11/gtksourceview3 To: pkgsrc-changes@NetBSD.org Reply-To: prlw1@netbsd.org X-Mailer: log_accum Message-Id: <20170827152603.684E8FA94@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. --_----------=_15038475633690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: prlw1 Date: Sun Aug 27 15:26:03 UTC 2017 Modified Files: pkgsrc/x11/gtksourceview3: Makefile PLIST distinfo Log Message: Update gtksourceview3 to 3.24.3 News in 3.24.3 -------------- * Improvements to the syntax highlighting of: SPARQL, CSS, BibTeX and LaTeX. News in 3.24.2 -------------- * Avoid type redefinitions. * jade.lang: add *.pug to globs. * Bug fix in LaTeX syntax highlighting. * Various other small bug fixes. * Translation updates. News in 3.24.1 -------------- * Deprecate the 'copy' parameter of the GtkSourceView::move-lines signal. * Force visual word movements for RTL text with Ctrl+left/right. * Misc bug fixes. * Translation update. News in 3.24.0 -------------- * Translation update News in 3.23.91 --------------- * Improvements to the Visual Studio builds and add support for Visual Studio 2017. * Bug fix in Rust syntax highlighting * Add mimetype to python3.lang * Translation updates News in 3.23.90 --------------- * Bug fix in GtkSourceGutterRendererPixbuf * Fixes for bugs found by Coverity * New syntax highlighting definition file for: Django template * Improvements to the syntax highlighting of: CSS and JavaScript * Translation updates News in 3.23.2 -------------- This version still uses GTK+ 3. A GtkSourceView 3.24 version is planned (still depending on GTK+ 3), which will be released at the same time as GNOME 3.24 in 2017. * Bug fix in Rust syntax highlighting * Add mimetype to python3.lang * Translation updates News in 3.23.90 --------------- * Bug fix in GtkSourceGutterRendererPixbuf * Fixes for bugs found by Coverity * New syntax highlighting definition file for: Django template * Improvements to the syntax highlighting of: CSS and JavaScript * Translation updates News in 3.23.2 -------------- This version still uses GTK+ 3. A GtkSourceView 3.24 version is planned (still depending on GTK+ 3), which will be released at the same time as GNOME 3.24 in March 2017. * Docs: add an introduction with the pkg-config name and which GTK+ version is used. * Build fixes on MS Windows. * New syntax highlighting definition files for: ABNF and HAXE. * Improvements to the syntax highlighting of: JavaScript, PHP, Meson, CSS, ini and Rust. * Translation updates. News in 3.23.1 -------------- This version still uses GTK+ 3. A GtkSourceView 3.24 version is planned (still depending on GTK+ 3), but the release date is not yet determined. * New class: GtkSourceSpaceDrawer with a matrix property to combine space types vs locations. The old white space drawing API has been deprecated. * gtk_source_search_context_set_settings() has been deprecated, the "settings" property will become construct-only. * GtkSourceCompletionItem: add a new API and deprecate the old constructors. * GtkSourceGutter: add get_view() and get_window_type() public functions. * Build system: do not hardcode the API version (currently 3.0) at as many places as possible (use a variable instead). * Bug fixes * Documentation improvements * Translation updates To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/x11/gtksourceview3/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/x11/gtksourceview3/PLIST cvs rdiff -u -r1.14 -r1.15 pkgsrc/x11/gtksourceview3/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_15038475633690 Content-Disposition: inline Content-Length: 6037 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/gtksourceview3/Makefile diff -u pkgsrc/x11/gtksourceview3/Makefile:1.33 pkgsrc/x11/gtksourceview3/Makefile:1.34 --- pkgsrc/x11/gtksourceview3/Makefile:1.33 Sun Jun 25 12:05:59 2017 +++ pkgsrc/x11/gtksourceview3/Makefile Sun Aug 27 15:26:03 2017 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.33 2017/06/25 12:05:59 martin Exp $ +# $NetBSD: Makefile,v 1.34 2017/08/27 15:26:03 prlw1 Exp $ -DISTNAME= gtksourceview-3.22.0 +DISTNAME= gtksourceview-3.24.3 PKGNAME= ${DISTNAME:S/gtksourceview/gtksourceview3/} -PKGREVISION= 2 CATEGORIES= x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gtksourceview/${PKGVERSION_NOREV:R}/} EXTRACT_SUFX= .tar.xz Index: pkgsrc/x11/gtksourceview3/PLIST diff -u pkgsrc/x11/gtksourceview3/PLIST:1.10 pkgsrc/x11/gtksourceview3/PLIST:1.11 --- pkgsrc/x11/gtksourceview3/PLIST:1.10 Sun Jun 25 12:05:59 2017 +++ pkgsrc/x11/gtksourceview3/PLIST Sun Aug 27 15:26:03 2017 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2017/06/25 12:05:59 martin Exp $ +@comment $NetBSD: PLIST,v 1.11 2017/08/27 15:26:03 prlw1 Exp $ include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h include/gtksourceview-3.0/gtksourceview/gtksource.h include/gtksourceview-3.0/gtksourceview/gtksourceautocleanups.h @@ -26,6 +26,7 @@ include/gtksourceview-3.0/gtksourceview/ include/gtksourceview-3.0/gtksourceview/gtksourceregion.h include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +include/gtksourceview-3.0/gtksourceview/gtksourcespacedrawer.h include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h include/gtksourceview-3.0/gtksourceview/gtksourcestyleschemechooser.h @@ -69,6 +70,7 @@ share/gtk-doc/html/gtksourceview-3.0/Gtk share/gtk-doc/html/gtksourceview-3.0/GtkSourceRegion.html share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +share/gtk-doc/html/gtksourceview-3.0/GtkSourceSpaceDrawer.html share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeChooser.html @@ -93,6 +95,7 @@ share/gtk-doc/html/gtksourceview-3.0/api share/gtk-doc/html/gtksourceview-3.0/api-index-3-18.html share/gtk-doc/html/gtksourceview-3.0/api-index-3-20.html share/gtk-doc/html/gtksourceview-3.0/api-index-3-22.html +share/gtk-doc/html/gtksourceview-3.0/api-index-3-24.html share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html share/gtk-doc/html/gtksourceview-3.0/api-index-full.html @@ -118,6 +121,7 @@ share/gtk-doc/html/gtksourceview-3.0/obj share/gtk-doc/html/gtksourceview-3.0/pt01.html share/gtk-doc/html/gtksourceview-3.0/pt02.html share/gtk-doc/html/gtksourceview-3.0/pt03.html +share/gtk-doc/html/gtksourceview-3.0/pt04.html share/gtk-doc/html/gtksourceview-3.0/right-insensitive.png share/gtk-doc/html/gtksourceview-3.0/right.png share/gtk-doc/html/gtksourceview-3.0/style-reference.html @@ -125,6 +129,7 @@ share/gtk-doc/html/gtksourceview-3.0/sty share/gtk-doc/html/gtksourceview-3.0/up-insensitive.png share/gtk-doc/html/gtksourceview-3.0/up.png share/gtksourceview-3.0/language-specs/R.lang +share/gtksourceview-3.0/language-specs/abnf.lang share/gtksourceview-3.0/language-specs/actionscript.lang share/gtksourceview-3.0/language-specs/ada.lang share/gtksourceview-3.0/language-specs/ansforth94.lang @@ -156,6 +161,7 @@ share/gtksourceview-3.0/language-specs/d share/gtksourceview-3.0/language-specs/dot.lang share/gtksourceview-3.0/language-specs/dpatch.lang share/gtksourceview-3.0/language-specs/dtd.lang +share/gtksourceview-3.0/language-specs/dtl.lang share/gtksourceview-3.0/language-specs/eiffel.lang share/gtksourceview-3.0/language-specs/erlang.lang share/gtksourceview-3.0/language-specs/fcl.lang @@ -172,6 +178,7 @@ share/gtksourceview-3.0/language-specs/g share/gtksourceview-3.0/language-specs/haddock.lang share/gtksourceview-3.0/language-specs/haskell-literate.lang share/gtksourceview-3.0/language-specs/haskell.lang +share/gtksourceview-3.0/language-specs/haxe.lang share/gtksourceview-3.0/language-specs/html.lang share/gtksourceview-3.0/language-specs/idl-exelis.lang share/gtksourceview-3.0/language-specs/idl.lang @@ -282,6 +289,7 @@ share/locale/eu/LC_MESSAGES/gtksourcevie share/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo share/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo share/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +share/locale/fur/LC_MESSAGES/gtksourceview-3.0.mo share/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo share/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo share/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo Index: pkgsrc/x11/gtksourceview3/distinfo diff -u pkgsrc/x11/gtksourceview3/distinfo:1.14 pkgsrc/x11/gtksourceview3/distinfo:1.15 --- pkgsrc/x11/gtksourceview3/distinfo:1.14 Fri Nov 25 17:52:04 2016 +++ pkgsrc/x11/gtksourceview3/distinfo Sun Aug 27 15:26:03 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2016/11/25 17:52:04 prlw1 Exp $ +$NetBSD: distinfo,v 1.15 2017/08/27 15:26:03 prlw1 Exp $ -SHA1 (gtksourceview-3.22.0.tar.xz) = e7cf519e8585490552ca8bce0b32be5acc440f2e -RMD160 (gtksourceview-3.22.0.tar.xz) = 58be2fe965690fb29f031c5c0d7cbec169f214ba -SHA512 (gtksourceview-3.22.0.tar.xz) = 728c5c13de57a6ebd3d837d3d9440daa5e64a18e92cfbf0a635d8e3708ee257b568e110fa88c4e11c18bc0534d58ec1556f3fa974793cadeae3264c9ef449e26 -Size (gtksourceview-3.22.0.tar.xz) = 1595016 bytes +SHA1 (gtksourceview-3.24.3.tar.xz) = f23289eac0c67717633a7ce34be459c296c9036d +RMD160 (gtksourceview-3.24.3.tar.xz) = 4a3eac5d8bfec23b36d9a437d2e15af57e3cb4c6 +SHA512 (gtksourceview-3.24.3.tar.xz) = 354a06502d55d7b237d5cbec5a35102225ae3d7e80e53d1ba42e506fc9c75470c4548b4ab8e9e6b2813d732617a2f13b978194240556b8d810066c94ec13de44 +Size (gtksourceview-3.24.3.tar.xz) = 1625584 bytes --_----------=_15038475633690--