diff --git a/temp/calamares/0001-ViewManager-remove-mainLayout-border.patch b/temp/calamares/0001-ViewManager-remove-mainLayout-border.patch deleted file mode 100644 index 99e0f4f19..000000000 --- a/temp/calamares/0001-ViewManager-remove-mainLayout-border.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 6e9b042ff704e410ff8eadc4a07724f1f395f2f2 Mon Sep 17 00:00:00 2001 -From: Oliver Smith -Date: Wed, 24 Jun 2020 09:51:29 +0200 -Subject: [PATCH] ViewManager: remove mainLayout border - -This does not look good on mobile. Upstream issue with photo and request -to make it configurable: https://github.com/calamares/calamares/issues/1446 ---- - src/libcalamaresui/ViewManager.cpp | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/libcalamaresui/ViewManager.cpp b/src/libcalamaresui/ViewManager.cpp -index c78680418..e72c434f8 100644 ---- a/src/libcalamaresui/ViewManager.cpp -+++ b/src/libcalamaresui/ViewManager.cpp -@@ -71,6 +71,7 @@ ViewManager::ViewManager( QObject* parent ) - Q_ASSERT( !s_instance ); - - QBoxLayout* mainLayout = new QVBoxLayout; -+ mainLayout->setContentsMargins( 0, 0, 0, 0 ); - m_widget->setObjectName( "viewManager" ); - m_widget->setLayout( mainLayout ); - --- -2.20.1 - diff --git a/temp/calamares/APKBUILD b/temp/calamares/APKBUILD deleted file mode 100644 index a277c1046..000000000 --- a/temp/calamares/APKBUILD +++ /dev/null @@ -1,126 +0,0 @@ -# Maintainer: Oliver Smith -pkgname=calamares -pkgver=3.2.26.1 -pkgrel=0 -arch="all !armhf" # blocked by qt5-qtdeclarative -url="https://calamares.io/" -pkgdesc="Distribution-independent installer framework" -license="GPL-3.0-or-later AND LGPL-2.1-only" -depends="ckbcomp os-prober musl-locales cryptsetup" -depends_dev=" - cmake - kcoreaddons-dev - qt5-qttools-dev - yaml-cpp-dev -" -makedepends=" - $depends_dev - boost-dev - boost-python3 - extra-cmake-modules - kconfig-dev - kcrash-dev - ki18n-dev - kpackage-dev - kparts-dev - kpmcore-dev - kservice-dev - kwidgetsaddons-dev - libatasmart-dev - libpwquality-dev - parted-dev - plasma-framework-dev - polkit-qt-1-dev - python3-dev - qt5-qtbase-dev - qt5-qtdeclarative-dev - qt5-qtsvg-dev -" -checkdepends="xvfb-run" -source="https://github.com/calamares/calamares/archive/v$pkgver/calamares-v$pkgver.tar.gz - 0001-ViewManager-remove-mainLayout-border.patch -" -subpackages="$pkgname-doc $pkgname-lang $pkgname-dev" -options="!check" # https://builds.sr.ht/~postmarketos/job/271024#task-pmbootstrap_build-1903 - -# Modules to build: -# https://github.com/calamares/calamares/tree/master/src/modules -_modules=" - keyboardq - localeq - mount - services-openrc - shellprocess - unpackfs - welcomeq -" - -for i in $_modules; do - subpackages="$pkgname-mod-$i:_module $subpackages" -done - -# Check if $1 is in $_modules -is_module_enabled() { - local i - for i in $_modules; do - [ "$i" = "$1" ] && return 0 - done - return 1 -} - -prepare() { - default_prepare - - local i - cd "$builddir/src/modules" - - # Fill $_skip_modules, list disabled modules - msg "disabled modules:" - for i in *; do - if ! [ -d "$i" ] || is_module_enabled "$i"; then - continue - fi - _skip_modules="$_skip_modules $i" - echo " - $i" - done - - # List enabled modules - msg "enabled modules:" - for i in $_modules; do - echo " - $i" - done -} - -build() { - cmake -B build \ - -DCMAKE_BUILD_TYPE=None \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=lib \ - -DSKIP_MODULES="$_skip_modules" - make -C build -} - -_module() { - local module=${subpkgname##calamares-mod-} - local path="usr/lib/calamares/modules" - - mkdir -p "$subpkgdir/$path" - mv "$pkgdir/$path/$module" "$subpkgdir/$path/$module" - - # Module-specific dependencies - case "$module" in - unpackfs) depends="$depends rsync" ;; - esac -} - -check() { - cd build - CTEST_OUTPUT_ON_FAILURE=TRUE xvfb-run ctest -} - -package() { - DESTDIR="$pkgdir" make -C build install -} - -sha512sums="ef851e329988d31cb54112462dee7125d6ae4094926e9ed31cc02b25f808bbb8446652ffc03d0c12b8b489eb15d712d7eeef829451583c60c99ef5942286be6d calamares-v3.2.26.1.tar.gz -6b5e9a27bbc504f702e6dc8b464d3581c1de850477ef1e195b39b9128ec11577693d67808dd24886689ee2b7b6bced2c0d6ef43a07af0114e64bb60b2e7bee57 0001-ViewManager-remove-mainLayout-border.patch"