pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/geany



Module Name:    pkgsrc
Committed By:   gutteridge
Date:           Thu Nov  5 00:54:04 UTC 2020

Modified Files:
        pkgsrc/devel/geany: Makefile PLIST distinfo

Log Message:
geany: update to 1.37

Geany 1.37 (October 25, 2020)

    General
    * Build with GTK3 by default.
    * Add an option (enabled by default) to save main and project configuration
      whenever documents are opened/closed to reduce accidental loss of current
      session in the event of a crash.
    * List Geany in the category TextEditor (Dominic Hopf, Issue#2460).

    Bug Fixes
    * Fix main window name as seen by accessibility tools (Issue#2421).
    * Add missing include (Pino Toscano, PR#2402).
    * Fix a possible crash when quitting (Hodong & Guido Falsi, Issue#2457,
      PR#2634).

    Interface
    * Allow to cancel Open Project and New Project dialogs without closing the
      current project.
    * Don't ask whether to close current project when opening a recent project.
    * Disable some items when they are not available.
    * Provide a CSS name for most widgets (PR#2469).
    * Adapt margins width to font size and zoom (Issue#1733, PR#1738).
    * Show OS info in debug messages.
    * Persist color picker palette (Issue#2595).
    * Fix color of selected text in search entries with no match (foresto,
      Issue#2332, PR#2333)

    Editor
    * Update Scintilla to version 3.21.1 (PR#2506).

    Filetypes
    * Add BibTeX filetype (Mirco Schoenfeld, PR#2212).
    * Update JavaScript keywords (dmitryunruh, PR#2486).
    * Update Lua block comment end (Filip Szymański, PR#2566).
    * Update FreeBasic keywords (Issue#2583).
    * Add Smalltalk filetype (Snowflake the Pony, PR#2399).
    * Add a configuration option to select the default Python command.

    Documentation
    * Improve Build-related settings documentation.
    * Added documentation for the Color Chooser (LarsGit223).

    Windows
    * Bundle the GLib GSpawn helper binaries with the installer for plugin that
      use the related GLib API.
    * Make IPC port number configurable, and move the default outside the
      dynamic range used by Hyper-V (Issue#2101, PR#2585).
    * Use the `py` launcher for Python filetype (Issue#2211).
    * Support programming ligatures (like Fira Code font) (Issue#2535).

    Internationalization
    * New translations: ie
    * Updated translations: da, de, el, es, fr, id, it, ja, lv, nl, pl, pt,
                            ru, sk, sv, zh_CN


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 pkgsrc/devel/geany/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/geany/PLIST
cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/geany/distinfo

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

Modified files:

Index: pkgsrc/devel/geany/Makefile
diff -u pkgsrc/devel/geany/Makefile:1.68 pkgsrc/devel/geany/Makefile:1.69
--- pkgsrc/devel/geany/Makefile:1.68    Mon Aug 31 18:07:20 2020
+++ pkgsrc/devel/geany/Makefile Thu Nov  5 00:54:04 2020
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.68 2020/08/31 18:07:20 wiz Exp $
+# $NetBSD: Makefile,v 1.69 2020/11/05 00:54:04 gutteridge Exp $
 
-DISTNAME=      geany-1.36
-PKGREVISION=   4
+DISTNAME=      geany-1.37
 CATEGORIES=    devel
 MASTER_SITES=  http://download.geany.org/
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/devel/geany/PLIST
diff -u pkgsrc/devel/geany/PLIST:1.16 pkgsrc/devel/geany/PLIST:1.17
--- pkgsrc/devel/geany/PLIST:1.16       Tue Feb  4 01:53:20 2020
+++ pkgsrc/devel/geany/PLIST    Thu Nov  5 00:54:04 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.16 2020/02/04 01:53:20 gutteridge Exp $
+@comment $NetBSD: PLIST,v 1.17 2020/11/05 00:54:04 gutteridge Exp $
 bin/geany
 include/geany/app.h
 include/geany/build.h
@@ -20,6 +20,7 @@ include/geany/plugindata.h
 include/geany/pluginutils.h
 include/geany/prefs.h
 include/geany/project.h
+include/geany/scintilla/Compat.h
 include/geany/scintilla/SciLexer.h
 include/geany/scintilla/Sci_Position.h
 include/geany/scintilla/Scintilla.h
@@ -102,6 +103,7 @@ share/geany/filedefs/filetypes.ada
 share/geany/filedefs/filetypes.asciidoc
 share/geany/filedefs/filetypes.asm
 share/geany/filedefs/filetypes.batch
+share/geany/filedefs/filetypes.bibtex
 share/geany/filedefs/filetypes.c
 share/geany/filedefs/filetypes.caml
 share/geany/filedefs/filetypes.cmake
@@ -147,6 +149,7 @@ share/geany/filedefs/filetypes.restructu
 share/geany/filedefs/filetypes.ruby
 share/geany/filedefs/filetypes.rust
 share/geany/filedefs/filetypes.sh
+share/geany/filedefs/filetypes.smalltalk
 share/geany/filedefs/filetypes.sql
 share/geany/filedefs/filetypes.tcl
 share/geany/filedefs/filetypes.txt2tags
@@ -240,6 +243,7 @@ share/locale/he/LC_MESSAGES/geany.mo
 share/locale/hi/LC_MESSAGES/geany.mo
 share/locale/hu/LC_MESSAGES/geany.mo
 share/locale/id/LC_MESSAGES/geany.mo
+share/locale/ie/LC_MESSAGES/geany.mo
 share/locale/it/LC_MESSAGES/geany.mo
 share/locale/ja/LC_MESSAGES/geany.mo
 share/locale/kk/LC_MESSAGES/geany.mo

Index: pkgsrc/devel/geany/distinfo
diff -u pkgsrc/devel/geany/distinfo:1.17 pkgsrc/devel/geany/distinfo:1.18
--- pkgsrc/devel/geany/distinfo:1.17    Tue Feb  4 01:53:20 2020
+++ pkgsrc/devel/geany/distinfo Thu Nov  5 00:54:04 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.17 2020/02/04 01:53:20 gutteridge Exp $
+$NetBSD: distinfo,v 1.18 2020/11/05 00:54:04 gutteridge Exp $
 
-SHA1 (geany-1.36.tar.bz2) = 6a9b42286a4b00c4c5f5b1b60db704704ca85c50
-RMD160 (geany-1.36.tar.bz2) = e3a2e9e2e4dc1e6662a47f76a51ef12d3bc66c7b
-SHA512 (geany-1.36.tar.bz2) = 15005772b64e8321d7fa8552363df425eb25e9d7b0760c561c8fb3f34d7acae2bf25da8e04fda38a2a1b64cc31ff613b7ff2786d432ff014050c138c7473c810
-Size (geany-1.36.tar.bz2) = 4644521 bytes
+SHA1 (geany-1.37.tar.bz2) = 250c377eb9e59eb739f6c20006b70d8b5ccaae79
+RMD160 (geany-1.37.tar.bz2) = 364fe71d4f8772444cd2182137717de6749badf3
+SHA512 (geany-1.37.tar.bz2) = ffaa906eaa6198d24e91e21dafc4acc0811c8d90f714a36f646d70aa9f4eee7c53c29a063c39db41857de3c7729282ca7f88419ddc6b67b73ac35e91a376ea62
+Size (geany-1.37.tar.bz2) = 4689385 bytes



Home | Main Index | Thread Index | Old Index