forked from pool/gnome-branding-Aeon
osc copypac from project:openSUSE:ALP:Products:Aeon package:gnome-branding-Aeon revision:2
OBS-URL: https://build.opensuse.org/package/show/devel:microos:aeon/gnome-branding-Aeon?expand=0&rev=1
This commit is contained in:
commit
9cf6800595
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
|
1
50-desktop.conf
Normal file
1
50-desktop.conf
Normal file
@ -0,0 +1 @@
|
|||||||
|
REBOOT_METHOD=notify
|
6
Aeon.gschema.override
Normal file
6
Aeon.gschema.override
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[org.gnome.software]
|
||||||
|
install-bundles-system-wide = false
|
||||||
|
enable-repos-dialog = false
|
||||||
|
|
||||||
|
[org.gnome.shell]
|
||||||
|
favorite-apps=['org.mozilla.firefox.desktop', 'org.gnome.Software.desktop', 'org.gnome.Nautilus.desktop']
|
32
COPYING
Normal file
32
COPYING
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
Copyright (c) 2021, SUSE Software Solutions GmbH.
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
This package (other than those portions that are trademarks, logos, and trade
|
||||||
|
dress of SUSE Software Solutions GmbH), is made available under the following terms:
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
* Redistributions of source code must retain the above copyright notice, this
|
||||||
|
list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer in the documentation
|
||||||
|
and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
* Neither the name of the SUSE nor the names of its contributors may be
|
||||||
|
used to endorse or promote products derived from this software without
|
||||||
|
specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||||
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
||||||
|
THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
60
aeon-firstboot
Normal file
60
aeon-firstboot
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
(
|
||||||
|
echo "# Waiting for Internet connection"
|
||||||
|
until /usr/bin/ping -q -c 1 flathub.org; do sleep 1; done
|
||||||
|
echo "10"
|
||||||
|
|
||||||
|
echo "# Adding Flathub Repository"
|
||||||
|
/usr/bin/flatpak remote-add --user --if-not-exists flathub /usr/share/aeon/flathub.flatpakrepo
|
||||||
|
if [ "$?" != 0 ] ; then
|
||||||
|
zenity --error \
|
||||||
|
--text="Adding Flathub Repo Failed"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "20"
|
||||||
|
|
||||||
|
echo "# Installing Firefox"
|
||||||
|
/usr/bin/flatpak install --user --noninteractive flathub org.mozilla.firefox
|
||||||
|
if [ "$?" != 0 ] ; then
|
||||||
|
zenity --error \
|
||||||
|
--text="Installing Firefox Failed"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "40"
|
||||||
|
echo "# Installing Calculator"
|
||||||
|
/usr/bin/flatpak install --user --noninteractive flathub org.gnome.Calculator
|
||||||
|
if [ "$?" != 0 ] ; then
|
||||||
|
zenity --error \
|
||||||
|
--text="Installing Calculator Failed"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "60"
|
||||||
|
echo "# Installing Text Editor"
|
||||||
|
/usr/bin/flatpak install --user --noninteractive flathub org.gnome.TextEditor
|
||||||
|
if [ "$?" != 0 ] ; then
|
||||||
|
zenity --error \
|
||||||
|
--text="Installing Text Editor Failed"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "80"
|
||||||
|
echo "# Installing Extension Manager"
|
||||||
|
/usr/bin/flatpak install --user --noninteractive flathub com.mattjakeman.ExtensionManager
|
||||||
|
if [ "$?" != 0 ] ; then
|
||||||
|
zenity --error \
|
||||||
|
--text="Installing Extension Manager Failed"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "100"
|
||||||
|
echo "# Cleaning up"
|
||||||
|
rm ~/.config/autostart/aeon-firstboot.desktop
|
||||||
|
) |
|
||||||
|
zenity --progress --title="Aeon Firstboot" --percentage=0 --auto-close --no-cancel --width=300
|
||||||
|
|
||||||
|
if [ "$?" != 0 ] ; then
|
||||||
|
zenity --error \
|
||||||
|
--text="Firstboot Configuration Error"
|
||||||
|
fi
|
8
aeon-firstboot.desktop
Normal file
8
aeon-firstboot.desktop
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=Aeon FirstBoot Setup
|
||||||
|
Comment=Sets up Aeon Correctly On FirstBoot
|
||||||
|
Exec=/usr/bin/aeon-firstboot
|
||||||
|
Icon=org.gnome.Terminal
|
||||||
|
Type=Application
|
||||||
|
Categories=Utility;System;
|
||||||
|
Name[en_GB]=startup
|
3
aeonwallpaper.png
Normal file
3
aeonwallpaper.png
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a11d2409c99be0c744360bb416bb94ac550e244752fe2d6da1aa5f3233b428e2
|
||||||
|
size 13315529
|
8
flathub.flatpakrepo
Normal file
8
flathub.flatpakrepo
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
[Flatpak Repo]
|
||||||
|
Title=Flathub
|
||||||
|
Url=https://dl.flathub.org/repo/
|
||||||
|
Homepage=https://flathub.org/
|
||||||
|
Comment=Central repository of Flatpak applications
|
||||||
|
Description=Central repository of Flatpak applications
|
||||||
|
Icon=https://dl.flathub.org/repo/logo.svg
|
||||||
|
GPGKey=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
|
74
gnome-branding-Aeon.changes
Normal file
74
gnome-branding-Aeon.changes
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 17 12:41:44 UTC 2023 - Richard Brown <rbrown@suse.de>
|
||||||
|
|
||||||
|
- Rename to gnome-branding-Aeon
|
||||||
|
- 20230617
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 20 10:47:48 UTC 2023 - Richard Brown <rbrown@suse.com>
|
||||||
|
|
||||||
|
- Remove unneeded cleanup of desktop drop-in
|
||||||
|
- 20230420
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 19 16:04:49 UTC 2023 - Richard Brown <rbrown@suse.com>
|
||||||
|
|
||||||
|
- Correct location for Desktop drop-in config
|
||||||
|
- Clean up invalid desktop drop-in file
|
||||||
|
- 20230419
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 24 16:26:45 UTC 2023 - Richard Brown <rbrown@suse.com>
|
||||||
|
|
||||||
|
- Use new transactional-update drop-in config for Desktop
|
||||||
|
notification configuration
|
||||||
|
- 20230323
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 26 12:02:13 UTC 2023 - Richard Brown <rbrown@suse.com>
|
||||||
|
|
||||||
|
- Correct the transactional-update reboot method for GNOME Desktop
|
||||||
|
- 20230126
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 23 16:31:32 UTC 2022 - Dario Faggioli <dfaggioli@suse.com>
|
||||||
|
|
||||||
|
- Add zenity as an hard-dep, as we need it for mod-firstboot
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 4 17:21:54 UTC 2022 - Shawn Dunn <sfalken@cloverleaf-linux.org>
|
||||||
|
|
||||||
|
- Add Conflicts: plasma-branding-MicroOS
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jan 29 11:43:01 UTC 2022 - Dario Faggioli <dfaggioli@suse.com>
|
||||||
|
|
||||||
|
- fix firstboot script: we should not go over 100% as anything that is
|
||||||
|
after "echo 100", will just be ignored (currently, it was the cleanup)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 12 14:00:00 UTC 2022 - Syds Bearda <opensuse@syds.eu>
|
||||||
|
|
||||||
|
- added an extra flatpak to Manage Extensions so a rpm based chromium or firefox browser is no longer necessary "com.mattjakeman.ExtensionManager"
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 11 13:53:03 UTC 2021 - Richard Brown <rbrown@suse.com>
|
||||||
|
|
||||||
|
- Use "Text Editor" instead of the less-supported "gEdit"
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 27 23:37:33 UTC 2021 - Michał Rostecki <mrostecki@suse.com>
|
||||||
|
|
||||||
|
- Wait for Internet connectivity before proceeding with next steps.
|
||||||
|
Before this change, the mod-firstboot script was failing when:
|
||||||
|
* there was no network configured on the first boot (happens
|
||||||
|
when using NetworkManager, since it's not configured by YaST
|
||||||
|
during installation)
|
||||||
|
* the script started before wifi connection was properly
|
||||||
|
established
|
||||||
|
- 20210427
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 22 10:21:05 UTC 2021 - Richard Brown <rbrown@suse.com>
|
||||||
|
|
||||||
|
- Initial Package
|
94
gnome-branding-Aeon.spec
Normal file
94
gnome-branding-Aeon.spec
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
#
|
||||||
|
# spec file for package gnome-branding-Aeon
|
||||||
|
#
|
||||||
|
# Copyright (c) 2023 SUSE LLC
|
||||||
|
# Copyright (c) 2021 SUSE Software Solutions GmbH
|
||||||
|
#
|
||||||
|
# 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: gnome-branding-Aeon
|
||||||
|
Summary: Aeon default settings
|
||||||
|
License: BSD-3-Clause
|
||||||
|
Group: System/GUI/GNOME
|
||||||
|
URL: http://www.gtk.org/
|
||||||
|
Source: COPYING
|
||||||
|
Source1: Aeon.gschema.override
|
||||||
|
Source2: flathub.flatpakrepo
|
||||||
|
Source3: aeon-firstboot.desktop
|
||||||
|
Source4: aeon-firstboot
|
||||||
|
Source5: 50-desktop.conf
|
||||||
|
Source6: aeonwallpaper.png
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: flatpak
|
||||||
|
BuildRequires: gio-branding-openSUSE
|
||||||
|
BuildRequires: transactional-update
|
||||||
|
Requires: flatpak
|
||||||
|
Requires: gio-branding-openSUSE
|
||||||
|
Requires: sound-theme-freedesktop
|
||||||
|
Requires: transactional-update
|
||||||
|
Requires: zenity
|
||||||
|
Obsoletes: gnome-branding-MicroOS
|
||||||
|
Provides: gnome-branding-MicroOS
|
||||||
|
Conflicts: plasma-branding-MicroOS
|
||||||
|
Version: 20230617
|
||||||
|
Release: 0
|
||||||
|
|
||||||
|
%description
|
||||||
|
This package provides Aeon defaults for GNOME settings.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -T -c %{name}-%{version}
|
||||||
|
cp -a %{SOURCE0} COPYING
|
||||||
|
cp -a %{SOURCE1} 30_Aeon.gschema.override
|
||||||
|
cp -a %{SOURCE2} flathub.flatpakrepo
|
||||||
|
cp -a %{SOURCE3} aeon-firstboot.desktop
|
||||||
|
cp -a %{SOURCE4} aeon-firstboot
|
||||||
|
cp -a %{SOURCE5} 50-desktop.conf
|
||||||
|
cp -a %{SOURCE6} aeonwallpaper.png
|
||||||
|
|
||||||
|
%build
|
||||||
|
|
||||||
|
%install
|
||||||
|
install -d %{buildroot}%{_datadir}/glib-2.0/schemas
|
||||||
|
install -m0644 30_Aeon.gschema.override %{buildroot}%{_datadir}/glib-2.0/schemas/
|
||||||
|
install -d %{buildroot}%{_prefix}/share/aeon
|
||||||
|
install -m0644 flathub.flatpakrepo %{buildroot}%{_prefix}/share/aeon
|
||||||
|
install -d %{buildroot}%{_sysconfdir}/skel/.config/autostart
|
||||||
|
install -m0644 aeon-firstboot.desktop %{buildroot}%{_sysconfdir}/skel/.config/autostart/aeon-firstboot.desktop
|
||||||
|
install -d %{buildroot}%{_bindir}
|
||||||
|
install -m0755 aeon-firstboot %{buildroot}%{_bindir}/aeon-firstboot
|
||||||
|
install -d %{buildroot}%{_prefix}%{_sysconfdir}/transactional-update.conf.d
|
||||||
|
install -m644 50-desktop.conf %{buildroot}%{_prefix}%{_sysconfdir}/transactional-update.conf.d/50-desktop.conf
|
||||||
|
install -d %{buildroot}%{_datadir}/wallpapers
|
||||||
|
install -m0644 aeonwallpaper.png %{buildroot}%{_datadir}/wallpapers/aeonwallpaper.png
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
%postun
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license COPYING
|
||||||
|
%{_datadir}/glib-2.0/schemas/30_Aeon.gschema.override
|
||||||
|
%dir %{_prefix}/share/aeon
|
||||||
|
%{_prefix}/share/aeon/flathub.flatpakrepo
|
||||||
|
%dir %{_sysconfdir}/skel/.config
|
||||||
|
%dir %{_sysconfdir}/skel/.config/autostart
|
||||||
|
%config(noreplace) %{_sysconfdir}/skel/.config/autostart/aeon-firstboot.desktop
|
||||||
|
%{_bindir}/aeon-firstboot
|
||||||
|
%dir %{_prefix}%{_sysconfdir}/transactional-update.conf.d
|
||||||
|
%{_prefix}%{_sysconfdir}/transactional-update.conf.d/50-desktop.conf
|
||||||
|
%dir %{_datadir}/wallpapers
|
||||||
|
%{_datadir}/wallpapers/aeonwallpaper.png
|
||||||
|
|
||||||
|
%changelog
|
Loading…
Reference in New Issue
Block a user