mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: xapers: Switch to pyproject.
* gnu/packages/search.scm (xapers): [build-system]: Switch to pyproject-build-system. [arguments]: Relocate field. <#:tests?>: Disable them, as a lot of them are failing. <#:phases>: Replace 'check phase. Refrash phase 'install-doc. [native-inputs]: Add python-setuptools. [description]: Improve style. Change-Id: I135aa42aca9f4c784798c38cf0a2f77b605ed338 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
03b67f4c0f
commit
281eb65a23
1 changed files with 62 additions and 54 deletions
|
@ -42,7 +42,7 @@
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system pyproject)
|
||||||
#:use-module (guix build-system meson)
|
#:use-module (guix build-system meson)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages adns)
|
#:use-module (gnu packages adns)
|
||||||
|
@ -71,6 +71,7 @@
|
||||||
#:use-module (gnu packages pdf)
|
#:use-module (gnu packages pdf)
|
||||||
#:use-module (gnu packages photo)
|
#:use-module (gnu packages photo)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages python-build)
|
||||||
#:use-module (gnu packages python-crypto)
|
#:use-module (gnu packages python-crypto)
|
||||||
#:use-module (gnu packages python-web)
|
#:use-module (gnu packages python-web)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
|
@ -640,41 +641,32 @@ search the generated indexes.")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append "https://finestructure.net/xapers/releases/xapers-"
|
||||||
"https://finestructure.net/xapers/releases/xapers-"
|
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0ykz6hn3qj46w3c99d6q0pi5ncq2894simcl7vapv047zm3cylmd"))))
|
||||||
"0ykz6hn3qj46w3c99d6q0pi5ncq2894simcl7vapv047zm3cylmd"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
|
||||||
(propagated-inputs
|
|
||||||
(list poppler python-urwid xclip xdg-utils))
|
|
||||||
(inputs
|
|
||||||
(list python-latexcodec
|
|
||||||
python-pybtex
|
|
||||||
python-pycurl
|
|
||||||
python-pyyaml
|
|
||||||
python-six
|
|
||||||
python-xapian-bindings))
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((ice-9 rdelim)
|
(list
|
||||||
(guix build python-build-system)
|
#:tests? #f ; A lot of tests are failing, unclear why.
|
||||||
|
#:modules `((ice-9 rdelim)
|
||||||
|
(guix build pyproject-build-system)
|
||||||
(guix build utils))
|
(guix build utils))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-doc
|
(add-after 'install 'install-doc
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(define (purge-term-support input output)
|
(define (purge-term-support input output)
|
||||||
(let loop ((line (read-line input)))
|
(let loop
|
||||||
|
((line (read-line input)))
|
||||||
(if (string-prefix? "if [[ \"$term\"" line)
|
(if (string-prefix? "if [[ \"$term\"" line)
|
||||||
(begin (display "eval \"$cmd\"\n" output)
|
(display "eval \"$cmd\"\n" output)
|
||||||
#t)
|
(begin
|
||||||
(begin (display (string-append line "\n") output)
|
(display (string-append line "\n") output)
|
||||||
(loop (read-line input))))))
|
(loop (read-line input))))))
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((bin (string-append #$output "/bin"))
|
||||||
(bin (string-append out "/bin"))
|
|
||||||
(adder-out (string-append bin "/xapers-adder"))
|
(adder-out (string-append bin "/xapers-adder"))
|
||||||
(man1 (string-append out "/share/man/man1")))
|
(man1 (string-append #$output "/share/man/man1")))
|
||||||
(install-file "man/man1/xapers.1" man1)
|
(install-file "man/man1/xapers.1" man1)
|
||||||
(install-file "man/man1/xapers-adder.1" man1)
|
(install-file "man/man1/xapers-adder.1" man1)
|
||||||
;; below is equivalent to setting --no-term option
|
;; below is equivalent to setting --no-term option
|
||||||
|
@ -685,20 +677,36 @@ search the generated indexes.")
|
||||||
;; e.g. "xterm -e xapers-adder %F" for same use.
|
;; e.g. "xterm -e xapers-adder %F" for same use.
|
||||||
;; alternatively we could propagate xterm as an input
|
;; alternatively we could propagate xterm as an input
|
||||||
;; and replace 'x-terminal-emulator' with 'xterm'
|
;; and replace 'x-terminal-emulator' with 'xterm'
|
||||||
|
(mkdir-p (dirname adder-out))
|
||||||
(call-with-input-file "bin/xapers-adder"
|
(call-with-input-file "bin/xapers-adder"
|
||||||
(lambda (input)
|
(lambda (input)
|
||||||
(call-with-output-file adder-out
|
(call-with-output-file adder-out
|
||||||
(lambda (output)
|
(lambda (output)
|
||||||
(purge-term-support input output)))))
|
(purge-term-support input output)))))
|
||||||
(chmod adder-out #o555)))))))
|
(chmod adder-out #o555))))
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(if tests?
|
||||||
|
(with-directory-excursion "test"
|
||||||
|
(setenv "HOME" (getcwd))
|
||||||
|
(invoke "bash" "all"))
|
||||||
|
(format #t "test suite not run~%")))))))
|
||||||
|
(native-inputs (list python-setuptools))
|
||||||
|
(propagated-inputs (list poppler python-urwid xclip xdg-utils))
|
||||||
|
(inputs (list python-latexcodec
|
||||||
|
python-pybtex
|
||||||
|
python-pycurl
|
||||||
|
python-pyyaml
|
||||||
|
python-six
|
||||||
|
python-xapian-bindings))
|
||||||
(home-page "https://finestructure.net/xapers/")
|
(home-page "https://finestructure.net/xapers/")
|
||||||
(synopsis "Personal document indexing system")
|
(synopsis "Personal document indexing system")
|
||||||
(description
|
(description
|
||||||
"Xapers is a personal document indexing system,
|
"Xapers is a personal document indexing system, geared towards academic
|
||||||
geared towards academic journal articles build on the Xapian search engine.
|
journal articles build on the Xapian search engine. Think of it as your own
|
||||||
Think of it as your own personal document search engine, or a local cache of
|
personal document search engine, or a local cache of online libraries. It
|
||||||
online libraries. It provides fast search of document text and
|
provides fast search of document text and bibliographic data and simple
|
||||||
bibliographic data and simple document and bibtex retrieval.")
|
document and bibtex retrieval.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public ugrep
|
(define-public ugrep
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue