forked from pool/gtksourceview5
Compare commits
8 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
22feca22df | ||
fa35d1f45c | |||
|
380600f3ad | ||
b6b3c08078 | |||
|
1669ddd2d9 | ||
8df8d0ce02 | |||
|
4bd0b1bbc5 | ||
18f9d369db |
2
_service
2
_service
@ -3,7 +3,7 @@
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://gitlab.gnome.org/GNOME/gtksourceview.git</param>
|
||||
<param name="revision">5.12.1</param>
|
||||
<param name="revision">5.14.2</param>
|
||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||
<param name="versionrewrite-pattern">v?(.*)\+0</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
|
78
changes.lang
78
changes.lang
@ -1,78 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
|
||||
This file is not part of GtkSourceView.
|
||||
|
||||
Author: Luciano Santos
|
||||
Copyright (C) 2018 Luciano Santos <luc14n0@linuxmail.org>
|
||||
|
||||
This Language Definiton file is free; you can redistribute it
|
||||
and/or modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This Language Definiton file is distributed in the hope that it
|
||||
will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
See the GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
-->
|
||||
<language id="changes" name="Changes" version="2.0" _section="Other">
|
||||
|
||||
<metadata>
|
||||
<property name="mimetypes">text/plain</property>
|
||||
<property name="globs">*changes</property>
|
||||
</metadata>
|
||||
|
||||
<styles>
|
||||
<style id="horizontal-rule" name="Horizontal Rule" map-to="def:type"/>
|
||||
<style id="date" name="Date" map-to="def:number"/>
|
||||
<style id="email" name="E-mail address" map-to="def:identifier"/>
|
||||
<style id="bullet" name="Bullet" map-to="def:type"/>
|
||||
</styles>
|
||||
|
||||
<definitions>
|
||||
<define-regex id="weekday">Mon|Tue|Wed|Thu|Fri|Sat|Sun</define-regex>
|
||||
<define-regex id="month">Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec</define-regex>
|
||||
|
||||
<define-regex id="date" extended="true">
|
||||
\%{weekday}\s+\%{month}\s+\d{1,2}\s+\d{1,2}:\d{1,2}:\d{1,2}\s+\w{3,4}\s+\d{4}
|
||||
</define-regex>
|
||||
|
||||
<context id="changes">
|
||||
<include>
|
||||
|
||||
<context id="horizontal-rule" style-ref="horizontal-rule" class="no-spell-check">
|
||||
<match>^-{67}$</match>
|
||||
</context>
|
||||
|
||||
<context id="date-email" class="no-spell-check">
|
||||
<match extended="true">
|
||||
^(?P<date>\%{date})\s-\s
|
||||
(?P<email>.*@.*\.\w{2,3})$
|
||||
</match>
|
||||
<include>
|
||||
<context sub-pattern="date" style-ref="date"/>
|
||||
<context sub-pattern="email" style-ref="email"/>
|
||||
</include>
|
||||
</context>
|
||||
<context id="bullet" style-ref="bullet">
|
||||
<match extended="true">
|
||||
(
|
||||
^-\s |
|
||||
^[ ]{2}(\*|\+)\s |
|
||||
^[ ]{4}-\s |
|
||||
^[ ]{6}\.\s
|
||||
)
|
||||
</match>
|
||||
</context>
|
||||
|
||||
</include>
|
||||
</context>
|
||||
</definitions>
|
||||
|
||||
</language>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c07eb13cff09ddd0b4500a334a0c22db7e5dbf282d208fe2c0803d8265a2546b
|
||||
size 12174861
|
3
gtksourceview-5.14.2.obscpio
Normal file
3
gtksourceview-5.14.2.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7e7b4f16cdbeab12521bb12f3f76804a81e3a31498c51fa47bdb3fe1d735977c
|
||||
size 12141069
|
@ -1,4 +1,4 @@
|
||||
name: gtksourceview
|
||||
version: 5.12.1
|
||||
mtime: 1717110790
|
||||
commit: 6d15bb784ccc89bbc7dfab06f88c6ab4c72d8c7e
|
||||
version: 5.14.2
|
||||
mtime: 1732224657
|
||||
commit: bb2383de981af0b762f40bbd813d282b43ae5606
|
||||
|
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 6 18:12:10 UTC 2025 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Drop changes.lang source, request from upstream + gedit no longer
|
||||
uses plain gtksourceview. (boo#1205804)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 21 22:38:00 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 5.14.2:
|
||||
+ Ignore various libxml2 deprecations
|
||||
+ Fix some incorrect GI annotations
|
||||
+ Fix extraneous dismissal of hover providers in some cases
|
||||
+ Add missing 5_14 version macros
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 4 19:05:33 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 5.14.1:
|
||||
+ Ensure you cannot show context menu from GtkSourceMap which
|
||||
otherwise has a limited FontMap containing only the
|
||||
BuilderBlocks font.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 15 14:10:39 UTC 2024 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 5.14.0:
|
||||
+ Fix an issue where the gutter would not redraw when focus
|
||||
changes.
|
||||
+ Add support for Groff syntax.
|
||||
- Changes from version 5.13.1:
|
||||
+ Documentation improvements
|
||||
+ Improve performance of BuilderBlocks font loading. Some of this
|
||||
effort required changes to the TTF, so user testing with a wide
|
||||
variety of languages is desired. This should reduce startup
|
||||
time of GtkSourceView using applications.
|
||||
+ gtk-doc.lang: highlight `backtick` spans
|
||||
+ c.lang: highlight [[]] style attributes
|
||||
+ java.lang: improve escaped character matching
|
||||
+ Adwaita.xml, Adwaita-dark.xml: style updates to track platform
|
||||
changes for GNOME 47.
|
||||
- Changes from version 5.13.0:
|
||||
+ Ensure gutter renderers are released during dispose
|
||||
+ Make default auto-indenter keep indentation when cursor is at
|
||||
line start
|
||||
+ python3.lang: Fix f-string in curly braces to have
|
||||
no-spellcheck applied
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 3 09:54:03 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package gtksourceview5
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,14 +18,13 @@
|
||||
|
||||
%define _name gtksourceview
|
||||
Name: gtksourceview5
|
||||
Version: 5.12.1
|
||||
Version: 5.14.2
|
||||
Release: 0
|
||||
Summary: GTK+ Source Editing Widget
|
||||
License: LGPL-2.1-or-later
|
||||
Group: System/GUI/GNOME
|
||||
URL: https://wiki.gnome.org/Projects/GtkSourceView
|
||||
Source0: %{_name}-%{version}.tar.zst
|
||||
Source1: changes.lang
|
||||
|
||||
BuildRequires: gobject-introspection-devel >= 1.70
|
||||
BuildRequires: meson >= 0.59.0
|
||||
@ -102,8 +101,6 @@ features typical of a source editor.
|
||||
%install
|
||||
%meson_install
|
||||
%find_lang %{_name}-5
|
||||
# Install language definition for *.changes files:
|
||||
install -m 644 %{S:1} %{buildroot}%{_datadir}/gtksourceview-5/language-specs/
|
||||
|
||||
%ldconfig_scriptlets -n libgtksourceview-5-0
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user