From d0681495af29a38b3148717564ab04e699d9cd01 Mon Sep 17 00:00:00 2001 From: Amin Vakil Date: Sat, 11 Jan 2025 10:51:16 +0330 Subject: [PATCH] upgpkg: dstp 0.4.23-1 upstream release --- dstp/.SRCINFO | 6 +++--- dstp/PKGBUILD | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dstp/.SRCINFO b/dstp/.SRCINFO index 6a6ab88..020a7d9 100644 --- a/dstp/.SRCINFO +++ b/dstp/.SRCINFO @@ -1,13 +1,13 @@ pkgbase = dstp pkgdesc = Run common networking tests against your site - pkgver = 0.4.0 + pkgver = 0.4.23 pkgrel = 1 url = https://github.com/ycd/dstp arch = any license = MIT makedepends = go makedepends = git - source = dstp-0.4.0-1.tar.gz::https://github.com/ycd/dstp/archive/refs/tags/v0.4.0.tar.gz - sha256sums = 64cdaf45206ce2d6e36a56314cc759073dedf9cfcc040800d75bdd896f49fe79 + source = dstp-0.4.23-1.tar.gz::https://github.com/ycd/dstp/archive/refs/tags/v0.4.23.tar.gz + sha256sums = 1ab45012204cd68129fd05723dd768ea4a9ce08e2f6c2fa6468c2c88ab65c877 pkgname = dstp diff --git a/dstp/PKGBUILD b/dstp/PKGBUILD index 6b715a6..670162e 100644 --- a/dstp/PKGBUILD +++ b/dstp/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Amin Vakil pkgname=dstp -pkgver=0.4.0 +pkgver=0.4.23 pkgrel=1 pkgdesc="Run common networking tests against your site" arch=('any') @@ -9,7 +9,7 @@ url="https://github.com/ycd/dstp" license=('MIT') makedepends=('go' 'git') source=("${pkgname}-${pkgver}-${pkgrel}.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz") -sha256sums=('64cdaf45206ce2d6e36a56314cc759073dedf9cfcc040800d75bdd896f49fe79') +sha256sums=('1ab45012204cd68129fd05723dd768ea4a9ce08e2f6c2fa6468c2c88ab65c877') prepare(){ cd "$pkgname-$pkgver" @@ -23,7 +23,7 @@ build() { export CGO_CXXFLAGS="${CXXFLAGS}" export CGO_LDFLAGS="${LDFLAGS}" export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" - go build -o build cmd/dstp/main.go + go build -o build cmd/dstp/dstp.go } check() { @@ -33,5 +33,5 @@ check() { package() { cd "$pkgname-$pkgver" - install -Dm755 build/main "$pkgdir"/usr/bin/$pkgname + install -Dm755 build/dstp "$pkgdir"/usr/bin/$pkgname }