diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-02-16 01:33:52 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-06-20 20:39:58 +0200 |
| commit | f0ffed5290d66dd5ae551f4a32a489ff976faa4b (patch) | |
| tree | 8c6277a580a32fec046b67946d3231f01d7258e3 /gnu/packages/ruby.scm | |
| parent | 617ca8c313c85a7e56780b5325397a05ddde8c23 (diff) | |
gnu: ruby-pg: Update to 1.5.9-0.378b7a3.
* gnu/packages/ruby.scm (ruby-pg): Update to 1.5.9-0.378b7a3. Avoid
indenting (the package is maintained and a version will soon catch
up). Add patch.
* gnu/packages/patches/ruby-pg-fix-connect-timeout.patch: Add patch.
* gnu/local.mk: Record patch.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/ruby.scm')
| -rw-r--r-- | gnu/packages/ruby.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 063190a09af..9ff60c30795 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8512,20 +8512,23 @@ alternative to Marshal for Object serialization.") (license license:expat))) (define-public ruby-pg + (let ((commit "378b7a35c12292625460ef2f33373de7114bf255") + (revision "0")) (package (name "ruby-pg") - (version "1.4.6") + (version (git-version "1.5.9" revision commit)) (home-page "https://github.com/ged/ruby-pg") (source (origin (method git-fetch) (uri (git-reference (url home-page) - (commit (string-append "v" version)))) + (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 - "0k7jgx7x7p6gbsbrv2l5rq27nff2nphnls1sdq525d82b068qnfm")))) + (base32 "1aq6kakyghgbb4yykxxl9ziaaa7jbdbyc7vz6avyxhlby1jkj0m8")) + (patches + (search-patches "ruby-pg-fix-connect-timeout.patch")))) (build-system ruby-build-system) (arguments (list @@ -8552,7 +8555,7 @@ alternative to Marshal for Object serialization.") (synopsis "Ruby interface to PostgreSQL") (description "Pg is the Ruby interface to the PostgreSQL RDBMS. It works with PostgreSQL 9.3 and later.") - (license license:ruby))) + (license license:ruby)))) (define-public ruby-byebug (package |
