pijul: update to 0.12.0.

This commit is contained in:
Toyam Cox 2019-05-17 16:25:24 -04:00
parent 6d709ebc78
commit bf4624646a
2 changed files with 3 additions and 14 deletions

View file

@ -1,11 +0,0 @@
--- line/src/unix.rs.orig 2018-11-19 19:17:02.606568203 +0100
+++ line/src/unix.rs 2018-11-19 19:17:13.762473164 +0100
@@ -6,7 +6,7 @@
fn size() -> (usize, usize) {
unsafe {
let mut size: libc::winsize = std::mem::zeroed();
- if libc::ioctl(1, libc::TIOCGWINSZ as libc::c_ulong, &mut size) == 0 {
+ if libc::ioctl(1, libc::TIOCGWINSZ, &mut size) == 0 {
(size.ws_col as usize, size.ws_row as usize)
} else {
(0, 0)

View file

@ -1,16 +1,16 @@
# Template file for 'pijul'
pkgname=pijul
version=0.11.0
version=0.12.0
revision=1
build_style=cargo
hostmakedepends="pkg-config"
makedepends="libsodium-devel libressl-devel"
makedepends="libsodium-devel libressl-devel nettle-devel clang"
short_desc="Distributed version control system based on patches"
maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
license="GPL-2.0-only"
homepage="https://pijul.org/"
distfiles="https://pijul.org/releases/pijul-${version}.tar.gz"
checksum=e60793ab124e9054c1d5509698acbae507ebb2fab5364d964067bc9ae8b6b5e5
checksum=987820fa2a6fe92a9f516f5e9b41ad59a597973e72cb0c7a44ca0f38e741a7e6
# We only want to install the binary, so don't run cargo install
do_install() {