Remove service
OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/wf-config?expand=0&rev=3
This commit is contained in:
parent
4a7402f09d
commit
4c5a027702
19
_service
19
_service
@ -1,19 +0,0 @@
|
|||||||
<?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="disabled"/>
|
|
||||||
<service name="recompress" mode="disabled">
|
|
||||||
<param name="compression">xz</param>
|
|
||||||
<param name="file">*.tar</param>
|
|
||||||
</service>
|
|
||||||
</services>
|
|
@ -1,4 +0,0 @@
|
|||||||
<servicedata>
|
|
||||||
<service name="tar_scm">
|
|
||||||
<param name="url">https://github.com/WayfireWM/wf-config.git</param>
|
|
||||||
<param name="changesrevision">0c91e34356780b19024f833110a1dca613cc56bd</param></service></servicedata>
|
|
1
wf-config-0.4.0.tar.xz.sha256sum
Normal file
1
wf-config-0.4.0.tar.xz.sha256sum
Normal file
@ -0,0 +1 @@
|
|||||||
|
67e40057bf38f0fce10a4a55edb7f1c52a216c326223174f4b89c3a8e1ad057e wf-config-0.4.0.tar.xz
|
@ -1,15 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 30 05:21:22 UTC 2020 - Dead Mozay <dead_mozay@opensuse.org>
|
||||||
|
|
||||||
|
- Remove service
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 23 03:53:10 UTC 2020 - dead_mozay@opensuse.org
|
Mon Mar 23 03:53:10 UTC 2020 - dead_mozay@opensuse.org
|
||||||
|
|
||||||
- Update to version 0.4.0:
|
- Update to version 0.4.0:
|
||||||
* The syntax of the config file itself has not changed, but the
|
* This release is a complete rewrite of the old wf-config
|
||||||
new `wf-config` tool can check option types when reading from
|
|
||||||
the config file, and for integers and doubles in can also
|
|
||||||
check whether the config value is between a specified minimum
|
|
||||||
and maximum value. This information is used for displaying
|
|
||||||
proper error messages when the option value is invalid. There
|
|
||||||
is also support for setting custom default option values via
|
|
||||||
a system configuration file.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 17 06:21:54 UTC 2020 - dead_mozay@opensuse.org
|
Tue Mar 17 06:21:54 UTC 2020 - dead_mozay@opensuse.org
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
name: wf-config
|
|
||||||
version: 0.4.0
|
|
||||||
mtime: 1584817349
|
|
||||||
commit: 0c91e34356780b19024f833110a1dca613cc56bd
|
|
||||||
|
|
@ -21,10 +21,10 @@ Name: wf-config
|
|||||||
Version: 0.4.0
|
Version: 0.4.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A library for managing configuration files
|
Summary: A library for managing configuration files
|
||||||
Group: Development/Libraries/C and C++
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://wayfire.org/
|
URL: https://wayfire.org/
|
||||||
Source: https://github.com/WayfireWM/wf-config/releases/download/%version/wf-config-%version.tar.xz
|
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: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: meson
|
BuildRequires: meson
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
@ -38,20 +38,19 @@ A library for managing configuration files, written for wayfire.
|
|||||||
|
|
||||||
%package -n %{libname}
|
%package -n %{libname}
|
||||||
Summary: A library for managing configuration files
|
Summary: A library for managing configuration files
|
||||||
Group: System/Libraries
|
|
||||||
|
|
||||||
%description -n %{libname}
|
%description -n %{libname}
|
||||||
A library for managing configuration files, written for wayfire.
|
A library for managing configuration files, written for wayfire.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Group: Development/Libraries/C and C++
|
|
||||||
Requires: %{libname} = %{version}
|
Requires: %{libname} = %{version}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Development files for %{name}.
|
Development files for %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
echo "`grep %{name}-%{version}.tar.xz %{SOURCE1} | grep -Eo '^[0-9a-f]+'` %{SOURCE0}" | sha256sum -c
|
||||||
%autosetup -p1
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user