Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion foundry-cli-bin/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = foundry-cli-bin
pkgdesc = Foundry DevOps automation CLI
pkgver = 0.0.39
pkgver = 0.0.40
pkgrel = 1
url = https://github.com/shpitdev/foundry-cli
install = foundry-cli-bin.install
Expand Down
4 changes: 2 additions & 2 deletions foundry-cli-bin/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Anand Pant

pkgname=foundry-cli-bin
pkgver=0.0.39
pkgver=0.0.40
pkgrel=1
pkgdesc="Foundry DevOps automation CLI"
arch=('x86_64')
Expand All @@ -13,7 +13,7 @@ provides=('foundry-cli')
conflicts=('foundry-cli')

_asset="foundry-cli_${pkgver}_linux_amd64.tar.gz"
_sha256='d6d64e6810d39f9ab7273ff04732bee55428a8ade16a89068c348ee266348088'
_sha256='2eb08882992b57fc92adb434a6437a1b5188130f976f456e234eeff4729a8172'

prepare() {
gh release download "v${pkgver}" \
Expand Down
7 changes: 4 additions & 3 deletions tabex-bin/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
pkgbase = tabex-bin
pkgdesc = Tabex CLI for browser session, capture, and page inspection
pkgver = 0.0.11
pkgver = 0.0.13
pkgrel = 1
url = https://github.com/shpitdev/tabex
url = https://tabex.dev
install = tabex-bin.install
arch = x86_64
license = LicenseRef-proprietary
makedepends = github-cli
provides = tabex
conflicts = tabex
source = https://github.com/shpitdev/pkgbuilds/releases/download/tabex-v0.0.13/tabex_v0.0.13_linux_amd64.tar.gz
sha256sums = 8e5a8d1c0c0b8a5fed86be10bf7c3bcbdcbf92f40cd3c81ca3a041567d5fa091

pkgname = tabex-bin
22 changes: 5 additions & 17 deletions tabex-bin/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,32 +1,20 @@
# Maintainer: Anand Pant

pkgname=tabex-bin
pkgver=0.0.11
pkgver=0.0.13
pkgrel=1
pkgdesc="Tabex CLI for browser session, capture, and page inspection"
arch=('x86_64')
url="https://github.com/shpitdev/tabex"
url="https://tabex.dev"
license=('LicenseRef-proprietary')
install="${pkgname}.install"
makedepends=('github-cli')
provides=('tabex')
conflicts=('tabex')

# Public PKGBUILD, private release asset. Users need GitHub access to the shpitdev org.
_asset="tabex_v${pkgver}_linux_amd64.tar.gz"
_sha256='b24871f68f28f748c691dfe18fcee6436c60d4d37beb25baecfacbdcb7e1177c'

prepare() {
gh release download "v${pkgver}" \
--repo shpitdev/tabex \
--pattern "${_asset}" \
--dir . --clobber

echo "${_sha256} ${_asset}" | sha256sum -c
tar xzf "${_asset}"
}
source=("https://github.com/shpitdev/pkgbuilds/releases/download/tabex-v${pkgver}/${_asset}")
sha256sums=('8e5a8d1c0c0b8a5fed86be10bf7c3bcbdcbf92f40cd3c81ca3a041567d5fa091')

package() {
install -Dm755 "tabex_v${pkgver}_linux_amd64/tabex" \
"${pkgdir}/usr/bin/tabex"
install -Dm755 "tabex_v${pkgver}_linux_amd64/tabex" "${pkgdir}/usr/bin/tabex"
}