From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 86DF51395E2 for ; Sat, 19 Nov 2016 16:03:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 867E3E0B10; Sat, 19 Nov 2016 16:03:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5E2F9E0B10 for ; Sat, 19 Nov 2016 16:03:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7E49341421 for ; Sat, 19 Nov 2016 16:03:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5002332 for ; Sat, 19 Nov 2016 16:03:21 +0000 (UTC) From: "Kristian Fiskerstrand" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kristian Fiskerstrand" Message-ID: <1479571394.5df1b83896bc3231c4fd933fada4cf186193a7c1.k_f@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/blueberry/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/blueberry/Manifest net-wireless/blueberry/blueberry-1.1.8.ebuild net-wireless/blueberry/metadata.xml X-VCS-Directories: net-wireless/blueberry/ X-VCS-Committer: k_f X-VCS-Committer-Name: Kristian Fiskerstrand X-VCS-Revision: 5df1b83896bc3231c4fd933fada4cf186193a7c1 X-VCS-Branch: master Date: Sat, 19 Nov 2016 16:03:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 84c3f5c0-2ad6-4fb7-9d0f-a5e6f8937e69 X-Archives-Hash: c5fc393cb769d4a6a1c39d4baebb9fa2 commit: 5df1b83896bc3231c4fd933fada4cf186193a7c1 Author: Kristian Fiskerstrand gentoo org> AuthorDate: Sat Nov 19 16:03:02 2016 +0000 Commit: Kristian Fiskerstrand gentoo org> CommitDate: Sat Nov 19 16:03:14 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df1b838 net-wireless/blueberry: New package Proxied maintained c.f Gentoo-Bug: 600236 Gentoo-Bug: 599690 Package-Manager: portage-2.3.2 net-wireless/blueberry/Manifest | 1 + net-wireless/blueberry/blueberry-1.1.8.ebuild | 54 +++++++++++++++++++++++++++ net-wireless/blueberry/metadata.xml | 15 ++++++++ 3 files changed, 70 insertions(+) diff --git a/net-wireless/blueberry/Manifest b/net-wireless/blueberry/Manifest new file mode 100644 index 00000000..10a2f4f --- /dev/null +++ b/net-wireless/blueberry/Manifest @@ -0,0 +1 @@ +DIST blueberry-1.1.8.tar.gz 1342620 SHA256 f794a278d1c58e7b1717da1b89bff0939c4ae47206b6917f335d1b19f7569f55 SHA512 e516294ad9a4c40dee3c1acad2a30d8110631fff9627b2212f0f3168e13e615ca0b44b93ee1da0adf99b0b858effdd61db2a4898000c5cf040d638746a45b1bc WHIRLPOOL ed527e7cfbd41ab8e128c072da251825d2db27347ec452b158efe0e9e766e866cd8a8c131849ef2d29872fac09d97644fcf18b9f7336a3e0e57ad09f90e92dad diff --git a/net-wireless/blueberry/blueberry-1.1.8.ebuild b/net-wireless/blueberry/blueberry-1.1.8.ebuild new file mode 100644 index 00000000..31214c6 --- /dev/null +++ b/net-wireless/blueberry/blueberry-1.1.8.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit eutils gnome2-utils python-single-r1 + +DESCRIPTION="A Bluetooth configuration tool" +HOMEPAGE="https://github.com/linuxmint/blueberry" +SRC_URI="https://github.com/linuxmint/blueberry/archive/${PV}.tar.gz -> ${PN}-${PV}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="${PYTHON_DEPS} + dev-python/pygobject:3[${PYTHON_USEDEP}] + >=net-wireless/gnome-bluetooth-3.14[introspection] + net-wireless/rfkill + x11-misc/wmctrl" +DEPEND="${RDEPEND}" + +src_prepare () { + sed -i 's@^#!.*python$@#!/usr/bin/python2@' usr/bin/blueberry{,-tray} || die + epatch_user +} + +src_install() { + doins -r etc + exeinto /usr/bin + doexe usr/bin/* + exeinto /usr/lib/blueberry + doexe usr/lib/blueberry/* + insinto /usr + doins -r usr/share +} + +pkg_preinst() { + gnome2_schemas_savelist + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_schemas_update + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_schemas_update + gnome2_icon_cache_update +} diff --git a/net-wireless/blueberry/metadata.xml b/net-wireless/blueberry/metadata.xml new file mode 100644 index 00000000..421cd2f --- /dev/null +++ b/net-wireless/blueberry/metadata.xml @@ -0,0 +1,15 @@ + + + + + olivier.laurantin@laposte.net + Olivier Laurantin + + + proxy-maint@gentoo.org + Proxy Maintainers + + + linuxmint/blueberry + +