Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/tevent: tevent-0.9.22.ebuild ChangeLog tevent-0.9.21.ebuild tevent-0.9.20.ebuild
Date: Fri, 03 Oct 2014 21:02:19
Message-Id: 20141003210214.86E3D6DFE@oystercatcher.gentoo.org
1 polynomial-c 14/10/03 21:02:14
2
3 Modified: ChangeLog
4 Added: tevent-0.9.22.ebuild
5 Removed: tevent-0.9.21.ebuild tevent-0.9.20.ebuild
6 Log:
7 Version bump. Removed old
8
9 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
10
11 Revision Changes Path
12 1.71 sys-libs/tevent/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/ChangeLog?rev=1.71&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/ChangeLog?rev=1.71&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/ChangeLog?r1=1.70&r2=1.71
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v
21 retrieving revision 1.70
22 retrieving revision 1.71
23 diff -u -r1.70 -r1.71
24 --- ChangeLog 15 Sep 2014 08:24:20 -0000 1.70
25 +++ ChangeLog 3 Oct 2014 21:02:14 -0000 1.71
26 @@ -1,6 +1,14 @@
27 # ChangeLog for sys-libs/tevent
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.70 2014/09/15 08:24:20 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.71 2014/10/03 21:02:14 polynomial-c Exp $
31 +
32 +*tevent-0.9.22 (03 Oct 2014)
33 +
34 + 03 Oct 2014; Lars Wendler <polynomial-c@g.o> -tevent-0.9.20.ebuild,
35 + -tevent-0.9.21.ebuild, +tevent-0.9.22.ebuild,
36 + -files/add-py-file-0.9.14.patch, -files/add-py-file.patch,
37 + -files/tevent-version.patch:
38 + Version bump. Removed old.
39
40 15 Sep 2014; Agostino Sarubbo <ago@g.o> tevent-0.9.21-r1.ebuild:
41 Stable for sparc, wrt bug #512012
42
43
44
45 1.1 sys-libs/tevent/tevent-0.9.22.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/tevent-0.9.22.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/tevent/tevent-0.9.22.ebuild?rev=1.1&content-type=text/plain
49
50 Index: tevent-0.9.22.ebuild
51 ===================================================================
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.22.ebuild,v 1.1 2014/10/03 21:02:14 polynomial-c Exp $
55
56 EAPI=5
57 PYTHON_COMPAT=( python2_{6,7} )
58
59 inherit waf-utils multilib-minimal python-single-r1
60
61 DESCRIPTION="Samba tevent library"
62 HOMEPAGE="http://tevent.samba.org/"
63 SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
68 IUSE="python"
69
70 RDEPEND=">=sys-libs/talloc-2.1.0[python?,${MULTILIB_USEDEP}]
71 python? ( ${PYTHON_DEPS} )"
72
73 DEPEND="${RDEPEND}
74 >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
75 ${PYTHON_DEPS}
76 "
77 # build system does not work with python3
78 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
79
80 WAF_BINARY="${S}/buildtools/bin/waf"
81
82 pkg_setup() {
83 python-single-r1_pkg_setup
84 }
85
86 src_prepare() {
87 multilib_copy_sources
88 }
89
90 multilib_src_configure() {
91 waf-utils_src_configure \
92 $(multilib_native_usex python '' '--disable-python')
93 }
94
95 multilib_src_compile() {
96 # need to avoid parallel building, this looks like the sanest way with waf-utils/multiprocessing eclasses
97 unset MAKEOPTS
98 waf-utils_src_compile
99 }
100
101 multilib_src_install() {
102 waf-utils_src_install
103
104 multilib_is_native_abi && use python && python_domodule tevent.py
105 }