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