From 3fc20d9f091245fb07abe50491b721a5fc78b25c Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Thu, 19 Feb 2026 21:19:49 +0400 Subject: [PATCH] augeas-v1.14.1 --- util/misc/augeas/actions.py | 17 ++++++++++++++--- util/misc/augeas/pspec.xml | 19 +++++++++++++------ .../{translation.xml => translations.xml} | 0 3 files changed, 27 insertions(+), 9 deletions(-) rename util/misc/bleachbit/{translation.xml => translations.xml} (100%) diff --git a/util/misc/augeas/actions.py b/util/misc/augeas/actions.py index 5531e6f1e0..78e28d8a0e 100644 --- a/util/misc/augeas/actions.py +++ b/util/misc/augeas/actions.py @@ -2,18 +2,29 @@ # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/licenses/gpl.txt +# See the file https://www.gnu.org/licenses/gpl-3.0.txt +from pisi.actionsapi import shelltools from pisi.actionsapi import autotools from pisi.actionsapi import pisitools from pisi.actionsapi import get +j = ''.join([ + ' --prefix=/usr', + ' --with-pdfdocs=no', + ' --with-threads=posix', + ' --without-selinux', + ' --disable-static ' + ]) + def setup(): - autotools.configure("--disable-static") + shelltools.system("sh autogen.sh") + autotools.configure(j) def build(): autotools.make() def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) - pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README*") + + pisitools.dodoc("AUTHORS", "COPYING") diff --git a/util/misc/augeas/pspec.xml b/util/misc/augeas/pspec.xml index 8a58e4d459..6c20133ab4 100644 --- a/util/misc/augeas/pspec.xml +++ b/util/misc/augeas/pspec.xml @@ -1,19 +1,19 @@ - + augeas - http://augeas.net + https://github.com/hercules-team/augeas PisiLinux Community admins@pisilinux.org - LGPLv2+ + LGPLv2.1 app:console 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.12.0.tar.gz + https://github.com/hercules-team/augeas/archive/refs/tags/release-1.14.1.tar.gz libxml2-devel readline-devel @@ -40,17 +40,24 @@ augeas-devel Development files for augeas - augeas libxml2-devel + readline-devel + augeas /usr/include /usr/lib/pkgconfig - /usr/share/man/man3 + + 2026-02-19 + 1.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-01-25 1.12.0 diff --git a/util/misc/bleachbit/translation.xml b/util/misc/bleachbit/translations.xml similarity index 100% rename from util/misc/bleachbit/translation.xml rename to util/misc/bleachbit/translations.xml