Merge updates from master

This commit is contained in:
Repository mirror & CI
2022-09-08 10:40:22 +00:00
22 changed files with 43 additions and 52 deletions

View File

@@ -26,6 +26,6 @@ src_configure() {
src_install() {
dodoc LICENSE.txt README.md
dolib.so ${BUILD_DIR}/src/libsirit.so
dolib.so "${BUILD_DIR}/src/libsirit.so"
doheader -r include/sirit
}

View File

@@ -6,7 +6,7 @@
<name>Shaoyu Tseng</name>
</maintainer>
<upstream>
<remote-id type="pypi">markdownify</remote-id>
<remote-id type="github">matthewwithanm/python-markdownify</remote-id>
<remote-id type="pypi">markdownify</remote-id>
<remote-id type="github">matthewwithanm/python-markdownify</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -25,7 +25,6 @@ RDEPEND="
!clang? ( llvm? ( <sys-devel/llvm-${LLVM_MAX_SLOT}:= ) )
llvm? (
|| (
sys-devel/llvm:12
sys-devel/llvm:13
sys-devel/llvm:${LLVM_MAX_SLOT}
)

View File

@@ -25,7 +25,6 @@ RDEPEND="
!clang? ( llvm? ( <sys-devel/llvm-${LLVM_MAX_SLOT}:= ) )
llvm? (
|| (
sys-devel/llvm:12
sys-devel/llvm:13
sys-devel/llvm:${LLVM_MAX_SLOT}
)

View File

@@ -402,14 +402,14 @@ src_prepare() {
src_install() {
cargo_src_install
${D}/usr/bin/fnm completions --shell bash > fnm.bash-completion || die "Cannot generate bash completions"
"${D}"/usr/bin/fnm completions --shell bash > fnm.bash-completion || die "Cannot generate bash completions"
newbashcomp fnm.bash-completion fnm
${D}/usr/bin/fnm completions --shell zsh > fnm.zsh-completion || die "Cannot generate zsh completions"
"${D}"/usr/bin/fnm completions --shell zsh > fnm.zsh-completion || die "Cannot generate zsh completions"
insinto /usr/share/zsh/site-functions
newins fnm.zsh-completion _fnm
${D}/usr/bin/fnm completions --shell fish > fnm.fish-completion || die "Cannot generate fish completions"
"${D}"/usr/bin/fnm completions --shell fish > fnm.fish-completion || die "Cannot generate fish completions"
insinto /usr/share/fish/vendor_completions.d/
newins fnm.fish-completion fnm.fish

View File

@@ -17,5 +17,5 @@ RDEPEND="${DEPEND}"
BDEPEND="dev-util/ninja"
src_install() {
DESTDIR="${D}" ninja -C${S}/build install
DESTDIR="${D}" ninja -C"${S}/build" install
}

View File

@@ -57,7 +57,7 @@ BDEPEND="
discord? ( >=dev-libs/rapidjson-1.1.0 )
"
S="${WORKDIR}"/yuzu-mainline-dfaab8f6571856ec3c75cfad303a50503d213665
PATCHES=( ${FILESDIR}/${P}.patch )
PATCHES=( "${FILESDIR}/${P}.patch" )
REQUIRED_USE="|| ( qt5 sdl )"
@@ -70,10 +70,10 @@ pkg_setup() {
src_unpack() {
default
mv "${WORKDIR}"/xbyak* ${S}/externals/xbyak/xbyak || die
mv "${WORKDIR}"/dynarmic*/* ${S}/externals/dynarmic || die
mv "${WORKDIR}"/xbyak* "${S}/externals/xbyak/xbyak" || die
mv "${WORKDIR}"/dynarmic*/* "${S}/externals/dynarmic" || die
if use discord; then
mv "${WORKDIR}"/discord*/* ${S}/externals/discord-rpc || die
mv "${WORKDIR}"/discord*/* "${S}/externals/discord-rpc" || die
fi
}

View File

@@ -5,9 +5,6 @@
<email>ran.dall@icloud.com</email>
<name>Randall Vasquez</name>
</maintainer>
<longdescription lang="en">
Junction lets you choose the application to open files and links.
</longdescription>
<upstream>
<remote-id type="github">sonnyp/Junction</remote-id>
</upstream>

View File

@@ -42,7 +42,7 @@ src_install() {
doins -r "opt/Jitsi Meet"
dobin "opt/Jitsi Meet/jitsi-meet"
dosym "${EPREFIX}/opt/Jitsi Meet/jitsi-meet" ${EPREFIX}/usr/bin/jitsi-meet
dosym "${EPREFIX}/opt/Jitsi Meet/jitsi-meet" "${EPREFIX}/usr/bin/jitsi-meet"
domenu usr/share/applications/jitsi-meet.desktop
doicon usr/share/icons/hicolor/512x512/apps/jitsi-meet.png

View File

@@ -455,7 +455,6 @@ RDEPEND="
|| (
( sys-devel/llvm:14 sys-devel/clang:14 )
( sys-devel/llvm:13 sys-devel/clang:13 )
( sys-devel/llvm:12 sys-devel/clang:12 )
)
"
DEPEND=${RDEPEND}

View File

@@ -490,7 +490,6 @@ DEPEND="
|| (
( sys-devel/llvm:14 sys-devel/clang:14 )
( sys-devel/llvm:13 sys-devel/clang:13 )
( sys-devel/llvm:12 sys-devel/clang:12 )
)
"
RDEPEND="

View File

@@ -34,24 +34,24 @@ src_install() {
# remove win-only stuff
find "${S}" -name "*.bat" -exec rm '{}' \; || die
# remove init-scripts
rm ${S}/*.sh || die
rm "${S}"/*.sh || die
# remove sources
rm -r "${S}/source" || die
rm ${S}/build.properties ${S}/build.xml || die
rm "${S}/build.properties" "${S}/build.xml" || die
dodoc AUTHORS NOTICE && rm AUTHORS NOTICE COPYRIGHT gpl.txt
yacy_home="${EROOT}/usr/share/${PN}"
dodir ${yacy_home}
cp -r ${S}/* ${D}${yacy_home} || die
cp -r "${S}"/* "${D}${yacy_home}" || die
rm -r ${D}${yacy_home}/lib/*License
rm -r "${D}${yacy_home}"/lib/*License
dodir /var/log/yacy || die
chown yacy:yacy "${D}/var/log/yacy" || die
keepdir /var/log/yacy
rmdir "$D/$yacy_home/DATA" || die
rmdir "${D}/${yacy_home}/DATA" || die
dosym /var/lib/yacy /${yacy_home}/DATA
use openrc && {

View File

@@ -1,21 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gentoo@taujhe.de</email>
<name>Jan Henke</name>
</maintainer>
<upstream>
<remote-id type="github">lxi-tools/lxi-tools</remote-id>
</upstream>
<longdescription>
lxi-tools are open source software tools for managing network attached LXI
compatible test instruments such as modern oscilloscopes, power supplies,
spectrum analyzers etc.
<maintainer type="person">
<email>gentoo@taujhe.de</email>
<name>Jan Henke</name>
</maintainer>
<upstream>
<remote-id type="github">lxi-tools/lxi-tools</remote-id>
</upstream>
<longdescription>
lxi-tools are open source software tools for managing network attached LXI
compatible test instruments such as modern oscilloscopes, power supplies,
spectrum analyzers etc.
Features include automatic discovery of test instruments, sending SCPI
commands, grabbing screenshots from supported instruments, benchmarking
SCPI message performance, and powerful scripting for test automation. Both
a commandline tool and a GUI tool are available.
</longdescription>
Features include automatic discovery of test instruments, sending SCPI
commands, grabbing screenshots from supported instruments, benchmarking
SCPI message performance, and powerful scripting for test automation. Both
a commandline tool and a GUI tool are available.
</longdescription>
</pkgmetadata>

View File

@@ -39,6 +39,7 @@ BDEPEND="
dev-util/ninja
dev-util/cmake
doc? ( app-doc/doxygen )
python? ( ${DISTUTILS_DEPS} )
"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"

View File

@@ -160,7 +160,7 @@ src_install() {
# use python && cmake_build install-dartpy
mv "${ED}/usr/share/doc/dart/data" "${ED}/usr/share/${PN}" || die
if [[ -d "${ED}/usr/share/doc/dart" ]] ; then
if [[ "$(ls -A ${ED}/usr/share/doc/dart)" ]] ; then
if [[ "$(ls -A "${ED}"/usr/share/doc/dart)" ]] ; then
mv "${ED}"/usr/share/doc/dart/* "${ED}/usr/share/doc/${PF}" || die
fi
fi

View File

@@ -27,7 +27,7 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/${P}-${NAME}"
PATCHES=( ${FILESDIR}/frama-c-24.0-fix-bflags.patch )
PATCHES=( "${FILESDIR}/frama-c-24.0-fix-bflags.patch" )
src_prepare() {
mv configure.in configure.ac || die

View File

@@ -43,9 +43,9 @@ src_install() {
insinto /usr/libexec/${PN}
doins -r numpad_layouts
python_fix_shebang ${ED}/usr/libexec/${PN}/asus_touchpad.py
python_fix_shebang "${ED}/usr/libexec/${PN}/asus_touchpad.py"
python_optimize ${ED}/usr/libexec/${PN}
python_optimize "${ED}/usr/libexec/${PN}"
dosym ../libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
}

View File

@@ -43,9 +43,9 @@ src_install() {
insinto /usr/libexec/${PN}
doins -r numpad_layouts
python_fix_shebang ${ED}/usr/libexec/${PN}/asus_touchpad.py
python_fix_shebang "${ED}/usr/libexec/${PN}/asus_touchpad.py"
python_optimize ${ED}/usr/libexec/${PN}
python_optimize "${ED}/usr/libexec/${PN}"
dosym ../libexec/${PN}/asus_touchpad.py /usr/bin/asus_touchpad
}

View File

@@ -5,9 +5,6 @@
<email>ran.dall@icloud.com</email>
<name>Randall Vasquez</name>
</maintainer>
<longdescription lang="en">
Bash scripts that integrate bat with various command line tools.
</longdescription>
<upstream>
<remote-id type="github">eth-p/bat-extras</remote-id>
</upstream>

View File

@@ -82,7 +82,7 @@ RDEPEND="
runtimes? (
sys-cluster/charliecloud[${PYTHON_SINGLE_USEDEP}]
|| ( app-containers/apptainer sys-cluster/singularity )
app-containers/apptainer
)
serial? (

View File

@@ -41,7 +41,7 @@ src_configure() {
nimble_src_configure
# Error: unhandled exception: cannot open: public/lp.svg
ln -s "${S}"/public ${BUILD_DIR}/public || die
ln -s "${S}"/public "${BUILD_DIR}/public" || die
}
src_compile() {

View File

@@ -41,7 +41,7 @@ src_configure() {
nimble_src_configure
# Error: unhandled exception: cannot open: public/lp.svg
ln -s "${S}"/public ${BUILD_DIR}/public || die
ln -s "${S}"/public "${BUILD_DIR}/public" || die
}
src_compile() {