[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/100: gnu: ruby-websocket: Update to 1.2.9-1.950e416.
From: |
guix-commits |
Subject: |
09/100: gnu: ruby-websocket: Update to 1.2.9-1.950e416. |
Date: |
Mon, 10 Jul 2023 03:27:24 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 5dae5ad0f5e2a1604dc3304d6386a322b31e8bc6
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Wed Jun 21 10:38:06 2023 +0100
gnu: ruby-websocket: Update to 1.2.9-1.950e416.
* gnu/packages/ruby.scm (ruby-websocket): Update to 1.2.9-1.950e416.
[native-inputs]: Add ruby-webrick.
---
gnu/packages/ruby.scm | 51 +++++++++++++++++++++++++++++----------------------
1 file changed, 29 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 8ad0961475..be47ced0bd 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -15788,29 +15788,36 @@ HTTPS server, a proxy server, and a virtual-host
server.")
(license license:bsd-2)))
(define-public ruby-websocket
- (package
- (name "ruby-websocket")
- (version "1.2.9")
- (source (origin
- (method url-fetch)
- (uri (rubygems-uri "websocket" version))
- (sha256
- (base32
- "0dib6p55sl606qb4vpwrvj5wh881kk4aqn2zpfapf8ckx7g14jw8"))))
- (build-system ruby-build-system)
- (arguments (list #:test-target "spec"
- #:phases #~(modify-phases %standard-phases
- (add-after 'unpack 'disable-rubocop
- (lambda _
- (substitute* "Rakefile"
- (("require 'rubocop/rake_task'") "")
- (("RuboCop::RakeTask.new") "")))))))
- (native-inputs (list ruby-rspec))
- (synopsis "WebSocket protocol Ruby library")
- (description "This package provides a Ruby library to handle the WebSocket
+ (let ((commit "950e416a19a76c7e6a673a7e5baa6283476dbec1")
+ (revision "1"))
+ (package
+ (name "ruby-websocket")
+ (version (git-version "1.2.9" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/imanel/websocket-ruby")
+ (commit commit)))
+ (sha256
+ (base32
+ "1i6r0glpxy47zdf76aqgcpjgcgydla0733hfdhp628pmrinnkgwv"))
+ (file-name (git-file-name name version))))
+ (build-system ruby-build-system)
+ (arguments (list #:test-target "spec"
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'disable-rubocop
+ (lambda _
+ (substitute* "Rakefile"
+ (("require 'rubocop/rake_task'") "")
+ (("RuboCop::RakeTask.new") "")))))))
+ (native-inputs
+ (list ruby-rspec
+ ruby-webrick))
+ (synopsis "WebSocket protocol Ruby library")
+ (description "This package provides a Ruby library to handle the
WebSocket
protocol.")
- (home-page "https://github.com/imanel/websocket-ruby")
- (license license:expat)))
+ (home-page "https://github.com/imanel/websocket-ruby")
+ (license license:expat))))
(define-public ruby-interception
(package
- branch master updated (e40d6bb7d7 -> 2ccf3eb495), guix-commits, 2023/07/10
- 09/100: gnu: ruby-websocket: Update to 1.2.9-1.950e416.,
guix-commits <=
- 01/100: gnu: ruby: Switch from 2.7 to 3.1., guix-commits, 2023/07/10
- 04/100: gnu: ruby-builder: Fix build., guix-commits, 2023/07/10
- 10/100: gnu: ruby-gettext: Update to 3.4.4., guix-commits, 2023/07/10
- 06/100: gnu: ruby-pry: Update to 0.14.2., guix-commits, 2023/07/10
- 05/100: gnu: ruby-rspec-core-2: Fix build., guix-commits, 2023/07/10
- 11/100: gnu: Add ruby-rbtree., guix-commits, 2023/07/10
- 13/100: gnu: Add ruby-sorted-set., guix-commits, 2023/07/10
- 20/100: gnu: Add ruby-psych-3., guix-commits, 2023/07/10
- 23/100: gnu: ruby-sqlite3: Update to 1.6.3., guix-commits, 2023/07/10
- 31/100: gnu: ruby-minitest-bonus-assertions: Fix build., guix-commits, 2023/07/10