gnu: par2cmdline: Update to 0.7.0
* gnu/packages/backup.scm (par2cmdline): Update to 0.7.0 [source]: Remove old test fix incorporated upstream. [arguments]: Disable parallel tests. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
		
							parent
							
								
									d7fa39ccec
								
							
						
					
					
						commit
						1edbdb0bfc
					
				
					 1 changed files with 4 additions and 11 deletions
				
			
		| 
						 | 
					@ -118,7 +118,7 @@ spying and/or modification by the server.")
 | 
				
			||||||
(define-public par2cmdline
 | 
					(define-public par2cmdline
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "par2cmdline")
 | 
					    (name "par2cmdline")
 | 
				
			||||||
    (version "0.6.14")
 | 
					    (version "0.7.0")
 | 
				
			||||||
    (source (origin
 | 
					    (source (origin
 | 
				
			||||||
              (method url-fetch)
 | 
					              (method url-fetch)
 | 
				
			||||||
              (uri (string-append "https://github.com/Parchive/par2cmdline/archive/v"
 | 
					              (uri (string-append "https://github.com/Parchive/par2cmdline/archive/v"
 | 
				
			||||||
| 
						 | 
					@ -126,21 +126,14 @@ spying and/or modification by the server.")
 | 
				
			||||||
              (file-name (string-append name "-" version ".tar.gz"))
 | 
					              (file-name (string-append name "-" version ".tar.gz"))
 | 
				
			||||||
              (sha256
 | 
					              (sha256
 | 
				
			||||||
               (base32
 | 
					               (base32
 | 
				
			||||||
                "0ykfb7ar0x0flfdgf6i8xphyv5b93dalbjj2jb6hx7sdjax33n1g"))
 | 
					                "1m9vnv3pg0nds47raq2rd2kfpaad1sc10hv40hll5byksqlbfxyq"))))
 | 
				
			||||||
              ;; This test merely needs a file to test recovery on, but
 | 
					 | 
				
			||||||
              ;; /dev/random is essentially /dev/urandom plus minimum entropy
 | 
					 | 
				
			||||||
              ;; locking, making the test hang indefinitely. This change is
 | 
					 | 
				
			||||||
              ;; already upstream: remove on upgrade to future 0.6.15.
 | 
					 | 
				
			||||||
              ;; https://github.com/Parchive/par2cmdline/commit/27723a678f780da82c79b98592592009c779a4fb
 | 
					 | 
				
			||||||
              (modules '((guix build utils)))
 | 
					 | 
				
			||||||
              (snippet
 | 
					 | 
				
			||||||
               '(substitute* "tests/test20" (("if=/dev/random") "if=/dev/urandom")))))
 | 
					 | 
				
			||||||
    (native-inputs
 | 
					    (native-inputs
 | 
				
			||||||
     `(("automake" ,automake)
 | 
					     `(("automake" ,automake)
 | 
				
			||||||
       ("autoconf" ,autoconf)))
 | 
					       ("autoconf" ,autoconf)))
 | 
				
			||||||
    (build-system gnu-build-system)
 | 
					    (build-system gnu-build-system)
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
     `(#:phases
 | 
					     `(#:parallel-tests? #f
 | 
				
			||||||
 | 
					       #:phases
 | 
				
			||||||
       (modify-phases %standard-phases
 | 
					       (modify-phases %standard-phases
 | 
				
			||||||
         (add-after 'unpack 'autoreconf
 | 
					         (add-after 'unpack 'autoreconf
 | 
				
			||||||
           (lambda _ (zero? (system* "autoreconf" "-vfi")))))))
 | 
					           (lambda _ (zero? (system* "autoreconf" "-vfi")))))))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue