mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
*/*: 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:
@@ -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
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
@@ -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}"
|
||||
|
||||
@@ -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() {
|
||||
|
||||
@@ -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() {
|
||||
|
||||
@@ -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}
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user