gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] branch master updated: remove guix.scm


From: gnunet
Subject: [gnurl] branch master updated: remove guix.scm
Date: Thu, 07 Nov 2019 00:34:41 +0100

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

The following commit(s) were added to refs/heads/master by this push:
     new a7a217c5f remove guix.scm
a7a217c5f is described below

commit a7a217c5f7ead7c29ea5c2adc2aa009426a53471
Author: ng0 <address@hidden>
AuthorDate: Wed Nov 6 23:34:25 2019 +0000

    remove guix.scm
---
 aux-gnurl/guix.scm | 111 -----------------------------------------------------
 1 file changed, 111 deletions(-)

diff --git a/aux-gnurl/guix.scm b/aux-gnurl/guix.scm
deleted file mode 100644
index eeb153031..000000000
--- a/aux-gnurl/guix.scm
+++ /dev/null
@@ -1,111 +0,0 @@
-;;; 
/***************************************************************************
-;;; *
-;;; *
-;;; * Copyright (C) 2016, 2017, 2018 Nils Gillmann <address@hidden>.
-;;; *
-;;; * This file is an appendum to gnURL, based on cURL/libcurl.
-;;; *
-;;; * This software is licensed as described in the file COPYING, which
-;;; * you should have received as part of this distribution. The terms
-;;; * are also available at https://curl.haxx.se/docs/copyright.html.
-;;; *
-;;; * You may opt to use, copy, modify, merge, publish, distribute and/or sell
-;;; * copies of the Software, and permit persons to whom the Software is
-;;; * furnished to do so, under the terms of the COPYING file.
-;;; *
-;;; * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
-;;; * KIND, either express or implied.
-;;; *
-;;; 
***************************************************************************/
-
-
-(use-modules
- (ice-9 popen)
- (ice-9 match)
- (ice-9 rdelim)
- (srfi srfi-1)
- (guix packages)
- (guix build-system gnu)
- (guix gexp)
- (guix utils)
- ((guix build utils) #:select (with-directory-excursion))
- (gnu packages)
- ;;(gnu packages base)
- ((gnu packages autotools) #:select (autoconf automake libtool))
- ((gnu packages python) #:select (python-2))
- ((gnu packages tls) #:select (gnutls/dane))
- ((gnu packages compression) #:select (zlib))
- (gnu packages groff)
- (gnu packages libidn)
- ;;((ports lang perl5 perl5 perl5) #:select (perl))
- (gnu packages perl)
- ;;((ports devel openbsd-pkg-config openbsd-pkg-config) #:select 
(openbsd-pkg-config)))
- (gnu packages pkg-config))
-
-(define %source-dir (dirname (current-filename)))
-
-(define-public gnurl-git
-  (package
-    (name "gnurl-git")
-    (version (string-append "7.61.1-" "dev"))
-    (source
-     (local-file %source-dir
-                 #:recursive? #t))
-    (inputs
-     `(("gnutls" ,gnutls/dane)
-       ("libidn2" ,libidn2)
-       ("zlib" ,zlib)))
-    (native-inputs
-     `(("autoconf" ,autoconf)
-       ("automake" ,automake)
-       ("libtool" ,libtool)
-       ("groff" ,groff)
-       ("perl" ,perl)
-       ("pkg-config" ,pkg-config)
-       ("python" ,python-2)))
-    (build-system gnu-build-system)
-    (outputs '("doc" "out"))
-    (arguments
-     ;;`(;#:configure-flags '("--enable-gnurl")
-     `(#:configure-flags '("--disable-ntlm-wb")
-       #:test-target "test"
-       #:parallel-tests? #f
-       #:phases
-       ;; We have to patch runtests.pl in tests/ directory
-       (modify-phases %standard-phases
-         (add-after 'unpack 'autoconf
-           (lambda _
-             (zero? (system* "sh" "buildconf"))))
-         (add-after 'install 'move-man3-pages
-           (lambda* (#:key outputs #:allow-other-keys)
-             ;; Move section 3 man pages to "doc".
-             (let ((out (assoc-ref outputs "out"))
-                   (doc (assoc-ref outputs "doc")))
-               (mkdir-p (string-append doc "/share/man"))
-               (rename-file (string-append out "/share/man/man3")
-                            (string-append doc "/share/man/man3"))
-               #t)))
-         (replace 'check
-           (lambda _
-             ;; It is unclear why test1026 fails, however the content of it
-             ;; suggests that it is not vital for gnurl.
-             ;;(delete-file "tests/data/test1026")
-
-             (substitute* "tests/runtests.pl"
-               (("/bin/sh") (which "sh")))
-
-             ;; Make test output more verbose.
-             (zero? (system* "make" "-C" "tests" "test"))
-             #t)))))
-    (description #f)
-    (synopsis #f)
-    (license #f)
-    (home-page #f)))
-           ;; (add-after 'build 'dist
-           ;;   (lambda _
-           ;;     (zero? (system* "maketgz" "7.56.0-dev"))))))))))
-           ;; (add-after 'check 'dist-check
-           ;;   (lambda _
-           ;;     (zero? (system* "make" "distcheck"))))))))))
-
-gnurl-git

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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