Bjørn Lie 2019-10-04 16:01:05 +00:00 committed by Git OBS Bridge
commit 2d908ac86f
8 changed files with 125 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

15
_service Normal file
View File

@ -0,0 +1,15 @@
<services>
<service name="obs_scm" mode="disabled" >
<param name="url">https://gitlab.gnome.org/World/ShellExtensions/desktop-icons.git</param>
<param name="scm">git</param>
<param name="revision">19.01.3</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="changesgenerate">enable</param>
</service>
<service name="tar" mode="buildtime"/>
<service name="recompress" mode="buildtime">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service name="set_version" mode="disabled" />
</services>

4
_servicedata Normal file
View File

@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://gitlab.gnome.org/World/ShellExtensions/desktop-icons.git</param>
<param name="changesrevision">e7bb13c730bedb221d82fba2c1c5db38124d9fc8</param></service></servicedata>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1654db772e9700569c08629f3db5f875079e50754f37810a2d6b0dcf49bb5f77
size 244747

5
desktop-icons.obsinfo Normal file
View File

@ -0,0 +1,5 @@
name: desktop-icons
version: 19.01.3
mtime: 1556908808
commit: e7bb13c730bedb221d82fba2c1c5db38124d9fc8

View File

@ -0,0 +1,12 @@
-------------------------------------------------------------------
Wed Aug 28 05:04:54 UTC 2019 - Xiaoguang Wang <xwang@suse.com>
- Update to version 19.01.3:
+ Update Polish translation
+ Update Brazilian Portuguese translation
+ fileItem.js: Remove unneeded method call
+ Update POTFILES.in
+ fileItem.js: cancel file monitoring on destroy
+ General: fix opening terminal in folder
+ general: add new files top to bottom, left to right
+ desktopGrid.js: Check shell version for method existence

View File

@ -0,0 +1,62 @@
#
# spec file for package gnome-shell-extension-desktop-icons
#
# Copyright (c) 2019 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 https://bugs.opensuse.org/
#
Name: gnome-shell-extension-desktop-icons
Version: 19.01.3
Release: 0
Summary: Desktop icon support for GNOME Shell
License: GPL-2.0-or-later
Group: System/GUI/GNOME
URL: https://gitlab.gnome.org/World/ShellExtensions/desktop-icons
Source: desktop-icons-%{version}.tar.xz
BuildRequires: gnome-patch-translation
# Needed for directory ownership
BuildRequires: gnome-shell >= 3.30
# gobject-introspection is needed for the typelib() rpm magic.
BuildRequires: gobject-introspection
BuildRequires: meson >= 0.44.0
BuildRequires: translation-update-upstream
Requires: gnome-shell
Requires: nautilus >= 3.30.4
Requires: xdg-desktop-portal-gtk
BuildArch: noarch
%description
This package provides a GNOME Shell extension for showing the contents
of ~/Desktop on the desktop of the Shell. Common file management
operations such as launching, copy/paste, rename and deleting are
supported.
%prep
%setup -q -n desktop-icons-%{version}
translation-update-upstream po %{name}
gnome-patch-translation-prepare po %{name}
%build
%meson \
--localedir=share/gnome-shell/extensions/desktop-icons@csoriano/locale
%meson_build
%install
%meson_install
%files
%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.desktop-icons.gschema.xml
%{_datadir}/gnome-shell/extensions/desktop-icons@csoriano/
%changelog