[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/14: gnu: augeas: Update to 1.14.1.
From: |
guix-commits |
Subject: |
01/14: gnu: augeas: Update to 1.14.1. |
Date: |
Wed, 22 May 2024 19:47:28 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit ee86a504e9223b1ef861d830ecf3aaf03cc1364d
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Fri May 17 15:24:04 2024 +0300
gnu: augeas: Update to 1.14.1.
* gnu/packages/augeas.scm (augeas): Update to 1.14.1.
[source]: Use tarballs from GitHub.
[inputs]: Change to "native-inputs". Add readline.
Change-Id: I9ca46b8a50d11c75ff6d816f2f15e1f005877244
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/augeas.scm | 22 ++++++++++++++--------
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/augeas.scm b/gnu/packages/augeas.scm
index 2fd933604c..f643b1573e 100644
--- a/gnu/packages/augeas.scm
+++ b/gnu/packages/augeas.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -21,6 +22,7 @@
(define-module (gnu packages augeas)
#:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix utils)
@@ -33,22 +35,26 @@
(define-public augeas
(package
(name "augeas")
- (version "1.12.0")
+ (version "1.14.1")
(source (origin
+ ;; XXX: Project release has moved to GitHub which has
+ ;; pre-generated "configure" script that allows to simplify
+ ;; the package definition. Try to completely build from
+ ;; source, glibc comes as git submodule.
(method url-fetch)
- (uri (string-append "http://download.augeas.net/augeas-"
- version ".tar.gz"))
+ (uri
+ (string-append
+ "https://github.com/hercules-team/augeas/releases/download/"
+ "release-" version
+ "/augeas-" version ".tar.gz"))
(sha256
(base32
- "11ybhb13wkkilsn7b416a1dn61m1xrq0lbdpkhp5w61jrk4l469j"))))
+ "1zzdp5bwnszza5q6cjw66hkicay8b49n5pda7cbcgfg4hbbzv2rn"))))
(build-system gnu-build-system)
- ;; Marked as "required" in augeas.pc.
(propagated-inputs
(list libxml2))
- (inputs
- (list readline))
(native-inputs
- (list pkg-config))
+ (list readline pkg-config))
(home-page "https://augeas.net")
(synopsis "Edit configuration files programmatically")
(description
- branch master updated (3597c73658 -> c3fe248e69), guix-commits, 2024/05/22
- 03/14: gnu: Add go-go-uber-org-mock., guix-commits, 2024/05/22
- 01/14: gnu: augeas: Update to 1.14.1.,
guix-commits <=
- 02/14: gnu: Add python-augeas., guix-commits, 2024/05/22
- 08/14: gnu: go-github-com-onsi-gomega: Update to 1.33.1., guix-commits, 2024/05/22
- 11/14: gnu: go-github-com-syndtr-goleveldb-leveldb: Move to golang-xyz., guix-commits, 2024/05/22
- 10/14: gnu: go-github-com-syndtr-goleveldb-leveldb: Use go-1.21., guix-commits, 2024/05/22
- 12/14: gnu: go-github-com-quic-go-quic-go: Enable tests., guix-commits, 2024/05/22
- 07/14: gnu: go-github-com-onsi-ginkgo-v2: Update to 2.18.0., guix-commits, 2024/05/22
- 04/14: gnu: go-github-com-go-task-slim-sprig: Move to golang-xyz., guix-commits, 2024/05/22
- 05/14: gnu: go-github-com-go-task-slim-sprig: Enable tests., guix-commits, 2024/05/22
- 09/14: gnu: Add go-ginkgo., guix-commits, 2024/05/22
- 13/14: gnu: Remove go-github-com-lucas-clemente-quic-go., guix-commits, 2024/05/22