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 013871395E2 for ; Sat, 3 Dec 2016 08:58:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DA76E0BFE; Sat, 3 Dec 2016 08:58:40 +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 11044E0BFE for ; Sat, 3 Dec 2016 08:58:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 EAB0F340AC7 for ; Sat, 3 Dec 2016 08:58:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DE8E24A2 for ; Sat, 3 Dec 2016 08:58:37 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1480755505.515f0865d762ee3b6f34aa65db85a91a8b1f3204.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-mobilephone/obexftp/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-mobilephone/obexftp/obexftp-0.24.ebuild X-VCS-Directories: app-mobilephone/obexftp/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 515f0865d762ee3b6f34aa65db85a91a8b1f3204 X-VCS-Branch: master Date: Sat, 3 Dec 2016 08:58:37 +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: a0bdb3ab-8ba6-4010-99b8-cfc343e1abf5 X-Archives-Hash: 72f42da858529aba90765c5e38f3aa52 commit: 515f0865d762ee3b6f34aa65db85a91a8b1f3204 Author: Hans de Graaff gentoo org> AuthorDate: Sat Dec 3 08:38:51 2016 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Dec 3 08:58:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=515f0865 app-mobilephone/obexftp: cleanup Package-Manager: portage-2.3.0 app-mobilephone/obexftp/obexftp-0.24.ebuild | 58 ----------------------------- 1 file changed, 58 deletions(-) diff --git a/app-mobilephone/obexftp/obexftp-0.24.ebuild b/app-mobilephone/obexftp/obexftp-0.24.ebuild deleted file mode 100644 index 4cdecc6..00000000 --- a/app-mobilephone/obexftp/obexftp-0.24.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_4} ) -inherit cmake-utils python-single-r1 python-utils-r1 eutils multilib - -DESCRIPTION="File transfer over OBEX for mobile phones" -HOMEPAGE="http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp" -SRC_URI="mirror://sourceforge/openobex/${P}-Source.tar.gz" -SLOT="0" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" -IUSE="bluetooth perl python ruby tcl" - -RDEPEND=" - >=dev-libs/openobex-1.7 - bluetooth? ( net-wireless/bluez ) - perl? ( dev-lang/perl:= ) - python? ( ${PYTHON_DEPS} ) - ruby? ( || ( dev-lang/ruby:2.0 dev-lang/ruby:1.9 ) ) - tcl? ( dev-lang/tcl:0= ) -" -DEPEND=" - ${RDEPEND} - perl? ( dev-lang/swig ) - python? ( dev-lang/swig ) - ruby? ( dev-lang/swig ) - tcl? ( dev-lang/swig ) - virtual/pkgconfig -" - -S=${WORKDIR}/${P}-Source - -DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) - -PATCHES=( - "${FILESDIR}"/${PN}-0.23-gentoo.patch - "${FILESDIR}"/${PN}-0.24-config.patch - "${FILESDIR}"/${PN}-0.24-enable_bluetooth.patch - "${FILESDIR}"/${PN}-0.24-python_sitedir.patch -) - -src_configure() { - local mycmakeargs=( - -DENABLE_PERL=$(usex perl) - -DENABLE_BLUETOOTH=$(usex bluetooth) - -DENABLE_PYTHON=$(usex python) - $(usex python -DPYTHON_SITE_DIR=$(python_get_sitedir) '') - -DENABLE_RUBY=$(usex ruby) - -DENABLE_TCL=$(usex tcl) - ) - - cmake-utils_src_configure -}