Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/waf/
Date: Sun, 27 Jan 2019 16:53:23
Message-Id: 1548607980.cd0c860960eaaf48d28a49544bcb5717d3b5296e.pacho@gentoo
1 commit: cd0c860960eaaf48d28a49544bcb5717d3b5296e
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 27 15:15:44 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 27 16:53:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd0c8609
7
8 dev-util/waf: Drop old
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-util/waf/Manifest | 1 -
14 dev-util/waf/waf-1.9.8.ebuild | 54 -------------------------------------------
15 2 files changed, 55 deletions(-)
16
17 diff --git a/dev-util/waf/Manifest b/dev-util/waf/Manifest
18 index fc7aa9e3a2a..4648e34df5d 100644
19 --- a/dev-util/waf/Manifest
20 +++ b/dev-util/waf/Manifest
21 @@ -1,2 +1 @@
22 DIST waf-1.9.14.tar.bz2 631021 BLAKE2B b822cfcee033846b075baad98c69833d54563a23075704acdf6c140b08cf4c5e263465b618830ecae979eaf741f83a849f37d714c18cf355b49a62bc30214904 SHA512 5b7e556eeb3ceec83e81e9b849786d7921aa06e443aa2fb5f288e3fcef6b05b3a1a6aa4ebcdfd0bd345ea3166980cb926cbea2260a229613bdcb2def86fb5816
23 -DIST waf-1.9.8.tar.bz2 620795 BLAKE2B d7c3ad5cf0c1b16aef84b311d7fe2d26e7e6fe0438373e19387cade0356469100063059e6900398c7bb4993d9440f79933ba59d1bdd1b71e41364d1659b18d55 SHA512 a86d29d32257ee5b82db28f20ef3056a995c4a47404ee47f216899c76332c6586bde83397db907b51c8d3d38efaa3e2f4befbf8f27d17d1f58e6b0808f070fdc
24
25 diff --git a/dev-util/waf/waf-1.9.8.ebuild b/dev-util/waf/waf-1.9.8.ebuild
26 deleted file mode 100644
27 index e37a3420502..00000000000
28 --- a/dev-util/waf/waf-1.9.8.ebuild
29 +++ /dev/null
30 @@ -1,54 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
37 -PYTHON_REQ_USE="threads(+)"
38 -inherit python-any-r1 toolchain-funcs
39 -
40 -DESCRIPTION="piece of software used to help building software projects"
41 -HOMEPAGE="https://waf.io/"
42 -SRC_URI="https://waf.io/${P}.tar.bz2"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="~amd64"
47 -IUSE="examples"
48 -
49 -DEPEND="${PYTHON_DEPS}"
50 -
51 -DOCS="ChangeLog README.md DEVEL"
52 -
53 -src_prepare() {
54 - rm -v waf || die
55 -
56 - default
57 -}
58 -
59 -src_configure() {
60 - ${EPYTHON} ./waf-light configure
61 -}
62 -
63 -src_compile() {
64 - ${EPYTHON} ./waf-light build
65 -}
66 -
67 -src_install() {
68 - default
69 -
70 - #point waf binary to waflib dir and strip payload
71 - sed -e "/INSTALL=/s:=.*:='${EROOT}usr':" \
72 - -e "/REVISION=/s:=.*:='${PR}':" \
73 - -e "s:/lib/:/$(get_libdir)/:" \
74 - -e "/^#\(==>\|BZ\|<==\)/d" \
75 - -i waf || die
76 - dobin waf
77 -
78 - insinto /usr/$(get_libdir)/${PN}3-${PV}-${PR}
79 - doins -r waflib
80 -
81 - if use examples ; then
82 - dodoc -r demos
83 - fi
84 -}