Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/gnome-bluetooth/
Date: Sat, 20 Apr 2019 23:26:14
Message-Id: 1555670377.35e4cf8873a9bed82f142388c5a993d1a4efd40d.leio@gentoo
1 commit: 35e4cf8873a9bed82f142388c5a993d1a4efd40d
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 19 10:39:13 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 19 10:39:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35e4cf88
7
8 net-wireless/gnome-bluetooth: security cleanup
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 net-wireless/gnome-bluetooth/Manifest | 1 -
14 .../gnome-bluetooth/gnome-bluetooth-3.20.1.ebuild | 73 ----------------------
15 2 files changed, 74 deletions(-)
16
17 diff --git a/net-wireless/gnome-bluetooth/Manifest b/net-wireless/gnome-bluetooth/Manifest
18 index fa6ba8bc1a5..c1827ae2fea 100644
19 --- a/net-wireless/gnome-bluetooth/Manifest
20 +++ b/net-wireless/gnome-bluetooth/Manifest
21 @@ -1,2 +1 @@
22 -DIST gnome-bluetooth-3.20.1.tar.xz 615880 BLAKE2B 4b578bc7d1bf1d700f57117202e5f6461e1ace972f6922425a012eb1bcf96c7e511222a1dbd344469e0db96142d4da99face54e07d7359e28e20234d7766a70c SHA512 945dde99c6531e369702dea22e60f5b05759d751b16b091fc67c256e949cee8153f60ac7ad616c086366a0141b263b068fad28bab4b50b84356d59b4e464d88a
23 DIST gnome-bluetooth-3.28.2.tar.xz 349456 BLAKE2B 24a8adbbd37a6a7338a10bb84fd113c3a65bb9c5ef277c9df082f10f52b9d9dc2bc3ff6182993fd85fb5f5f8269a965f0aba864f73ed8595a700a51e59242fc1 SHA512 03f66f8c5c195b10cf2c13dc93191b9f2f79adae099ddb8037ef1277731f37b8f0a42b603e8aacbe2fb108be6abf7a77a823d86d5fac62a42a53e3498d53d87e
24
25 diff --git a/net-wireless/gnome-bluetooth/gnome-bluetooth-3.20.1.ebuild b/net-wireless/gnome-bluetooth/gnome-bluetooth-3.20.1.ebuild
26 deleted file mode 100644
27 index 6777d42e513..00000000000
28 --- a/net-wireless/gnome-bluetooth/gnome-bluetooth-3.20.1.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -inherit gnome2 udev user
36 -
37 -DESCRIPTION="Bluetooth graphical utilities integrated with GNOME"
38 -HOMEPAGE="https://wiki.gnome.org/Projects/GnomeBluetooth"
39 -
40 -LICENSE="GPL-2+ LGPL-2.1+ FDL-1.1+"
41 -SLOT="2/13" # subslot = libgnome-bluetooth soname version
42 -IUSE="debug +introspection"
43 -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
44 -
45 -COMMON_DEPEND="
46 - >=dev-libs/glib-2.38:2
47 - media-libs/libcanberra[gtk3]
48 - >=x11-libs/gtk+-3.12:3[introspection?]
49 - x11-libs/libnotify
50 - virtual/udev
51 - introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
52 -"
53 -RDEPEND="${COMMON_DEPEND}
54 - >=net-wireless/bluez-5
55 -"
56 -DEPEND="${COMMON_DEPEND}
57 - !net-wireless/bluez-gnome
58 - app-text/docbook-xml-dtd:4.1.2
59 - dev-libs/libxml2:2
60 - dev-util/gdbus-codegen
61 - dev-util/glib-utils
62 - >=dev-util/gtk-doc-am-1.9
63 - >=dev-util/intltool-0.40.0
64 - virtual/libudev
65 - virtual/pkgconfig
66 - x11-base/xorg-proto
67 -"
68 -# eautoreconf needs:
69 -# gnome-base/gnome-common
70 -
71 -pkg_setup() {
72 - enewgroup plugdev
73 -}
74 -
75 -src_prepare() {
76 - # Regenerate gdbus-codegen files to allow using any glib version; bug #436236
77 - # https://bugzilla.gnome.org/show_bug.cgi?id=758096
78 - rm -v lib/bluetooth-client-glue.{c,h} || die
79 - gnome2_src_prepare
80 -}
81 -
82 -src_configure() {
83 - gnome2_src_configure \
84 - $(usex debug --enable-debug=yes ' ') \
85 - $(use_enable introspection) \
86 - --enable-documentation \
87 - --disable-desktop-update \
88 - --disable-icon-update \
89 - --disable-static
90 -}
91 -
92 -src_install() {
93 - gnome2_src_install
94 - udev_dorules "${FILESDIR}"/61-${PN}.rules
95 -}
96 -
97 -pkg_postinst() {
98 - gnome2_pkg_postinst
99 - if ! has_version sys-auth/consolekit[acl] && ! has_version sys-apps/systemd[acl] ; then
100 - elog "Don't forget to add yourself to the plugdev group "
101 - elog "if you want to be able to control bluetooth transmitter."
102 - fi
103 -}