Package Details: v2rayn-bin 7.7.1-1

Git Clone URL: https://aur.archlinux.org/v2rayn-bin.git (read-only, click to copy)
Package Base: v2rayn-bin
Description: A GUI client for Windows and Linux, support Xray core and others
Upstream URL: https://github.com/2dust/v2rayN
Keywords: v2rayn
Licenses: GPL3
Submitter: xihale
Maintainer: xihale
Last Packager: xihale
Votes: 4
Popularity: 1.68
First Submitted: 2024-11-23 00:01 (UTC)
Last Updated: 2025-02-04 01:59 (UTC)

Latest Comments

1 2 Next › Last »

xihale commented on 2025-01-23 10:42 (UTC)

@wuhang2003 I believe there is a difference between the shell environment and the PKGBUILD environment, which is causing the generic matching error with the mv command. However, since I lack the relevant knowledge to confront this challenge, I have opted for a less elegant solution for now.

wuhang2003 commented on 2025-01-23 07:31 (UTC)

@xihale Error in test. Maybe line 28 need to be changed.

mv: cannot stat '/home/laoren/.cache/paru/clone/v2rayn-bin/src/v2rayN-linux-{64,arm64}/*': No such file or directory

xihale commented on 2025-01-23 05:24 (UTC)

@wuhang2003 highly appreciating your warning & hint. I had had it modified but due to my trouble network environment, I was just unable to test whether it would work.

wuhang2003 commented on 2025-01-23 04:34 (UTC)

maybe a given filename with a specific vsn in source(). etc.

source_x86_64=(v2rayN-linux-64-${pkgver}-${pkgrel}.zip::"https://github.com/2dust/v2rayN/releases/download/${pkgver}/v2rayN-linux-64.zip")
source_arm64=(v2rayN-linux-arm64-${pkgver}-${pkgrel}.zip::"https://github.com/2dust/v2rayN/releases/download/${pkgver}/v2rayN-linux-arm64.zip")

Current versions of pkgbuild may try to use the previous zip package after upgrading (they have same filename). But this will obviously cause sha256sum-check to fail.

rwangth commented on 2024-12-19 03:57 (UTC)

There is a new version 7.3.2. Can some one upgrade it please? I'd like to help if needed.

xihale commented on 2024-12-07 10:40 (UTC)

@joelee 应该是 stat 把 "..." 识别成文件名了,把/*放在外面就好了

joelee commented on 2024-12-07 07:32 (UTC)

package()时报错:mv: cannot stat '/home/joelee/.cache/paru/clone/v2rayn-bin/src/v2rayN-linux-64/*': No such file or directory

我将PKGBUILD里的mv "${srcdir}/v2rayN-linux-64/*" "${pkgdir}/opt/$_app_name/"改成了mv "${srcdir}/v2rayN-linux-64" "${pkgdir}/opt/$_app_name",其实两句都是一样的意思,但后者就可以打包成功,不明白?

xihale commented on 2024-12-07 02:22 (UTC)

@anlorsp, thank you very much, now I had remove jq depends in my PKGBUILD, controlling version by hand or maybe by github action in the futrue.

xihale commented on 2024-12-07 02:21 (UTC)

@dreieck, thank you very much, I have made the corresponding fixes.

dreieck commented on 2024-11-25 22:33 (UTC) (edited on 2024-11-25 22:33 (UTC) by dreieck)

Ahoj,

your package has several issues:

  • You reference files which are not in the source array. On systems with $BUILDDIR set (e.g. in /etc/makepkg.conf), this fails, since the assumption that the build directory is a sub directory of where the PKGBUILD is does not hold true:
    install: cannot stat '../v2rayN.png': No such file or directory
    PLEASE PUT ALL LOCAL FILES YOU NEED INTO THE source ARRAY AND REFERENCE THEM VIA ${srcdir}/<filename>.
  • Please do NOT download the main software package(). Download via the source array!

Regards!