Package Details: warpinator-git 1.8.1.r0.gce45bbde-1

Git Clone URL: https://aur.archlinux.org/warpinator-git.git (read-only, click to copy)
Package Base: warpinator-git
Description: Share files across the LAN
Upstream URL: https://github.com/linuxmint/warpinator
Licenses: GPL-3.0-or-later
Conflicts: warpinator
Provides: warpinator
Submitter: kylelaker
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 1
Popularity: 0.000209
First Submitted: 2020-03-03 02:39 (UTC)
Last Updated: 2024-12-13 03:42 (UTC)

Pinned Comments

Latest Comments

« First ‹ Previous 1 2 3

kylelaker commented on 2020-03-03 02:45 (UTC)

To update on the status:

  • warpinator-git has been created
  • Per PRQ#18170, this package has been requested to be merged into warpinator-git
  • The new package has the new grpc-related dependencies added, as well as the libexec fixes

Apologies for the mistakes. I am okay with having to rename again when they decide on a name. I don't anticipate that being immediate and for folks who know it as that name, it'll be much easier to find than lm-warp-git which was chosen simply to not conflict with warp-git.

yochananmarqos commented on 2020-03-02 00:54 (UTC)

Well, it should have been warpinator-git. Also, since that's a temporary name, you'll just have to change it again when they decide on a name.

kylelaker commented on 2020-03-02 00:31 (UTC)

Thanks for the notice! I hadn't seen the February news post yet. I have uploaded warpinator and requested a merge.

Thanks for the libexec solutions. I've used the sed and arch-meson fixes. I really appreciate your support in improving this package!

yochananmarqos commented on 2020-03-01 18:52 (UTC) (edited on 2020-03-01 19:23 (UTC) by yochananmarqos)

This conflicts with haskell-wai-app-static. The binary will have to be renamed. Linux Mint is temporarily calling the project Warpinator.

EDIT: /usr/libexec/ should not be used, see Package etiquette.

Example:

prepare() {
    cd "$srcdir/warp"

    # Fix libexec dir
    sed -i 's/libexec/lib/g' bin/warp
}

The arch-meson wrapper can be used:

build() {
    arch-meson warp build
    ninja -C build
}

Or the --libexecdir lib flag can be added:

build() {
    meson \
        --prefix /usr \
        --libexecdir lib \
        --buildtype=plain \
        warp build
    ninja -C build
}

kylelaker commented on 2020-02-14 16:31 (UTC)

Thanks for the feedback! I'll fix both of those later today.

yochananmarqos commented on 2020-02-14 15:32 (UTC)

This requires xapps:

$ warp
Traceback (most recent call last):
  File "/usr/libexec/warp/warp.py", line 21, in <module>
    gi.require_version('XApp', '1.0')
  File "/usr/lib/python3.8/site-packages/gi/__init__.py", line 129, in require_version
    raise ValueError('Namespace %s not available' % namespace)
ValueError: Namespace XApp not available

Please use a pkgver() function, see VCS package guidelines.

Example PKGBUILD.