Michael Vetter 2020-04-30 07:26:35 +00:00 committed by Git OBS Bridge
commit c7737bf169
6 changed files with 116 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

3
wf-shell-0.4.0.tar.xz Normal file
View File

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

View File

@ -0,0 +1 @@
bc03e5232d72f69bf6ba634f688f5e896715d846b7b6344136e9eb88dd6a9aa0 wf-shell-0.4.0.tar.xz

27
wf-shell.changes Normal file
View File

@ -0,0 +1,27 @@
-------------------------------------------------------------------
Thu Apr 30 05:27:02 UTC 2020 - Dead Mozay <dead_mozay@opensuse.org>
- Remove service
-------------------------------------------------------------------
Mon Mar 23 04:05:09 UTC 2020 - dead_mozay@opensuse.org
- Update to version 0.4.0:
* No changelog was made available.
-------------------------------------------------------------------
Tue Mar 17 05:29:19 UTC 2020 - dead_mozay@opensuse.org
- Update to version 0.3:
* No changelog was made available.
-------------------------------------------------------------------
Thu Oct 03 13:25:55 UTC 2019 - dead_mozay@opensuse.org
- Update to version 0.1.git~20191002.513c22f:
* No changelog was made available.
-------------------------------------------------------------------
Thu Oct 3 13:25:24 UTC 2019 - Dead Mozay <dead_mozay@opensuse.org>
- Initial package

61
wf-shell.spec Normal file
View File

@ -0,0 +1,61 @@
#
# spec file for package wf-shell
#
# 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 http://bugs.opensuse.org/
#
Name: wf-shell
Version: 0.4.0
Release: 0
Summary: A GTK3-based panel for wayfire
License: MIT
Url: https://wayfire.org/
Source0: https://github.com/WayfireWM/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz
Source1: https://github.com/WayfireWM/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz.sha256sum
BuildRequires: meson
BuildRequires: gcc-c++
BuildRequires: libboost_filesystem-devel
BuildRequires: pkgconfig(alsa)
BuildRequires: pkgconfig(libpulse)
BuildRequires: pkgconfig(gtkmm-3.0)
BuildRequires: pkgconfig(wayfire)
BuildRequires: pkgconfig(wf-config)
BuildRequires: pkgconfig(wayland-client)
BuildRequires: pkgconfig(wayland-protocols)
BuildRequires: pkgconfig(gtk-layer-shell-0)
%description
wf-shell is a repository which contains the various components needed to built a fully functional DE based around wayfire. Currently it has only a GTK-based panel and background client.
%prep
echo "`grep %{name}-%{version}.tar.xz %{SOURCE1} | grep -Eo '^[0-9a-f]+'` %{SOURCE0}" | sha256sum -c
%autosetup
%build
%meson
%meson_build
%install
%meson_install
install -D -m 0644 wf-shell.ini.example %{buildroot}%{_datadir}/wayfire/wf-shell.ini.example
%files
%{_bindir}/wf-*
%{_datadir}/wayfire/
%{_datadir}/wayfire/wf-shell.ini.example
%{_datadir}/wayfire/icons/*.png
%changelog