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 0AF9A1382BF for ; Tue, 21 Jun 2016 19:50:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBDE0E08DF; Tue, 21 Jun 2016 19:50:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 222F2E08A5 for ; Tue, 21 Jun 2016 19:50:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA413340821 for ; Tue, 21 Jun 2016 19:50:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C59FA241F for ; Tue, 21 Jun 2016 19:50:03 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1466536927.6df94b77ac098d8d434d6a0441027137dc768f0f.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/chname/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/chname/chname-1.0-r1.ebuild X-VCS-Directories: sys-apps/chname/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 6df94b77ac098d8d434d6a0441027137dc768f0f X-VCS-Branch: master Date: Tue, 21 Jun 2016 19:50:03 +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: 1c745e90-8657-4a48-9110-698e38b0572a X-Archives-Hash: 85467bfba4cab0d54eaeadf1b00c1b88 commit: 6df94b77ac098d8d434d6a0441027137dc768f0f Author: Patrice Clement gentoo org> AuthorDate: Tue Jun 21 19:20:42 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Jun 21 19:22:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df94b77 sys-apps/chname: Clean up old. Package-Manager: portage-2.2.28 sys-apps/chname/chname-1.0-r1.ebuild | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/sys-apps/chname/chname-1.0-r1.ebuild b/sys-apps/chname/chname-1.0-r1.ebuild deleted file mode 100644 index 659e5b2..0000000 --- a/sys-apps/chname/chname-1.0-r1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit toolchain-funcs - -DESCRIPTION="Run a command with a new system hostname" -HOMEPAGE="https://github.com/marineam/chname" -SRC_URI="https://chname.googlecode.com/files/chname-1.0.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="" - -DEPEND=">=sys-kernel/linux-headers-2.6.16" -RDEPEND="" - -src_compile() { - emake CC=$(tc-getCC) CFLAGS="${CFLAGS} ${LDFLAGS}" chname || die -} - -src_install() { - dobin chname - doman chname.1 -} - -pkg_postinst() { - elog "Note: chname requires a or later kernel with CONFIG_UTS_NS=y." -}