1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/c8f8f80902d1/ changeset: r5089:c8f8f80902d1 user: natefoo date: 2011-02-18 19:22:31 summary: Don't copy ez_setup.py to egg build directories anymore, and provide a more useful error message when an egg is missing a dependency with a version conflict. affected #: 2 files (427 bytes) --- a/lib/galaxy/eggs/__init__.py Fri Feb 18 12:07:27 2011 -0500 +++ b/lib/galaxy/eggs/__init__.py Fri Feb 18 13:22:31 2011 -0500 @@ -187,6 +187,10 @@ else: raise EggNotFetchable( self ) except pkg_resources.VersionConflict, e: + if e.args[1].key != e.args[0].key: + log.error( "One of Galaxy's managed eggs depends on something which is missing, this is almost certainly a bug in the egg distribution." ) + log.error( 'Dependency "%s" requires "%s"' % ( e.args[0].project_name, str( e.args[1] ) ) ) + raise # there's a conflicting egg on the path, remove it return self.version_conflict( e.args[0], e.args[1] ) def version_conflict( self, conflict_dist, conflict_req ): --- a/lib/galaxy/eggs/scramble.py Fri Feb 18 12:07:27 2011 -0500 +++ b/lib/galaxy/eggs/scramble.py Fri Feb 18 13:22:31 2011 -0500 @@ -54,7 +54,6 @@ self.copy_build_script() if not os.path.exists( ScrambleEgg.ez_setup ): URLRetriever().retrieve( ScrambleEgg.ez_setup_url, ScrambleEgg.ez_setup ) - shutil.copyfile( ScrambleEgg.ez_setup, os.path.join( self.buildpath, 'ez_setup.py' ) ) self.run_scramble_script() new_egg = os.path.join( self.buildpath, 'dist', os.path.basename( self.distribution.location ) ) if not os.path.exists( new_egg ): Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.