*/*: leading whitespaces -> tab

command used:
```
find -type f -name '*.ebuild' -exec sed -i -E 's/^    /\t/g' {} +
```

I was running this command anyway after when I was working on a few
packages because my formatter broke, decided to run it on the root of
the repo then because I was already gonna run it on the packages that I
was working on

I checked each package manually and ran pkgdev to actually see if it was
emitting any warnings, and all of them did for the leading whitepsaces

Signed-off-by: ingenarel <ingenarelitems@gmail.com>
This commit is contained in:
ingenarel
2025-12-16 05:54:25 +06:00
parent b8e23aabb1
commit 2585c9f1ad
7 changed files with 89 additions and 89 deletions

View File

@@ -17,28 +17,28 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="" IUSE=""
DEPEND="dev-libs/boost DEPEND="dev-libs/boost
dev-libs/openssl dev-libs/openssl
dev-build/cmake dev-build/cmake
dev-cpp/yaml-cpp dev-cpp/yaml-cpp
dev-cpp/eigen dev-cpp/eigen
dev-cpp/robotraconteur dev-cpp/robotraconteur
" "
RDEPEND="${DEPEND}" RDEPEND="${DEPEND}"
src_configure() { src_configure() {
local mycmakeargs=( local mycmakeargs=(
-DCMAKE_SKIP_RPATH=ON -DCMAKE_SKIP_RPATH=ON
-DBUILD_TESTING=OFF -DBUILD_TESTING=OFF
-DBUILD_DOCUMENTATION=OFF -DBUILD_DOCUMENTATION=OFF
-DROBOTRACONTEUR_COMPANION_SOVERSION_MAJOR_ONLY=ON -DROBOTRACONTEUR_COMPANION_SOVERSION_MAJOR_ONLY=ON
) )
cmake_src_configure cmake_src_configure
} }
src_compile() { src_compile() {
cmake_src_compile cmake_src_compile
} }
src_install() { src_install() {
cmake_src_install cmake_src_install
} }

View File

@@ -19,72 +19,72 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="python" IUSE="python"
DEPEND="dev-libs/boost DEPEND="dev-libs/boost
dev-libs/openssl dev-libs/openssl
dev-libs/libusb dev-libs/libusb
sys-apps/dbus sys-apps/dbus
net-wireless/bluez net-wireless/bluez
dev-build/cmake dev-build/cmake
python? ( dev-python/numpy[${PYTHON_USEDEP}] python? ( dev-python/numpy[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}] dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/pip[${PYTHON_USEDEP}] ) dev-python/pip[${PYTHON_USEDEP}] )
" "
RDEPEND=" RDEPEND="
${DEPEND} ${DEPEND}
python? ( python? (
${PYTHON_DEPS} ${PYTHON_DEPS}
) )
" "
REQUIRED_USE=" REQUIRED_USE="
python? ( ${PYTHON_REQUIRED_USE} ) python? ( ${PYTHON_REQUIRED_USE} )
" "
python_configure() { python_configure() {
local mycmakeargs=( local mycmakeargs=(
-DCMAKE_SKIP_RPATH=ON -DCMAKE_SKIP_RPATH=ON
-DBUILD_GEN=ON -DBUILD_GEN=ON
-DBUILD_TESTING=OFF -DBUILD_TESTING=OFF
-DBUILD_DOCUMENTATION=OFF -DBUILD_DOCUMENTATION=OFF
-DBUILD_PYTHON3=ON -DBUILD_PYTHON3=ON
-DINSTALL_PYTHON3_PIP=ON -DINSTALL_PYTHON3_PIP=ON
-DINSTALL_PYTHON3_PIP_EXTRA_ARGS="--compile --use-pep517 --no-build-isolation --no-deps --root-user-action=ignore" -DINSTALL_PYTHON3_PIP_EXTRA_ARGS="--compile --use-pep517 --no-build-isolation --no-deps --root-user-action=ignore"
-DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON
) )
cmake_src_configure cmake_src_configure
} }
src_configure() { src_configure() {
if use python; then if use python; then
python_foreach_impl python_configure python_foreach_impl python_configure
else else
local mycmakeargs=( local mycmakeargs=(
-DCMAKE_SKIP_RPATH=ON -DCMAKE_SKIP_RPATH=ON
-DBUILD_GEN=ON -DBUILD_GEN=ON
-DBUILD_TESTING=OFF -DBUILD_TESTING=OFF
-DBUILD_DOCUMENTATION=OFF -DBUILD_DOCUMENTATION=OFF
-DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON
) )
cmake_src_configure cmake_src_configure
fi fi
} }
src_compile() { src_compile() {
if use python; then if use python; then
python_foreach_impl cmake_src_compile python_foreach_impl cmake_src_compile
else else
cmake_src_compile cmake_src_compile
fi fi
} }
python_install(){ python_install(){
cmake_src_install cmake_src_install
python_optimize "${D}$(python_get_sitedir)/RobotRaconteur" || die "Failed to optimize Python files" python_optimize "${D}$(python_get_sitedir)/RobotRaconteur" || die "Failed to optimize Python files"
} }
src_install() { src_install() {
if use python; then if use python; then
python_foreach_impl python_install python_foreach_impl python_install
else else
cmake_src_install cmake_src_install
fi fi
} }

View File

@@ -188,14 +188,14 @@ inherit cargo shell-completion
DESCRIPTION="Efficient animated wallpaper daemon for wayland, controlled at runtime" DESCRIPTION="Efficient animated wallpaper daemon for wayland, controlled at runtime"
HOMEPAGE="https://codeberg.org/LGFae/awww" HOMEPAGE="https://codeberg.org/LGFae/awww"
if [[ ${PV} == *9999* ]]; then if [[ ${PV} == *9999* ]]; then
inherit git-r3 inherit git-r3
EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git" EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git"
else else
SRC_URI=" SRC_URI="
https://codeberg.org/LGFae/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz https://codeberg.org/LGFae/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
${CARGO_CRATE_URIS} ${CARGO_CRATE_URIS}
" "
KEYWORDS="~amd64" KEYWORDS="~amd64"
fi fi
S="${WORKDIR}/${PN}" S="${WORKDIR}/${PN}"

View File

@@ -10,14 +10,14 @@ inherit cargo shell-completion
DESCRIPTION="Efficient animated wallpaper daemon for wayland, controlled at runtime" DESCRIPTION="Efficient animated wallpaper daemon for wayland, controlled at runtime"
HOMEPAGE="https://codeberg.org/LGFae/awww" HOMEPAGE="https://codeberg.org/LGFae/awww"
if [[ ${PV} == *9999* ]]; then if [[ ${PV} == *9999* ]]; then
inherit git-r3 inherit git-r3
EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git" EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git"
else else
SRC_URI=" SRC_URI="
https://codeberg.org/LGFae/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz https://codeberg.org/LGFae/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
${CARGO_CRATE_URIS} ${CARGO_CRATE_URIS}
" "
KEYWORDS="~amd64" KEYWORDS="~amd64"
fi fi
S="${WORKDIR}/${PN}" S="${WORKDIR}/${PN}"
@@ -47,11 +47,11 @@ QA_FLAGS_IGNORED="
src_unpack() { src_unpack() {
if [[ "${PV}" == *9999* ]]; then if [[ "${PV}" == *9999* ]]; then
git-r3_src_unpack git-r3_src_unpack
cargo_live_src_unpack cargo_live_src_unpack
else else
cargo_src_unpack cargo_src_unpack
fi fi
} }
src_compile() { src_compile() {

View File

@@ -29,8 +29,8 @@ BDEPEND="
" "
src_unpack() { src_unpack() {
git-r3_src_unpack git-r3_src_unpack
go-module_live_vendor go-module_live_vendor
} }
src_compile() { src_compile() {

View File

@@ -8,17 +8,17 @@ inherit font
DESCRIPTION="Open source monospace font with round corners" DESCRIPTION="Open source monospace font with round corners"
HOMEPAGE="https://font.subf.dev/" HOMEPAGE="https://font.subf.dev/"
SRC_URI="!normal? ( ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-TTF.zip -> ${P}-ligature-tff.zip SRC_URI="!normal? ( ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-TTF.zip -> ${P}-ligature-tff.zip
nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-NF-unhinted.zip -> ${P}-ligature-nerd.zip ) nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-NF-unhinted.zip -> ${P}-ligature-nerd.zip )
cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-CN-unhinted.zip -> ${P}-ligature-cn.zip ) ) cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMono-CN-unhinted.zip -> ${P}-ligature-cn.zip ) )
!ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-TTF.zip -> ${P}-tff.zip !ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-TTF.zip -> ${P}-tff.zip
nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-NF-unhinted.zip -> ${P}-nerd.zip ) nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-NF-unhinted.zip -> ${P}-nerd.zip )
cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-CN-unhinted.zip -> ${P}-cn.zip ) ) ) cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNL-CN-unhinted.zip -> ${P}-cn.zip ) ) )
normal? ( ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-TTF.zip -> ${P}-normal-ligature-tff.zip normal? ( ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-TTF.zip -> ${P}-normal-ligature-tff.zip
nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-NF-unhinted.zip -> ${P}-normal-ligature-nerd.zip ) nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-NF-unhinted.zip -> ${P}-normal-ligature-nerd.zip )
cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-CN-unhinted.zip -> ${P}-normal-ligature-cn.zip ) ) cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormal-CN-unhinted.zip -> ${P}-normal-ligature-cn.zip ) )
!ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-TTF.zip -> ${P}-normal-tff.zip !ligature? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-TTF.zip -> ${P}-normal-tff.zip
nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-NF-unhinted.zip -> ${P}-normal-nerd.zip ) nerd? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-NF-unhinted.zip -> ${P}-normal-nerd.zip )
cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-CN-unhinted.zip -> ${P}-normal-cn.zip ) ) )" cn? ( https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-CN-unhinted.zip -> ${P}-normal-cn.zip ) ) )"
S=${WORKDIR} S=${WORKDIR}

View File

@@ -21,9 +21,9 @@ fi
LICENSE="MIT Music-Tribe" LICENSE="MIT Music-Tribe"
LICENSE+=" LICENSE+="
0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0
CDLA-Permissive-2.0 ISC MIT MPL-2.0 UoI-NCSA Unicode-3.0 Unlicense CDLA-Permissive-2.0 ISC MIT MPL-2.0 UoI-NCSA Unicode-3.0 Unlicense
ZLIB ZLIB
" "
SLOT="0" SLOT="0"
IUSE="tts" IUSE="tts"