Hello community,

here is the log from the commit of package appeditor for openSUSE:Leap:15.2 
checked in at 2020-02-19 18:46:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/appeditor (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.appeditor.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "appeditor"

Wed Feb 19 18:46:34 2020 rev:1 rq:775871 version:1.1.0

Changes:
--------
New Changes file:

--- /dev/null   2019-12-19 10:12:34.003146842 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.appeditor.new.26092/appeditor.changes 
2020-02-19 18:46:35.438825006 +0100
@@ -0,0 +1,51 @@
+-------------------------------------------------------------------
+Thu Oct 31 15:30:50 UTC 2019 - Alexei Podvalsky <[email protected]>
+
+- Add appeditor-1.1.0-vala-0.46.patch
+
+-------------------------------------------------------------------
+Tue Aug 14 18:21:47 UTC 2018 - [email protected]
+
+- Update to 1.1.0:
+  * Fix IconButton CSS for GTK 3.22
+  * Remove matrix from travis.yml
+  * Conditionally compile Posix constants with Vala >= 0.40
+  * Remove debian packaging in favor of separate branches
+  * Add find shortcut
+  * Add content rating to AppStream data
+  * Add missing file
+  * Remove deprecations; port to Granite.MessageDialog; add new 
+    shortcuts for new and duplicating app entries
+  * Add support for Gtk 3.22 (Juno)
+  * Reflect #56 in ja.po (#57)
+  * Fix a typo (#56)
+  * Add contractor entry for creating new application menu 
+    entries from the file manager; update strings
+  * Add german language (#39)
+  * Fix compilation on systems without the GLib KEY_FULLNAME 
+    constant
+  * Do not escape the display name nor the description
+- Remove obsolete macros
+
+-------------------------------------------------------------------
+Sat Jul 14 15:08:12 UTC 2018 - [email protected]
+
+- Update description.
+
+-------------------------------------------------------------------
+Sat Jan 20 11:52:31 UTC 2018 - [email protected]
+
+- Update to 1.0.0:
+  * Add a duplicate button
+  * Remove the app item from the items list - fix removing non 
+    existent items from the sidebar; create new application entry 
+    with the same category of the selected app
+  * Fix wrong interpretation of the command line entry: validate 
+    only the first argument of the Exec key
+- Add the package with translations
+
+-------------------------------------------------------------------
+Sun Dec 24 19:26:27 UTC 2017 - [email protected]
+
+- Initial package
+

New:
----
  appeditor-1.1.0-vala-0.46.patch
  appeditor-1.1.0.tar.gz
  appeditor.changes
  appeditor.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ appeditor.spec ++++++
#
# spec file for package appeditor
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           appeditor
Version:        1.1.0
Release:        0
Summary:        Application Entry Editor
License:        GPL-3.0-or-later
Group:          System/GUI/Other
URL:            https://github.com/donadigo/appeditor
Source:         
https://github.com/donadigo/appeditor/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
# PATCH-FIX_UPSTREAM -- Fix build with vala >= 0.46
Patch0:         appeditor-1.1.0-vala-0.46.patch
BuildRequires:  fdupes
BuildRequires:  hicolor-icon-theme
BuildRequires:  libxml2-tools
BuildRequires:  meson >= 0.40.0
BuildRequires:  pkgconfig
BuildRequires:  update-desktop-files
BuildRequires:  vala
BuildRequires:  pkgconfig(gee-0.8)
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(granite) >= 0.5
BuildRequires:  pkgconfig(gtk+-3.0)
Recommends:     %{name}-lang

%description
A program to edit application entries shown in the application menu,
and to edit their properties.

%lang_package

%prep
%setup -q
%patch0 -p1

%build
%meson
%meson_build

%install
%meson_install
%suse_update_desktop_file -r com.github.donadigo.appeditor GTK Utility Settings
%find_lang com.github.donadigo.appeditor %{name}.lang
%fdupes %{buildroot}/%{_datadir}

%files
%doc README.md
%{_bindir}/com.github.donadigo.appeditor
%{_datadir}/applications/com.github.donadigo.appeditor.desktop
%dir %{_datadir}/contractor
%{_datadir}/contractor/com.github.donadigo.appeditor.contract
%{_datadir}/glib-2.0/schemas/com.github.donadigo.appeditor.gschema.xml
%{_datadir}/icons/hicolor/*/apps/com.github.donadigo.appeditor.??g
%{_datadir}/metainfo/com.github.donadigo.appeditor.appdata.xml

%files lang -f %{name}.lang

%changelog
++++++ appeditor-1.1.0-vala-0.46.patch ++++++
diff -ruN appeditor-1.1.0.orig/src/DesktopApp.vala 
appeditor-1.1.0/src/DesktopApp.vala
--- appeditor-1.1.0.orig/src/DesktopApp.vala    2018-08-11 03:36:15.000000000 
+0300
+++ appeditor-1.1.0/src/DesktopApp.vala 2019-10-31 18:28:16.429914184 +0300
@@ -130,7 +130,7 @@
 
     public unowned string get_path () {
         if (path == null) {
-            unowned string _path = info.get_string (KeyFileDesktop.KEY_PATH);
+            string _path = info.get_string (KeyFileDesktop.KEY_PATH);
             if (_path == null) {
                 _path = "";
             }
@@ -150,7 +150,7 @@
     }
 
     public bool get_should_show () {
-        return info.should_show () && !get_terminal (); 
+        return info.should_show () && !get_terminal ();
     }
 
     public string[] get_categories () {

Reply via email to