[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/11: gnu: address@hidden: Move to ssh.scm.
From: |
guix-commits |
Subject: |
11/11: gnu: address@hidden: Move to ssh.scm. |
Date: |
Sun, 7 Apr 2019 12:06:16 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 71b4974a40347bdc651c3a1f923780733d96ded7
Author: Ludovic Courtès <address@hidden>
Date: Sun Apr 7 18:04:34 2019 +0200
gnu: address@hidden: Move to ssh.scm.
This fixes a top-level circular dependency introduced in
c1f4e6491cecc5d121ef371a8fb2aa0a07030d36.
* gnu/packages/curl.scm (libssh2-1.8.0): Move to...
* gnu/packages/ssh.scm (libssh2-1.8.0): ... here.
---
gnu/packages/curl.scm | 18 ------------------
gnu/packages/ssh.scm | 18 ++++++++++++++++++
2 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
index 9f2c27d..e04e3d9 100644
--- a/gnu/packages/curl.scm
+++ b/gnu/packages/curl.scm
@@ -48,24 +48,6 @@
#:use-module (gnu packages tls)
#:use-module (gnu packages web))
-;; XXX A hidden special obsolete libssh2 for temporary use in the curl package.
-;; <https://bugs.gnu.org/34927>
-(define-public libssh2-1.8.0
- (hidden-package
- (package
- (inherit libssh2)
- (version "1.8.0")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "https://www.libssh2.org/download/libssh2-"
- version ".tar.gz"))
- (sha256
- (base32
- "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr"))
- (patches
- (search-patches
"libssh2-fix-build-failure-with-gcrypt.patch")))))))
-
(define-public curl
(package
(name "curl")
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index abbc0da..83a8316 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -143,6 +143,24 @@ a server that supports the SSH-2 protocol.")
(license license:bsd-3)
(home-page "https://www.libssh2.org/")))
+;; XXX A hidden special obsolete libssh2 for temporary use in the curl package.
+;; <https://bugs.gnu.org/34927>
+(define-public libssh2-1.8.0
+ (hidden-package
+ (package
+ (inherit libssh2)
+ (version "1.8.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://www.libssh2.org/download/libssh2-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1m3n8spv79qhjq4yi0wgly5s5rc8783jb1pyra9bkx1md0plxwrr"))
+ (patches
+ (search-patches
"libssh2-fix-build-failure-with-gcrypt.patch")))))))
+
(define-public openssh
(package
(name "openssh")
- branch master updated (32c055f -> 71b4974), guix-commits, 2019/04/07
- 01/11: size: Optimize dependency size computation., guix-commits, 2019/04/07
- 03/11: installer: Simplify locale dialogs., guix-commits, 2019/04/07
- 07/11: installer: Remove SLiM-specific instructions., guix-commits, 2019/04/07
- 02/11: doc: Fix syntax of cross-manual references., guix-commits, 2019/04/07
- 05/11: installer: Use the normalized codeset in the 'locale' field., guix-commits, 2019/04/07
- 06/11: installer: Fix wording for "Internet access.", guix-commits, 2019/04/07
- 08/11: installer: Generalize desktop environments to system services., guix-commits, 2019/04/07
- 11/11: gnu: address@hidden: Move to ssh.scm.,
guix-commits <=
- 10/11: services: dropbear: Add default value., guix-commits, 2019/04/07
- 04/11: installer: Move the 'locale' step before the 'welcome' step., guix-commits, 2019/04/07
- 09/11: installer: Add dialog to select networking services., guix-commits, 2019/04/07