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 53D371381F3 for ; Sun, 21 Jul 2013 11:17:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FDFAE08E0; Sun, 21 Jul 2013 11:17:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0F74E08DC for ; Sun, 21 Jul 2013 11:17:01 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E040C33E948 for ; Sun, 21 Jul 2013 11:17:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 790D3E545F for ; Sun, 21 Jul 2013 11:16:59 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1374405422.57fb677dd97d782792977160f66b4a9568757626.mgorny@gentoo> Subject: [gentoo-commits] dev/mgorny:master commit in: dev-python/pypy-binpackage/ X-VCS-Repository: dev/mgorny X-VCS-Files: dev-python/pypy-binpackage/pypy-binpackage-2.0.2.ebuild X-VCS-Directories: dev-python/pypy-binpackage/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 57fb677dd97d782792977160f66b4a9568757626 X-VCS-Branch: master Date: Sun, 21 Jul 2013 11:16:59 +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: a9abcf6d-e69a-4172-aa67-7432bf06a9f4 X-Archives-Hash: 72d3675af03de681768e289185f51cfb commit: 57fb677dd97d782792977160f66b4a9568757626 Author: Michał Górny gentoo org> AuthorDate: Sun Jul 21 11:17:02 2013 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 21 11:17:02 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=57fb677d dev-python/pypy-binpackage: Remove --thread and doc-build. Add ARCH to filename. Package-Manager: portage-2.2.0_alpha188 --- dev-python/pypy-binpackage/pypy-binpackage-2.0.2.ebuild | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/dev-python/pypy-binpackage/pypy-binpackage-2.0.2.ebuild b/dev-python/pypy-binpackage/pypy-binpackage-2.0.2.ebuild index e8fa0fc..40f0a66 100644 --- a/dev-python/pypy-binpackage/pypy-binpackage-2.0.2.ebuild +++ b/dev-python/pypy-binpackage/pypy-binpackage-2.0.2.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://bitbucket/pypy/pypy/downloads/${MY_P}-src.tar.bz2" LICENSE="MIT" SLOT=$(get_version_component_range 1-2 ${PV}) KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="bzip2 doc +jit ncurses sandbox shadowstack ssl" +IUSE="bzip2 +jit ncurses sandbox shadowstack ssl" DEPEND=">=sys-libs/zlib-1.1.3 virtual/libffi @@ -61,7 +61,6 @@ src_compile() { $(usex shadowstack --gcrootfinder=shadowstack '') $(usex sandbox --sandbox '') - --thread --make-jobs=$(makeopts_jobs) pypy/goal/targetpypystandalone @@ -87,13 +86,11 @@ src_compile() { set -- "${PYTHON}" rpython/bin/rpython --batch "${args[@]}" echo -e "\033[1m${@}\033[0m" "${@}" || die "compile error" - - use doc && emake -C pypy/doc/ html } src_install() { local flags=( bzip2 jit ncurses sandbox shadowstack ssl ) - local f suffix='' + local f suffix="-${ARCH}" for f in ${flags[@]}; do use ${f} && suffix+="+${f}" @@ -109,14 +106,6 @@ src_install() { tar -cf "${BIN_P}${suffix}.tar" "${BIN_P}${suffix}" || die xz -vz9 "${BIN_P}${suffix}.tar" || die - if use doc; then - einfo "Zipping docs ..." - mv pypy/doc/_build/html/ ${BIN_P}-doc || die - - tar -cf ${BIN_P}-doc.tar ${BIN_P}-doc || die - xz -vz9 ${BIN_P}-doc.tar || die - fi - insinto /tmp doins *.tar.xz }