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 AD7601396DA for ; Fri, 3 Nov 2017 23:40:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0472BE0BCB; Fri, 3 Nov 2017 23:40:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 C8930E0BCB for ; Fri, 3 Nov 2017 23:40:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3F6D134176B for ; Fri, 3 Nov 2017 23:40:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB0329401 for ; Fri, 3 Nov 2017 23:40:04 +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: <1509752400.4e820892f7ec9df58bafe7cd75965861ece9bdc5.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/symlinks/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/symlinks/symlinks-1.4-r2.ebuild app-misc/symlinks/symlinks-1.4.ebuild X-VCS-Directories: app-misc/symlinks/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 4e820892f7ec9df58bafe7cd75965861ece9bdc5 X-VCS-Branch: master Date: Fri, 3 Nov 2017 23:40:04 +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: 377b89dc-b2ed-45eb-ae11-813d6893d554 X-Archives-Hash: 2d2a640aa52eb2acb55f27b372f6f301 commit: 4e820892f7ec9df58bafe7cd75965861ece9bdc5 Author: Patrice Clement gentoo org> AuthorDate: Fri Nov 3 22:43:08 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Nov 3 23:40:00 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e820892 app-misc/symlinks: clean up old. Package-Manager: Portage-2.3.8, Repoman-2.3.3 app-misc/symlinks/symlinks-1.4-r2.ebuild | 34 -------------------------------- app-misc/symlinks/symlinks-1.4.ebuild | 27 ------------------------- 2 files changed, 61 deletions(-) diff --git a/app-misc/symlinks/symlinks-1.4-r2.ebuild b/app-misc/symlinks/symlinks-1.4-r2.ebuild deleted file mode 100644 index 09abea25c0d..00000000000 --- a/app-misc/symlinks/symlinks-1.4-r2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit flag-o-matic eutils toolchain-funcs - -DESCRIPTION="Scans for and fixes broken or messy symlinks" -HOMEPAGE="http://www.ibiblio.org/pub/linux/utils/file/" -SRC_URI="http://www.ibiblio.org/pub/linux/utils/file/${P}.tar.gz" - -LICENSE="symlinks" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="static" - -src_prepare() { - # could be useful if being used to repair - # symlinks that are preventing shared libraries from - # functioning. - use static && append-flags -static - append-lfs-flags - sed 's:-O2::g' -i Makefile || die -} - -src_compile() { - emake CC=$(tc-getCC) CFLAGS="${CPPFLAGS} ${CFLAGS} ${LDFLAGS}" -} - -src_install() { - dobin symlinks - doman symlinks.8 - dodoc symlinks.lsm -} diff --git a/app-misc/symlinks/symlinks-1.4.ebuild b/app-misc/symlinks/symlinks-1.4.ebuild deleted file mode 100644 index 19890b51060..00000000000 --- a/app-misc/symlinks/symlinks-1.4.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit flag-o-matic eutils toolchain-funcs - -DESCRIPTION="Scans for and fixes broken or messy symlinks" -HOMEPAGE="http://www.ibiblio.org/pub/linux/utils/file/" -SRC_URI="http://www.ibiblio.org/pub/linux/utils/file/${P}.tar.gz" - -LICENSE="symlinks" -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86" -IUSE="static" - -src_compile() { - # could be useful if being used to repair - # symlinks that are preventing shared libraries from - # functioning. - use static && append-flags -static - emake CC=$(tc-getCC) CFLAGS="${CFLAGS} ${LDFLAGS}" || die -} - -src_install() { - dobin symlinks || die - doman symlinks.8 || die - dodoc symlinks.lsm || die -}