From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5DFF11381F3 for ; Sat, 4 May 2013 16:29:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2B9EE083A; Sat, 4 May 2013 16:29:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86C89E083A for ; Sat, 4 May 2013 16:29:31 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A9B4833DED6 for ; Sat, 4 May 2013 16:29:30 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2326) id 73CE52171D; Sat, 4 May 2013 16:29:29 +0000 (UTC) From: "Richard Farina (zerochaos)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, zerochaos@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-wireless/rfkill: rfkill-0.5.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: rfkill-0.5.ebuild ChangeLog X-VCS-Directories: net-wireless/rfkill X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130504162929.73CE52171D@flycatcher.gentoo.org> Date: Sat, 4 May 2013 16:29:29 +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: ac1ad386-6085-4378-8f03-c53bfe415571 X-Archives-Hash: 34960bd4b6f5ca16652f2ef7b293289c zerochaos 13/05/04 16:29:29 Modified: ChangeLog Added: rfkill-0.5.ebuild Log: new NFC support (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key DD11F94A) Revision Changes Path 1.15 net-wireless/rfkill/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/rfkill/ChangeLog?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/rfkill/ChangeLog?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/rfkill/ChangeLog?r1=1.14&r2=1.15 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-wireless/rfkill/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ChangeLog 2 Feb 2013 04:36:16 -0000 1.14 +++ ChangeLog 4 May 2013 16:29:29 -0000 1.15 @@ -1,6 +1,11 @@ # ChangeLog for net-wireless/rfkill # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/rfkill/ChangeLog,v 1.14 2013/02/02 04:36:16 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/rfkill/ChangeLog,v 1.15 2013/05/04 16:29:29 zerochaos Exp $ + +*rfkill-0.5 (04 May 2013) + + 04 May 2013; Rick Farina +rfkill-0.5.ebuild: + new NFC support 02 Feb 2013; Rick Farina rfkill-0.4.ebuild: upstream moved locations, and I prefer XZ while we are at it 1.1 net-wireless/rfkill/rfkill-0.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/rfkill/rfkill-0.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/rfkill/rfkill-0.5.ebuild?rev=1.1&content-type=text/plain Index: rfkill-0.5.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-wireless/rfkill/rfkill-0.5.ebuild,v 1.1 2013/05/04 16:29:29 zerochaos Exp $ EAPI=5 inherit toolchain-funcs DESCRIPTION="Tool to read and control rfkill status through /dev/rfkill" HOMEPAGE="http://wireless.kernel.org/en/users/Documentation/rfkill" SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${P}.tar.xz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~arm ~mips ~x86" IUSE="" RDEPEND="" DEPEND="" CC=$(tc-getCC) LD=$(tc-getLD) src_compile() { emake V=1 || die "Failed to compile" } src_install() { emake install V=1 DESTDIR="${D}" || die "Failed to install" }