diff options
author | Mart Raudsepp <leio@gentoo.org> | 2017-05-08 21:07:43 +0300 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2017-05-08 21:21:37 +0300 |
commit | 2c526430709165daedeef5e4630f37ffc5c8f6a5 (patch) | |
tree | dee4ca56a83f1a6b5fa0ee39eb07b5499013814c /dev-util/gdbus-codegen/gdbus-codegen-2.52.2.ebuild | |
parent | net-ftp/filezilla: switch to gtk3 wxGTK (diff) | |
download | gentoo-2c526430709165daedeef5e4630f37ffc5c8f6a5.tar.gz gentoo-2c526430709165daedeef5e4630f37ffc5c8f6a5.tar.bz2 gentoo-2c526430709165daedeef5e4630f37ffc5c8f6a5.zip |
dev-util/gdbus-codegen: bump to 2.52.2
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-util/gdbus-codegen/gdbus-codegen-2.52.2.ebuild')
-rw-r--r-- | dev-util/gdbus-codegen/gdbus-codegen-2.52.2.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.52.2.ebuild b/dev-util/gdbus-codegen/gdbus-codegen-2.52.2.ebuild new file mode 100644 index 000000000000..7834f0c7fcd1 --- /dev/null +++ b/dev-util/gdbus-codegen/gdbus-codegen-2.52.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" +GNOME_ORG_MODULE="glib" +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) +PYTHON_REQ_USE="xml" + +inherit eutils gnome.org distutils-r1 + +DESCRIPTION="GDBus code and documentation generator" +HOMEPAGE="http://www.gtk.org/" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="" + +RDEPEND="${PYTHON_DEPS}" +DEPEND="${RDEPEND}" + +# To prevent circular dependencies with glib[test] +PDEPEND=">=dev-libs/glib-${PV}:2" + +S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen" + +python_prepare_all() { + PATCHES=( + "${FILESDIR}/${PN}-2.40.0-sitedir.patch" + ) + distutils-r1_python_prepare_all + + sed -e 's:#!@PYTHON@:#!/usr/bin/env python:' gdbus-codegen.in > gdbus-codegen || die + cp "${FILESDIR}/setup.py-2.32.4" setup.py || die "cp failed" + sed -e "s/@PV@/${PV}/" -i setup.py || die "sed setup.py failed" +} + +src_test() { + einfo "Skipping tests. This package is tested by dev-libs/glib" + einfo "when merged with FEATURES=test" +} + +python_install_all() { + distutils-r1_python_install_all # no-op, but prevents QA warning + doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1" +} |