Merge ~racb/git-ubuntu:team-change into git-ubuntu:master

Proposed by Robie Basak
Status: Merged
Merged at revision: b117bb2b8b6b2066b59b0f82cd5765af37dbdbc3
Proposed branch: ~racb/git-ubuntu:team-change
Merge into: git-ubuntu:master
Diff against target: 120 lines (+14/-13)
5 files modified
doc/README.md (+5/-4)
doc/SPECIFICATION (+1/-1)
gitubuntu/importer.py (+3/-3)
gitubuntu/submit.py (+2/-2)
wip/auto-upload-tag.py (+3/-3)
Reviewer Review Type Date Requested Status
Bryce Harrington Approve
Server Team CI bot continuous-integration Approve
Review via email: mp+410075@code.launchpad.net

Commit message

Make Jenkins happy

To post a comment you must log in.
Revision history for this message
Server Team CI bot (server-team-bot) wrote :

PASSED: Continuous integration, rev:b117bb2b8b6b2066b59b0f82cd5765af37dbdbc3
https://jenkins.ubuntu.com/server/job/git-ubuntu-ci/61/
Executed test runs:
    SUCCESS: VM Setup
    SUCCESS: Build
    SUCCESS: VM Reset
    SUCCESS: Unit Tests
    IN_PROGRESS: Declarative: Post Actions

Click here to trigger a rebuild:
https://jenkins.ubuntu.com/server/job/git-ubuntu-ci/61//rebuild

review: Approve (continuous-integration)
Revision history for this message
Bryce Harrington (bryce) wrote :

LGTM, straightforward search and replace. I did not spot other instances of the team name, but expect if there are any others they can be corrected if/when they reveal themselves.

review: Approve
Revision history for this message
Robie Basak (racb) wrote :

