diff options
author | 2014-01-18 23:19:27 +0000 | |
---|---|---|
committer | 2014-01-18 23:19:27 +0000 | |
commit | dc9aa909042033dce653548f24711614be530fad (patch) | |
tree | ecf9bb590d0f2c5b6389d3791fa856b53b3cff2a /sys-libs | |
parent | Update the local config.{sub,guess} files manually. (diff) | |
download | gentoo-2-dc9aa909042033dce653548f24711614be530fad.tar.gz gentoo-2-dc9aa909042033dce653548f24711614be530fad.tar.bz2 gentoo-2-dc9aa909042033dce653548f24711614be530fad.zip |
Version bump
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/tevent/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/tevent/tevent-0.9.21.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/sys-libs/tevent/ChangeLog b/sys-libs/tevent/ChangeLog index 5fbb8b7f3cc0..6ec215ab2507 100644 --- a/sys-libs/tevent/ChangeLog +++ b/sys-libs/tevent/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/tevent -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.56 2013/12/16 08:58:48 polynomial-c Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/ChangeLog,v 1.57 2014/01/18 23:19:27 polynomial-c Exp $ + +*tevent-0.9.21 (18 Jan 2014) + + 18 Jan 2014; Lars Wendler <polynomial-c@gentoo.org> +tevent-0.9.21.ebuild: + Version bump. 16 Dec 2013; Lars Wendler <polynomial-c@gentoo.org> tevent-0.9.20.ebuild: Raised dependency on sys-libs/talloc to version 2.1.0 for bug #481174. diff --git a/sys-libs/tevent/tevent-0.9.21.ebuild b/sys-libs/tevent/tevent-0.9.21.ebuild new file mode 100644 index 000000000000..90914e1c1824 --- /dev/null +++ b/sys-libs/tevent/tevent-0.9.21.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/tevent/tevent-0.9.21.ebuild,v 1.1 2014/01/18 23:19:27 polynomial-c Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_{6,7} ) + +inherit waf-utils python-single-r1 + +DESCRIPTION="Samba tevent library" +HOMEPAGE="http://tevent.samba.org/" +SRC_URI="http://samba.org/ftp/tevent/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux" +IUSE="" + +RDEPEND=">=sys-libs/talloc-2.1.0[python] + ${PYTHON_DEPS}" + +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +WAF_BINARY="${S}/buildtools/bin/waf" + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_install() { + waf-utils_src_install + python_export PYTHON_SITEDIR + insinto "${PYTHON_SITEDIR#${EPREFIX}}" + doins tevent.py + python_optimize +} |