diff options
author | 2010-08-10 14:42:05 +0000 | |
---|---|---|
committer | 2010-08-10 14:42:05 +0000 | |
commit | d314cafd2c7498c165c269f4c4e06aba08fdba22 (patch) | |
tree | 5d0701c6110283fda8d5b98e68a227140aed870f /x11-proto/xextproto | |
parent | Version bump (bug #331721) (diff) | |
download | gentoo-2-d314cafd2c7498c165c269f4c4e06aba08fdba22.tar.gz gentoo-2-d314cafd2c7498c165c269f4c4e06aba08fdba22.tar.bz2 gentoo-2-d314cafd2c7498c165c269f4c4e06aba08fdba22.zip |
Version bump.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-proto/xextproto')
-rw-r--r-- | x11-proto/xextproto/ChangeLog | 9 | ||||
-rw-r--r-- | x11-proto/xextproto/files/7.0.5-dont-pull-in-Xmd-h-in-Xge-h.patch | 46 | ||||
-rw-r--r-- | x11-proto/xextproto/xextproto-7.0.5.ebuild | 17 | ||||
-rw-r--r-- | x11-proto/xextproto/xextproto-7.1.2.ebuild | 15 |
4 files changed, 23 insertions, 64 deletions
diff --git a/x11-proto/xextproto/ChangeLog b/x11-proto/xextproto/ChangeLog index acfaebeeb2c9..9546bc98ddf8 100644 --- a/x11-proto/xextproto/ChangeLog +++ b/x11-proto/xextproto/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-proto/xextproto # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/xextproto/ChangeLog,v 1.60 2010/08/02 18:08:46 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-proto/xextproto/ChangeLog,v 1.61 2010/08/10 14:42:05 scarabeus Exp $ + +*xextproto-7.1.2 (10 Aug 2010) + + 10 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org> + -files/7.0.5-dont-pull-in-Xmd-h-in-Xge-h.patch, -xextproto-7.0.5.ebuild, + +xextproto-7.1.2.ebuild: + Version bump. 02 Aug 2010; Raúl Porcel <armin76@gentoo.org> xextproto-7.1.1.ebuild: alpha/ia64/s390/sh/sparc stable wrt #308521 diff --git a/x11-proto/xextproto/files/7.0.5-dont-pull-in-Xmd-h-in-Xge-h.patch b/x11-proto/xextproto/files/7.0.5-dont-pull-in-Xmd-h-in-Xge-h.patch deleted file mode 100644 index 98a9e976cca3..000000000000 --- a/x11-proto/xextproto/files/7.0.5-dont-pull-in-Xmd-h-in-Xge-h.patch +++ /dev/null @@ -1,46 +0,0 @@ -From 7629def0733b82687f2879095451d72e42e13db7 Mon Sep 17 00:00:00 2001 -From: James Cloos <cloos@jhcloos.com> -Date: Sat, 28 Mar 2009 18:20:38 +0000 -Subject: C sucks: define XEventClass in terms of unsigned int, not CARD32. - -Apparently pulling in Xmd.h here breaks qt, since they both define an -INT32 type (and incompatible ones even, since Xmd's is unsigned long on -ILP32 because whoever wrote Xmd.h is a C novice). - -(Based on inputproto commit b5cbe2d93f6c0129b8f29da97778f6d1b15c38f9. -Patch submitted to xorg@ in <20090117121713.46bf3332@family.dyweni.com>.) ---- -diff --git a/Xge.h b/Xge.h -index cc03ece..51382ff 100644 ---- a/Xge.h -+++ b/Xge.h -@@ -30,7 +30,6 @@ - #ifndef _XGE_H_ - #define _XGE_H_ - --#include <X11/Xmd.h> - #include <X11/Xlib.h> - #include <X11/Xfuncproto.h> - -@@ -39,12 +38,15 @@ _XFUNCPROTOBEGIN - /** - * Generic Event mask. - * To be used whenever a list of masks per extension has to be provided. -+ * -+ * But, don't actually use the CARD{8,16,32} types. We can't get them them -+ * defined here without polluting the namespace. - */ - typedef struct { -- CARD8 extension; -- CARD8 pad0; -- CARD16 pad1; -- CARD32 evmask; -+ unsigned char extension; -+ unsigned char pad0; -+ unsigned short pad1; -+ unsigned int evmask; - } XGenericEventMask; - - Bool XGEQueryExtension(Display* dpy, int *event_basep, int *err_basep); --- -cgit v0.8.2 diff --git a/x11-proto/xextproto/xextproto-7.0.5.ebuild b/x11-proto/xextproto/xextproto-7.0.5.ebuild deleted file mode 100644 index 183f14170052..000000000000 --- a/x11-proto/xextproto/xextproto-7.0.5.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/xextproto/xextproto-7.0.5.ebuild,v 1.8 2009/12/15 19:49:39 ranger Exp $ - -# Must be before x-modular eclass is inherited -#SNAPSHOT="yes" - -inherit x-modular - -DESCRIPTION="X.Org XExt protocol headers" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="" - -DEPEND="x11-proto/inputproto" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${PV}-dont-pull-in-Xmd-h-in-Xge-h.patch" ) diff --git a/x11-proto/xextproto/xextproto-7.1.2.ebuild b/x11-proto/xextproto/xextproto-7.1.2.ebuild new file mode 100644 index 000000000000..766017ea34ca --- /dev/null +++ b/x11-proto/xextproto/xextproto-7.1.2.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/xextproto/xextproto-7.1.2.ebuild,v 1.1 2010/08/10 14:42:05 scarabeus Exp $ + +EAPI=3 + +inherit xorg-2 + +DESCRIPTION="X.Org XExt protocol headers" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +IUSE="" + +RDEPEND="!<x11-libs/libXext-1.0.99" +DEPEND="${RDEPEND}" |