Package Details: fusee-interfacee-tk-bin 1.0.1-2

Git Clone URL: https://aur.archlinux.org/fusee-interfacee-tk-bin.git (read-only, click to copy)
Package Base: fusee-interfacee-tk-bin
Description: A mod of falquinhos Fusée Launcher for use with Nintendo Homebrew Switch Guide. It also adds the ability to mount SD while in RCM.
Upstream URL: https://github.com/nh-server/fusee-interfacee-tk
Licenses: GPL2
Provides: fusee-interface-tk
Submitter: noirscape
Maintainer: noirscape
Last Packager: noirscape
Votes: 2
Popularity: 0.000000
First Submitted: 2019-06-26 22:07 (UTC)
Last Updated: 2020-04-07 13:58 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

georgewoodall82 commented on 2022-07-22 12:04 (UTC) (edited on 2022-07-22 12:04 (UTC) by georgewoodall82)

running fusee-interfacee-tk with sudo/as root fixed the font problem for me.

Neko-san commented on 2021-03-18 08:06 (UTC) (edited on 2021-03-18 08:08 (UTC) by Neko-san)

@zany130 The problem isn't with Arch, I was able to run the python script from the repo just fine manually with python-pyusb and tk installed.

The issue is with the code handling fonts somewhere but the developer just decided to blame the distro instead of actually investigating the issue

If I had to guess, it's likely their method of bundling the dependencies with the binary itself (might be using outdated dependencies)

zany130 commented on 2020-11-11 00:51 (UTC)

@m8D2 yeah, I have that issue too. According to the dev, this is an issue with arch and not the program https://github.com/nh-server/fusee-interfacee-tk/issues/11 couldn't get it working though.

m8D2 commented on 2020-08-15 05:38 (UTC)

Hi,

With the latest v1.01, the fonts in the UI do not show up and I have the following errors:

$ fusee-interfacee-tk
Fontconfig warning: "/etc/fonts/fonts.conf", line 5: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/fonts.conf", line 6: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/fonts.conf", line 6: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/fonts.conf", line 6: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/fonts.conf", line 7: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/fonts.conf", line 7: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/fonts.conf", line 9: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/10-hinting-slight.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/20-unhint-small-vera.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/30-metric-aliases.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/40-nonlatin.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/45-generic.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/45-latin.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/49-sansserif.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/51-local.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/60-generic.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/60-latin.conf", line 4: unknown element "description"
Fontconfig warning: "/etc/fonts/conf.d/65-nonlatin.conf", line 4: unknown element "description"
Fontconfig error: Cannot load config file from /etc/fonts/fonts.conf

But v1.0.0 works fine.

Do you guys have the similar problem? Or is this likely an upstream bug?

Thanks!

noirscape commented on 2020-04-07 14:00 (UTC)

@DuBistComet/@m8D2: Ack. Forgot about that.

@terinjokes: Thanks for that notice about the source filename. I wasn't aware that was a thing.

Made an updated revision that implements the changes from @Weby .

Weby commented on 2020-04-05 10:10 (UTC) (edited on 2020-04-05 10:12 (UTC) by Weby)

Updated pkgbuild

# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Valentijn "noirscape" V. <neko at catgirlsin dot space>

pkgname=fusee-interfacee-tk-bin
_pkgname=fusee-interfacee-tk
pkgver=1.0.1
pkgrel=1
pkgdesc="A mod of falquinhos Fusée Launcher for use with Nintendo Homebrew Switch Guide. It also adds the ability to mount SD while in RCM."
arch=("x86_64")
url="https://github.com/nh-server/fusee-interfacee-tk"
license=('GPL2')
depends=("glibc")
provides=("fusee-interface-tk")
source=("$_pkgname-linux-$pkgver::https://github.com/nh-server/$_pkgname/releases/download/V$pkgver/$_pkgname-linux.zip")
noextract=()
md5sums=('65d1569eb3796fa723b30acbe9694adb')
validpgpkeys=()

package() {
        install -dm 755 "$pkgdir/usr/bin/"
        install -Dm 755 "$srcdir/fusee-interfacee-tk-linux/App For Linux/PayloadInjector" "$pkgdir/usr/bin/$_pkgname"
}

terinjokes commented on 2020-04-03 04:00 (UTC)

Can you update the source to include the pkgver, so upgrading this package doesn't fail with a hash mismatch, as warned on the wiki ( https://wiki.archlinux.org/index.php/PKGBUILD#source) ?

source=("$_pkgname-linux-$pkgver::https://github.com/nh-server/$_pkgname/releases/download/V$pkgver/$_pkgname-linux.zip")

m8D2 commented on 2020-04-02 20:23 (UTC)

In PKGBUILD, the 2nd last line should be changed to:

install -Dm 755 "$srcdir/fusee-interfacee-tk-linux/App For Linux/PayloadInjector" "$pkgdir/usr/bin/$_pkgname"

DuBistKomisch commented on 2020-04-01 08:13 (UTC)

Unfortunately this no longer builds for me with 1.0.1:

==> Starting package()...
install: cannot stat '/home/jake/.cache/yay/fusee-interfacee-tk-bin/src/App For Linux/PayloadInjector': No such file or directory
==> ERROR: A failure occurred in package().