commit/galaxy-central: 3 new changesets
3 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/e30d65cf25e8/ Changeset: e30d65cf25e8 Branch: stable User: BjoernGruening Date: 2014-08-12 10:33:27 Summary: install_repository_manager do not need trans.app anymore. Affected #: 1 file diff -r b6d2c77d8bce44cdaba188ce949ed69f94be6bc4 -r e30d65cf25e8e28677d971c19faaae0eb390e6af 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, https://bitbucket.org/galaxy/galaxy-central/commits/fa1a6a494166/ Changeset: fa1a6a494166 Branch: stable User: BjoernGruening Date: 2014-08-12 10:38:24 Summary: First argument to __install_repositories is the Tool Shed URL (tool_shed_url) Affected #: 1 file diff -r e30d65cf25e8e28677d971c19faaae0eb390e6af -r fa1a6a4941664d9f2cf6dfbb816911778b7c9dcb 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 https://bitbucket.org/galaxy/galaxy-central/commits/7e4d21621ce1/ Changeset: 7e4d21621ce1 Branch: stable User: BjoernGruening Date: 2014-08-12 10:41:45 Summary: initiate_repository_installation was not updated in the recent code restructuring efforts Affected #: 1 file diff -r fa1a6a4941664d9f2cf6dfbb816911778b7c9dcb -r 7e4d21621ce12e13ebbdf9fd3259df58c3ef124c 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 @@ -789,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