Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/gdbus-codegen/
Date: Sun, 23 Feb 2020 12:24:55
Message-Id: 1582460670.04d36b0fbf902e53590788cc33245562299ad266.leio@gentoo
1 commit: 04d36b0fbf902e53590788cc33245562299ad266
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 23 12:12:24 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 23 12:24:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04d36b0f
7
8 dev-util/gdbus-codegen: bump to 2.62.5
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 dev-util/gdbus-codegen/Manifest | 1 +
14 dev-util/gdbus-codegen/gdbus-codegen-2.62.5.ebuild | 69 ++++++++++++++++++++++
15 2 files changed, 70 insertions(+)
16
17 diff --git a/dev-util/gdbus-codegen/Manifest b/dev-util/gdbus-codegen/Manifest
18 index 35f017b7582..2a42dae4cec 100644
19 --- a/dev-util/gdbus-codegen/Manifest
20 +++ b/dev-util/gdbus-codegen/Manifest
21 @@ -1 +1,2 @@
22 DIST glib-2.60.7.tar.xz 4590568 BLAKE2B a3f2a3bd0443a27326e8359c2ad1e6022ca1634f5c7cb4502a8011fbe85df690fff7d67665cf160bf4ed426214b87f6501a69158fb1656bdb86cacdcf076ee15 SHA512 d56d805a5abf6f7aeb8bf5be06b60ad049177ee23f78eacef4ce2ea88a8be49966a95e48fed17c752649f6e80937fd0ebc8f959709f623ec1f2f43ffd42d078a
23 +DIST glib-2.62.5.tar.xz 4702492 BLAKE2B 03e04cb149b3301959013c5db20b1f3606951ed80105e0580d40177586a5834afb975ace0d25d5311fd63d29a48129128bdddf29a808e371f1400c00033be1a3 SHA512 2f99422ff8245524aabdb52f5d388ef4bde0fc075eab24499b4023f6ca143b80a74e265117b9e7a9de68a347b0c7eaa8655c836d7bbb63d54cad5c6dda630371
24
25 diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.62.5.ebuild b/dev-util/gdbus-codegen/gdbus-codegen-2.62.5.ebuild
26 new file mode 100644
27 index 00000000000..3e6dd45f2bd
28 --- /dev/null
29 +++ b/dev-util/gdbus-codegen/gdbus-codegen-2.62.5.ebuild
30 @@ -0,0 +1,69 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +GNOME_ORG_MODULE="glib"
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +PYTHON_REQ_USE="xml"
38 +DISTUTILS_SINGLE_IMPL=1
39 +DISTUTILS_USE_SETUPTOOLS=no
40 +
41 +inherit gnome.org distutils-r1
42 +
43 +DESCRIPTION="GDBus code and documentation generator"
44 +HOMEPAGE="https://www.gtk.org/"
45 +
46 +LICENSE="LGPL-2+"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
49 +IUSE=""
50 +
51 +RDEPEND="${PYTHON_DEPS}"
52 +DEPEND="${RDEPEND}"
53 +BDEPEND="
54 + dev-libs/libxslt
55 + app-text/docbook-xsl-stylesheets
56 +"
57 +
58 +S="${WORKDIR}/glib-${PV}/gio/gdbus-2.0/codegen"
59 +
60 +python_prepare_all() {
61 + PATCHES=(
62 + "${FILESDIR}/${PN}-2.56.1-sitedir.patch"
63 + )
64 + distutils-r1_python_prepare_all
65 +
66 + sed -e 's:@PYTHON@:python:' gdbus-codegen.in > gdbus-codegen || die
67 + sed -e "s:@VERSION@:${PV}:" config.py.in > config.py || die
68 + cp "${FILESDIR}/setup.py-2.32.4" setup.py || die "cp failed"
69 + sed -e "s/@PV@/${PV}/" -i setup.py || die "sed setup.py failed"
70 +}
71 +
72 +do_xsltproc_command() {
73 + # Taken from meson.build for manual manpage building - keep in sync (also copied to dev-util/glib-utils)
74 + xsltproc \
75 + --nonet \
76 + --stringparam man.output.quietly 1 \
77 + --stringparam funcsynopsis.style ansi \
78 + --stringparam man.th.extra1.suppress 1 \
79 + --stringparam man.authors.section.enabled 0 \
80 + --stringparam man.copyright.section.enabled 0 \
81 + -o "${2}" \
82 + http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl \
83 + "${1}" || die "manpage generation failed"
84 +}
85 +
86 +src_compile() {
87 + distutils-r1_src_compile
88 + do_xsltproc_command "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.xml" "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
89 +}
90 +
91 +src_test() {
92 + einfo "Skipping tests. This package is tested by dev-libs/glib"
93 + einfo "when merged with FEATURES=test"
94 +}
95 +
96 +python_install_all() {
97 + distutils-r1_python_install_all # no-op, but prevents QA warning
98 + doman "${WORKDIR}/glib-${PV}/docs/reference/gio/gdbus-codegen.1"
99 +}