[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/19: gnu: ruby-connection-pool: Update to 2.4.1.
From: |
guix-commits |
Subject: |
13/19: gnu: ruby-connection-pool: Update to 2.4.1. |
Date: |
Thu, 29 Jun 2023 07:06:04 -0400 (EDT) |
cbaines pushed a commit to branch ruby-team
in repository guix.
commit 98a350a034af4fc04fc23aa7b45bb3e94a38c708
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Jun 29 11:53:16 2023 +0100
gnu: ruby-connection-pool: Update to 2.4.1.
* gnu/packages/ruby.scm (ruby-connection-pool): Update to 2.4.1.
[arguments]: Remove ruby-standard dependency.
---
gnu/packages/ruby.scm | 20 ++++++++++++++++----
1 file changed, 16 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 4a30e0827f..9a22ba952c 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -4170,14 +4170,26 @@ for breakage.")
(define-public ruby-connection-pool
(package
(name "ruby-connection-pool")
- (version "2.2.2")
+ (version "2.4.1")
(source (origin
- (method url-fetch)
- (uri (rubygems-uri "connection_pool" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mperham/connection_pool")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "0lflx29mlznf1hn0nihkgllzbj8xp5qasn8j7h838465pi399k68"))))
+ "1iijshb1n9xl5knvpzzx0vqlw7v7mskiw1cpfj1cmdmssavyhsx5"))))
(build-system ruby-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch
+ (lambda _
+ (substitute* "Rakefile"
+ (("require \"standard/rake\"") "")
+ ((":\"standard:fix\",") "")))))))
(native-inputs
(list bundler))
(synopsis "Generic connection pool for Ruby")
- branch ruby-team updated (8fa6833d4f -> 0a9117a7f9), guix-commits, 2023/06/29
- 03/19: gnu: ruby-awesome-print: Update to 1.9.2., guix-commits, 2023/06/29
- 01/19: gnu: facter: Update to 4.4.1., guix-commits, 2023/06/29
- 09/19: gnu: ruby-sorbet-runtime: Remove ruby-pry-byebug input., guix-commits, 2023/06/29
- 11/19: gnu: ruby-spy: Remove ruby-pry-byebug input., guix-commits, 2023/06/29
- 13/19: gnu: ruby-connection-pool: Update to 2.4.1.,
guix-commits <=
- 15/19: gnu: ruby-net-scp: Fix build., guix-commits, 2023/06/29
- 17/19: gnu: ruby-slop: Update to 4.10.1., guix-commits, 2023/06/29
- 05/19: gnu: ruby-braintree: Update to 4.12.0., guix-commits, 2023/06/29
- 02/19: gnu: ronn-ng: Fix build., guix-commits, 2023/06/29
- 04/19: gnu: ruby-benchmark-ips: Update to 2.12.0., guix-commits, 2023/06/29
- 06/19: gnu: ruby-multi-json: Fix build., guix-commits, 2023/06/29
- 07/19: gnu: ruby-jwt: Update to 2.7.1., guix-commits, 2023/06/29
- 12/19: gnu: ruby-net-http-digest-auth: Fix build., guix-commits, 2023/06/29
- 08/19: gnu: ruby-octokit: Update to 6.1.1., guix-commits, 2023/06/29
- 10/19: gnu: ruby-language-server-protocol: Remove ruby-pry-byebug dependency., guix-commits, 2023/06/29