Gentoo Archives: gentoo-commits

From: "Donnie Berkholz (dberkholz)" <dberkholz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libxcb: ChangeLog libxcb-1.1.90.1.ebuild
Date: Wed, 30 Jul 2008 22:38:08
Message-Id: E1KOKJ3-0001Z0-Mk@stork.gentoo.org
1 dberkholz 08/07/30 22:38:05
2
3 Modified: ChangeLog
4 Added: libxcb-1.1.90.1.ebuild
5 Log:
6 Bump. Adds support for XInput and SELinux extensions, the language-dependent parts of a Python parser, and other bugfixes.
7 (Portage version: 2.2_rc3/cvs/Linux 2.6.26 x86_64)
8
9 Revision Changes Path
10 1.22 x11-libs/libxcb/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libxcb/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libxcb/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libxcb/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 7 Nov 2007 08:40:01 -0000 1.21
23 +++ ChangeLog 30 Jul 2008 22:38:05 -0000 1.22
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-libs/libxcb
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.21 2007/11/07 08:40:01 dberkholz Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/ChangeLog,v 1.22 2008/07/30 22:38:05 dberkholz Exp $
30 +
31 +*libxcb-1.1.90.1 (30 Jul 2008)
32 +
33 + 30 Jul 2008; Donnie Berkholz <dberkholz@g.o>;
34 + +libxcb-1.1.90.1.ebuild:
35 + Bump. Adds support for XInput and SELinux extensions, the
36 + language-dependent parts of a Python parser, and other bugfixes.
37
38 07 Nov 2007; Donnie Berkholz <dberkholz@g.o>; libxcb-1.1.ebuild:
39 Add a post-installation notice about the new sloppy locking.
40
41
42
43 1.1 x11-libs/libxcb/libxcb-1.1.90.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libxcb/libxcb-1.1.90.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libxcb/libxcb-1.1.90.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libxcb-1.1.90.1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libxcb/libxcb-1.1.90.1.ebuild,v 1.1 2008/07/30 22:38:05 dberkholz Exp $
53
54 # Must be before x-modular eclass is inherited
55 #SNAPSHOT="yes"
56
57 inherit x-modular
58
59 DESCRIPTION="X C-language Bindings library"
60 HOMEPAGE="http://xcb.freedesktop.org/"
61 SRC_URI="http://xcb.freedesktop.org/dist/${P}.tar.bz2"
62 LICENSE="X11"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE="doc selinux"
65 RDEPEND="x11-libs/libXau
66 x11-libs/libXdmcp
67 dev-libs/libpthread-stubs"
68 DEPEND="${RDEPEND}
69 doc? ( app-doc/doxygen )
70 dev-libs/libxslt
71 >=x11-proto/xcb-proto-1.2"
72
73 CONFIGURE_OPTIONS="$(use_enable doc build-docs)
74 $(use_enable selinux xselinux)
75 --enable-xinput"
76
77 pkg_postinst() {
78 x-modular_pkg_postinst
79
80 elog "libxcb-1.1 added the LIBXCB_ALLOW_SLOPPY_LOCK variable to allow"
81 elog "broken applications to keep running instead of being aborted."
82 elog "Set this variable if you need to use broken packages such as Java"
83 elog "(for example, add LIBXCB_ALLOW_SLOPPY_LOCK=1 to /etc/env.d/00local"
84 elog "and run env-update)."
85 }