Package Details: tabby-bin 1.0.207-1

Git Clone URL: https://aur.archlinux.org/tabby-bin.git (read-only, click to copy)
Package Base: tabby-bin
Description: Tabby (formerly Terminus) is a highly configurable terminal emulator, SSH and serial client for Windows, macOS and Linux
Upstream URL: https://github.com/Eugeny/tabby
Licenses: MIT
Conflicts: tabby
Provides: tabby
Submitter: Erde
Maintainer: BarrelGorilla
Last Packager: BarrelGorilla
Votes: 21
Popularity: 1.52
First Submitted: 2021-08-04 11:27 (UTC)
Last Updated: 2024-03-05 22:30 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

c3101 commented on 2023-04-06 13:00 (UTC)

1.0.196 has been released, this has been flagged out-of-date for a while now :(

yan12125 commented on 2022-06-17 15:29 (UTC) (edited on 2022-06-17 15:31 (UTC) by yan12125)

I don't know how to maintain this package

@mixout An option is filing an orphan request.

Also, the name of this package is the original package name of the officially released .pacman file and is mentioned in https://github.com/Eugeny/tabby/issues/4538.

If upstream considers tabby-terminal a better name, the AUR package using prebuilt binaries can be called tabby-terminal-bin.

mixout commented on 2022-02-25 11:35 (UTC)

Sorry, it was uploaded automatically, so I didn't notice the problem. Since tabby-bin is deprecated, I don't know how to maintain this package, so I had to create a new one.

Also, the name of this package is the original package name of the officially released .pacman file and is mentioned in https://github.com/Eugeny/tabby/issues/4538.

KAAAsS commented on 2022-02-25 05:02 (UTC)

SHA256 for pkgver 1.0.173: 3a6039c6cb9427c6a4cb48737d1d1f57f823f1c9c89093a055493bf38630888c

FabioLolix commented on 2022-02-24 17:45 (UTC)

This is a duplicate of tabby-bin https://aur.archlinux.org/packages/tabby-bin, lacks -bin suffix, and have already been removed once

pychuang commented on 2022-02-12 18:16 (UTC)

I think this package is kind of redundant. This package just downloads an already-packaged pacman tarball, uncompresses the package, and re-packages the package.

Even if this package is needed, based on the AUR guideline, it should be named tabby-bin (though this name is already used by another AUR package) or tabby-terminal-bin.

Also, there are already similar AUR packages: 1. tabby-bin: which re-uses an already-packaged deb tarball. The deb package and the pacman package provide the same content. 2. tabby: build the package from source code.

shawanroy commented on 2021-12-20 08:27 (UTC)

another up-to-date PKGBUILD

pkgname=tabby-bin
_pkgname=tabby
pkgver=1.0.168
pkgrel=1
pkgdesc="Tabby (formerly Terminus) is a highly configurable terminal emulator, SSH and serial client for Windows, macOS and Linux"
arch=('x86_64')
url="https://github.com/Eugeny/tabby"
license=('MIT')
depends=('nodejs')
optdepends=('gnome-keyring')
provides=("tabby")
conflicts=("tabby")
replaces=('tabby')
source=("$url/releases/download/v${pkgver}/${_pkgname}-${pkgver}-linux.deb")
sha256sums=('3f4a368dec31ad0d4fd5d2b43771bf5fd0f12f092ddd43014caa5fb0839b1c2d')

package() {
  cd "$srcdir/"
  tar -xf data.tar.xz
  cp -r usr/ $pkgdir
  cp -r opt/ $pkgdir

 install -Dm755 /dev/stdin "$pkgdir"/usr/bin/$_pkgname <<END
  #!/usr/bin/bash
  /opt/Tabby/tabby

  chown root:root /opt/Tabby/chrome-sandbox
  chmod 4755 /opt/Tabby/chrome-sandox

END

}

derchef commented on 2021-12-10 21:04 (UTC)

If someone wants a more up-to-date package. Here is my PKGBUILD.

pkgname=tabby-bin
_pkgname=tabby
pkgver=1.0.167
pkgrel=1
pkgdesc="A terminal for a more modern age (formerly Terminus)"
arch=("x86_64")
url="https://tabby.sh/"
license=('MIT')
depends=('nodejs')
optdepends=('gnome-keyring')
provides=("tabby")
replaces=('tabby')
conflicts=('tabby' 'terminus-terminal' 'terminus-terminal-git')
source=("https://github.com/Eugeny/tabby/releases/download/v$pkgver/$_pkgname-$pkgver-linux.pacman")
sha256sums=("84c66eb4f620bdba3d8db94ed5cdc1748e83345187fa059f4daae06a64f674bc")

package() {
    cp -r usr/ "$pkgdir"
    cp -r opt/ "$pkgdir"
    install -Dm755 /dev/stdin "$pkgdir"/usr/bin/"$_pkgname" <<END
    #!/usr/bin/bash
    /opt/Tabby/tabby

END

}

fsociety3765 commented on 2021-12-10 17:09 (UTC)

Hi, any chance of getting this package updated?