Package Details: nyrna 2.20.0-1

Git Clone URL: https://aur.archlinux.org/nyrna.git (read-only, click to copy)
Package Base: nyrna
Description: Suspend games and applications at any time and resume whenever you wish
Upstream URL: https://github.com/Merrit/nyrna
Licenses: GPL3
Submitter: Merritt
Maintainer: Merritt (D3SOX)
Last Packager: D3SOX
Votes: 7
Popularity: 0.040170
First Submitted: 2020-06-26 22:12 (UTC)
Last Updated: 2024-04-02 08:30 (UTC)

Latest Comments

1 2 3 4 Next › Last »

Freso commented on 2023-12-30 10:04 (UTC)

Would it be possible to add the Flutter files to $sources? I’m currently looking at an estimated total download time of over 40 hours in my build space (seems like throttling from upstream?)during the prepare() phase. I usually download the $sources separately + they get cached between (re)builds to not have to refetch them so I normally don’t have to worry a lot about download speed during makepkg.

I guess maybe patlefort’s flutter-engine package could be an alternative method to not redownload the Flutter files every build?

D3SOX commented on 2023-11-17 00:14 (UTC)

@patlefort Thanks for the recommendation. I'll look into it later.

patlefort commented on 2023-11-16 18:18 (UTC)

Could you please use flutter-engine? It allows users to choose if they want to compile the engine from source or use flutter-engine-google-bin if they want to use a pre-compiled engine form google. See localsend or python-flet for examples. It's maintained by yours truly.

Radeox commented on 2023-06-05 09:18 (UTC)

@crazybit I think it's a problem with a new Flutter release in stable, probably a bump in the dependencies could fix it. I think you should open an issue on Github

crazybit commented on 2023-05-31 22:20 (UTC)

Building fails for the last 2 or so weeks.

==> Starting build()...
Downloading linux-x64-debug/linux-x64-flutter-gtk tools...         880ms
Downloading linux-x64-profile/linux-x64-flutter-gtk tools...        343ms
Downloading linux-x64-release/linux-x64-flutter-gtk tools...        215ms

Building Linux application...
ERROR: ../../../.pub-cache/hosted/pub.dev/package_info_plus_windows-2.1.0/lib/src/file_version_info.dart:13:17: Error: Field 'wLanguage' cannot be nullable or have type 'Null', it must be `int`, `double`, `Pointer`, or a subtype of `Struct` or `Union`.
ERROR:   external int? wLanguage;
ERROR:                 ^
ERROR: ../../../.pub-cache/hosted/pub.dev/package_info_plus_windows-2.1.0/lib/src/file_version_info.dart:16:17: Error: Field 'wCodePage' cannot be nullable or have type 'Null', it must be `int`, `double`, `Pointer`, or a subtype of `Struct` or `Union`.
ERROR:   external int? wCodePage;
ERROR:                 ^
ERROR: Target kernel_snapshot failed: Exception
Build process failed
==> ERROR: A failure occurred in build().
    Aborting...

Radeox commented on 2023-02-19 22:00 (UTC)

@yochananmarqos You're right, I'll fix it now. Thanks!

yochananmarqos commented on 2023-02-19 21:46 (UTC)

@Radeox: When you followed @MithicSpirit's advice about using Flutter, you neglected to remove flutter from makedepends(). Otherwise it defeats the purpose.

unzip is a missing build dependency, it fails to build without it.

Radeox commented on 2022-08-22 13:21 (UTC)

@MithicSpirit thank you! I'll check them out :D

MithicSpirit commented on 2022-08-22 11:40 (UTC) (edited on 2022-08-22 11:41 (UTC) by MithicSpirit)

@Radeox there are two tools I know of that help a lot with maintaining packages

  • namcap: can check the PKGBUILD and the resulting pkg for issues
  • makechrootpkg (from devtools): allows building in a clean chroot (with only pacman and base-devel installed—the absolute minimum expected requirements for the AUR. This one is also helpful for building packages when you don't want them to affect your main system (e.g. by putting things in your home). I recommend using this through an AUR helper that supports it.

Radeox commented on 2022-08-22 07:28 (UTC)

@MithicSpirit You're right, didn't think of that. There is a way to test a build in a way to see this missing packages? I'm still new at this :)