makedeb
An utility to directly boot image files without reformating the USB
Click here to go back to the commit logs for ventoy-bin.
Hash: 2536168fb4ee1586b7ae14d53e195dcbfbaec1c0
Message: update: ventoy-bin 1.0.40-1
- upstream release
- fix a non-zero exit condition in `ventoy.install`
diff --git a/.SRCINFO b/.SRCINFO
index 145d57e..1763b50 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ventoy-bin
pkgdesc = A new multiboot USB solution (Binary)
- pkgver = 1.0.39
- pkgrel = 3
+ pkgver = 1.0.40
+ pkgrel = 1
url = http://www.ventoy.net/
install = ventoy.install
arch = i686
@@ -15,12 +15,12 @@ pkgbase = ventoy-bin
depends = lib32-glibc
provides = ventoy
conflicts = ventoy
- source = https://github.com/ventoy/Ventoy/releases/download/v1.0.39/ventoy-1.0.39-linux.tar.gz
+ source = https://github.com/ventoy/Ventoy/releases/download/v1.0.40/ventoy-1.0.40-linux.tar.gz
source = ventoy
source = ventoyweb
source = ventoy-persistent
source = sanitize.patch
- sha256sums = 56df6024bff1dbf3176171bf16f16dc2ad49b1a5a672404fc978a04f4962aa8f
+ sha256sums = 89b76fa2431e80613002613a28e23723c6dab659dc9891315db8dcce931d202a
sha256sums = 1ad5d314e02b84127a5a59f3871eb1d28617218cad07cde3eeddcac391473000
sha256sums = c3d4463a878a89d96e5f0bc4e1a43e48f27af5965bd4c977567695d7cf91fe5f
sha256sums = 51029745da197dded6e007aee3f30f7ea1aa6e898172a6ea176cc2f3a842d0ff
diff --git a/PKGBUILD b/PKGBUILD
index feb1fc0..2ba5efe 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,8 +3,8 @@
# Contributor: KokaKiwi <kokakiwi+aur@kokakiwi.net>
pkgname=ventoy-bin
-pkgver=1.0.39
-pkgrel=3
+pkgver=1.0.40
+pkgrel=1
pkgdesc='A new multiboot USB solution (Binary)'
url='http://www.ventoy.net/'
arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@ conflicts=("${pkgname%-bin}")
install="${pkgname%-bin}.install"
source=("https://github.com/ventoy/Ventoy/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}-linux.tar.gz"
"${pkgname%-bin}" "${pkgname%-bin}web" "${pkgname%-bin}-persistent" 'sanitize.patch')
-sha256sums=('56df6024bff1dbf3176171bf16f16dc2ad49b1a5a672404fc978a04f4962aa8f'
+sha256sums=('89b76fa2431e80613002613a28e23723c6dab659dc9891315db8dcce931d202a'
'1ad5d314e02b84127a5a59f3871eb1d28617218cad07cde3eeddcac391473000'
'c3d4463a878a89d96e5f0bc4e1a43e48f27af5965bd4c977567695d7cf91fe5f'
'51029745da197dded6e007aee3f30f7ea1aa6e898172a6ea176cc2f3a842d0ff'
diff --git a/ventoy.install b/ventoy.install
index 0966cf8..c636636 100644
--- a/ventoy.install
+++ b/ventoy.install
@@ -8,5 +8,5 @@ post_install() {
}
post_upgrade() {
- [ $(vercmp $2 1.0.39) -le 0 ] && post_install
+ if [ $(vercmp $2 1.0.39) -le 0 ]; then post_install; fi
}