Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/blueberry/
Date: Fri, 07 Jan 2022 05:15:16
Message-Id: 1641531930.673f9ffca5670706d807a4d984c94b32771ad970.sam@gentoo
1 commit: 673f9ffca5670706d807a4d984c94b32771ad970
2 Author: Olivier Laurantin <olivier.laurantin <AT> laposte <DOT> net>
3 AuthorDate: Fri Dec 31 09:38:27 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 7 05:05:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=673f9ffc
7
8 net-wireless/blueberry: version bump to 1.4.6
9
10 Update to latest upstream version
11
12 Package-Manager: Portage-3.0.28, Repoman-3.0.3
13 Signed-off-by: Olivier Laurantin <olivier.laurantin <AT> laposte.net>
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 net-wireless/blueberry/Manifest | 1 +
17 net-wireless/blueberry/blueberry-1.4.6.ebuild | 61 +++++++++++++++++++++++++++
18 2 files changed, 62 insertions(+)
19
20 diff --git a/net-wireless/blueberry/Manifest b/net-wireless/blueberry/Manifest
21 index 54e934943563..551a2dd2958b 100644
22 --- a/net-wireless/blueberry/Manifest
23 +++ b/net-wireless/blueberry/Manifest
24 @@ -1 +1,2 @@
25 DIST blueberry-1.4.2.tar.gz 1414169 BLAKE2B cd55e2bb572efb2badeab1667324df67c35f5833c53755c76c0793c07e8427c7d4714135014dad90aeaddc806c798f2b89960a051a15f668d214bb95cc0943e3 SHA512 5c2fb94e842cd1229682305f0054061724b958406ea15a64495ca418aa7da73c38b45ddc43c27a193aef995ab860cad985e3369e3dac53d2098463e6e4250493
26 +DIST blueberry-1.4.6.tar.gz 1415484 BLAKE2B 2b0a737d6e9e10f4f8502ab6af5e90b35e2eb651a48b431a0738cf06817ca49f12e9cdf6e0a3221b42370a00cca23c7da54d75c1f801968f1ee6d87dc3523590 SHA512 580b0a0434bb3c980158361a22ad0d8a502cb8b9c5d92adf4e97fdc28405bd5422709d4c605923371284457389f68aebce3e4599b7dd0c35866b65bb4fc2355a
27
28 diff --git a/net-wireless/blueberry/blueberry-1.4.6.ebuild b/net-wireless/blueberry/blueberry-1.4.6.ebuild
29 new file mode 100644
30 index 000000000000..d4077a454e74
31 --- /dev/null
32 +++ b/net-wireless/blueberry/blueberry-1.4.6.ebuild
33 @@ -0,0 +1,61 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python3_{8,9} )
40 +
41 +inherit gnome2-utils python-single-r1 xdg-utils
42 +
43 +DESCRIPTION="A Bluetooth configuration tool"
44 +HOMEPAGE="https://github.com/linuxmint/blueberry"
45 +SRC_URI="https://github.com/linuxmint/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="GPL-3"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE=""
51 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 +
53 +RDEPEND="${PYTHON_DEPS}
54 + $(python_gen_cond_dep '
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 + ')
60 + >=net-wireless/gnome-bluetooth-3.14[introspection]
61 + net-wireless/bluez[obex]
62 + net-wireless/bluez-tools
63 + || (
64 + >=sys-apps/util-linux-2.31_rc1
65 + net-wireless/rfkill
66 + )
67 + x11-libs/libnotify[introspection]
68 + x11-misc/wmctrl"
69 +DEPEND="${RDEPEND}"
70 +
71 +src_prepare() {
72 + default
73 + python_fix_shebang usr/lib
74 +}
75 +
76 +src_install() {
77 + doins -r etc
78 + exeinto /usr/bin
79 + doexe usr/bin/*
80 + exeinto /usr/lib/blueberry
81 + doexe usr/lib/blueberry/*
82 + insinto /usr
83 + doins -r usr/share
84 +}
85 +
86 +pkg_postinst() {
87 + gnome2_schemas_update
88 + xdg_icon_cache_update
89 +}
90 +
91 +pkg_postrm() {
92 + gnome2_schemas_update
93 + xdg_icon_cache_update
94 +}