- Use new tik-gui variables

- Change image path to /usr/lib/tik/img 

- Initial packaging

OBS-URL: https://build.opensuse.org/package/show/devel:microos:aeon/tik-config-Aeon?expand=0&rev=1
This commit is contained in:
Richard Brown 2024-05-02 12:43:45 +00:00 committed by Git OBS Bridge
commit 52d53e9640
6 changed files with 134 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

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2023 Richard Brown
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

23
config Normal file
View File

@ -0,0 +1,23 @@
# Directory for users to add custom configuration and modules
# Default: "/etc/tik"
TIK_CUSTOM_DIR="/etc/tik"
# Directory for OS images to be deployed
# Default: "/usr/lib/tik/img"
TIK_IMG_DIR="/usr/lib/tik/img"
# For unattended installations the disk device to deploy the image must be defined
# Default: Undefined
#TIK_INSTALL_DEVICE=""
# For unattended installations the disk image to deploy must be defined if more than one is present
# Default: Undefined
#TIK_INSTALL_IMAGE=""
# Display name of the OS to be deployed by tik
# Default: Undefined
TIK_OS_NAME="openSUSE Aeon"
# URL for bug reports to go to
# Default: https://aeondesktop.org/reportbug
#TIK_BUG_URL="https://aeondesktop.org/reportbug"

14
tik-config-Aeon.changes Normal file
View File

@ -0,0 +1,14 @@
-------------------------------------------------------------------
Thu May 2 12:42:48 UTC 2024 - Richard Brown <rbrown@suse.com>
- Use new tik-gui variables
-------------------------------------------------------------------
Mon Apr 8 12:37:17 UTC 2024 - Richard Brown <rbrown@suse.com>
- Change image path to /usr/lib/tik/img
-------------------------------------------------------------------
Thu Apr 4 16:12:59 UTC 2024 - Richard Brown <rbrown@suse.com>
- Initial packaging

52
tik-config-Aeon.spec Normal file
View File

@ -0,0 +1,52 @@
#
# spec file for package tik-config-Aeon
#
# Copyright (c) 2024 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: tik-config-Aeon
Version: 20240502
Release: 0
Summary: Aeon configuration for tik
License: MIT
URL: https://github.com/sysrich/tik
Source: config
Source1: LICENSE
BuildArch: noarch
BuildRequires: tik-config-generic
Conflicts: tik-config
Provides: tik-config
%description
Aeon configuration for tik.
%prep
cp -a %{SOURCE0} config
cp -a %{SOURCE1} LICENSE
%build
%install
install -D -m 644 %{SOURCE0} %{buildroot}%{_prefix}/lib/tik/config
install -D -m 644 %{_sysconfdir}/tik/config %{buildroot}%{_sysconfdir}/tik/config
%files
%license LICENSE
%{_prefix}/lib/tik/config
%dir %{_sysconfdir}/tik
%config(noreplace) %{_sysconfdir}/tik/config
%changelog