mirror of
https://aur.archlinux.org/pacwrap.git
synced 2024-11-23 06:26:29 +00:00
Bump to 0.7.1
- Fixed description in PKGBUILD - Preface 'cargo build' with 'PACWRAP_SCHEMA_BUILT=1'
This commit is contained in:
parent
3b0c40ec45
commit
eef5bb9098
2 changed files with 9 additions and 8 deletions
10
.SRCINFO
10
.SRCINFO
|
@ -1,6 +1,6 @@
|
||||||
pkgbase = pacwrap
|
pkgbase = pacwrap
|
||||||
pkgdesc = Facilitates the creation, management, and execution of Arch-baesd unprivileged bubblewrap containers.
|
pkgdesc = Facilitates the creation, management, and execution of unprivileged Arch-based bubblewrap containers.
|
||||||
pkgver = 0.7.0
|
pkgver = 0.7.1
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://pacwrap.sapphirus.org/
|
url = https://pacwrap.sapphirus.org/
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
|
@ -13,8 +13,8 @@ pkgbase = pacwrap
|
||||||
makedepends = busybox
|
makedepends = busybox
|
||||||
makedepends = fakechroot
|
makedepends = fakechroot
|
||||||
options = !lto
|
options = !lto
|
||||||
source = pacwrap-0.7.0.tar.zst::https://github.com/pacwrap/pacwrap/releases/download/0.7.0/pacwrap-0.7.0.tar.zst
|
source = pacwrap-0.7.1.tar.zst::https://github.com/pacwrap/pacwrap/releases/download/0.7.1/pacwrap-0.7.1.tar.zst
|
||||||
sha512sums = b79b118be628c506f5d79d747e89172d839847b5610dd62a913deb586b591abe5d58f20c065ccc4a975627637f667b4e35ff63a83857e9226f01156684db9ccb
|
sha512sums = 936e66bb38ab5eab79c6678071ef472ba8135937c5a223271165934b19803410f7876991c428bd7a4a32b77f666380edc37f1d703b1961c5028ef270154d8169
|
||||||
|
|
||||||
pkgname = pacwrap
|
pkgname = pacwrap
|
||||||
depends = bash
|
depends = bash
|
||||||
|
@ -22,7 +22,7 @@ pkgname = pacwrap
|
||||||
depends = gnupg
|
depends = gnupg
|
||||||
depends = pacman
|
depends = pacman
|
||||||
depends = libseccomp
|
depends = libseccomp
|
||||||
depends = pacwrap-dist=0.7.0
|
depends = pacwrap-dist=0.7.1
|
||||||
depends = zstd
|
depends = zstd
|
||||||
optdepends = xdg-dbus-proxy
|
optdepends = xdg-dbus-proxy
|
||||||
provides = pacwrap
|
provides = pacwrap
|
||||||
|
|
7
PKGBUILD
7
PKGBUILD
|
@ -1,15 +1,15 @@
|
||||||
# Maintainer: Xavier R.M. (sapphirus at azorium dot net)
|
# Maintainer: Xavier R.M. (sapphirus at azorium dot net)
|
||||||
|
|
||||||
pkgname=('pacwrap' 'pacwrap-dist')
|
pkgname=('pacwrap' 'pacwrap-dist')
|
||||||
pkgver=0.7.0
|
pkgver=0.7.1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Facilitates the creation, management, and execution of Arch-baesd unprivileged bubblewrap containers."
|
pkgdesc="Facilitates the creation, management, and execution of unprivileged Arch-based bubblewrap containers."
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://pacwrap.sapphirus.org/"
|
url="https://pacwrap.sapphirus.org/"
|
||||||
license=('GPLv3-only')
|
license=('GPLv3-only')
|
||||||
makedepends=('cargo' 'git' 'fakeroot' 'pacman' 'zstd' 'busybox' 'fakechroot')
|
makedepends=('cargo' 'git' 'fakeroot' 'pacman' 'zstd' 'busybox' 'fakechroot')
|
||||||
source=("${pkgname}-${pkgver}.tar.zst::https://github.com/pacwrap/pacwrap/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.zst")
|
source=("${pkgname}-${pkgver}.tar.zst::https://github.com/pacwrap/pacwrap/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.zst")
|
||||||
sha512sums=('b79b118be628c506f5d79d747e89172d839847b5610dd62a913deb586b591abe5d58f20c065ccc4a975627637f667b4e35ff63a83857e9226f01156684db9ccb')
|
sha512sums=('936e66bb38ab5eab79c6678071ef472ba8135937c5a223271165934b19803410f7876991c428bd7a4a32b77f666380edc37f1d703b1961c5028ef270154d8169')
|
||||||
options=('!lto')
|
options=('!lto')
|
||||||
|
|
||||||
prepare() {
|
prepare() {
|
||||||
|
@ -20,6 +20,7 @@ prepare() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${srcdir}"
|
cd "${srcdir}"
|
||||||
|
PACWRAP_SCHEMA_BUILT=1 \
|
||||||
cargo build --release --frozen
|
cargo build --release --frozen
|
||||||
./dist/tools/runtime.sh release
|
./dist/tools/runtime.sh release
|
||||||
./target/release/pacwrap --help=all --format=man > ./pacwrap.1
|
./target/release/pacwrap --help=all --format=man > ./pacwrap.1
|
||||||
|
|
Loading…
Reference in a new issue