emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#51844: closed ([PATCH] gnu: Add libconfini.)


From: GNU bug Tracking System
Subject: bug#51844: closed ([PATCH] gnu: Add libconfini.)
Date: Thu, 02 Dec 2021 14:40:01 +0000

Your message dated Thu, 02 Dec 2021 15:38:59 +0100
with message-id <87fsrbvzp8.fsf@gnu.org>
and subject line Re: bug#51844: [PATCH] gnu: Add libconfini.
has caused the debbugs.gnu.org bug report #51844,
regarding [PATCH] gnu: Add libconfini.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
51844: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=51844
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add libconfini. Date: Sun, 14 Nov 2021 14:48:08 +0100
* gnu/packages/cpp.scm (libconfini): New variable.
---
 gnu/packages/cpp.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index d7a83ae727..a3061a9601 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1141,6 +1141,36 @@ (define-public pcg-cpp
       (home-page "https://www.pcg-random.org";)
       (license (list license:expat license:asl2.0))))) ; dual licensed
 
+(define-public libconfini
+  (package
+    (name "libconfini")
+    (version "1.16.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/madmurphy/libconfini";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "01g8ai2z4fwshk06k824j6ib8nfb3cwxs5kqpqjvv4k5ayzm892h"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'bootstrap
+           (lambda _ (invoke "sh" "bootstrap" "--noconfigure"))))))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)))
+    (home-page "https://madmurphy.github.io/libconfini";)
+    (synopsis "INI file parser")
+    (description "libconfini is an INI file parser library written in C. It
+focuses on standardization and parsing exactness and is at ease with almost
+every type of file containing key/value pairs.")
+    (license license:gpl3+)))
+
 (define-public libcutl
   (package
     (name "libcutl")
-- 
2.33.1





--- End Message ---
--- Begin Message --- Subject: Re: bug#51844: [PATCH] gnu: Add libconfini. Date: Thu, 02 Dec 2021 15:38:59 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
> * gnu/packages/cpp.scm (libconfini): New variable.

Pushed with minor edits,

Thanks,

Mathieu


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]