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 930521396D9 for ; Fri, 20 Oct 2017 08:28:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98CA92BC006; Fri, 20 Oct 2017 08:28:14 +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 78FF42BC006 for ; Fri, 20 Oct 2017 08:28:13 +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 1455033BF0B for ; Fri, 20 Oct 2017 08:28:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA0D0824 for ; Fri, 20 Oct 2017 08:28:11 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1508488089.3c7a77ca14b4990156da114779ab9ee32e38c5f1.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kbuild/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kbuild/kbuild-0.1.9998_pre20131130.ebuild X-VCS-Directories: dev-util/kbuild/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 3c7a77ca14b4990156da114779ab9ee32e38c5f1 X-VCS-Branch: master Date: Fri, 20 Oct 2017 08:28:11 +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: 93a444ca-6a8b-4960-9d0f-6d5cbb951162 X-Archives-Hash: ffb37cd23bece0d48e48f1e4a6671fba commit: 3c7a77ca14b4990156da114779ab9ee32e38c5f1 Author: Lars Wendler gentoo org> AuthorDate: Fri Oct 20 08:27:24 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Oct 20 08:28:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c7a77ca dev-util/kbuild: Removed old. Package-Manager: Portage-2.3.12, Repoman-2.3.3 dev-util/kbuild/kbuild-0.1.9998_pre20131130.ebuild | 58 ---------------------- 1 file changed, 58 deletions(-) diff --git a/dev-util/kbuild/kbuild-0.1.9998_pre20131130.ebuild b/dev-util/kbuild/kbuild-0.1.9998_pre20131130.ebuild deleted file mode 100644 index b96e4f88d75..00000000000 --- a/dev-util/kbuild/kbuild-0.1.9998_pre20131130.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils autotools toolchain-funcs - -MY_P=kBuild-${PV/_/-}-src -DESCRIPTION="A makefile framework for writing simple makefiles for complex tasks" -HOMEPAGE="http://svn.netlabs.org/kbuild/wiki" -#SRC_URI="ftp://ftp.netlabs.org/pub/${PN}/${MY_P}.tar.gz" -SRC_URI="https://dev.gentoo.org/~polynomial-c/${MY_P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="sys-apps/texinfo - sys-devel/flex - sys-devel/gettext - virtual/yacc" -RDEPEND="" - -S=${WORKDIR}/${MY_P/-src} - -src_prepare() { - rm -rf "${S}/kBuild/bin" - - epatch "${FILESDIR}/${PN}-unknown-configure-opt.patch" \ - "${FILESDIR}/${PN}-glibc-2.10.patch" \ - "${FILESDIR}/${PN}-0.1.5-gentoo-docdir.patch" \ - "${FILESDIR}/${PN}-0.1.9998_pre20120806-qa.patch" \ - "${FILESDIR}/${PN}-0.1.9998_pre20110817-kash-link-pthread.patch" \ - "${FILESDIR}/${PN}-0.1.9998_pre20110817-gold.patch" \ - "${FILESDIR}/${PN}-0.1.9998_pre20110817-gcc-4.7.patch" - - cd "${S}/src/kmk" || die - eautoreconf - cd "${S}/src/sed" || die - # AM_CONFIG_HEADER is obsolete since automake-1.13 (bug #467104) - sed 's@AM_CONFIG_HEADER@AC_CONFIG_HEADERS@' -i configure.ac || die - eautoreconf - - sed -e "s@_LDFLAGS\.${ARCH}*.*=@& ${LDFLAGS}@g" \ - -i "${S}"/Config.kmk || die #332225 - tc-export CC RANLIB #AR does not work here -} - -src_compile() { - kBuild/env.sh --full make -f bootstrap.gmk AUTORECONF=true AR="$(tc-getAR)" \ - || die "bootstrap failed" -} - -src_install() { - kBuild/env.sh kmk NIX_INSTALL_DIR=/usr PATH_INS="${D}" install \ - || die "install failed" -}