makedeb
A simplicity-focused packaging tool for Debian archives
Click here to go back to the commit logs for makedeb-alpha.
Hash: 13f7082d1f7c5655750a9b2be2128047a4efe229
Message: Updated version to 16.1.0-alpha13
diff --git a/.SRCINFO b/.SRCINFO
index 4062595..074ad31 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -2,7 +2,7 @@ generated-by = makedeb
pkgname = makedeb-alpha
pkgbase = makedeb-alpha
pkgdesc = A simplicity-focused packaging tool for Debian archives
-pkgrel = alpha12
+pkgrel = alpha13
pkgver = 16.1.0
url = https://github.com/makedeb/makedeb
arch = any
@@ -26,7 +26,7 @@ makedepends = git
makedepends = make
makedepends = jq
provides = makedeb=16.1.0
-source = makedeb::git+https://github.com/makedeb/makedeb/#tag=v16.1.0-alpha12
+source = makedeb::git+https://github.com/makedeb/makedeb/#tag=v16.1.0-alpha13
sha256sums = SKIP
makedepends = asciidoctor
makedepends = cargo
diff --git a/PKGBUILD b/PKGBUILD
index 525e45f..5699506 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@ _target=mpr
pkgname=makedeb-alpha
pkgver=16.1.0
-pkgrel=alpha12
+pkgrel=alpha13
pkgdesc="A simplicity-focused packaging tool for Debian archives"
arch=('any')
depends=(
@@ -46,8 +46,14 @@ prepare() {
build() {
cd makedeb/
- DPKG_ARCHITECTURE="${MAKEDEB_DPKG_ARCHITECTURE}" \
- just build
+ local no_worker_sizes_distros=('bionic')
+ export DPKG_ARCHITECTURE="${MAKEDEB_DPKG_ARCHITECTURE}"
+
+ if in_array "${MAKEDEB_DISTRO_CODENAME}" "${no_worker_sizes_distros[@]}"; then
+ export RUST_APT_WORKER_SIZES=1
+ fi
+
+ just build
}
package() {
@@ -55,3 +61,5 @@ package() {
DESTDIR="${pkgdir}" \
just package
}
+
+# vim: set syntax=bash sw=4 expandtab:
\ No newline at end of file