GNU bug report logs - #32964
[PATCH] Remove a couple of duplicate Ruby gem package definitions

Previous Next

Package: guix-patches;

Reported by: Christopher Baines <mail <at> cbaines.net>

Date: Sun, 7 Oct 2018 09:50:02 UTC

Severity: normal

Tags: patch

Done: Christopher Baines <mail <at> cbaines.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 32964 in the body.
You can then email your comments to 32964 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#32964; Package guix-patches. (Sun, 07 Oct 2018 09:50:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Christopher Baines <mail <at> cbaines.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 07 Oct 2018 09:50:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: guix-patches <at> gnu.org
Subject: [PATCH] Remove a couple of duplicate Ruby gem package definitions
Date: Sun, 07 Oct 2018 10:41:03 +0100
[Message part 1 (text/plain, inline)]
Christopher Baines (2):
  gnu: Remove duplicate ruby-concurrent package definition.
  gnu: Remove duplicate ruby-yard package definition.

 gnu/packages/ruby.scm | 44 ++-----------------------------------------
 1 file changed, 2 insertions(+), 42 deletions(-)
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#32964; Package guix-patches. (Sun, 07 Oct 2018 09:54:02 GMT) Full text and rfc822 format available.

Message #8 received at 32964 <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: 32964 <at> debbugs.gnu.org
Subject: [PATCH 1/2] gnu: Remove duplicate ruby-concurrent package definition.
Date: Sun,  7 Oct 2018 10:53:39 +0100
* gnu/packages/ruby.scm (ruby-concurrent): Remove one of the two definitions
for this variable.
---
 gnu/packages/ruby.scm | 19 -------------------
 1 file changed, 19 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 2080944cae..2c5777fdf8 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -194,25 +194,6 @@ a focus on simplicity and productivity.")
                (("/bin/sh") (which "sh")))
              #t)))))))
 
-(define-public ruby-concurrent
-  (package
-    (name "ruby-concurrent")
-    (version "1.0.5")
-    (source (origin
-              (method url-fetch)
-              (uri (rubygems-uri "concurrent-ruby" version))
-              (sha256
-               (base32
-                "183lszf5gx84kcpb779v6a2y0mx9sssy8dgppng1z9a505nj1qcf"))))
-    (build-system ruby-build-system)
-    (arguments `(#:tests? #f)); No rakefile
-    (home-page "https://github.com/ruby-concurrency/concurrent-ruby")
-    (synopsis "Concurrency tools for Ruby")
-    (description "This gem provides concurrency tools for Ruby.  It provides
-a library of common thread-safe types and data-structures as well as abstractions
-for concurrency and communication between threads.")
-    (license license:expat)))
-
 (define-public ruby-highline
   (package
     (name "ruby-highline")
-- 
2.19.0





Information forwarded to guix-patches <at> gnu.org:
bug#32964; Package guix-patches. (Sun, 07 Oct 2018 09:54:03 GMT) Full text and rfc822 format available.

Message #11 received at 32964 <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: 32964 <at> debbugs.gnu.org
Subject: [PATCH 2/2] gnu: Remove duplicate ruby-yard package definition.
Date: Sun,  7 Oct 2018 10:53:40 +0100
* gnu/packages/ruby.scm (ruby-yard): Remove one of the two package
definitions, and update the other to the latest release.
---
 gnu/packages/ruby.scm | 25 ++-----------------------
 1 file changed, 2 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 2c5777fdf8..7e8c8be290 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -3766,7 +3766,7 @@ A modified copy of yajl is used, and included in the package.")
 (define-public ruby-yard
   (package
     (name "ruby-yard")
-    (version "0.9.6")
+    (version "0.9.16")
     (source
      (origin
        (method url-fetch)
@@ -3776,7 +3776,7 @@ A modified copy of yajl is used, and included in the package.")
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "0rsz4bghgx7fryzyhlz8wlnd2m9xgyvf1xhrq58mnzfrrfm41bdg"))))
+         "0sqpbayy9sb406jh0zqg6qha1xds863qz9531dh6vp58hc00clfq"))))
     (build-system ruby-build-system)
     (arguments
      `(#:phases
@@ -5673,27 +5673,6 @@ support the tests found in Prawn, a pure Ruby PDF generation library.")
 functionality from Prawn.")
     (license license:gpl3+)))
 
-(define-public ruby-yard
-  (package
-    (name "ruby-yard")
-    (version "0.9.16")
-    (source (origin
-              (method url-fetch)
-              (uri (rubygems-uri "yard" version))
-              (sha256
-               (base32
-                "0lmmr1839qgbb3zxfa7jf5mzy17yjl1yirwlgzdhws4452gqhn67"))))
-    (build-system ruby-build-system)
-    (arguments `(#:test-target "spec"))
-    (home-page "https://yardoc.org/")
-    (synopsis "Ruby documentation tool")
-    (description "YARD is a documentation generation tool for the Ruby
-programming language.  It enables the user to generate consistent, usable
-documentation that can be exported to a number of formats very easily, and
-also supports extending for custom Ruby constructs such as custom class level
-definitions.")
-    (license license:expat)))
-
 (define-public ruby-prawn
   (package
     (name "ruby-prawn")
-- 
2.19.0





Information forwarded to guix-patches <at> gnu.org:
bug#32964; Package guix-patches. (Thu, 11 Oct 2018 20:16:01 GMT) Full text and rfc822 format available.

Message #14 received at 32964 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: Christopher Baines <mail <at> cbaines.net>
Cc: 32964 <at> debbugs.gnu.org
Subject: Re: [bug#32964] [PATCH] Remove a couple of duplicate Ruby gem
 package definitions
Date: Thu, 11 Oct 2018 16:15:13 -0400
[Message part 1 (text/plain, inline)]
On Sun, Oct 07, 2018 at 10:41:03AM +0100, Christopher Baines wrote:
> 
> Christopher Baines (2):
>   gnu: Remove duplicate ruby-concurrent package definition.
>   gnu: Remove duplicate ruby-yard package definition.

Thanks, please push!
[signature.asc (application/pgp-signature, inline)]

Added indication that bug 32964 blocks30689 Request was from Christopher Baines <mail <at> cbaines.net> to control <at> debbugs.gnu.org. (Fri, 12 Oct 2018 07:20:01 GMT) Full text and rfc822 format available.

Reply sent to Christopher Baines <mail <at> cbaines.net>:
You have taken responsibility. (Fri, 12 Oct 2018 07:25:01 GMT) Full text and rfc822 format available.

Notification sent to Christopher Baines <mail <at> cbaines.net>:
bug acknowledged by developer. (Fri, 12 Oct 2018 07:25:02 GMT) Full text and rfc822 format available.

Message #21 received at 32964-done <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: Leo Famulari <leo <at> famulari.name>
Cc: 32964-done <at> debbugs.gnu.org
Subject: Re: [bug#32964] [PATCH] Remove a couple of duplicate Ruby gem package
 definitions
Date: Fri, 12 Oct 2018 08:24:37 +0100
[Message part 1 (text/plain, inline)]
Leo Famulari <leo <at> famulari.name> writes:

> On Sun, Oct 07, 2018 at 10:41:03AM +0100, Christopher Baines wrote:
>> 
>> Christopher Baines (2):
>>   gnu: Remove duplicate ruby-concurrent package definition.
>>   gnu: Remove duplicate ruby-yard package definition.
>
> Thanks, please push!

Done :)
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 09 Nov 2018 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 6 years and 222 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.