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 8EF95138334 for ; Sat, 3 Nov 2018 14:04:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9B7DE09D4; Sat, 3 Nov 2018 14:04:32 +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 80729E09D4 for ; Sat, 3 Nov 2018 14:04:32 +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 EDA9B335C95 for ; Sat, 3 Nov 2018 14:04:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D549431 for ; Sat, 3 Nov 2018 14:04:29 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1541253866.e840a059eb9f05319b6bc22d9891151617ea6475.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/redo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/redo/Manifest dev-util/redo/metadata.xml dev-util/redo/redo-0.21.ebuild X-VCS-Directories: dev-util/redo/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: e840a059eb9f05319b6bc22d9891151617ea6475 X-VCS-Branch: master Date: Sat, 3 Nov 2018 14:04: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: aeff6fbc-dcf6-4700-aafd-fd451972945a X-Archives-Hash: 15c28414d24199f680b5fd245d77ea4a commit: e840a059eb9f05319b6bc22d9891151617ea6475 Author: Jeroen Roovers gentoo org> AuthorDate: Sat Nov 3 12:57:06 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Nov 3 14:04:26 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e840a059 dev-util/redo: Initial commit Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Jeroen Roovers gentoo.org> dev-util/redo/Manifest | 1 + dev-util/redo/metadata.xml | 11 +++++++++++ dev-util/redo/redo-0.21.ebuild | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) diff --git a/dev-util/redo/Manifest b/dev-util/redo/Manifest new file mode 100644 index 00000000000..003b5ce4511 --- /dev/null +++ b/dev-util/redo/Manifest @@ -0,0 +1 @@ +DIST redo-0.21.tar.gz 87347 BLAKE2B 1d97f6b4f862e61f9074d0dd57293b3ab61a4f3f26781b242450bd1e194b941a8a169767739ddfffd0a8d721a95229637e8c6d9083d2c67d664b19551db0bc6d SHA512 8fe9ba0a5b0b4bf9073456a4b4fa7bebcb51ceb4fb06a16dd671fc48ba480f2ee4ba1eae48cebc3c15687de43833324eb6f98642843be71ab7aa2fe471ab7958 diff --git a/dev-util/redo/metadata.xml b/dev-util/redo/metadata.xml new file mode 100644 index 00000000000..cb9c806b559 --- /dev/null +++ b/dev-util/redo/metadata.xml @@ -0,0 +1,11 @@ + + + + +jer@gentoo.org + + +Smaller, easier, more powerful, and more reliable than make. An implementation +of djb's redo. + + diff --git a/dev-util/redo/redo-0.21.ebuild b/dev-util/redo/redo-0.21.ebuild new file mode 100644 index 00000000000..a109d053e05 --- /dev/null +++ b/dev-util/redo/redo-0.21.ebuild @@ -0,0 +1,34 @@ +# Copyright 2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="sqlite" +inherit multilib python-single-r1 + +DESCRIPTION="Smaller, easier, more powerful, and more reliable than make" +HOMEPAGE="https://github.com/apenwarr/redo" +SRC_URI="${HOMEPAGE}/archive/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" +DEPEND=" + dev-python/beautifulsoup[${PYTHON_USEDEP}] + dev-python/markdown[${PYTHON_USEDEP}] +" +S=${WORKDIR}/${PN}-${P} + +src_install() { + emake \ + DESTDIR="${D}" \ + DOCDIR="${D}/usr/share/doc/${PF}" \ + LIBDIR="${D}/usr/$(get_libdir)/${PN}" \ + install + + python_fix_shebang "${D}" + + sed -i \ + -e 's|/lib/|/'"$(get_libdir)"'/|g' \ + "${D}"/usr/bin/* || die +}