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

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

bug#49454: closed ([PATCH] gnu: add bibtool)


From: GNU bug Tracking System
Subject: bug#49454: closed ([PATCH] gnu: add bibtool)
Date: Thu, 08 Jul 2021 22:25:01 +0000

Your message dated Fri, 09 Jul 2021 00:24:03 +0200
with message-id <87h7h4la0s.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#49454] [PATCH] gnu: add bibtool
has caused the debbugs.gnu.org bug report #49454,
regarding [PATCH] gnu: add bibtool
to be marked as done.

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


-- 
49454: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=49454
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [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




--- End Message ---
--- Begin Message --- Subject: Re: [bug#49454] [PATCH] gnu: add bibtool Date: Fri, 09 Jul 2021 00:24:03 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Hello,

Ivan Gankevich <i.gankevich@spbu.ru> writes:

> +(define-public bibtool

Thank you! I provided a proper commit message, and expounded
description. Nitpick: I also moved home-page before the synopsis, as it
is usually located there in our packages.

I eventually added a copyright line for you at the top of the "tex.scm"
file.

Regards,
-- 
Nicolas Goaziou


--- End Message ---

reply via email to

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