gnu: abc: Update to 0.0-2.70cb339.
* gnu/packages/fpga.scm (abc): Update to 0.0-2.70cb339. [source]: Fetch from current source-code repository. [native-inputs]: Remove as obsolete. [arguments]<#:tests?>: Update comment. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
79240b4b4e
commit
94cab6a703
@ -65,27 +65,26 @@
|
|||||||
#:use-module (gnu packages libusb))
|
#:use-module (gnu packages libusb))
|
||||||
|
|
||||||
(define-public abc
|
(define-public abc
|
||||||
(let ((commit "5ae4b975c49c")
|
(let ((commit "70cb339f869e")
|
||||||
(revision "1"))
|
(revision "2"))
|
||||||
(package
|
(package
|
||||||
(name "abc")
|
(name "abc")
|
||||||
(version (git-version "0.0" revision commit))
|
(version (git-version "0.0" revision commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(string-append "https://bitbucket.org/alanmi/abc/get/" commit ".zip"))
|
(url "https://github.com/berkeley-abc/abc")
|
||||||
(file-name (string-append name "-" version "-checkout.zip"))
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1syygi1x40rdryih3galr4q8yg1w5bvdzl75hd27v1xq0l5bz3d0"))))
|
"1ngxg4jvz8vwm74sbidysgz3v5lrzjcabkqj4nhcksi6hnhyc9m8"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
|
||||||
(list unzip))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list readline))
|
(list readline))
|
||||||
(arguments
|
(arguments
|
||||||
(list #:license-file-regexp "copyright.txt"
|
(list #:license-file-regexp "copyright.txt"
|
||||||
#:tests? #f ; no check target
|
#:tests? #f ; no tests
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
|
Loading…
Reference in New Issue
Block a user