[SCM] Debian Qt/KDE packaging tools branch, master, updated. debian/0.15.10-3-g0006f21

Lisandro Damián Nicanor Pérez lisandro at moszumanska.debian.org
Wed Dec 18 12:39:20 UTC 2013


Gitweb-URL: http://git.debian.org/?p=pkg-kde/pkg-kde-tools.git;a=commitdiff;h=0006f21

The following commit has been merged in the master branch:
commit 0006f21bf5fcdadb962f96828291ba518b26583e
Author: Lisandro Damián Nicanor Pérez Meyer <perezmeyer at gmail.com>
Date:   Wed Dec 18 09:36:57 2013 -0300

    Add support for mips64 and mips64el (Closes: #723223).
    
    Overwrite Dmitry's changes with what currently released and not commited to the repo.
    
    I missed to push this to the repo due to the Alioth shortage.
    This was coordinated with Dmitry.
---
 debian/changelog                                        |  8 ++++----
 perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm | 14 +++++++-------
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 11fe3fe..60297cb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-pkg-kde-tools (0.15.11) UNRELEASED; urgency=medium
+pkg-kde-tools (0.15.11) unstable; urgency=low
 
-  [ Dmitry Shachnev ]
-  * pkgkde-symbolshelper: fix qptrdiff expansion for s390x.
+  * Add support for mips64 and mips64el. Thanks YunQiang Su for the patch.
+    (Closes: #723223).
 
- -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org>  Wed, 18 Dec 2013 16:07:44 +0400
+ -- Lisandro Damián Nicanor Pérez Meyer <lisandro at debian.org>  Thu, 14 Nov 2013 09:23:17 -0300
 
 pkg-kde-tools (0.15.10) unstable; urgency=low
 
diff --git a/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm b/perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm
index 34ca9b6..6e3c4c9 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|sparc64|ppc64/) ? "m" : "j";
+    return ($arch =~ /amd64|ia64|alpha|s390|sparc64|ppc64|mips64|mips64el/) ? "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|sparc64|ppc64/) ? 'l' : 'i';
+    return ($arch =~ /amd64|ia64|alpha|s390|sparc64|ppc64|mips64|mips64el/) ? '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|sparc64|ppc64/) ? 'l' : 'x';
+    return ($arch =~ /amd64|ia64|alpha|s390x|sparc64|ppc64|mips64|mips64el/) ? '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|sparc64|ppc64/) ? 'm' : 'y';
+    return ($arch =~ /amd64|ia64|alpha|s390x|sparc64|ppc64|mips64|mips64el/) ? '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|s390x|sparc64|ppc64/) ? 'x' : 'i';
+    return ($arch =~ /amd64|ia64|alpha|sparc64|ppc64|mips64|mips64el/) ? '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|s390x|sparc64|ppc64/) ? 'y' : 'j';
+    return ($arch =~ /amd64|ia64|alpha|s390x|sparc64|ppc64|mips64|mips64el/) ? 'y' : 'j';
 }
 
 package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst::intptr_t;
@@ -275,7 +275,7 @@ sub new {
 
 sub _expand {
     my ($self, $arch) = @_;
-    return ($arch =~ /amd64|ia64|alpha|s390x|sparc64|ppc64/) ? 'l' : 'i';
+    return ($arch =~ /amd64|ia64|alpha|s390x|sparc64|ppc64|mips64|mips64el/) ? 'l' : 'i';
 }
 
 package Debian::PkgKde::SymbolsHelper::Substs::TypeSubst::qreal;

-- 
Debian Qt/KDE packaging tools



More information about the pkg-kde-commits mailing list