mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: paps: Update to 0.7.1.
* gnu/packages/pdf.scm (paps): Update to 0.7.1.
This commit is contained in:
parent
3216577dbc
commit
a26b73b6fc
1 changed files with 21 additions and 40 deletions
|
@ -1120,40 +1120,21 @@ (define-public pdfpc
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public paps
|
(define-public paps
|
||||||
(let ((commit "37e6ca1cd96d751bbbff5539d795c90d657289a5")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
(package
|
||||||
(name "paps")
|
(name "paps")
|
||||||
;; The last release was in 2015, but since then there have been security
|
(version "0.7.1")
|
||||||
;; bug fixes.
|
|
||||||
(version (git-version "0.7.0" revision commit))
|
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append "https://github.com/dov/paps/releases/download/v"
|
||||||
(url "https://github.com/dov/paps.git")
|
version "/paps-" version ".tar.gz"))
|
||||||
(commit commit)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1z1w1fg2bvb8p92n1jlpqp3n9mq42szb2mqhh4xqmmnmfcdkpi9s"))))
|
||||||
"1ilcyjqdynxsd2p8dnn8h4592dwf531x9pbkxa1w09hkcdn7hgwc"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'do-not-run-configure-script-during-bootstrap
|
|
||||||
(lambda _
|
|
||||||
(substitute* "autogen.sh"
|
|
||||||
(("^./configure") "#"))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("pango" ,pango)))
|
`(("pango" ,pango)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("intltool" ,intltool)
|
||||||
("automake" ,automake)
|
|
||||||
("gettext" ,gettext-minimal)
|
|
||||||
("glib" ,glib "bin")
|
|
||||||
("intltool" ,intltool)
|
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(home-page "https://github.com/dov/paps")
|
(home-page "https://github.com/dov/paps")
|
||||||
(synopsis "Pango to PostScript converter")
|
(synopsis "Pango to PostScript converter")
|
||||||
|
@ -1161,7 +1142,7 @@ (define-public paps
|
||||||
"Paps reads a UTF-8 encoded file and generates a PostScript language
|
"Paps reads a UTF-8 encoded file and generates a PostScript language
|
||||||
rendering of the file. The rendering is done by creating outline curves
|
rendering of the file. The rendering is done by creating outline curves
|
||||||
through the Pango @code{ft2} backend.")
|
through the Pango @code{ft2} backend.")
|
||||||
(license license:lgpl2.0+))))
|
(license license:lgpl2.0+)))
|
||||||
|
|
||||||
(define-public stapler
|
(define-public stapler
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue