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 6B944138334 for ; Thu, 26 Jul 2018 20:00:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50FDDE0946; Thu, 26 Jul 2018 20:00:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 031DCE0946 for ; Thu, 26 Jul 2018 20:00:44 +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 038B0335CA0 for ; Thu, 26 Jul 2018 20:00:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29862389 for ; Thu, 26 Jul 2018 20:00:41 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1532635229.dacc2876210a48f65a0f8db6e838b290e6d7873f.vdupras@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/olefile-0.45.1.ebuild X-VCS-Directories: dev-python/olefile/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: dacc2876210a48f65a0f8db6e838b290e6d7873f X-VCS-Branch: master Date: Thu, 26 Jul 2018 20:00:41 +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: dda9fcb6-3850-48f5-bf28-6fea3bb6adfd X-Archives-Hash: f3f72e42e22e50de45a71c90e3ea7ca9 commit: dacc2876210a48f65a0f8db6e838b290e6d7873f Author: Virgil Dupras gentoo org> AuthorDate: Thu Jul 26 20:00:29 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Thu Jul 26 20:00:29 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dacc2876 dev-python/olefile: bump to 0.45.1 * EAPI 7 * Add python3_7 * Drop python3_4 Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/olefile/Manifest | 1 + dev-python/olefile/olefile-0.45.1.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-python/olefile/Manifest b/dev-python/olefile/Manifest index c3ee87e8b99..765ba6aebf6 100644 --- a/dev-python/olefile/Manifest +++ b/dev-python/olefile/Manifest @@ -1 +1,2 @@ DIST olefile-0.44.tar.gz 57903 BLAKE2B 2df4078c147ff737b845fe4ca57b6520c39776efe6bac399b0b8acb4ca62f946a653f85ad0511f5fa42d8b544d539474d226fe144bc2604737f3b16e5edd5ff2 SHA512 92b6ad1bced5b2c8e5332a01e5a2e59527ec2303046d0babd665b0f02fe56966574eff56619de168c50f1ea40df2e61ce589ee61b634222146d049b129514c65 +DIST v0.45.1.tar.gz 97969 BLAKE2B 246198e69cde316f24a183fdf07872edf9b1db2a168571eedb7efdb91166d4ad2658acaaa90e733950e437ef5c6ab8d1bb275cd1b24283b95497e254a39c9b26 SHA512 72d40056cac1d9566aa8e32b7b5484f61958a689130e71fa86bc0b9fed98f27a8cf34b824971357d42ec3dfd2d5bfa86d0f212727ff91d8daa3967969ff576e9 diff --git a/dev-python/olefile/olefile-0.45.1.ebuild b/dev-python/olefile/olefile-0.45.1.ebuild new file mode 100644 index 00000000000..73a28b8fd2c --- /dev/null +++ b/dev-python/olefile/olefile-0.45.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} ) + +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}/archive/v${PV}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc" + +RDEPEND="" +BDEPEND=" + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +python_compile_all() { + if use doc; then + emake -C doc html + HTML_DOCS=( doc/_build/html/. ) + fi + +}