guix-commits
[Top][All Lists]
Advanced

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

05/09: gnu: abc: Update to 0.0-2.70cb339.


From: guix-commits
Subject: 05/09: gnu: abc: Update to 0.0-2.70cb339.
Date: Tue, 27 Dec 2022 17:54:35 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 94cab6a703cb21604cc56c481b418643f8454fc1
Author: Simon South <simon@simonsouth.net>
AuthorDate: Thu Dec 22 12:09:54 2022 -0500

    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>
---
 gnu/packages/fpga.scm | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index 9bc387c762..acce5f8f82 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -65,27 +65,26 @@
   #:use-module (gnu packages libusb))
 
 (define-public abc
- (let ((commit "5ae4b975c49c")
-       (revision "1"))
+ (let ((commit "70cb339f869e")
+       (revision "2"))
   (package
     (name "abc")
     (version (git-version "0.0" revision commit))
     (source (origin
-              (method url-fetch)
-              (uri
-               (string-append "https://bitbucket.org/alanmi/abc/get/"; commit 
".zip"))
-              (file-name (string-append name "-" version "-checkout.zip"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/berkeley-abc/abc";)
+                    (commit commit)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1syygi1x40rdryih3galr4q8yg1w5bvdzl75hd27v1xq0l5bz3d0"))))
+                "1ngxg4jvz8vwm74sbidysgz3v5lrzjcabkqj4nhcksi6hnhyc9m8"))))
     (build-system gnu-build-system)
-    (native-inputs
-     (list unzip))
     (inputs
      (list readline))
     (arguments
      (list #:license-file-regexp "copyright.txt"
-           #:tests? #f ; no check target
+           #:tests? #f ; no tests
            #:phases
            #~(modify-phases %standard-phases
                (delete 'configure)



reply via email to

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