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 C29C658973 for ; Mon, 25 Jan 2016 08:31:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8562E08CE; Mon, 25 Jan 2016 08:31:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2B484E08CE for ; Mon, 25 Jan 2016 08:31:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 18C2233D3C7 for ; Mon, 25 Jan 2016 08:31:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 320BD10BE for ; Mon, 25 Jan 2016 08:31:02 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1453708176.7a89ba55e2b965e05cfd67747033cfb7e8b45123.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/send2trash/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/send2trash/Manifest dev-python/send2trash/send2trash-1.3.0.ebuild X-VCS-Directories: dev-python/send2trash/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 7a89ba55e2b965e05cfd67747033cfb7e8b45123 X-VCS-Branch: master Date: Mon, 25 Jan 2016 08:31:02 +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: db725d3a-e6f6-4c4f-9318-18a12bfeadbb X-Archives-Hash: e168ff053f03ac3ef6517381a0ed33d0 commit: 7a89ba55e2b965e05cfd67747033cfb7e8b45123 Author: Justin Lecher gentoo org> AuthorDate: Mon Jan 25 07:49:36 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Jan 25 07:49:36 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a89ba55 dev-python/send2trash: Add python3.5 support Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> dev-python/send2trash/Manifest | 2 +- dev-python/send2trash/send2trash-1.3.0.ebuild | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/dev-python/send2trash/Manifest b/dev-python/send2trash/Manifest index 379e272..471fe47 100644 --- a/dev-python/send2trash/Manifest +++ b/dev-python/send2trash/Manifest @@ -1 +1 @@ -DIST send2trash-1.3.0.tar.gz 5563 SHA256 33f4461eae831eb09a21b70ca202c2a6dfd83db6bafa1e1ca11b5001e22c58fe SHA512 d308dd06ef7a11ad7bcb5d9195fb52aa0c0b8e76590ef11b1576d14815501c32c48b96167eb0a325e4f27d0dbf77f41c012a128d30c8f05d9d5ebec9967e21f3 WHIRLPOOL 15d286964183ad44ae51dfed29aa97456d5460b68fd176dd021f7d093d8e6e213818df2fd4346554601b5f87ea1f95727248544e2e78094f696dd7d50d0e89cf +DIST Send2Trash-1.3.0.tar.gz 5563 SHA256 33f4461eae831eb09a21b70ca202c2a6dfd83db6bafa1e1ca11b5001e22c58fe SHA512 d308dd06ef7a11ad7bcb5d9195fb52aa0c0b8e76590ef11b1576d14815501c32c48b96167eb0a325e4f27d0dbf77f41c012a128d30c8f05d9d5ebec9967e21f3 WHIRLPOOL 15d286964183ad44ae51dfed29aa97456d5460b68fd176dd021f7d093d8e6e213818df2fd4346554601b5f87ea1f95727248544e2e78094f696dd7d50d0e89cf diff --git a/dev-python/send2trash/send2trash-1.3.0.ebuild b/dev-python/send2trash/send2trash-1.3.0.ebuild index e27f139..cc38add 100644 --- a/dev-python/send2trash/send2trash-1.3.0.ebuild +++ b/dev-python/send2trash/send2trash-1.3.0.ebuild @@ -1,18 +1,22 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{3,4} pypy ) +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy ) inherit distutils-r1 MY_PN="Send2Trash" +MY_P="${MY_PN}-${PV}" DESCRIPTION="Sends files to the Trash (or Recycle Bin)" -HOMEPAGE="http://hg.hardcoded.net/send2trash https://pypi.python.org/pypi/Send2Trash https://github.com/hsoft/send2trash" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE=" + http://hg.hardcoded.net/send2trash + https://pypi.python.org/pypi/Send2Trash + https://github.com/hsoft/send2trash" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" SLOT="0" LICENSE="BSD" @@ -23,4 +27,4 @@ RDEPEND="" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" -S="${WORKDIR}"/${MY_PN}-${PV} +S="${WORKDIR}"/${MY_P}