From ee4e439acd74e377b9c12366d135c5eb8d389265 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 13 Nov 2019 15:56:37 +0100 Subject: gnu: minixml: Adjust to updated upstream tarball. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The release tarball was modified in place to add a top-level directory. * gnu/packages/xml (minixml)[source]: Use non-tarbomb URL-FETCH. [arguments]: Remove ‘fix-permissions’ phase. --- gnu/packages/xml.scm | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'gnu/packages/xml.scm') diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index d0216423e8..ba7c121776 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1017,28 +1017,18 @@ Libxml2).") (name "minixml") (version "2.12") (source (origin - (method url-fetch/tarbomb) + (method url-fetch) (uri (string-append "https://github.com/michaelrsweet/mxml/" "releases/download/v" version "/mxml-" version ".tar.gz")) (sha256 (base32 - "1z8nqxa4pqdic8wpixkkgg1m2pak9wjikjjxnk3j5i0d29dbgmmg")))) + "0kq3wiycb40dcyswvajrqb1n5ffm5xcnsfxxaml92vhpl6x57yvb")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib")) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-permissions - ;; FIXME: url-fetch/tarbomb resets all permissions to 555/444. - (lambda _ - (for-each - (lambda (file) - (chmod file #o644)) - (find-files "doc" "\\.")) - #t))) #:tests? #f)) ; tests are run during build (home-page "https://michaelrsweet.github.io/mxml") (synopsis "Small XML parsing library") -- cgit v1.2.3