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 420B4139083 for ; Sat, 2 Dec 2017 16:15:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84F80E0E67; Sat, 2 Dec 2017 16:15:29 +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 5E0B4E0E67 for ; Sat, 2 Dec 2017 16:15:29 +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 31F4F33C770 for ; Sat, 2 Dec 2017 16:15:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D90DAE77 for ; Sat, 2 Dec 2017 16:15:25 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1512231308.ddafeddaf6ae13391b7bd0317ebe5538930680f7.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/byld/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/byld/Manifest sys-apps/byld/byld-1.0.3.ebuild X-VCS-Directories: sys-apps/byld/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: ddafeddaf6ae13391b7bd0317ebe5538930680f7 X-VCS-Branch: master Date: Sat, 2 Dec 2017 16:15:25 +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: 53902014-069c-4787-af37-b2785ce175e8 X-Archives-Hash: f1ef4a019659ffae69c9e7762ec0baa6 commit: ddafeddaf6ae13391b7bd0317ebe5538930680f7 Author: David Seifert gentoo org> AuthorDate: Sat Dec 2 15:49:06 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Dec 2 16:15:08 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddafedda sys-apps/byld: Port to EAPI 6 Package-Manager: Portage-2.3.16, Repoman-2.3.6 sys-apps/byld/Manifest | 2 +- sys-apps/byld/byld-1.0.3.ebuild | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/sys-apps/byld/Manifest b/sys-apps/byld/Manifest index a3c6984141e..0f0a96f5889 100644 --- a/sys-apps/byld/Manifest +++ b/sys-apps/byld/Manifest @@ -1 +1 @@ -DIST byld-1_0_3.tgz 1128317 SHA256 f5206f6eb0d85f6b9435c24e554262b69dede6dd7d24acd9faea1dc77549cde3 SHA512 ec141b5c7f636e611fd43bbfa69c8a06ebbfb766e5f58086ce4c0fce1271b8a0cd76333b748322efb19e46aaf2ed150cb3a5fc09c91aef55e10f80b1d1551eb0 WHIRLPOOL f2d43ba2c8820f16dcf6beda530e0c4fe3887fa4039b90d920516b4cf9ef25b736ef14133b0ed2924db0328362896eb6583b0ef2fd5d2c0e84b614d8b120de98 +DIST byld-1_0_3.tgz 1128317 BLAKE2B c096cc3cfa4f467c9e5310a6f17d97d5f690fed20a03ce2d70b1d8476003df87815f4ba7c6262be7bfa2597e467c64e750eed8d5da386950d86c1413b62ff380 SHA512 ec141b5c7f636e611fd43bbfa69c8a06ebbfb766e5f58086ce4c0fce1271b8a0cd76333b748322efb19e46aaf2ed150cb3a5fc09c91aef55e10f80b1d1551eb0 diff --git a/sys-apps/byld/byld-1.0.3.ebuild b/sys-apps/byld/byld-1.0.3.ebuild index 2359a6e8dd4..2c9a65e33e9 100644 --- a/sys-apps/byld/byld-1.0.3.ebuild +++ b/sys-apps/byld/byld-1.0.3.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI=6 + DESCRIPTION="build a Linux distribution on a single floppy" HOMEPAGE="http://byld.sourceforge.net/" SRC_URI="mirror://sourceforge/byld/byld-${PV//./_}.tgz" @@ -16,8 +18,9 @@ RDEPEND="sys-apps/util-linux" src_install() { dodoc BYLDING CREDITS README INSTALL FHS PAKING rm MAKEDEV.8 BYLDING CREDITS README INSTALL FHS LICENSE PAKING - dodir /usr/lib/${PN} - cp -rf * ${D}/usr/lib/${PN}/ + + insinto /usr/lib/${PN} + doins -r . } pkg_postinst() {