GNU bug report logs - #49454
[PATCH] gnu: add bibtool

Previous Next

Package: guix-patches;

Reported by: Ivan Gankevich <i.gankevich <at> spbu.ru>

Date: Wed, 7 Jul 2021 07:27:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Ivan Gankevich <i.gankevich <at> spbu.ru>
To: 49454 <at> debbugs.gnu.org
Cc: Ivan Gankevich <i.gankevich <at> spbu.ru>
Subject: [bug#49454] [PATCH] gnu: add bibtool
Date: Wed,  7 Jul 2021 10:25:51 +0300
---
 gnu/packages/tex.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 086d6190dd..752965a0a3 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -8629,3 +8629,29 @@ constructs TeX accepts as arguments to its @code{\\number} primitive
 are valid as arguments for the macros.  The package may be used under
 LaTeX and plain TeX.")
     (license (license:fsf-free "file:/binhex.dtx"))))
+
+(define-public bibtool
+  (package
+    (name "bibtool")
+    (version "2.68")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/ge-ne/bibtool")
+               (commit (string-append
+                         "BibTool_"
+                         (string-map
+                           (lambda (c) (if (char=? c #\.) #\_ c))
+                           version)))))
+        (file-name (git-file-name name version))
+        (sha256 (base32 "0grnmqj8w5018nd7r6drnq2yvfhf22gj9i3rj8ilhzm7zmz3zn0g"))))
+    (build-system gnu-build-system)
+    (arguments
+      `(#:test-target "test"))
+    (native-inputs
+      `(("perl" ,perl)))
+    (synopsis "Tool for manipulating BibTeX data bases")
+    (description "Pretty print, sort, merge, select entries from BibTeX files.")
+    (home-page "http://www.gerd-neugebauer.de/software/TeX/BibTool/en/")
+    (license license:gpl2+)))
-- 
2.32.0





This bug report was last modified 4 years and 12 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.