-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkinoite-common.yaml
73 lines (66 loc) · 2.12 KB
/
kinoite-common.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
include:
- common.yaml
# Default to Kinoite and override in Kinoite Mobile manifests
variables:
variant: "kinoite"
conditional-include:
- if: variant == "kinoite"
include:
- kinoite-packages.yaml
- if: variant == "kinoite-mobile"
include:
- kinoite-mobile-packages.yaml
# Default to Kinoite (Desktop). Overriden in the Kinoite Mobile manifest
ref: fedora/rawhide/${basearch}/kinoite
rojig:
name: fedora-kde
summary: "Fedora Kinoite"
license: MIT
packages:
- fedora-release-kinoite
# Install some minor optional tools for KInfoCenter
- vulkan-tools
- xdpyinfo
# Includes a KIO & KCM (can not be Flatpak'ed), used by Dolphin and Gwenview
# See https://pagure.io/fedora-kde/SIG/issue/291
- kamera
# Make sure that previous Anaconda dependencies are kept in the image
# See: https://pagure.io/fedora-kde/SIG/issue/243
- mobile-broadband-provider-info
# Make sure that modem support is installed
- NetworkManager-ppp
# Install gdb to make getting backtraces work with DrKonqi
- gdb
# Explicitely not included via comps
# See: https://pagure.io/fedora-kde/SIG/issue/295
- plasma-welcome-fedora
# Make sure rpm-ostree support is installed
- plasma-discover-rpm-ostree
# Make sure the following are not pulled in when Recommended by other packages
exclude-packages:
- plasma-discover-offline-updates
- plasma-discover-packagekit
- plasma-pk-updates
# Manually excluded as recommended by gtk3 (and likely gtk4 in the future)
# See https://pagure.io/fedora-kde/SIG/issue/124
- tracker
- tracker-miners
- localsearch
- tinysparql
# Ensure we do not include X11 support
- plasma-x11
- plasma-workspace-x11
# Exclude mariadb server tools that bring in Perl
- mariadb-server-utils
# Kinoite specific workarounds and configuration
postprocess:
- |
#!/bin/bash
set -xeuo pipefail
# Enable weekly auto updates in Discover. In the future, Flatpaks will be
# updated daily. See: https://bugs.kde.org/show_bug.cgi?id=454422
cat > /etc/xdg/PlasmaDiscoverUpdates <<EOF
[Global]
UseUnattendedUpdates=true
RequiredNotificationInterval=604800
EOF