diff options
author | Michael Palimaka <kensington@gentoo.org> | 2012-12-29 13:37:34 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2012-12-29 13:37:34 +0000 |
commit | 902a7e2c034837cbd7e5d244831dfcca034c3de8 (patch) | |
tree | 51e69be3122f64552ac5a8daa43d94279a582dde /x11-libs/qt-dbus | |
parent | Remove old. (diff) | |
download | gentoo-2-902a7e2c034837cbd7e5d244831dfcca034c3de8.tar.gz gentoo-2-902a7e2c034837cbd7e5d244831dfcca034c3de8.tar.bz2 gentoo-2-902a7e2c034837cbd7e5d244831dfcca034c3de8.zip |
Remove old.
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'x11-libs/qt-dbus')
-rw-r--r-- | x11-libs/qt-dbus/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/qt-dbus/files/4.8.2-qatomic-x32.patch | 50 | ||||
-rw-r--r-- | x11-libs/qt-dbus/qt-dbus-4.7.4.ebuild | 44 | ||||
-rw-r--r-- | x11-libs/qt-dbus/qt-dbus-4.8.1.ebuild | 50 | ||||
-rw-r--r-- | x11-libs/qt-dbus/qt-dbus-4.8.2.ebuild | 53 | ||||
-rw-r--r-- | x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild | 52 |
6 files changed, 6 insertions, 250 deletions
diff --git a/x11-libs/qt-dbus/ChangeLog b/x11-libs/qt-dbus/ChangeLog index ad679c53cc1b..32a3f68ed991 100644 --- a/x11-libs/qt-dbus/ChangeLog +++ b/x11-libs/qt-dbus/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/qt-dbus # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-dbus/ChangeLog,v 1.139 2012/12/29 08:45:46 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-dbus/ChangeLog,v 1.140 2012/12/29 13:37:34 kensington Exp $ + + 29 Dec 2012; Michael Palimaka <kensington@gentoo.org> + -files/4.8.2-qatomic-x32.patch, -qt-dbus-4.7.4.ebuild, -qt-dbus-4.8.1.ebuild, + -qt-dbus-4.8.2.ebuild, -qt-dbus-4.8.3.ebuild: + Remove old. 29 Dec 2012; Agostino Sarubbo <ago@gentoo.org> qt-dbus-4.8.4.ebuild: Stable for alpha, wrt bug #445956 diff --git a/x11-libs/qt-dbus/files/4.8.2-qatomic-x32.patch b/x11-libs/qt-dbus/files/4.8.2-qatomic-x32.patch deleted file mode 100644 index 5f352b1acc83..000000000000 --- a/x11-libs/qt-dbus/files/4.8.2-qatomic-x32.patch +++ /dev/null @@ -1,50 +0,0 @@ -From 29384815fb74ddfa90007f9ffede77be45e9a0fd Mon Sep 17 00:00:00 2001 -From: Davide Pesavento <davidepesa@gmail.com> -Date: Thu, 14 Jun 2012 00:44:43 +0200 -Subject: [PATCH] Fix qatomic inline asm for x32 ABI. - -Drop the 'q' suffix from x86_64 asm instructions. It's not needed, -because the assembler can automatically determine the proper size -based on the target, and it is in fact causing compilation failures -on x32. - -Change-Id: Ie6ff3ddf352a63bc490acce97a3019ce2e48dc70 -Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> ---- - src/corelib/arch/qatomic_x86_64.h | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/corelib/arch/qatomic_x86_64.h b/src/corelib/arch/qatomic_x86_64.h -index c2627c8..dc78140 100644 ---- a/src/corelib/arch/qatomic_x86_64.h -+++ b/src/corelib/arch/qatomic_x86_64.h -@@ -170,7 +170,7 @@ Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::testAndSetOrdered(T *expectedValu - { - unsigned char ret; - asm volatile("lock\n" -- "cmpxchgq %3,%2\n" -+ "cmpxchg %3,%2\n" - "sete %1\n" - : "=a" (newValue), "=qm" (ret), "+m" (_q_value) - : "r" (newValue), "0" (expectedValue) -@@ -181,7 +181,7 @@ Q_INLINE_TEMPLATE bool QBasicAtomicPointer<T>::testAndSetOrdered(T *expectedValu - template <typename T> - Q_INLINE_TEMPLATE T *QBasicAtomicPointer<T>::fetchAndStoreOrdered(T *newValue) - { -- asm volatile("xchgq %0,%1" -+ asm volatile("xchg %0,%1" - : "=r" (newValue), "+m" (_q_value) - : "0" (newValue) - : "memory"); -@@ -192,7 +192,7 @@ template <typename T> - Q_INLINE_TEMPLATE T *QBasicAtomicPointer<T>::fetchAndAddOrdered(qptrdiff valueToAdd) - { - asm volatile("lock\n" -- "xaddq %0,%1" -+ "xadd %0,%1" - : "=r" (valueToAdd), "+m" (_q_value) - : "0" (valueToAdd * sizeof(T)) - : "memory"); --- -1.7.10 - diff --git a/x11-libs/qt-dbus/qt-dbus-4.7.4.ebuild b/x11-libs/qt-dbus/qt-dbus-4.7.4.ebuild deleted file mode 100644 index a769bb34fafd..000000000000 --- a/x11-libs/qt-dbus/qt-dbus-4.7.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-dbus/qt-dbus-4.7.4.ebuild,v 1.7 2012/05/14 21:24:05 pesa Exp $ - -EAPI="3" -inherit qt4-build - -DESCRIPTION="The DBus module for the Qt toolkit" -SLOT="4" -KEYWORDS="amd64 ~arm hppa ~ia64 ~mips ppc ppc64 -sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND="~x11-libs/qt-core-${PV}[aqua=,debug=] - >=sys-apps/dbus-1.0.2" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-4.7-qdbusintegrator-no-const.patch" -) - -pkg_setup() { - QT4_TARGET_DIRECTORIES=" - src/dbus - tools/qdbus/qdbus - tools/qdbus/qdbusxml2cpp - tools/qdbus/qdbuscpp2xml" - - QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES} - include/QtCore - include/QtDBus - include/QtXml - src/corelib - src/xml" - - QCONFIG_ADD="dbus dbus-linked" - QCONFIG_DEFINE="QT_DBUS" - - qt4-build_pkg_setup -} - -src_configure() { - myconf="${myconf} -dbus-linked" - qt4-build_src_configure -} diff --git a/x11-libs/qt-dbus/qt-dbus-4.8.1.ebuild b/x11-libs/qt-dbus/qt-dbus-4.8.1.ebuild deleted file mode 100644 index 9341cb0e708f..000000000000 --- a/x11-libs/qt-dbus/qt-dbus-4.8.1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-dbus/qt-dbus-4.8.1.ebuild,v 1.12 2012/07/08 17:49:51 armin76 Exp $ - -EAPI=4 - -inherit qt4-build - -DESCRIPTION="The DBus module for the Qt toolkit" -SLOT="4" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND=" - >=sys-apps/dbus-1.2 - ~x11-libs/qt-core-${PV}[aqua=,c++0x=,debug=,qpa=] -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-4.7-qdbusintegrator-no-const.patch" -) - -pkg_setup() { - QT4_TARGET_DIRECTORIES=" - src/dbus - tools/qdbus/qdbus - tools/qdbus/qdbusxml2cpp - tools/qdbus/qdbuscpp2xml" - - if [[ ${PV} != 4*9999 ]]; then - QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES} - include/QtCore - include/QtDBus - include/QtXml - src/corelib - src/xml" - fi - - QCONFIG_ADD="dbus dbus-linked" - QCONFIG_DEFINE="QT_DBUS" - - qt4-build_pkg_setup -} - -src_configure() { - myconf+=" -dbus-linked" - - qt4-build_src_configure -} diff --git a/x11-libs/qt-dbus/qt-dbus-4.8.2.ebuild b/x11-libs/qt-dbus/qt-dbus-4.8.2.ebuild deleted file mode 100644 index ff175db77d13..000000000000 --- a/x11-libs/qt-dbus/qt-dbus-4.8.2.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-dbus/qt-dbus-4.8.2.ebuild,v 1.10 2012/10/14 17:04:23 armin76 Exp $ - -EAPI=4 - -inherit qt4-build - -DESCRIPTION="The DBus module for the Qt toolkit" -SLOT="4" -if [[ ${QT4_BUILD_TYPE} == live ]]; then - KEYWORDS="" -else - KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -fi -IUSE="" - -DEPEND=" - >=sys-apps/dbus-1.2 - ~x11-libs/qt-core-${PV}[aqua=,c++0x=,debug=,qpa=] -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-4.7-qdbusintegrator-no-const.patch" - "${FILESDIR}/${PV}-qatomic-x32.patch" -) - -pkg_setup() { - QT4_TARGET_DIRECTORIES=" - src/dbus - tools/qdbus/qdbus - tools/qdbus/qdbusxml2cpp - tools/qdbus/qdbuscpp2xml" - - QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES} - include/QtCore - include/QtDBus - include/QtXml - src/corelib - src/xml" - - QCONFIG_ADD="dbus dbus-linked" - QCONFIG_DEFINE="QT_DBUS" - - qt4-build_pkg_setup -} - -src_configure() { - myconf+=" -dbus-linked" - - qt4-build_src_configure -} diff --git a/x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild b/x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild deleted file mode 100644 index 5317e563d932..000000000000 --- a/x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-dbus/qt-dbus-4.8.3.ebuild,v 1.2 2012/09/16 04:21:49 yngwin Exp $ - -EAPI=4 - -inherit qt4-build - -DESCRIPTION="The DBus module for the Qt toolkit" -SLOT="4" -if [[ ${QT4_BUILD_TYPE} == live ]]; then - KEYWORDS="" -else - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -fi -IUSE="" - -DEPEND=" - >=sys-apps/dbus-1.2 - ~x11-libs/qt-core-${PV}[aqua=,debug=] -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-4.7-qdbusintegrator-no-const.patch" -) - -pkg_setup() { - QT4_TARGET_DIRECTORIES=" - src/dbus - tools/qdbus/qdbus - tools/qdbus/qdbusxml2cpp - tools/qdbus/qdbuscpp2xml" - - QT4_EXTRACT_DIRECTORIES="${QT4_TARGET_DIRECTORIES} - include/QtCore - include/QtDBus - include/QtXml - src/corelib - src/xml" - - QCONFIG_ADD="dbus dbus-linked" - QCONFIG_DEFINE="QT_DBUS" - - qt4-build_pkg_setup -} - -src_configure() { - myconf+=" -dbus-linked" - - qt4-build_src_configure -} |