forked from pool/gnome-software
Accepting request 460964 from GNOME:Next
Scripted push of GNOME:Next OBS-URL: https://build.opensuse.org/request/show/460964 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-software?expand=0&rev=107
This commit is contained in:
parent
c65f56f7c2
commit
e4f736ccb9
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9640ae4a8c5bbee7b8daa56f4c3a3c1db49570cd6b1ddf5e7b35e51f232c0038
|
||||
size 4197364
|
3
gnome-software-3.23.91.tar.xz
Normal file
3
gnome-software-3.23.91.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d1e272e9804e53f4fa40bb825ae3ac0d609fb24e5d191101f54beb19f8ec2d28
|
||||
size 4212276
|
@ -1,40 +0,0 @@
|
||||
Index: gnome-software-3.15.4/src/gs-folders.c
|
||||
===================================================================
|
||||
--- gnome-software-3.15.4.orig/src/gs-folders.c
|
||||
+++ gnome-software-3.15.4/src/gs-folders.c
|
||||
@@ -539,6 +539,7 @@ gs_folders_convert (void)
|
||||
const gchar * const children[] = {
|
||||
"Utilities",
|
||||
"Sundry",
|
||||
+ "YaST",
|
||||
NULL
|
||||
};
|
||||
const gchar * const utilities_categories[] = {
|
||||
@@ -607,6 +608,11 @@ gs_folders_convert (void)
|
||||
"vino-preferences.desktop",
|
||||
NULL
|
||||
};
|
||||
+ const gchar * const yast_categories[] = {
|
||||
+ "X-SuSE-YaST",
|
||||
+ NULL
|
||||
+ };
|
||||
+
|
||||
gchar *path;
|
||||
gchar *child_path;
|
||||
GSettings *child;
|
||||
@@ -633,6 +639,15 @@ gs_folders_convert (void)
|
||||
|
||||
g_object_unref (child);
|
||||
g_free (child_path);
|
||||
+
|
||||
+ child_path = g_strconcat (path, "folders/YaST/", NULL);
|
||||
+ child = g_settings_new_with_path (APP_FOLDER_CHILD_SCHEMA, child_path);
|
||||
+ g_settings_set_string (child, "name", "suse-yast.directory");
|
||||
+ g_settings_set_boolean (child, "translate", TRUE);
|
||||
+ g_settings_set_strv (child, "categories", yast_categories);
|
||||
+
|
||||
+ g_object_unref (child);
|
||||
+ g_free (child_path);
|
||||
|
||||
}
|
||||
}
|
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 27 16:59:17 UTC 2017 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.23.91:
|
||||
+ Add support for RuntimeRepo in flatpakref files.
|
||||
+ Allow the user to restart the currently running gnome-software
|
||||
instance.
|
||||
+ Never show components without AppData files.
|
||||
+ Initialize progress to zero right before and after processing
|
||||
an action.
|
||||
+ Animate the removal of live updates.
|
||||
+ Add YaST as a default folder in gnome-shell overview.
|
||||
- Drop gnome-software-add-default-yast-appfolder.patch: merged
|
||||
upstream.
|
||||
- Add pkgconfig(valgrind) BuildRequires: new depdenency.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 15 09:12:22 UTC 2017 - dimstar@opensuse.org
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: gnome-software
|
||||
Version: 3.23.90
|
||||
Version: 3.23.91
|
||||
Release: 0
|
||||
%define gs_plugin_api 11
|
||||
Summary: GNOME Software Store
|
||||
@ -25,14 +25,11 @@ License: GPL-2.0+
|
||||
Group: System/GUI/GNOME
|
||||
Url: https://wiki.gnome.org/Design/Apps/Software
|
||||
Source: http://download.gnome.org/sources/gnome-software/3.23/%{name}-%{version}.tar.xz
|
||||
# PATCH-FEATURE-OPENSUSE gnome-software-add-default-yast-appfolder.patch boo#897713 badshah400@gmail.com -- Adds a YaST app-folder by default, in addition to existing app-folders Sundry and Utilities
|
||||
Patch0: gnome-software-add-default-yast-appfolder.patch
|
||||
#
|
||||
BuildRequires: intltool >= 0.35.0
|
||||
BuildRequires: suse-xsl-stylesheets
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: pkgconfig(appstream-glib) >= 0.6.7
|
||||
BuildRequires: pkgconfig(flatpak) >= 0.6.12
|
||||
BuildRequires: pkgconfig(flatpak) >= 0.8.0
|
||||
BuildRequires: pkgconfig(gdk-pixbuf-2.0) >= 2.31.5
|
||||
BuildRequires: pkgconfig(gio-unix-2.0) >= 2.46.0
|
||||
BuildRequires: pkgconfig(gnome-desktop-3.0) >= 3.17.92
|
||||
@ -48,6 +45,7 @@ BuildRequires: pkgconfig(packagekit-glib2) >= 1.1.0
|
||||
BuildRequires: pkgconfig(polkit-gobject-1)
|
||||
BuildRequires: pkgconfig(rpm)
|
||||
BuildRequires: pkgconfig(sqlite3)
|
||||
BuildRequires: pkgconfig(valgrind)
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Requires: iso-codes
|
||||
Requires: libzypp-plugin-appdata
|
||||
@ -70,7 +68,6 @@ to develop applications that require these.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
%configure \
|
||||
@ -128,6 +125,7 @@ rm %{buildroot}%{_datadir}/applications/gnome-software-local-file.desktop
|
||||
%{_libdir}/gs-plugins-%{gs_plugin_api}/*.so
|
||||
#{_libexecdir}/gnome-software-service
|
||||
%{_libexecdir}/gnome-software-cmd
|
||||
%{_libexecdir}/gnome-software-restarter
|
||||
%{_mandir}/man1/%{name}.1%{?ext_man}
|
||||
%{_sysconfdir}/xdg/autostart/gnome-software-service.desktop
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user