Package Details: hyper-git 4.0.0.canary.5.r359.g56617230-1

Git Clone URL: https://aur.archlinux.org/hyper-git.git (read-only, click to copy)
Package Base: hyper-git
Description: A terminal built on web technologies
Upstream URL: https://hyper.is/
Keywords: electron terminal
Licenses: MIT
Conflicts: hyper
Provides: hyper
Submitter: ahrs
Maintainer: zxp19821005
Last Packager: zxp19821005
Votes: 0
Popularity: 0.000000
First Submitted: 2017-10-16 20:28 (UTC)
Last Updated: 2024-03-19 03:07 (UTC)

Latest Comments

« First ‹ Previous 1 2

simona commented on 2021-02-07 10:53 (UTC)

I have a problem upgrading this pkg with yay / paru.
My -Syu upgrade find every time a new upgrade and avery time upgrade:
aur/hyper-git v3.1.0.canary.3.r582.g712a1908-1 -> 3.1.0.canary.4.r48.gb0002bbe-1
If I start yay/pary -Syu after upgrade it do
aur/hyper-git v3.1.0.canary.3.r582.g712a1908-1 -> 3.1.0.canary.4.r48.gb0002bbe-1
again and again...
I must set 'IgnorePkg = hyper-git' to avoid problem.

yochananmarqos commented on 2020-07-04 18:37 (UTC) (edited on 2020-07-04 18:38 (UTC) by yochananmarqos)

Fixed pkgver() function:

pkgver() {
  cd "${pkgname}"
  git describe --tags --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/canary.3/canary.4/;s/-/./g'
}
3.1.0.canary.4.r203.gdab6e06d

skyjack commented on 2020-04-11 18:17 (UTC)

Seems this is building a different version than the pkgver specifies in the PKGBUILD. It builds "v3.1.0.canary.3.r40.gf730d840-1" rather than the 3.1.0.canary.4.r48.gb0002bbe-1 described. Appears that the version that is being built from the git describe --tags --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' doesn't match pkgver

qguv commented on 2018-02-11 20:13 (UTC) (edited on 2018-02-11 20:13 (UTC) by qguv)

Appears to require cross-env as a build dependency. It fails on build without it. Running:

# npm install -g cross-env

before installing the package fixed it.

ahrs commented on 2017-10-16 20:33 (UTC) (edited on 2017-10-16 20:33 (UTC) by ahrs)

This builds from the canary branch by default. You can export the HYPER_BRANCH variable to build from another branch. E.g, to build from master `export HYPER_BRANCH=master`.