Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/blueberry/
Date: Thu, 30 Jan 2020 06:33:43
Message-Id: 1580365987.02a3266b449476cf1fa67213c8126b5710c10cc0.juippis@gentoo
1 commit: 02a3266b449476cf1fa67213c8126b5710c10cc0
2 Author: Olivier Laurantin <olivier.laurantin <AT> laposte <DOT> net>
3 AuthorDate: Tue Jan 28 21:26:20 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 30 06:33:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02a3266b
7
8 net-wireless/blueberry: version bump
9
10 Update to the latest upstream version
11
12 Closes: https://bugs.gentoo.org/706016
13 Signed-off-by: Olivier Laurantin <olivier.laurantin <AT> laposte.net>
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 net-wireless/blueberry/Manifest | 1 +
17 net-wireless/blueberry/blueberry-1.3.4.ebuild | 63 +++++++++++++++++++++++++++
18 2 files changed, 64 insertions(+)
19
20 diff --git a/net-wireless/blueberry/Manifest b/net-wireless/blueberry/Manifest
21 index 68ed29c2618..2950875c6cd 100644
22 --- a/net-wireless/blueberry/Manifest
23 +++ b/net-wireless/blueberry/Manifest
24 @@ -1,2 +1,3 @@
25 DIST blueberry-1.1.13.tar.gz 1382261 BLAKE2B 5b23429243bc63d864f7176139a577cb5c8aea1f00906c218c66e92b9d679ad793f6429d01f9e49f960674b1ad5100d642075a730db49dd568282ea00089d8a3 SHA512 587165b33f087720f9ae72dfb37feda9c6c3e4c4ad166a5a410c078a63bea0d33182b781f8f0c7840575917d06faec752866009c9b3664241b7ca23ab1586b94
26 DIST blueberry-1.2.9.tar.gz 1402410 BLAKE2B 0b816d4ca812b18e00a88d0d5b9cd1d44086a29f656d56cb23eede9b7f5cf7380ecf802ebc04369d39cbff56912292bff10bf31724389ab4a33731d2ce61c822 SHA512 6119cc9a7e1c18db2110f568f9fc8717ff0cc1db5fa8794f95734229cc4ebbc658b9b19c9b545dabdcbfa56c4fe2c5631c5fe2e8675860645790bb1c67aaa8f6
27 +DIST blueberry-1.3.4.tar.gz 1410366 BLAKE2B a684c30b7457c4df8cc1f5449891cb43d0bc314692ad1d135377c861c669b0f4f8185396f39295268821ac6403dfd035201756dea4974f31066da766e36b559c SHA512 d5ca457ace0d46aab425b6821e690a94375de1222e90d0223afa97de5ce16f77089ba84b1b47a90e6494f34d3bd6824dbd6d2ff1e41e0b9be1d7bc9611abd6db
28
29 diff --git a/net-wireless/blueberry/blueberry-1.3.4.ebuild b/net-wireless/blueberry/blueberry-1.3.4.ebuild
30 new file mode 100644
31 index 00000000000..9eda79f9577
32 --- /dev/null
33 +++ b/net-wireless/blueberry/blueberry-1.3.4.ebuild
34 @@ -0,0 +1,63 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_COMPAT=( python3_{6,7} )
41 +
42 +inherit eutils gnome2-utils python-single-r1 xdg-utils
43 +
44 +DESCRIPTION="A Bluetooth configuration tool"
45 +HOMEPAGE="https://github.com/linuxmint/blueberry"
46 +SRC_URI="https://github.com/linuxmint/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
47 +
48 +LICENSE="GPL-3"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +IUSE=""
52 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
53 +
54 +RDEPEND="${PYTHON_DEPS}
55 + dev-python/dbus-python[${PYTHON_USEDEP}]
56 + dev-python/pygobject:3[${PYTHON_USEDEP}]
57 + dev-python/setproctitle[${PYTHON_USEDEP}]
58 + dev-python/xapp[${PYTHON_USEDEP}]
59 + >=net-wireless/gnome-bluetooth-3.14[introspection]
60 + net-wireless/bluez[obex]
61 + net-wireless/bluez-tools
62 + || (
63 + >=sys-apps/util-linux-2.31_rc1
64 + net-wireless/rfkill
65 + )
66 + x11-libs/libnotify[introspection]
67 + x11-misc/wmctrl"
68 +DEPEND="${RDEPEND}"
69 +
70 +src_prepare() {
71 + default
72 + python_fix_shebang usr/lib
73 +}
74 +
75 +src_install() {
76 + doins -r etc
77 + exeinto /usr/bin
78 + doexe usr/bin/*
79 + exeinto /usr/lib/blueberry
80 + doexe usr/lib/blueberry/*
81 + insinto /usr
82 + doins -r usr/share
83 +}
84 +
85 +pkg_preinst() {
86 + gnome2_schemas_savelist
87 +}
88 +
89 +pkg_postinst() {
90 + gnome2_schemas_update
91 + xdg_icon_cache_update
92 +}
93 +
94 +pkg_postrm() {
95 + gnome2_schemas_update
96 + xdg_icon_cache_update
97 +}