Merge lp:~xnox/ubuntu-dev-tools/arm64 into lp:~ubuntu-dev/ubuntu-dev-tools/trunk

Proposed by Dimitri John Ledkov
Status: Merged
Merged at revision: 1397
Proposed branch: lp:~xnox/ubuntu-dev-tools/arm64
Merge into: lp:~ubuntu-dev/ubuntu-dev-tools/trunk
Diff against target: 113 lines (+13/-8)
5 files modified
debian/changelog (+4/-0)
doc/ubuntu-build.1 (+2/-2)
mk-sbuild (+4/-4)
pbuilder-dist (+2/-1)
ubuntu-build (+1/-1)
To merge this branch: bzr merge lp:~xnox/ubuntu-dev-tools/arm64
Reviewer Review Type Date Requested Status
Benjamin Drung Approve
Review via email: mp+190841@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Dimitri John Ledkov (xnox) wrote :

Would be nice for this to be uploaded into saucy, as there is arm64 archive now.

Revision history for this message
Benjamin Drung (bdrung) wrote :

I merged your changes and uploaded ubuntu-dev-tools 0.150 to Debian unstable. Feel free to do the sync.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2013-08-22 15:46:16 +0000
+++ debian/changelog 2013-10-13 21:01:22 +0000
@@ -1,9 +1,13 @@
1ubuntu-dev-tools (0.150) UNRELEASED; urgency=low1ubuntu-dev-tools (0.150) UNRELEASED; urgency=low
22
3 [ Brian Murray ]
3 * ubuntutools/sponsor_patch/sponsor_patch.py: correct grammar regarding4 * ubuntutools/sponsor_patch/sponsor_patch.py: correct grammar regarding
4 which task for the patch, cache bug.id instead of retrieving it up more5 which task for the patch, cache bug.id instead of retrieving it up more
5 than once.6 than once.
67
8 [ Dmitrijs Ledkovs ]
9 * add arm64 knowledge to mk-sbuild, ubuntu-build, pbuilder-dist.
10
7 -- Brian Murray <brian@ubuntu.com> Thu, 22 Aug 2013 08:20:14 -070011 -- Brian Murray <brian@ubuntu.com> Thu, 22 Aug 2013 08:20:14 -0700
812
9ubuntu-dev-tools (0.149) unstable; urgency=low13ubuntu-dev-tools (0.149) unstable; urgency=low
1014
=== modified file 'doc/ubuntu-build.1'
--- doc/ubuntu-build.1 2011-12-20 00:02:22 +0000
+++ doc/ubuntu-build.1 2013-10-13 21:01:22 +0000
@@ -38,7 +38,7 @@
38\fB\-a\fR ARCHITECTURE, \fB\-\-arch\fR=\fIARCHITECTURE\fR38\fB\-a\fR ARCHITECTURE, \fB\-\-arch\fR=\fIARCHITECTURE\fR
39Rebuild or rescore a specific architecture. Valid39Rebuild or rescore a specific architecture. Valid
40architectures include: amd64, sparc, powerpc, i386,40architectures include: amd64, sparc, powerpc, i386,
41armel, armhf, ia64, lpia, hppa.41armel, armhf, arm64, ia64, lpia, hppa.
42.TP42.TP
43Batch processing:43Batch processing:
44.IP44.IP
@@ -61,7 +61,7 @@
61\fB\-\-arch2\fR=\fIARCHITECTURE\fR61\fB\-\-arch2\fR=\fIARCHITECTURE\fR
62Affect only 'architecture' (can be used several62Affect only 'architecture' (can be used several
63times). Valid architectures are: amd64, sparc,63times). Valid architectures are: amd64, sparc,
64powerpc, i386, armel, armhf, ia64, lpia, hppa.64powerpc, i386, armel, armhf, arm64, ia64, lpia, hppa.
6565
66.SH AUTHORS66.SH AUTHORS
67\fBubuntu-build\fR was written by Martin Pitt <martin.pitt@canonical.com>, and67\fBubuntu-build\fR was written by Martin Pitt <martin.pitt@canonical.com>, and
6868
=== modified file 'mk-sbuild'
--- mk-sbuild 2013-05-06 13:47:36 +0000
+++ mk-sbuild 2013-10-13 21:01:22 +0000
@@ -428,7 +428,7 @@
428 amd64 | i386)428 amd64 | i386)
429 DEBOOTSTRAP_MIRROR="http://archive.ubuntu.com/ubuntu"429 DEBOOTSTRAP_MIRROR="http://archive.ubuntu.com/ubuntu"
430 ;;430 ;;
431 armhf | armel | hppa | ia64 | lpia | sparc)431 armhf | armel | arm64 | hppa | ia64 | lpia | sparc)
432 DEBOOTSTRAP_MIRROR="http://ports.ubuntu.com/ubuntu-ports"432 DEBOOTSTRAP_MIRROR="http://ports.ubuntu.com/ubuntu-ports"
433 ;;433 ;;
434 powerpc)434 powerpc)
@@ -454,7 +454,7 @@
454 amd64 | i386)454 amd64 | i386)
455 SOURCES_SECURITY_URL="http://security.ubuntu.com/ubuntu"455 SOURCES_SECURITY_URL="http://security.ubuntu.com/ubuntu"
456 ;;456 ;;
457 armhf | armel | hppa | ia64 | lpia | sparc)457 armhf | armel | arm64 | hppa | ia64 | lpia | sparc)
458 SOURCES_SECURITY_URL="http://ports.ubuntu.com/ubuntu-ports"458 SOURCES_SECURITY_URL="http://ports.ubuntu.com/ubuntu-ports"
459 ;;459 ;;
460 powerpc)460 powerpc)
@@ -474,7 +474,7 @@
474 TARGET_MIRROR="http://archive.ubuntu.com/ubuntu"474 TARGET_MIRROR="http://archive.ubuntu.com/ubuntu"
475 TARGET_SOURCES_SECURITY_URL="http://security.ubuntu.com/ubuntu"475 TARGET_SOURCES_SECURITY_URL="http://security.ubuntu.com/ubuntu"
476 ;;476 ;;
477 armhf | armel | hppa | ia64 | lpia | powerpc | sparc)477 armhf | armel | arm64 | hppa | ia64 | lpia | powerpc | sparc)
478 TARGET_MIRROR="http://ports.ubuntu.com/ubuntu-ports"478 TARGET_MIRROR="http://ports.ubuntu.com/ubuntu-ports"
479 TARGET_SOURCES_SECURITY_URL="http://ports.ubuntu.com/ubuntu-ports"479 TARGET_SOURCES_SECURITY_URL="http://ports.ubuntu.com/ubuntu-ports"
480 ;;480 ;;
@@ -561,7 +561,7 @@
561if [ "$CHROOT_ARCH" != "$HOST_ARCH" ] ; then561if [ "$CHROOT_ARCH" != "$HOST_ARCH" ] ; then
562 case "$CHROOT_ARCH-$HOST_ARCH" in562 case "$CHROOT_ARCH-$HOST_ARCH" in
563 # Sometimes we don't need qemu563 # Sometimes we don't need qemu
564 amd64-i386|amd64-lpia|arm-armel|armel-arm|armel-armhf|armhf-armel|i386-amd64|i386-lpia|lpia-i386|powerpc-ppc64|ppc64-powerpc|sparc-sparc64|sparc64-sparc)564 amd64-i386|amd64-lpia|arm-armel|armel-arm|armel-armhf|armhf-armel|arm64-arm|arm64-armel|arm64-armhf|i386-amd64|i386-lpia|lpia-i386|powerpc-ppc64|ppc64-powerpc|sparc-sparc64|sparc64-sparc)
565 ;;565 ;;
566 # Sometimes we do566 # Sometimes we do
567 *)567 *)
568568
=== modified file 'pbuilder-dist'
--- pbuilder-dist 2013-03-18 23:18:02 +0000
+++ pbuilder-dist 2013-10-13 21:01:22 +0000
@@ -412,7 +412,7 @@
412 if len(parts) > 2:412 if len(parts) > 2:
413 requested_arch = parts[2]413 requested_arch = parts[2]
414 elif len(args) > 0 and args[0] in (414 elif len(args) > 0 and args[0] in (
415 'alpha', 'amd64', 'arm', 'armeb', 'armel', 'armhf', 'i386', 'lpia',415 'alpha', 'amd64', 'arm', 'armeb', 'armel', 'armhf', 'arm64', 'i386', 'lpia',
416 'm68k', 'mips', 'mipsel', 'powerpc', 'ppc64', 'sh4', 'sh4eb',416 'm68k', 'mips', 'mipsel', 'powerpc', 'ppc64', 'sh4', 'sh4eb',
417 'sparc', 'sparc64'):417 'sparc', 'sparc64'):
418 requested_arch = args.pop(0)418 requested_arch = args.pop(0)
@@ -426,6 +426,7 @@
426 and (app.system_architecture, requested_arch) not in [426 and (app.system_architecture, requested_arch) not in [
427 ('amd64', 'i386'), ('amd64', 'lpia'), ('arm', 'armel'),427 ('amd64', 'i386'), ('amd64', 'lpia'), ('arm', 'armel'),
428 ('armel', 'arm'), ('armel', 'armhf'), ('armhf', 'armel'),428 ('armel', 'arm'), ('armel', 'armhf'), ('armhf', 'armel'),
429 ('arm64', 'arm'), ('arm64', 'armhf'), ('arm64', 'armel'),
429 ('i386', 'lpia'), ('lpia', 'i386'), ('powerpc', 'ppc64'),430 ('i386', 'lpia'), ('lpia', 'i386'), ('powerpc', 'ppc64'),
430 ('ppc64', 'powerpc'), ('sparc', 'sparc64'),431 ('ppc64', 'powerpc'), ('sparc', 'sparc64'),
431 ('sparc64', 'sparc')]):432 ('sparc64', 'sparc')]):
432433
=== modified file 'ubuntu-build'
--- ubuntu-build 2012-12-12 15:25:20 +0000
+++ ubuntu-build 2013-10-13 21:01:22 +0000
@@ -39,7 +39,7 @@
39 usage += "Only Launchpad Buildd Admins may rescore package builds."39 usage += "Only Launchpad Buildd Admins may rescore package builds."
4040
41 # Valid architectures.41 # Valid architectures.
42 valid_archs = set(["armel", "armhf", "amd64", "hppa", "i386", "ia64",42 valid_archs = set(["armel", "armhf", "arm64", "amd64", "hppa", "i386", "ia64",
43 "lpia", "powerpc", "sparc"])43 "lpia", "powerpc", "sparc"])
4444
45 # Prepare our option parser.45 # Prepare our option parser.