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 9CDAE139694 for ; Tue, 11 Jul 2017 20:33:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 714F727417A; Tue, 11 Jul 2017 20:33:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E10527417A for ; Tue, 11 Jul 2017 20:33:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7127F341C24 for ; Tue, 11 Jul 2017 20:33:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91B9174B3 for ; Tue, 11 Jul 2017 20:33:44 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1499804415.c86f743a40ce02e82f70dd8ef115cb9eee93c0f9.bicatali@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/olefile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/olefile/Manifest dev-python/olefile/metadata.xml dev-python/olefile/olefile-0.44.ebuild X-VCS-Directories: dev-python/olefile/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: c86f743a40ce02e82f70dd8ef115cb9eee93c0f9 X-VCS-Branch: master Date: Tue, 11 Jul 2017 20:33:44 +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: 066c655c-9fd9-458d-9a6a-f1b5a6e4c63a X-Archives-Hash: a4c249b956da9c47a5a1924c031af70a commit: c86f743a40ce02e82f70dd8ef115cb9eee93c0f9 Author: Sébastien Fabbro gentoo org> AuthorDate: Tue Jul 11 18:22:05 2017 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Tue Jul 11 20:20:15 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c86f743a dev-python/olefile: initial import, needed for dev-python/pillow Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-python/olefile/Manifest | 1 + dev-python/olefile/metadata.xml | 12 ++++++++++++ dev-python/olefile/olefile-0.44.ebuild | 29 +++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-python/olefile/Manifest b/dev-python/olefile/Manifest new file mode 100644 index 00000000000..ccefb55d7f7 --- /dev/null +++ b/dev-python/olefile/Manifest @@ -0,0 +1 @@ +DIST olefile-0.44.tar.gz 57903 SHA256 021fbed5c539881d7f1360fb27e942fdfa7c78006bed39e6cd6f3dd9e7bd68da SHA512 92b6ad1bced5b2c8e5332a01e5a2e59527ec2303046d0babd665b0f02fe56966574eff56619de168c50f1ea40df2e61ce589ee61b634222146d049b129514c65 WHIRLPOOL 518a1a29fd3390f816db85a2de4918aa2f81b9d6402faf1c6b410c88a13402139e560d3564da60c75bfd6eba93f5351d8d69581b5e643d259fb421edae9a18e6 diff --git a/dev-python/olefile/metadata.xml b/dev-python/olefile/metadata.xml new file mode 100644 index 00000000000..f67f501f4ef --- /dev/null +++ b/dev-python/olefile/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + Python + + + olefile + python-imaging/Pillow + + diff --git a/dev-python/olefile/olefile-0.44.ebuild b/dev-python/olefile/olefile-0.44.ebuild new file mode 100644 index 00000000000..5770e4e1899 --- /dev/null +++ b/dev-python/olefile/olefile-0.44.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_{3,4,5,6}} ) + +inherit distutils-r1 + +DESCRIPTION="Python package to parse, read and write Microsoft OLE2 files" +HOMEPAGE="https://www.decalage.info/olefile" +SRC_URI="https://github.com/decalage2/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc" + +RDEPEND="" +DEPEND="${RDEPEND} + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +python_compile_all() { + if use doc; then + emake -C doc html + HTML_DOCS=( doc/_build/html/. ) + fi + +}