commit: 2585c9f1adb31d0d09c9a29fa249194c68957617
Author: ingenarel <ingenarelitems <AT> gmail <DOT> com>
AuthorDate: Mon Dec 15 23:54:25 2025 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Dec 15 23:56:41 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2585c9f1
*/*: 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 <AT> gmail.com>
.../robotraconteur-companion-0.4.2.ebuild | 26 +++---
dev-cpp/robotraconteur/robotraconteur-1.2.6.ebuild | 94 +++++++++++-----------
gui-apps/awww/awww-0.11.2.ebuild | 8 +-
gui-apps/awww/awww-9999.ebuild | 18 ++---
gui-apps/walker/walker-9999.ebuild | 4 +-
media-fonts/maple-mono/maple-mono-7.9.ebuild | 22 ++---
.../goxlr-utility/goxlr-utility-9999.ebuild | 6 +-
7 files changed, 89 insertions(+), 89 deletions(-)
diff --git
a/dev-cpp/robotraconteur-companion/robotraconteur-companion-0.4.2.ebuild
b/dev-cpp/robotraconteur-companion/robotraconteur-companion-0.4.2.ebuild
index 673f3c2418..4fd182b0fd 100644
--- a/dev-cpp/robotraconteur-companion/robotraconteur-companion-0.4.2.ebuild
+++ b/dev-cpp/robotraconteur-companion/robotraconteur-companion-0.4.2.ebuild
@@ -17,28 +17,28 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""
DEPEND="dev-libs/boost
- dev-libs/openssl
- dev-build/cmake
- dev-cpp/yaml-cpp
- dev-cpp/eigen
- dev-cpp/robotraconteur
+ dev-libs/openssl
+ dev-build/cmake
+ dev-cpp/yaml-cpp
+ dev-cpp/eigen
+ dev-cpp/robotraconteur
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
- -DCMAKE_SKIP_RPATH=ON
- -DBUILD_TESTING=OFF
- -DBUILD_DOCUMENTATION=OFF
- -DROBOTRACONTEUR_COMPANION_SOVERSION_MAJOR_ONLY=ON
- )
- cmake_src_configure
+ -DCMAKE_SKIP_RPATH=ON
+ -DBUILD_TESTING=OFF
+ -DBUILD_DOCUMENTATION=OFF
+ -DROBOTRACONTEUR_COMPANION_SOVERSION_MAJOR_ONLY=ON
+ )
+ cmake_src_configure
}
src_compile() {
- cmake_src_compile
+ cmake_src_compile
}
src_install() {
- cmake_src_install
+ cmake_src_install
}
diff --git a/dev-cpp/robotraconteur/robotraconteur-1.2.6.ebuild
b/dev-cpp/robotraconteur/robotraconteur-1.2.6.ebuild
index c7e9b967bb..43acf058ae 100644
--- a/dev-cpp/robotraconteur/robotraconteur-1.2.6.ebuild
+++ b/dev-cpp/robotraconteur/robotraconteur-1.2.6.ebuild
@@ -19,72 +19,72 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="python"
DEPEND="dev-libs/boost
- dev-libs/openssl
- dev-libs/libusb
- sys-apps/dbus
- net-wireless/bluez
- dev-build/cmake
- python? ( dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/setuptools[${PYTHON_USEDEP}]
- dev-python/pip[${PYTHON_USEDEP}] )
+ dev-libs/openssl
+ dev-libs/libusb
+ sys-apps/dbus
+ net-wireless/bluez
+ dev-build/cmake
+ python? ( dev-python/numpy[${PYTHON_USEDEP}]
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ dev-python/pip[${PYTHON_USEDEP}] )
"
RDEPEND="
- ${DEPEND}
- python? (
+ ${DEPEND}
+ python? (
${PYTHON_DEPS}
- )
+ )
"
REQUIRED_USE="
- python? ( ${PYTHON_REQUIRED_USE} )
+ python? ( ${PYTHON_REQUIRED_USE} )
"
python_configure() {
- local mycmakeargs=(
- -DCMAKE_SKIP_RPATH=ON
- -DBUILD_GEN=ON
- -DBUILD_TESTING=OFF
- -DBUILD_DOCUMENTATION=OFF
- -DBUILD_PYTHON3=ON
- -DINSTALL_PYTHON3_PIP=ON
- -DINSTALL_PYTHON3_PIP_EXTRA_ARGS="--compile --use-pep517
--no-build-isolation --no-deps --root-user-action=ignore"
- -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON
- )
- cmake_src_configure
+ local mycmakeargs=(
+ -DCMAKE_SKIP_RPATH=ON
+ -DBUILD_GEN=ON
+ -DBUILD_TESTING=OFF
+ -DBUILD_DOCUMENTATION=OFF
+ -DBUILD_PYTHON3=ON
+ -DINSTALL_PYTHON3_PIP=ON
+ -DINSTALL_PYTHON3_PIP_EXTRA_ARGS="--compile --use-pep517
--no-build-isolation --no-deps --root-user-action=ignore"
+ -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON
+ )
+ cmake_src_configure
}
src_configure() {
- if use python; then
- python_foreach_impl python_configure
- else
- local mycmakeargs=(
- -DCMAKE_SKIP_RPATH=ON
- -DBUILD_GEN=ON
- -DBUILD_TESTING=OFF
- -DBUILD_DOCUMENTATION=OFF
- -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON
- )
- cmake_src_configure
- fi
+ if use python; then
+ python_foreach_impl python_configure
+ else
+ local mycmakeargs=(
+ -DCMAKE_SKIP_RPATH=ON
+ -DBUILD_GEN=ON
+ -DBUILD_TESTING=OFF
+ -DBUILD_DOCUMENTATION=OFF
+ -DROBOTRACONTEURCORE_SOVERSION_MAJOR_ONLY=ON
+ )
+ cmake_src_configure
+ fi
}
src_compile() {
- if use python; then
- python_foreach_impl cmake_src_compile
- else
- cmake_src_compile
- fi
+ if use python; then
+ python_foreach_impl cmake_src_compile
+ else
+ cmake_src_compile
+ fi
}
python_install(){
- cmake_src_install
- python_optimize "${D}$(python_get_sitedir)/RobotRaconteur" || die "Failed
to optimize Python files"
+ cmake_src_install
+ python_optimize "${D}$(python_get_sitedir)/RobotRaconteur" || die
"Failed to optimize Python files"
}
src_install() {
- if use python; then
- python_foreach_impl python_install
- else
- cmake_src_install
- fi
+ if use python; then
+ python_foreach_impl python_install
+ else
+ cmake_src_install
+ fi
}
diff --git a/gui-apps/awww/awww-0.11.2.ebuild b/gui-apps/awww/awww-0.11.2.ebuild
index 1166252877..6aa23f934d 100644
--- a/gui-apps/awww/awww-0.11.2.ebuild
+++ b/gui-apps/awww/awww-0.11.2.ebuild
@@ -188,14 +188,14 @@ inherit cargo shell-completion
DESCRIPTION="Efficient animated wallpaper daemon for wayland, controlled at
runtime"
HOMEPAGE="https://codeberg.org/LGFae/awww"
if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git"
+ inherit git-r3
+ EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git"
else
- SRC_URI="
+ SRC_URI="
https://codeberg.org/LGFae/${PN}/archive/refs/tags/v${PV}.tar.gz ->
${P}.tar.gz
${CARGO_CRATE_URIS}
"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64"
fi
S="${WORKDIR}/${PN}"
diff --git a/gui-apps/awww/awww-9999.ebuild b/gui-apps/awww/awww-9999.ebuild
index f444f2240e..da10eec82c 100644
--- a/gui-apps/awww/awww-9999.ebuild
+++ b/gui-apps/awww/awww-9999.ebuild
@@ -10,14 +10,14 @@ inherit cargo shell-completion
DESCRIPTION="Efficient animated wallpaper daemon for wayland, controlled at
runtime"
HOMEPAGE="https://codeberg.org/LGFae/awww"
if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git"
+ inherit git-r3
+ EGIT_REPO_URI="https://codeberg.org/LGFae/${PN}.git"
else
- SRC_URI="
+ SRC_URI="
https://codeberg.org/LGFae/${PN}/archive/refs/tags/v${PV}.tar.gz ->
${P}.tar.gz
${CARGO_CRATE_URIS}
"
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64"
fi
S="${WORKDIR}/${PN}"
@@ -47,11 +47,11 @@ QA_FLAGS_IGNORED="
src_unpack() {
if [[ "${PV}" == *9999* ]]; then
- git-r3_src_unpack
- cargo_live_src_unpack
- else
- cargo_src_unpack
- fi
+ git-r3_src_unpack
+ cargo_live_src_unpack
+ else
+ cargo_src_unpack
+ fi
}
src_compile() {
diff --git a/gui-apps/walker/walker-9999.ebuild
b/gui-apps/walker/walker-9999.ebuild
index 70d3cc285b..886c30a525 100644
--- a/gui-apps/walker/walker-9999.ebuild
+++ b/gui-apps/walker/walker-9999.ebuild
@@ -29,8 +29,8 @@ BDEPEND="
"
src_unpack() {
- git-r3_src_unpack
- go-module_live_vendor
+ git-r3_src_unpack
+ go-module_live_vendor
}
src_compile() {
diff --git a/media-fonts/maple-mono/maple-mono-7.9.ebuild
b/media-fonts/maple-mono/maple-mono-7.9.ebuild
index 51b6402ef9..2b3ed5d64c 100644
--- a/media-fonts/maple-mono/maple-mono-7.9.ebuild
+++ b/media-fonts/maple-mono/maple-mono-7.9.ebuild
@@ -8,17 +8,17 @@ inherit font
DESCRIPTION="Open source monospace font with round corners"
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
- 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 ) )
- !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 )
- 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
- 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 ) )
- !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 )
- cn? (
https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-CN-unhinted.zip
-> ${P}-normal-cn.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 ) )
+ !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 )
+ 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
+ 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 ) )
+ !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 )
+ cn? (
https://github.com/subframe7536/maple-font/releases/download/v${PV}/MapleMonoNormalNL-CN-unhinted.zip
-> ${P}-normal-cn.zip ) ) )"
S=${WORKDIR}
diff --git a/media-sound/goxlr-utility/goxlr-utility-9999.ebuild
b/media-sound/goxlr-utility/goxlr-utility-9999.ebuild
index 7968bb32a2..c705c15faa 100644
--- a/media-sound/goxlr-utility/goxlr-utility-9999.ebuild
+++ b/media-sound/goxlr-utility/goxlr-utility-9999.ebuild
@@ -21,9 +21,9 @@ fi
LICENSE="MIT Music-Tribe"
LICENSE+="
- 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
- ZLIB
+ 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
+ ZLIB
"
SLOT="0"
IUSE="tts"