From e36a84317b96bef832b6cffe275a327a30b8246a Mon Sep 17 00:00:00 2001 From: recipe-roller Date: Thu, 6 Jul 2017 13:32:45 -0700 Subject: [PATCH] Roll recipe dependencies (trivial). This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug. recipe_engine: https://crrev.com/241ddc299faa009b8842f95d40fdd7760b81791e [file] fix glob_paths when NO paths match, add tests. (iannucci@chromium.org) TBR=iannucci@chromium.org Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Change-Id: I706bcd7efa2ed820ca05adb8ae026c0ed734f229 Reviewed-on: https://chromium-review.googlesource.com/562241 Reviewed-by: Recipe Roller Commit-Queue: Recipe Roller --- infra/config/recipes.cfg | 2 +- recipes/README.recipes.md | 35 +++++++++++++++++++++++++---------- 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/infra/config/recipes.cfg b/infra/config/recipes.cfg index 3abc94a42..ee427cf3c 100644 --- a/infra/config/recipes.cfg +++ b/infra/config/recipes.cfg @@ -15,7 +15,7 @@ "deps": { "recipe_engine": { "branch": "master", - "revision": "11d7598fa760017f168aec1c53a9ced74b2fc8a6", + "revision": "241ddc299faa009b8842f95d40fdd7760b81791e", "url": "https://chromium.googlesource.com/external/github.com/luci/recipes-py.git" } }, diff --git a/recipes/README.recipes.md b/recipes/README.recipes.md index 0501b5b24..21e62f171 100644 --- a/recipes/README.recipes.md +++ b/recipes/README.recipes.md @@ -312,6 +312,21 @@ Create a new branch from given project and commit Returns: the ref of the branch created +— **def [get\_changes](/recipes/recipe_modules/gerrit/api.py#66)(self, host, query_params, start=None, limit=None, \*\*kwargs):** + +Query changes for the given host. + +Args: + host: Gerrit host to query. + query_params: Query parameters as list of (key, value) tuples to form a + query as documented here: + https://gerrit-review.googlesource.com/Documentation/user-search.html#search-operators + start: How many changes to skip (starting with the most recent). + limit: Maximum number of results to return. +Returns: + A list of change dicts as documented here: + https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#list-changes + — **def [get\_gerrit\_branch](/recipes/recipe_modules/gerrit/api.py#47)(self, host, project, branch, \*\*kwargs):** Get a branch from given project and commit @@ -800,13 +815,13 @@ Move things around in a loop! — **def [RunSteps](/recipes/recipe_modules/tryserver/examples/full.py#17)(api):** -[recipe_engine/recipe_modules/context]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/README.recipes.md#recipe_modules--context -[recipe_engine/recipe_modules/json]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/README.recipes.md#recipe_modules--json -[recipe_engine/recipe_modules/path]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/README.recipes.md#recipe_modules--path -[recipe_engine/recipe_modules/platform]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/README.recipes.md#recipe_modules--platform -[recipe_engine/recipe_modules/properties]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/README.recipes.md#recipe_modules--properties -[recipe_engine/recipe_modules/python]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/README.recipes.md#recipe_modules--python -[recipe_engine/recipe_modules/raw_io]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/README.recipes.md#recipe_modules--raw_io -[recipe_engine/recipe_modules/step]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/README.recipes.md#recipe_modules--step -[recipe_engine/recipe_modules/url]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/README.recipes.md#recipe_modules--url -[recipe_engine/wkt/RecipeApi]: https://github.com/luci/recipes-py/blob/11d7598fa760017f168aec1c53a9ced74b2fc8a6/recipe_engine/recipe_api.py#L884 +[recipe_engine/recipe_modules/context]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/README.recipes.md#recipe_modules--context +[recipe_engine/recipe_modules/json]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/README.recipes.md#recipe_modules--json +[recipe_engine/recipe_modules/path]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/README.recipes.md#recipe_modules--path +[recipe_engine/recipe_modules/platform]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/README.recipes.md#recipe_modules--platform +[recipe_engine/recipe_modules/properties]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/README.recipes.md#recipe_modules--properties +[recipe_engine/recipe_modules/python]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/README.recipes.md#recipe_modules--python +[recipe_engine/recipe_modules/raw_io]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/README.recipes.md#recipe_modules--raw_io +[recipe_engine/recipe_modules/step]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/README.recipes.md#recipe_modules--step +[recipe_engine/recipe_modules/url]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/README.recipes.md#recipe_modules--url +[recipe_engine/wkt/RecipeApi]: https://github.com/luci/recipes-py/blob/241ddc299faa009b8842f95d40fdd7760b81791e/recipe_engine/recipe_api.py#L884