public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gnome:master commit in: net-wireless/bluez/
@ 2013-12-18 22:49 Gilles Dartiguelongue
  0 siblings, 0 replies; 3+ messages in thread
From: Gilles Dartiguelongue @ 2013-12-18 22:49 UTC (permalink / raw
  To: gentoo-commits

commit:     dc5a07a5c1294d6adb61a22607500ee936077c27
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 18 22:34:36 2013 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Wed Dec 18 22:49:06 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=dc5a07a5

net-wireless/bluez: re-add keywords

bluez-5 most likely did not break compatibility with these arches and
for now it hides other problem with repoman checking in the overlay.

---
 net-wireless/bluez/bluez-5.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/bluez/bluez-5.12.ebuild b/net-wireless/bluez/bluez-5.12.ebuild
index 2cc5963..ef12ea2 100644
--- a/net-wireless/bluez/bluez-5.12.ebuild
+++ b/net-wireless/bluez/bluez-5.12.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0/3"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="cups debug obex readline selinux systemd test"
 REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: net-wireless/bluez/
@ 2013-12-24 16:56 Gilles Dartiguelongue
  0 siblings, 0 replies; 3+ messages in thread
From: Gilles Dartiguelongue @ 2013-12-24 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     725058e4ff3a6c3f34f8d19ba2b2a44d653c64a7
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 23 23:08:59 2013 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Mon Dec 23 23:08:59 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=725058e4

net-wireless/bluez: moved to gentoo-x86

---
 net-wireless/bluez/bluez-5.12.ebuild | 130 -----------------------------------
 1 file changed, 130 deletions(-)

diff --git a/net-wireless/bluez/bluez-5.12.ebuild b/net-wireless/bluez/bluez-5.12.ebuild
deleted file mode 100644
index ef12ea2..0000000
--- a/net-wireless/bluez/bluez-5.12.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
-
-inherit eutils multilib python-any-r1 readme.gentoo systemd udev user
-
-DESCRIPTION="Bluetooth Tools and System Daemons for Linux"
-HOMEPAGE="http://www.bluez.org"
-SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0/3"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
-IUSE="cups debug obex readline selinux systemd test"
-REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-	>=dev-libs/glib-2.28:2
-	>=sys-apps/dbus-1.6:=
-	>=sys-apps/hwids-20121202.2
-	>=virtual/udev-171
-	cups? ( net-print/cups:= )
-	obex? ( dev-libs/libical )
-	readline? ( sys-libs/readline:= )
-	selinux? ( sec-policy/selinux-bluetooth )
-	systemd? ( sys-apps/systemd )
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	test? (
-		${PYTHON_DEPS}
-		>=dev-python/dbus-python-1
-		dev-python/pygobject:2
-		dev-python/pygobject:3
-	)
-"
-
-DOC_CONTENTS="
-	If you want to use rfcomm as a normal user, you need to add the user
-	to the uucp group.
-"
-
-pkg_setup() {
-	enewgroup plugdev
-	use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
-	# Use static group "plugdev" if there is no ConsoleKit (or systemd logind)
-	epatch "${FILESDIR}"/bluez-plugdev.patch
-
-	if use cups; then
-		sed -i \
-			-e "s:cupsdir = \$(libdir)/cups:cupsdir = `cups-config --serverbin`:" \
-			Makefile.{in,tools} || die
-	fi
-}
-
-src_configure() {
-	# readline is automagic when client is enabled
-	export ac_cv_header_readline_readline_h=$(usex readline)
-
-	# Missing flags: experimental (sap, nfc, ...)
-	# Keep this in ./configure --help order!
-	econf \
-		--localstatedir=/var \
-		--enable-optimization \
-		$(use_enable debug) \
-		--enable-pie \
-		--enable-threads \
-		--enable-library \
-		$(use_enable test) \
-		--enable-tools \
-		--enable-monitor \
-		--enable-udev \
-		$(use_enable cups) \
-		--enable-obex \
-		--enable-client \
-		$(use_enable systemd) \
-		$(systemd_with_unitdir) \
-		--enable-sixaxis
-}
-
-src_install() {
-	default
-	prune_libtool_files --modules
-
-	keepdir /var/lib/bluetooth
-
-	# Unittests are not that useful once installed
-	if use test ; then
-		rm -r "${ED}"/usr/$(get_libdir)/bluez/test || die
-	fi
-
-	insinto /etc/bluetooth
-	local d
-	for d in input network proximity; do
-		doins profiles/${d}/${d}.conf
-	done
-
-	doins src/main.conf
-	doins src/bluetooth.conf
-
-	insinto /usr/share/dbus-1/system-services
-	doins src/org.bluez.service
-
-	newinitd "${FILESDIR}"/bluetooth-init.d-r3 bluetooth
-	newinitd "${FILESDIR}"/rfcomm-init.d rfcomm
-	newconfd "${FILESDIR}"/rfcomm-conf.d rfcomm
-
-	readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-	readme.gentoo_print_elog
-
-	udev_reload
-
-	has_version net-dialup/ppp || elog "To use dial up networking you must install net-dialup/ppp."
-
-	if ! has_version sys-auth/consolekit && ! has_version sys-apps/systemd; then
-		elog "Since you don't have sys-auth/consolekit neither sys-apps/systemd, you will only"
-		elog "be able to run bluetooth clients as root. If you want to be able to run bluetooth clientes as"
-		elog "a regular user, you need to enable the consolekit use flag for this package or"
-		elog "to add the user to the plugdev group."
-	fi
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: net-wireless/bluez/
@ 2013-12-15 22:21 Gilles Dartiguelongue
  0 siblings, 0 replies; 3+ messages in thread
From: Gilles Dartiguelongue @ 2013-12-15 22:21 UTC (permalink / raw
  To: gentoo-commits

commit:     596bec350699e3e805b68e9b4b39b07a118db679
Author:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 22:19:53 2013 +0000
Commit:     Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 22:19:53 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=596bec35

net-wireless/bluez: 5.11 → 5.12

* Build system takes care of installing udev rule by itself.
* Switch manuel udev reload rules by eclass call.
* Add subslot.

---
 net-wireless/bluez/{bluez-5.11.ebuild => bluez-5.12.ebuild} | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/net-wireless/bluez/bluez-5.11.ebuild b/net-wireless/bluez/bluez-5.12.ebuild
similarity index 93%
rename from net-wireless/bluez/bluez-5.11.ebuild
rename to net-wireless/bluez/bluez-5.12.ebuild
index 4cd2cd5..2cc5963 100644
--- a/net-wireless/bluez/bluez-5.11.ebuild
+++ b/net-wireless/bluez/bluez-5.12.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.bluez.org"
 SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
 
 LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
+SLOT="0/3"
 KEYWORDS="~amd64"
 IUSE="cups debug obex readline selinux systemd test"
 REQUIRED_USE="test? ( ${PYTHON_REQUIRED_USE} )"
@@ -80,7 +80,8 @@ src_configure() {
 		--enable-obex \
 		--enable-client \
 		$(use_enable systemd) \
-		$(systemd_with_unitdir)
+		$(systemd_with_unitdir) \
+		--enable-sixaxis
 }
 
 src_install() {
@@ -103,7 +104,6 @@ src_install() {
 	doins src/main.conf
 	doins src/bluetooth.conf
 
-	# FIXME: dependent on systemd while nothing seems really tied to it
 	insinto /usr/share/dbus-1/system-services
 	doins src/org.bluez.service
 
@@ -111,15 +111,13 @@ src_install() {
 	newinitd "${FILESDIR}"/rfcomm-init.d rfcomm
 	newconfd "${FILESDIR}"/rfcomm-conf.d rfcomm
 
-	udev_newrules tools/hid2hci.rules 97-bluetooth-hid2hci.rules
-
 	readme.gentoo_create_doc
 }
 
 pkg_postinst() {
 	readme.gentoo_print_elog
 
-	udevadm control --reload-rules
+	udev_reload
 
 	has_version net-dialup/ppp || elog "To use dial up networking you must install net-dialup/ppp."
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-12-24 16:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-18 22:49 [gentoo-commits] proj/gnome:master commit in: net-wireless/bluez/ Gilles Dartiguelongue
  -- strict thread matches above, loose matches on Subject: below --
2013-12-24 16:56 Gilles Dartiguelongue
2013-12-15 22:21 Gilles Dartiguelongue

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox