Accepting request 847083 from home:jubalh

New dep for wlroots. Would be nice to have this in the same devel repo.

OBS-URL: https://build.opensuse.org/request/show/847083
OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/seatd?expand=0&rev=1
This commit is contained in:
Jan Engelhardt 2020-11-09 09:38:39 +00:00 committed by Git OBS Bridge
commit 10ff71aa33
7 changed files with 133 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 @@
<?xml version="1.0"?>
<services>
<service name="obs_scm" mode="disabled">
<param name="url">https://git.sr.ht/~kennylevinsen/seatd</param>
<param name="scm">git</param>
<param name="revision">271305a15f33c4be7396372fa043fdb6d6765bf9</param>
</service>
<service mode="disabled" name="set_version"/>
<service name="tar" mode="buildtime"/>
<service name="recompress" mode="buildtime">
<param name="compression">gz</param>
<param name="file">*.tar</param>
</service>
</services>

View File

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

4
seatd.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Mon Nov 9 09:07:00 UTC 2020 - Michael Vetter <mvetter@suse.com>
- Initial package of seatsd/libseat 0.4.0 for openSUSE

5
seatd.obsinfo Normal file
View File

@ -0,0 +1,5 @@
name: seatd
version: 1603141867.271305a
mtime: 1603141867
commit: 271305a15f33c4be7396372fa043fdb6d6765bf9

82
seatd.spec Normal file
View File

@ -0,0 +1,82 @@
#
# spec file for package seatd
#
# Copyright (c) 2020 SUSE LLC
#
# 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: seatd
Version: 1603141867.271305a
Release: 0
Summary: Seat management daemon
License: MIT
Group: System/Base
URL: https://git.sr.ht/~kennylevinsen/seatd
Source0: %{name}-%{version}.tar.gz
BuildRequires: meson
BuildRequires: ninja
BuildRequires: pkgconfig
BuildRequires: scdoc
BuildRequires: pkgconfig(systemd)
Requires: libseat1 = %{version}
%description
Seat management takes care of mediating access to shared devices (graphics, input), without requiring the applications needing access to be root.
%package -n libseat1
Summary: Shared library for %{name}
Group: Development/Libraries/C and C++
%description -n libseat1
A seat management library allowing applications to use whatever seat management is available.
Supports: seatd, (e)logind, embedded seatd for standalone operation
%package devel
Summary: Development files for %{name}
Group: Development/Libraries/C and C++
Requires: libseat1 = %{version}
%description devel
Development files for %{name}.
%prep
%setup -q
%build
%meson
%meson_build
%install
%meson_install
%post -n libseat1 -p /sbin/ldconfig
%postun -n libseat1 -p /sbin/ldconfig
%files
%license LICENSE
%doc README*
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1%{?ext_man}
%files -n libseat1
%license LICENSE
%{_libdir}/libseat.so.*
%files devel
%license LICENSE
%{_includedir}/libseat.h
%{_libdir}/pkgconfig/libseat.pc
%{_libdir}/libseat.so
%changelog