gnu: Remove python2-quex-0.67.3.

* gnu/packages/python-xyz.scm (python2-quex-0.67.3): Delete variable.
This commit is contained in:
Maxim Cournoyer 2022-04-29 17:42:22 -04:00
parent 2644fac20e
commit 52abcbbdc0
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -23094,48 +23094,6 @@ (define-public python-pyinotify
(define-public python2-pyinotify
(package-with-python2 python-pyinotify))
;; Ada parser uses this version.
(define-public python2-quex-0.67.3
(package
(name "python2-quex")
(version "0.67.3")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/quex/HISTORY/"
(version-major+minor version)
"/quex-" version ".zip"))
(sha256
(base32
"14gv8ll3ipqv4kyc2xiy891nrmjl4ic823zfyx8hassagyclyppw"))))
(build-system python-build-system)
(native-inputs
(list unzip))
(arguments
`(#:python ,python-2
#:tests? #f
#:phases
(modify-phases %standard-phases
(delete 'configure)
(delete 'build)
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(share/quex (string-append out "/share/quex"))
(bin (string-append out "/bin")))
(copy-recursively "." share/quex)
(mkdir-p bin)
(symlink (string-append share/quex "/quex-exe.py")
(string-append bin "/quex"))
#t))))))
(native-search-paths
(list (search-path-specification
(variable "QUEX_PATH")
(files '("share/quex")))))
(home-page "http://quex.sourceforge.net/")
(synopsis "Lexical analyzer generator in Python")
(description "@code{quex} is a lexical analyzer generator in Python.")
(license license:lgpl2.1+))) ; Non-military
(define-public python2-quex
(package (inherit python2-quex-0.67.3)