summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2023-06-14 17:08:27 -0400
committerLUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-06-14 21:19:58 +0000
commit696e0c48a9de4d20f3de65bc014ca2991d16f041 (patch)
tree977d73b39dec802bb220e01461c6f07e33da4652
parentb2263ba1245f12428a63e19ced88f27d92d7ca7a (diff)
downloadgit-repo-696e0c48a9de4d20f3de65bc014ca2991d16f041.tar.gz
update links from monorail to issuetracker
Change-Id: Ie05373aa4becc0e4d0cab74e7ea0a61eb2cc2746 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/377014 Commit-Queue: Mike Frysinger <vapier@google.com> Reviewed-by: Gavin Mak <gavinmak@google.com> Tested-by: Mike Frysinger <vapier@google.com>
-rw-r--r--README.md6
-rw-r--r--man/repo.14
-rwxr-xr-xrepo4
-rwxr-xr-xsetup.py2
4 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index ff0a2b62..5c5ee5d9 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ that you can put anywhere in your path.
8 8
9* Homepage: <https://gerrit.googlesource.com/git-repo/> 9* Homepage: <https://gerrit.googlesource.com/git-repo/>
10* Mailing list: [repo-discuss on Google Groups][repo-discuss] 10* Mailing list: [repo-discuss on Google Groups][repo-discuss]
11* Bug reports: <https://bugs.chromium.org/p/gerrit/issues/list?q=component:Applications%3Erepo> 11* Bug reports: <https://issues.gerritcodereview.com/issues?q=is:open%20componentid:1370071>
12* Source: <https://gerrit.googlesource.com/git-repo/> 12* Source: <https://gerrit.googlesource.com/git-repo/>
13* Overview: <https://source.android.com/source/developing.html> 13* Overview: <https://source.android.com/source/developing.html>
14* Docs: <https://source.android.com/source/using-repo.html> 14* Docs: <https://source.android.com/source/using-repo.html>
@@ -50,6 +50,6 @@ $ chmod a+rx ~/.bin/repo
50``` 50```
51 51
52 52
53[new-bug]: https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue 53[new-bug]: https://issues.gerritcodereview.com/issues/new?component=1370071
54[issue tracker]: https://bugs.chromium.org/p/gerrit/issues/list?q=component:Applications%3Erepo 54[issue tracker]: https://issues.gerritcodereview.com/issues?q=is:open%20componentid:1370071
55[repo-discuss]: https://groups.google.com/forum/#!forum/repo-discuss 55[repo-discuss]: https://groups.google.com/forum/#!forum/repo-discuss
diff --git a/man/repo.1 b/man/repo.1
index d2693a9f..46425c69 100644
--- a/man/repo.1
+++ b/man/repo.1
@@ -1,5 +1,5 @@
1.\" DO NOT MODIFY THIS FILE! It was generated by help2man. 1.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
2.TH REPO "1" "November 2022" "repo" "Repo Manual" 2.TH REPO "1" "June 2023" "repo" "Repo Manual"
3.SH NAME 3.SH NAME
4repo \- repository management tool built on top of git 4repo \- repository management tool built on top of git
5.SH SYNOPSIS 5.SH SYNOPSIS
@@ -137,4 +137,4 @@ version
137Display the version of repo 137Display the version of repo
138.PP 138.PP
139See 'repo help <command>' for more information on a specific command. 139See 'repo help <command>' for more information on a specific command.
140Bug reports: https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue 140Bug reports: https://issues.gerritcodereview.com/issues/new?component=1370071
diff --git a/repo b/repo
index c32e52da..dbc96da7 100755
--- a/repo
+++ b/repo
@@ -146,10 +146,10 @@ REPO_REV = os.environ.get('REPO_REV')
146if not REPO_REV: 146if not REPO_REV:
147 REPO_REV = 'stable' 147 REPO_REV = 'stable'
148# URL to file bug reports for repo tool issues. 148# URL to file bug reports for repo tool issues.
149BUG_URL = 'https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue' 149BUG_URL = 'https://issues.gerritcodereview.com/issues/new?component=1370071'
150 150
151# increment this whenever we make important changes to this script 151# increment this whenever we make important changes to this script
152VERSION = (2, 32) 152VERSION = (2, 35)
153 153
154# increment this if the MAINTAINER_KEYS block is modified 154# increment this if the MAINTAINER_KEYS block is modified
155KEYRING_VERSION = (2, 3) 155KEYRING_VERSION = (2, 3)
diff --git a/setup.py b/setup.py
index f50eb473..3e4e6b42 100755
--- a/setup.py
+++ b/setup.py
@@ -40,7 +40,7 @@ setuptools.setup(
40 long_description_content_type="text/plain", 40 long_description_content_type="text/plain",
41 url="https://gerrit.googlesource.com/git-repo/", 41 url="https://gerrit.googlesource.com/git-repo/",
42 project_urls={ 42 project_urls={
43 "Bug Tracker": "https://bugs.chromium.org/p/gerrit/issues/list?q=component:Applications%3Erepo", # noqa: E501 43 "Bug Tracker": "https://issues.gerritcodereview.com/issues?q=is:open%20componentid:1370071", # noqa: E501
44 }, 44 },
45 # https://pypi.org/classifiers/ 45 # https://pypi.org/classifiers/
46 classifiers=[ 46 classifiers=[