Thank you!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/doc/README.md b/doc/README.md
2index 59eab48..c2918c3 100644
3--- a/doc/README.md
4+++ b/doc/README.md
5@@ -49,7 +49,7 @@ or
6 $ PKG=uvtool
7 $ git ubuntu import -v --no-push --directory=${HOME}/Imports/$PKG $PKG
8
9- * As member of [usd-import-team](https://launchpad.net/~usd-import-team) for official publishing.
10+ * As member of [git-ubuntu-import](https://launchpad.net/~git-ubuntu-import) for official publishing.
11
12 $ PKG=uvtool
13 $ LP_USER=smoser # your launchpad user name if different from $USER
14@@ -96,12 +96,13 @@ If you did a local checkout with `--directory=./$PKG` then you'll have a git rep
15 ubuntu/xenial
16 ubuntu/yakkety
17
18-If you did `--lp-owner=usd-import-team`, then your repo should be listed in web view at [https://code.launchpad.net/~usd-import-team/+git]. And it should be able to be cloned with:
19+If you did `--lp-owner=git-ubuntu-import`, then your repo should be
20+listed in web view at [https://code.launchpad.net/~git-ubuntu-import/+git]. And it should be able to be cloned with:
21
22- $ git clone https://git.launchpad.net/~usd-import-team/ubuntu/+source/$PKG
23+ $ git clone https://git.launchpad.net/~git-ubuntu-import/ubuntu/+source/$PKG
24 or
25
26- $ git clone lp:~usd-import-team/ubuntu/+source/$PKG
27+ $ git clone lp:~git-ubuntu-import/ubuntu/+source/$PKG
28 or
29
30 $ git ubuntu clone $PKG
31diff --git a/doc/SPECIFICATION b/doc/SPECIFICATION
32index f2a5e59..430ce30 100644
33--- a/doc/SPECIFICATION
34+++ b/doc/SPECIFICATION
35@@ -31,7 +31,7 @@ from: lpusip:<package>; ask a sponsor if missing):
36 * The tree is identical to corresponding source package version in the
37 archive.
38 * For T import/<version>: imported from the archive and pushed to
39- ~usd-import-team as an authoritative source.
40+ ~git-ubuntu-import as an authoritative source.
41 * For T upload/<version>: pushed to ~ubuntu-server-dev by an uploader
42 to record exactly what was uploaded.
43 * Pushing to ~ubuntu-server-dev is restricted to uploaders.
44diff --git a/gitubuntu/importer.py b/gitubuntu/importer.py
45index 4616620..9c6c2ba 100644
46--- a/gitubuntu/importer.py
47+++ b/gitubuntu/importer.py
48@@ -1,7 +1,7 @@
49 # Requirements from Barcelona sprint with Ubuntu Server Team:
50 # Run with "importer-command <package>"
51 # Needs access to:
52-# Launchpad git push to ~usd-import-team, unless --no-push is
53+# Launchpad git push to ~git-ubuntu-import, unless --no-push is
54 # specified
55 # Local git cache (maybe optional for a prototype).
56 # Must be idempotent.
57@@ -174,7 +174,7 @@ def _main_with_repo(
58 Returns 0 on successful import (which includes non-fatal failures);
59 1 otherwise.
60 """
61- if owner == 'usd-import-team':
62+ if owner == 'git-ubuntu-import':
63 namespace = 'importer'
64 else:
65 namespace = owner
66@@ -2622,7 +2622,7 @@ def parse_args(subparsers=None, base_subparsers=None):
67 help='Which package to update in the git tree')
68 parser.add_argument('-o', '--lp-owner', type=str,
69 help=argparse.SUPPRESS,
70- default='usd-import-team')
71+ default='git-ubuntu-import')
72 parser.add_argument('-l', '--lp-user', type=str,
73 help=argparse.SUPPRESS)
74 parser.add_argument('--dl-cache', type=str,
75diff --git a/gitubuntu/submit.py b/gitubuntu/submit.py
76index aba426f..ff7d9d7 100644
77--- a/gitubuntu/submit.py
78+++ b/gitubuntu/submit.py
79@@ -52,7 +52,7 @@ def parse_args(subparsers=None, base_subparsers=None):
80 )
81 parser.add_argument('--target-user', type=str,
82 help='Target user\'s repository to merge into',
83- default='usd-import-team'
84+ default='git-ubuntu-import'
85 )
86 parser.add_argument('--branch', type=str,
87 help='The branch to merge. Defaults to branch pointed to by HEAD.'
88@@ -142,7 +142,7 @@ def main(
89 if target_branch and target_user:
90 target_head_string = target_branch
91 else:
92- if target_user == 'usd-import-team':
93+ if target_user == 'git-ubuntu-import':
94 namespace = 'pkg'
95 else:
96 namespace = target_user
97diff --git a/wip/auto-upload-tag.py b/wip/auto-upload-tag.py
98index 889d83b..5d33ea2 100644
99--- a/wip/auto-upload-tag.py
100+++ b/wip/auto-upload-tag.py
101@@ -4,8 +4,8 @@
102 # https://code.launchpad.net/~paelzer/ubuntu/+source/open-vm-tools/+git/open-vm-tools/+merge/352237)
103 # this script clones the proposer's branch, upload tags it, and pushes the
104 # upload tag to the official repository. This can be used by members of
105-# ~usd-import-team to easily push an upload tag for contributors, until we have
106-# a mechanism to do this better.
107+# ~git-ubuntu-import to easily push an upload tag for contributors, until we
108+# have a mechanism to do this better.
109 #
110 # This does minimal checking. The target repository must be correct; otherwise
111 # the upload tag will be pushed to the wrong place. There are races (for
112@@ -18,7 +18,7 @@
113 #
114 # Prerequisites:
115 # python3-launchpadlib installed
116-# You have a Launchpad login that # belongs to ~usd-import-team
117+# You have a Launchpad login that # belongs to ~git-ubuntu-import
118
119 import os
120 import subprocess

Subscribers

People subscribed via source and target branches