Jan Engelhardt 2020-04-24 13:41:48 +00:00 committed by Git OBS Bridge
commit 3d1ce69f81
8 changed files with 150 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

19
_service Normal file
View File

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<services>
<service name="obs_scm" mode="disabled">
<param name="filename">wf-config</param>
<param name="url">https://github.com/WayfireWM/wf-config.git</param>
<param name="scm">git</param>
<param name="version">git-master</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">0.4.0</param>
<param name="changesgenerate">enable</param>
<param name="changesauthor">dead_mozay@opensuse.org</param>
</service>
<service mode="disabled" name="set_version"/>
<service name="tar" mode="buildtime"/>
<service name="recompress" mode="buildtime">
<param name="compression">xz</param>
<param name="file">*.tar</param>
</service>
</services>

4
_servicedata Normal file
View File

@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/WayfireWM/wf-config.git</param>
<param name="changesrevision">0c91e34356780b19024f833110a1dca613cc56bd</param></service></servicedata>

3
wf-config-0.4.0.obscpio Normal file
View File

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

22
wf-config.changes Normal file
View File

@ -0,0 +1,22 @@
-------------------------------------------------------------------
Mon Mar 23 03:53:10 UTC 2020 - dead_mozay@opensuse.org
- Update to version 0.4.0:
* This release is a complete rewrite of the old wf-config
-------------------------------------------------------------------
Tue Mar 17 06:21:54 UTC 2020 - dead_mozay@opensuse.org
- Update to version 0.3.git~20200223.fdcc040:
* No user-visible changes
-------------------------------------------------------------------
Thu Oct 03 10:47:42 UTC 2019 - dead_mozay@opensuse.org
- Update to version 0.1:
* No user-visible changes
-------------------------------------------------------------------
Thu Oct 3 10:47:22 UTC 2019 - Dead Mozay <dead_mozay@opensuse.org>
- Initial package

5
wf-config.obsinfo Normal file
View File

@ -0,0 +1,5 @@
name: wf-config
version: 0.4.0
mtime: 1584817349
commit: 0c91e34356780b19024f833110a1dca613cc56bd

73
wf-config.spec Normal file
View File

@ -0,0 +1,73 @@
#
# spec file for package wf-config
#
# 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/
#
%define so_ver 0.3
%define libname libwf-config0
Name: wf-config
Version: 0.4.0
Release: 0
Summary: A library for managing configuration files
License: MIT
URL: https://wayfire.org/
Source: %{name}-%{version}.tar.xz
BuildRequires: gcc-c++
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: pkgconfig(glm)
BuildRequires: pkgconfig(libxml-2.0)
BuildRequires: pkgconfig(libevdev)
BuildRequires: pkgconfig(wlroots)
%description
A library for managing configuration files, written for wayfire.
%package -n %{libname}
Summary: A library for managing configuration files
%description -n %{libname}
A library for managing configuration files, written for wayfire.
%package devel
Summary: Development files for %{name}
Requires: %{libname} = %{version}
%description devel
Development files for %{name}.
%prep
%autosetup -p1
%build
%meson
%meson_build
%install
%meson_install
%post -n %{libname} -p /sbin/ldconfig
%postun -n %{libname} -p /sbin/ldconfig
%files -n %{libname}
%license LICENSE
%{_libdir}/*.so.*
%files devel
%{_includedir}/wayfire
%{_libdir}/libwf-config.so
%{_libdir}/pkgconfig/wf-config.pc
%changelog