makedeb


mist-bin 0.12.0-85


The official command-line interface for the makedeb Package Repository

Click here to go back to the commit logs for mist-bin.

Commit:


Hash: 83276010085bdd9641d853d93de6a0dd5289688c

Message: Bump version to '0.9.9'

Diff


diff --git a/.SRCINFO b/.SRCINFO
index a679d49..56462d5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -3,7 +3,7 @@ pkgname = mist-bin
 pkgbase = mist-bin
 pkgdesc = The official command-line interface for the makedeb Package Repository
 pkgrel = 2
-pkgver = 0.9.8
+pkgver = 0.9.9
 url = https://github.com/makedeb/mist
 arch = any
 conflicts = mist
@@ -12,14 +12,14 @@ depends = libssl-dev
 depends = sudo
 license = GPL3
 optdepends = r!less
-provides = mist=0.9.8
+provides = mist=0.9.9
 source = https://example.invalid
 control_fields = MPR-Package: yes
 sha512sums = SKIP
 optdepends = r!less
-bullseye_source = https://proget.makedeb.org/debian-feeds/prebuilt-mpr/jammy/mist/amd64/mist_amd64_0.9.8-1.deb
-focal_source = https://proget.makedeb.org/debian-feeds/prebuilt-mpr/jammy/mist/amd64/mist_amd64_0.9.8-1.deb
-jammy_source = https://proget.makedeb.org/debian-feeds/prebuilt-mpr/jammy/mist/amd64/mist_amd64_0.9.8-1.deb
-bullseye_sha512sums = da95d5316db90cd21452987f30cc902362528ae6c93d7ceccc4bebf74f24c1a2e2c477705c3abd32c69911a8b2bcef601ee13c902e9d2eef2f55b0fc7415d87b
-focal_sha512sums = dc545c332013ad5cc272cd0a6afa940daf07c8370cf9f2afef36cfbac51bb3a8c429444a962c8f807ebeacaf476d5fa5a5eb8cfeaa06f6ebc4b8dd38e4d56d10
-jammy_sha512sums = 92ea63cf2c258fe480112e03f28cbd0a531e903f09dfbbeaf69d78c21b3cfd09c02f0c98d465889ccb1ecc62a59f8a149001a896dbfef3d1debbf25cc6057671
+bullseye_source = https://proget.makedeb.org/debian-feeds/prebuilt-mpr/jammy/mist/amd64/mist_amd64_0.9.9-1.deb
+focal_source = https://proget.makedeb.org/debian-feeds/prebuilt-mpr/jammy/mist/amd64/mist_amd64_0.9.9-1.deb
+jammy_source = https://proget.makedeb.org/debian-feeds/prebuilt-mpr/jammy/mist/amd64/mist_amd64_0.9.9-1.deb
+bullseye_sha512sums = 6da92d593036dcfcafdb3761480d4c9bd388204b161c6a4c9e98cc10aa84b3d2b45bbde1a79c3bc5ad9bedc9ee5679b1ecdcb13f34275e05167bb059d7198f40
+focal_sha512sums = 21069e4f4104a91ffabc43008f18f74503237a78a1d7c267f24bfdd65a28ef5de6cde70c274916fca505356c3c62f5c1a1b0c0763fc585da9ad8508049ce7bd9
+jammy_sha512sums = 0c41daaa9eeabc3f2deb5df8d3487553cbf05db46e20d9ea308802e1036ab0db7fc97b278c49888ac3d5ef94799462b43ffa22d23f0b6ae7dffa356cc42470ee
diff --git a/.update.sh b/.update.sh
new file mode 100755
index 0000000..3ce32fd
--- /dev/null
+++ b/.update.sh
@@ -0,0 +1,15 @@
+#!/usr/bin/env bash
+# NOTE: This script is just used to update the package. If you're just
+# installing this package you can ignore this file.
+set -e
+MAKEDEB_DISTRO_CODENAME='{}'
+source PKGBUILD
+
+for distro in focal jammy bullseye; do
+    wget -O "${distro}.deb" "$(echo "${_source_uri}" | sed "s|{}|${distro}|g")"
+    sha512sum="$(sha512sum "${distro}.deb" | awk '{print $1}')"
+    sed -i "s|^${distro}_sha512sums=.*|${distro}_sha512sums=('${sha512sum}')|" PKGBUILD
+    rm "${distro}.deb"
+done
+
+# vim: set sw=4 expandtab:
diff --git a/PKGBUILD b/PKGBUILD
index e60ffcd..3372030 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
 # Maintainer: Hunter Wittenborn <hunter@hunterwittenborn.com>
 pkgname=mist-bin
-pkgver=0.9.8
+pkgver=0.9.9
 pkgrel=2
 pkgdesc='The official command-line interface for the makedeb Package Repository'
 arch=('any')
@@ -23,9 +23,9 @@ focal_source=("${_source_uri}")
 jammy_source=("${_source_uri}")
 bullseye_source=("${_source_uri}")
 
-focal_sha512sums=('dc545c332013ad5cc272cd0a6afa940daf07c8370cf9f2afef36cfbac51bb3a8c429444a962c8f807ebeacaf476d5fa5a5eb8cfeaa06f6ebc4b8dd38e4d56d10')
-jammy_sha512sums=('92ea63cf2c258fe480112e03f28cbd0a531e903f09dfbbeaf69d78c21b3cfd09c02f0c98d465889ccb1ecc62a59f8a149001a896dbfef3d1debbf25cc6057671')
-bullseye_sha512sums=('da95d5316db90cd21452987f30cc902362528ae6c93d7ceccc4bebf74f24c1a2e2c477705c3abd32c69911a8b2bcef601ee13c902e9d2eef2f55b0fc7415d87b')
+focal_sha512sums=('21069e4f4104a91ffabc43008f18f74503237a78a1d7c267f24bfdd65a28ef5de6cde70c274916fca505356c3c62f5c1a1b0c0763fc585da9ad8508049ce7bd9')
+jammy_sha512sums=('0c41daaa9eeabc3f2deb5df8d3487553cbf05db46e20d9ea308802e1036ab0db7fc97b278c49888ac3d5ef94799462b43ffa22d23f0b6ae7dffa356cc42470ee')
+bullseye_sha512sums=('6da92d593036dcfcafdb3761480d4c9bd388204b161c6a4c9e98cc10aa84b3d2b45bbde1a79c3bc5ad9bedc9ee5679b1ecdcb13f34275e05167bb059d7198f40')
 
 # Any distro not covered by the above can't install the package, so just fail.
 source=('https://example.invalid')