Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 89164 - rbot depends on old rexml
Summary: rbot depends on old rexml
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Packages in net-irc
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-04-15 01:57 UTC by Xavier Neys (RETIRED)
Modified: 2005-05-03 12:31 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Xavier Neys (RETIRED) gentoo-dev 2005-04-15 01:57:11 UTC
rbot wants to bring in old rexml.
rexml is now part of the ruby distribution.
I removed the dependency, works fine for me.
Comment 1 Michael Kohl (RETIRED) gentoo-dev 2005-05-03 01:32:24 UTC
Xavier, the metadata.xml states that rbot is owned by net-irc, not the Ruby herd. I'm therefore reassigning this bug.

@net-irc:
Maybe the following depend could be of help for you (it's taken from the Raggle ebuilds):

DEPEND="|| ( >=dev-lang/ruby-1.8
	( ~dev-lang/ruby-1.6.8 dev-ruby/shim-ruby18 )
	dev-lang/ruby-cvs )"

So if the user has Ruby 1.8 or 1.9 (CVS) then he is all set because this versions already include rexml. If he's still using Ruby 1.6 we additionally need to install shim-ruby18, which is a set of packages that provides Ruby 1.8 features for Ruby 1.6.
Comment 2 Sven Wegener gentoo-dev 2005-05-03 12:31:20 UTC
I've adjusted it to be the following depend:

|| (
        >=virtual/ruby-1.8
        (
                =virtual/ruby-1.6*
                (
                        dev-ruby/rexml
                        dev-ruby/shim-ruby18
                )
        )
)

That means if

=virtual/ruby-1.6* *AND* ( dev-ruby/shim-ruby18 *OR* dev-ruby/rexml )

are installed we'll take it. If only =virtual/ruby-1.6* is installed, we will
force an update to >=virtual/ruby-1.8.
Comment 3 Sven Wegener gentoo-dev 2005-05-03 12:31:54 UTC
fixed