Accepting request 839872 from home:fbui
Initial revision OBS-URL: https://build.opensuse.org/request/show/839872 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd-default-settings?expand=0&rev=1
This commit is contained in:
commit
857743875c
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
14
_service
Normal file
14
_service
Normal file
@ -0,0 +1,14 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="url">https://github.com/openSUSE/systemd-default-settings.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">main</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="compression">gz</param>
|
||||
<param name="file">*.tar</param>
|
||||
</service>
|
||||
<service name="set_version" mode="disabled"/>
|
||||
</services>
|
3
systemd-default-settings-0.1.tar.gz
Normal file
3
systemd-default-settings-0.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:350c4bffcfc413518cae8f2359028187dcc2d314afd243c28ff2c3ecaba68872
|
||||
size 1120
|
4
systemd-default-settings.changes
Normal file
4
systemd-default-settings.changes
Normal file
@ -0,0 +1,4 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 6 07:15:44 UTC 2020 - Franck Bui <fbui@suse.com>
|
||||
|
||||
- Initial revision
|
81
systemd-default-settings.spec
Normal file
81
systemd-default-settings.spec
Normal file
@ -0,0 +1,81 @@
|
||||
#
|
||||
# spec file for package systemd
|
||||
#
|
||||
# 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: systemd-default-settings
|
||||
URL: https://github.com/openSUSE/systemd-default-settings
|
||||
Version: 0.1
|
||||
Release: 0
|
||||
Summary: Customization of systemd default settings for SUSE distributions
|
||||
License: GPL-2.0-or-later
|
||||
Group: System/Base
|
||||
Source0: %{name}-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRequires: systemd-rpm-macros
|
||||
Requires: %{name}-branding = %{version}-%{release}
|
||||
|
||||
%description
|
||||
This package overrides some of the upstream default settings which are
|
||||
better suited for openSUSE or SLE distributions.
|
||||
|
||||
Removing this package will bring your system closer to the defaults
|
||||
chosen by systemd upstream.
|
||||
|
||||
%package branding-SLE
|
||||
Summary: Specific customization of systemd defaults settings for SLE
|
||||
License: GPL-2.0-or-later
|
||||
Group: System/Base
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Supplements: packageand(%{name}:branding-SLE)
|
||||
Provides: %{name}-branding = %{version}-%{release}
|
||||
Conflicts: otherproviders(%{name}-branding)
|
||||
|
||||
%description branding-SLE
|
||||
This package overrides more upstream default settings than %{name}
|
||||
does to make them better suited for SLE distributions.
|
||||
|
||||
%package branding-openSUSE
|
||||
Summary: Specific customization of systemd defaults settings for openSUSE
|
||||
License: GPL-2.0-or-later
|
||||
Group: System/Base
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Supplements: packageand(%{name}:branding-openSUSE)
|
||||
Provides: %{name}-branding = %{version}-%{release}
|
||||
Conflicts: otherproviders(%{name}-branding)
|
||||
|
||||
%description branding-openSUSE
|
||||
This package overrides more upstream default settings than %{name}
|
||||
does to make them better suited for openSUSE distributions.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
%files -f SUSE.list
|
||||
%defattr(-,root,root)
|
||||
|
||||
%files branding-SLE -f SLE.list
|
||||
%defattr(-,root,root)
|
||||
|
||||
%files branding-openSUSE -f openSUSE.list
|
||||
%defattr(-,root,root)
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user