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