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

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

[debbugs-tracker] bug#37356: closed ([PATCH] gnu: Add stapler.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#37356: closed ([PATCH] gnu: Add stapler.)
Date: Sat, 28 Sep 2019 06:52:02 +0000

Your message dated Sat, 28 Sep 2019 12:21:27 +0530
with message-id <address@hidden>
and subject line Re: [PATCH] gnu: Add stapler.
has caused the debbugs.gnu.org bug report #37356,
regarding [PATCH] gnu: Add stapler.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
37356: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=37356
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add stapler. Date: Mon, 9 Sep 2019 20:31:00 +0530
* gnu/packages/pdf.scm (stapler): New variable.
---
 gnu/packages/pdf.scm | 36 +++++++++++++++++++++++++++++++++++-
 1 file changed, 35 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index d45a78222c..af915422de 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -9,7 +9,7 @@
 ;;; Copyright © 2016, 2017 Marius Bakke <address@hidden>
 ;;; Copyright © 2016, 2017 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2016 Julien Lepiller <address@hidden>
-;;; Copyright © 2016 Arun Isaac <address@hidden>
+;;; Copyright © 2016, 2019 Arun Isaac <address@hidden>
 ;;; Copyright © 2017, 2018 Leo Famulari <address@hidden>
 ;;; Copyright © 2017 Alex Vong <address@hidden>
 ;;; Copyright © 2017, 2018 Rene Saavedra <address@hidden>
@@ -1116,3 +1116,37 @@ presentation.  The input files processed by pdfpc are 
PDF documents.")
 rendering of the file.  The rendering is done by creating outline curves
 through the Pango @code{ft2} backend.")
       (license license:lgpl2.0+))))
+
+(define-public stapler
+  (package
+    (name "stapler")
+    (version "0.3.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hellerbarde/stapler";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "06w7xanzr7cicqik62g7zqs57j4y6fc7hflrc1rlmphxx40hkg6r"))))
+    (build-system python-build-system)
+    (inputs
+     `(("python2-pypdf2" ,python2-pypdf2)))
+    (arguments
+     `(#:python ,python-2
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-pypdf-version-requirement
+           ;; A PyPDF2 version requirement of 1.25.1 is hard-coded in
+           ;; setup.py. Relax it to work with any version of PyPDF2.
+           (lambda _
+             (substitute* "setup.py"
+               (("PyPDF2==1.25.1") "PyPDF2"))
+             #t)))))
+    (home-page "https://github.com/hellerbarde/stapler";)
+    (synopsis "PDF manipulation tool")
+    (description "Stapler is a pure Python alternative to PDFtk, a tool for
+manipulating PDF documents from the command line.")
+    (license license:bsd-3)))
-- 
2.23.0




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH] gnu: Add stapler. Date: Sat, 28 Sep 2019 12:21:27 +0530
Thanks for the review! I added a complete list of features to the
description and pushed to master.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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