git: no support for gpgsig tags
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Bazaar Git Plugin |
Triaged
|
High
|
Unassigned | ||
Breezy |
Fix Released
|
Medium
|
Jelmer Vernooij | ||
Launchpad code imports |
Triaged
|
High
|
Unassigned | ||
One Hundred Papercuts |
Invalid
|
Undecided
|
Unassigned | ||
pyMOR |
Invalid
|
Undecided
|
Unassigned | ||
bzr-git (Ubuntu) |
Triaged
|
High
|
Unassigned |
Bug Description
I'm trying to branch the xserver with bzr-git, and it's failing:
#: bzr branch git://anongit.
bzr: ERROR: Unknown extra fields in <Commit afc153a5b4fc58a
#: git show --show-signature afc153a5b4fc58a
commit afc153a5b4fc58a
gpgkeys: key 23C6CDF7272D9D43 not found on keyserver
gpg: Signature made Wed 09 May 2012 08:05:49 EST using RSA key ID 272D9D43
gpg: requesting key 272D9D43 from hkp server keyserver.
gpg: no valid OpenPGP data found.
gpg: Total number processed: 0
gpg: Can't check signature: public key not found
Author: James Cloos <email address hidden>
Date: Tue May 8 17:55:10 2012 -0400
Fix RANDR’s gamma_to_ramp().
In order to generate a 256-entry ramp in [0,65535] which covers the full
range, one must mupliply eight-bit values not by 256 but rather by 257.
Many years back – well before the RANDR extension was written, and
before xorg@fdo – a similar bug fix was made to the DIX for converting
client-supplied eight-bit color values into sixteen-bit values.
Noticed by: Elle Stone and Graeme Gill.
Signed-off-by: James Cloos <email address hidden>
diff --git a/hw/xfree86/
index a773c34..aca0734 100644
--- a/hw/xfree86/
+++ b/hw/xfree86/
@@ -1679,11 +1679,11 @@ gamma_to_ramp(float gamma, CARD16 *ramp, int size)
for (i = 0; i < size; i++) {
if (gamma == 1.0)
- ramp[i] = i << 8;
+ ramp[i] = i | i << 8;
else
- * (double) (size - 1) * 256);
+ * (double) (size - 1) * 257);
}
}
ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: bzr-git 0.6.9-1
ProcVersionSign
Uname: Linux 3.7.0-3-generic x86_64
ApportVersion: 2.6.2-0ubuntu5
Architecture: amd64
Date: Thu Nov 29 16:39:30 2012
EcryptfsInUse: Yes
InstallationDate: Installed on 2012-06-16 (165 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Alpha amd64 (20120521)
MarkForUpload: True
PackageArchitec
SourcePackage: bzr-git
UpgradeStatus: No upgrade log present (probably fresh install)
summary: |
- bzr-git fails to check out xorg server: mishandles gpg-signed tags + no support for gpgsig tags |
Changed in bzr-git: | |
status: | New → Triaged |
importance: | Undecided → High |
Changed in bzr-git (Ubuntu): | |
importance: | Undecided → High |
status: | New → Triaged |
Changed in bzr-git: | |
status: | Triaged → Fix Committed |
Changed in bzr-git (Ubuntu): | |
status: | Triaged → Fix Committed |
Changed in bzr-git (Ubuntu): | |
status: | Fix Committed → Triaged |
Changed in bzr-git: | |
status: | Fix Committed → Triaged |
Changed in launchpad: | |
status: | New → Triaged |
importance: | Undecided → High |
Changed in bzr-git: | |
status: | Triaged → In Progress |
Changed in launchpad: | |
status: | Triaged → Fix Committed |
Changed in bzr-git (Ubuntu): | |
status: | Triaged → Fix Released |
Changed in bzr-git: | |
status: | In Progress → Fix Committed |
Changed in launchpad: | |
status: | New → Triaged |
Changed in dulwich: | |
status: | New → Triaged |
importance: | Undecided → High |
Changed in hundredpapercuts: | |
status: | New → Confirmed |
Changed in pymor: | |
status: | New → Invalid |
Changed in brz-git: | |
status: | New → Triaged |
importance: | Undecided → Medium |
Changed in brz-git: | |
milestone: | none → integration |
affects: | brz-git → brz |
Changed in brz: | |
milestone: | integration → none |
milestone: | none → 3.0.0 |
summary: |
- no support for gpgsig tags + git: no support for gpgsig tags |
affects: | launchpad → lp-codeimport |
Do you have an estimate of the complexity of fixing this? It's semi-blocking something that I need to work on, so if it's likely to be doable by someone with no prior bzr-git experience I'd be able to hack on it.