[SCM] Debian Qt/KDE packaging tools branch, master, updated. debian/0.14.3-2-g5cbd58d

Pino Toscano pino at alioth.debian.org
Wed Jan 11 13:53:43 UTC 2012


The following commit has been merged in the master branch:
commit 5cbd58d907463d636a09f934f40bfa3e46f28e9a
Author: Pino Toscano <pino at debian.org>
Date:   Wed Jan 11 14:53:14 2012 +0100

    pkgkde-symbolshelper: fix the expansions on sparc64
    
    ... for size_t, ssize_t, int64_t, uint64_t, qptrdiff, quintptr
---
 debian/changelog                                   |    3 +++
 .../PkgKde/SymbolsHelper/Substs/TypeSubst.pm       |   12 ++++++------
 2 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5a54e17..2730296 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,8 @@
 pkg-kde-tools (0.14.4) UNRELEASED; urgency=low
 
+  [ Pino Toscano ]
+  * pkgkde-symbolshelper: fix the size_t, ssize_t, int64_t, uint64_t,
+    qptrdiff, quintptr expansions on sparc64.
 
  -- Modestas Vainius <modax at debian.org>  Wed, 11 Jan 2012 14:38:16 +0100
 
diff --git a/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm b/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
index bbebcc1..c1bb84c 100644
--- a/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
+++ b/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
@@ -161,7 +161,7 @@ sub new {
 
 sub _expand {
     my ($self, $arch) = @_;
-    return ($arch =~ /amd64|ia64|alpha|s390/) ? "m" : "j";
+    return ($arch =~ /amd64|ia64|alpha|s390|sparc64/) ? "m" : "j";
 }
 
 package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst::ssize_t;
@@ -180,7 +180,7 @@ sub new {
 
 sub _expand {
     my ($self, $arch) = @_;
-    return ($arch =~ /amd64|ia64|alpha|s390/) ? 'l' : 'i';
+    return ($arch =~ /amd64|ia64|alpha|s390|sparc64/) ? 'l' : 'i';
 }
 
 package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst::int64_t;
@@ -199,7 +199,7 @@ sub new {
 
 sub _expand {
     my ($self, $arch) = @_;
-    return ($arch =~ /amd64|ia64|alpha|s390x/) ? 'l' : 'x';
+    return ($arch =~ /amd64|ia64|alpha|s390x|sparc64/) ? 'l' : 'x';
 }
 
 package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst::uint64_t;
@@ -218,7 +218,7 @@ sub new {
 
 sub _expand {
     my ($self, $arch) = @_;
-    return ($arch =~ /amd64|ia64|alpha|s390x/) ? 'm' : 'y';
+    return ($arch =~ /amd64|ia64|alpha|s390x|sparc64/) ? 'm' : 'y';
 }
 
 package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst::qptrdiff;
@@ -237,7 +237,7 @@ sub new {
 
 sub _expand {
     my ($self, $arch) = @_;
-    return ($arch =~ /amd64|ia64|alpha/) ? 'x' : 'i';
+    return ($arch =~ /amd64|ia64|alpha|sparc64/) ? 'x' : 'i';
 }
 
 package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst::quintptr;
@@ -256,7 +256,7 @@ sub new {
 
 sub _expand {
     my ($self, $arch) = @_;
-    return ($arch =~ /amd64|ia64|alpha/) ? 'y' : 'j';
+    return ($arch =~ /amd64|ia64|alpha|sparc64/) ? 'y' : 'j';
 }
 
 package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst::qreal;

-- 
Debian Qt/KDE packaging tools



More information about the pkg-kde-commits mailing list