commit/galaxy-central: jmchilton: Merged in BjoernGruening/galaxy-central-4 (pull request #454)
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/2f300953ad98/ Changeset: 2f300953ad98 User: jmchilton Date: 2014-08-12 15:04:01 Summary: Merged in BjoernGruening/galaxy-central-4 (pull request #454) Fixes for recent Tool Shed code cleanups Affected #: 2 files diff -r 19309418c86450b7f39691460eb430e100883cb4 -r 2f300953ad98992a620b1f0678eb72505f8cdfc2 lib/galaxy/webapps/galaxy/api/tool_shed_repositories.py --- a/lib/galaxy/webapps/galaxy/api/tool_shed_repositories.py +++ b/lib/galaxy/webapps/galaxy/api/tool_shed_repositories.py @@ -239,8 +239,7 @@ tool_shed_url, name, owner, changeset_revision = self.__parse_repository_from_payload( payload, include_changeset=True ) self.__ensure_can_install_repos( trans ) install_repository_manager = InstallRepositoryManager( trans.app ) - installed_tool_shed_repositories = install_repository_manager.install( trans.app, - tool_shed_url, + installed_tool_shed_repositories = install_repository_manager.install( tool_shed_url, name, owner, changeset_revision, diff -r 19309418c86450b7f39691460eb430e100883cb4 -r 2f300953ad98992a620b1f0678eb72505f8cdfc2 lib/tool_shed/galaxy_install/install_manager.py --- a/lib/tool_shed/galaxy_install/install_manager.py +++ b/lib/tool_shed/galaxy_install/install_manager.py @@ -694,7 +694,8 @@ name, owner, changeset_revision ) - installed_tool_shed_repositories = self.__install_repositories( repository_revision_dict, + installed_tool_shed_repositories = self.__install_repositories( tool_shed_url, + repository_revision_dict, repo_info_dicts, install_options ) return installed_tool_shed_repositories @@ -788,7 +789,7 @@ # at this point because repository dependencies may have added additional repositories for installation # along with the single specified repository. encoded_kwd, query, tool_shed_repositories, encoded_repository_ids = \ - initiate_repository_installation( self.app, installation_dict ) + self.initiate_repository_installation( installation_dict ) # Some repositories may have repository dependencies that are required to be installed before the # dependent repository, so we'll order the list of tsr_ids to ensure all repositories install in # the required order. 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.
participants (1)
-
commits-noreply@bitbucket.org