Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pumba 0.9.0 #79

Merged
merged 2 commits into from
Dec 4, 2021
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
6 changes: 3 additions & 3 deletions ci/pumba/before_makepkg.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
pacman -Syu git --noconfirm
git clone https://aur.archlinux.org/go-lint-git.git
chown -R devel: go-lint-git
su devel sh -c "cd go-lint-git && makepkg -sri --noconfirm"
git clone https://aur.archlinux.org/golangci-lint.git
chown -R devel: golangci-lint
su devel sh -c "cd golangci-lint && makepkg -sri --noconfirm"
10 changes: 6 additions & 4 deletions pumba/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
pkgbase = pumba
pkgdesc = Chaos testing, network emulation and stress testing tool for containers
pkgver = 0.8.0
pkgrel = 1
pkgver = 0.9.0
pkgrel = 4
url = https://github.com/alexei-led/pumba
arch = x86_64
license = Apache
makedepends = go
makedepends = git
source = pumba-0.8.0-1.tar.gz::https://github.com/alexei-led/pumba/archive/refs/tags/0.8.0.tar.gz
sha256sums = 052ece6984a0533d7f93b2b64c66d5e89516bbf93e4cb732a2743322b4eef9da
source = pumba-0.9.0-4.tar.gz::https://github.com/alexei-led/pumba/archive/refs/tags/0.9.0.tar.gz
source = https://github.com/alexei-led/pumba/commit/cd6983.patch
sha256sums = 7faa50566898a53b0fff81973e7161874eabec45ad11f9defcd0e04310bddaff
sha256sums = e77b9003e6d79e443aed18c9bde557215a884b40a171cbefe3eeaa11a839d7e5

pkgname = pumba
13 changes: 9 additions & 4 deletions pumba/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# Maintainer: Amin Vakil <info AT aminvakil DOT com>

pkgname=pumba
pkgver=0.8.0
pkgrel=1
pkgver=0.9.0
pkgrel=4
pkgdesc="Chaos testing, network emulation and stress testing tool for containers"
arch=('x86_64')
url="https://github.com/alexei-led/pumba"
license=('Apache')
makedepends=('go' 'git')
source=("${pkgname}-${pkgver}-${pkgrel}.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('052ece6984a0533d7f93b2b64c66d5e89516bbf93e4cb732a2743322b4eef9da')
source=("${pkgname}-${pkgver}-${pkgrel}.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz"
"https://github.com/alexei-led/pumba/commit/cd6983.patch")
sha256sums=('7faa50566898a53b0fff81973e7161874eabec45ad11f9defcd0e04310bddaff'
'e77b9003e6d79e443aed18c9bde557215a884b40a171cbefe3eeaa11a839d7e5')

prepare() {
patch -d "$pkgname-$pkgver" -p1 -i ../cd6983.patch
}

build() {
cd "$pkgname-$pkgver"
Expand Down