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 32F681392EF for ; Mon, 30 Jun 2014 04:27:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17498E0972; Mon, 30 Jun 2014 04:27:32 +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 A0A2BE0972 for ; Mon, 30 Jun 2014 04:27:31 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A04193402FB for ; Mon, 30 Jun 2014 04:27:30 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2304) id 6BDA12004E; Mon, 30 Jun 2014 04:27:29 +0000 (UTC) From: "Mike Gilbert (floppym)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, floppym@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/pysam: pysam-0.6-r1.ebuild ChangeLog pysam-0.6.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: pysam-0.6-r1.ebuild ChangeLog pysam-0.6.ebuild X-VCS-Directories: sci-biology/pysam X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140630042729.6BDA12004E@flycatcher.gentoo.org> Date: Mon, 30 Jun 2014 04:27: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: 999cac4b-a749-4849-83d3-323c09850e7c X-Archives-Hash: d758eb99af086c391488b744462289d4 floppym 14/06/30 04:27:29 Modified: ChangeLog Added: pysam-0.6-r1.ebuild Removed: pysam-0.6.ebuild Log: Convert to distutils-r1. Depend on setuptools. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4) Revision Changes Path 1.4 sci-biology/pysam/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/pysam/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/pysam/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/pysam/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-biology/pysam/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 11 Mar 2013 16:50:14 -0000 1.3 +++ ChangeLog 30 Jun 2014 04:27:29 -0000 1.4 @@ -1,6 +1,12 @@ # ChangeLog for sci-biology/pysam -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/pysam/ChangeLog,v 1.3 2013/03/11 16:50:14 jlec Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/pysam/ChangeLog,v 1.4 2014/06/30 04:27:29 floppym Exp $ + +*pysam-0.6-r1 (30 Jun 2014) + + 30 Jun 2014; Mike Gilbert +pysam-0.6-r1.ebuild, + -pysam-0.6.ebuild: + Convert to distutils-r1. Depend on setuptools. 11 Mar 2013; Justin Lecher metadata.xml: Drop Andrey as maintainer so that bugs get assigned to sci-biology directly @@ -13,4 +19,3 @@ 29 Jan 2012; Andrey Kislyuk +pysam-0.6.ebuild, +metadata.xml: New package, ebuild written by me - 1.1 sci-biology/pysam/pysam-0.6-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/pysam/pysam-0.6-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/pysam/pysam-0.6-r1.ebuild?rev=1.1&content-type=text/plain Index: pysam-0.6-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-biology/pysam/pysam-0.6-r1.ebuild,v 1.1 2014/06/30 04:27:29 floppym Exp $ EAPI="5" PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 DESCRIPTION="Python interface for the SAM/BAM sequence alignment and mapping format" HOMEPAGE="http://code.google.com/p/pysam http://pypi.python.org/pypi/pysam" SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" python_compile() { python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" distutils-r1_python_compile }