forked from JustEnoughLinuxOS/distribution
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump to Python 3.11, thanks in large part to @CoreELEC.
- Loading branch information
Showing
69 changed files
with
1,952 additions
and
2,202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
164 changes: 0 additions & 164 deletions
164
packages/devel/mold/patches/mold-999.01-fix-strip-on-armv7.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) | ||
|
||
PKG_NAME="shared-mime-info" | ||
PKG_VERSION="2.1" | ||
PKG_SHA256="37df6475da31a8b5fc63a54ba0770a3eefa0a708b778cb6366dccee96393cb60" | ||
PKG_LICENSE="GPL2" | ||
PKG_SITE="https://freedesktop.org/wiki/Software/shared-mime-info/" | ||
PKG_URL="https://gitlab.freedesktop.org/xdg/${PKG_NAME}/-/archive/${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.bz2" | ||
PKG_DEPENDS_HOST="toolchain:host glib:host libxml2:host gettext:host itstool:host" | ||
PKG_DEPENDS_TARGET="toolchain glib libxml2 gettext shared-mime-info:host" | ||
PKG_LONGDESC="The shared-mime-info package contains the core database of common types." | ||
PKG_BUILD_FLAGS="-parallel" | ||
|
||
configure_package() { | ||
# Sway Support | ||
if [ ! "${WINDOWMANAGER}" = "sway" ]; then | ||
PKG_BUILD_FLAGS+=" -sysroot" | ||
fi | ||
} | ||
|
||
PKG_MESON_OPTS_HOST="-Dupdate-mimedb=false" | ||
PKG_MESON_OPTS_TARGET="-Dupdate-mimedb=false" | ||
|
||
post_makeinstall_target() { | ||
# Create /usr/share/mime/mime.cache | ||
if [ "${WINDOWMANAGER}" = "sway" ]; then | ||
${TOOLCHAIN}/bin/update-mime-database ${INSTALL}/usr/share/mime | ||
fi | ||
} |
Oops, something went wrong.