From 6f77bc056990a707ce1ceb090421f4f21375dde4 Mon Sep 17 00:00:00 2001 From: Rmys Date: Sat, 25 Jan 2020 14:50:51 +0300 Subject: [PATCH] util shell --- util/misc/augeas/actions.py | 2 +- util/misc/augeas/pspec.xml | 9 ++++++++- x11/misc/i3status/actions.py | 11 +++++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/util/misc/augeas/actions.py b/util/misc/augeas/actions.py index 4c28befd8d..5531e6f1e0 100644 --- a/util/misc/augeas/actions.py +++ b/util/misc/augeas/actions.py @@ -16,4 +16,4 @@ def build(): def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README") + pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README*") diff --git a/util/misc/augeas/pspec.xml b/util/misc/augeas/pspec.xml index 2902eef156..8a58e4d459 100644 --- a/util/misc/augeas/pspec.xml +++ b/util/misc/augeas/pspec.xml @@ -13,7 +13,7 @@ library A library for changing configuration files augeas is a library for programmatically editing configuration files. Augeas parses configuration files into a tree structure, which it exposes through its public API. - http://download.augeas.net/augeas-1.10.1.tar.gz + http://download.augeas.net/augeas-1.12.0.tar.gz libxml2-devel readline-devel @@ -51,6 +51,13 @@ + + 2020-01-25 + 1.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2018-07-31 1.10.1 diff --git a/x11/misc/i3status/actions.py b/x11/misc/i3status/actions.py index 8b517709f0..d000a987b1 100644 --- a/x11/misc/i3status/actions.py +++ b/x11/misc/i3status/actions.py @@ -10,10 +10,21 @@ from pisi.actionsapi import pisitools from pisi.actionsapi import shelltools from pisi.actionsapi import get + +def setup(): + autotools.autoreconf("-fi") + shelltools.system("mkdir build") + shelltools.cd("build") + shelltools.system("../configure --disable-sanitizers \ + --prefix=/usr \ + --sysconfdir=/etc") + def build(): + shelltools.cd("build") autotools.make() def install(): + shelltools.cd("build") autotools.rawInstall("DESTDIR=%s" % get.installDIR()) #pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")