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 C368459CAF for ; Wed, 6 Apr 2016 22:09:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E91D21C0F8; Wed, 6 Apr 2016 22:09:51 +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 E712D21C0F8 for ; Wed, 6 Apr 2016 22:09:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 202E8340EA4 for ; Wed, 6 Apr 2016 22:09:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6D9B2C9 for ; Wed, 6 Apr 2016 22:09:42 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1459980565.f7fdc54f73492a231d0a4b4cbaab976bd36bc5c7.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/less/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/less/less-483-r1.ebuild sys-apps/less/less-483.ebuild X-VCS-Directories: sys-apps/less/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: f7fdc54f73492a231d0a4b4cbaab976bd36bc5c7 X-VCS-Branch: master Date: Wed, 6 Apr 2016 22:09:42 +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: fae51850-4124-484f-85fa-83f6b9c3c0cb X-Archives-Hash: d43b98332a401f5aaa8f895d9206c54f commit: f7fdc54f73492a231d0a4b4cbaab976bd36bc5c7 Author: Mike Frysinger gentoo org> AuthorDate: Wed Apr 6 21:58:23 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Apr 6 22:09:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7fdc54f sys-apps/less: move colorization logic to external lesspipe pkg .../less/{less-483.ebuild => less-483-r1.ebuild} | 26 +++++++--------------- 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/sys-apps/less/less-483.ebuild b/sys-apps/less/less-483-r1.ebuild similarity index 67% rename from sys-apps/less/less-483.ebuild rename to sys-apps/less/less-483-r1.ebuild index b102c2b..e782e9a 100644 --- a/sys-apps/less/less-483.ebuild +++ b/sys-apps/less/less-483-r1.ebuild @@ -4,14 +4,9 @@ EAPI="5" -inherit eutils - -CODE2COLOR_PV="0.2" -CODE2COLOR_P="code2color-${CODE2COLOR_PV}" DESCRIPTION="Excellent text file viewer" HOMEPAGE="http://www.greenwoodsoftware.com/less/" -SRC_URI="http://www.greenwoodsoftware.com/less/${P}.tar.gz - http://www-zeuthen.desy.de/~friebel/unix/less/code2color -> ${CODE2COLOR_P}" +SRC_URI="http://www.greenwoodsoftware.com/less/${P}.tar.gz" LICENSE="|| ( GPL-3 BSD-2 )" SLOT="0" @@ -23,13 +18,7 @@ DEPEND=">=app-misc/editor-wrapper-3 pcre? ( dev-libs/libpcre )" RDEPEND="${DEPEND}" -src_unpack() { - unpack ${P}.tar.gz - cp "${DISTDIR}"/${CODE2COLOR_P} "${S}"/code2color || die -} - src_prepare() { - epatch "${FILESDIR}"/${CODE2COLOR_P}.patch chmod a+x configure || die } @@ -44,14 +33,15 @@ src_configure() { src_install() { default - dobin code2color newbin "${FILESDIR}"/lesspipe.sh lesspipe - dosym lesspipe /usr/bin/lesspipe.sh newenvd "${FILESDIR}"/less.envd 70less - - dodoc "${FILESDIR}"/README.Gentoo } -pkg_postinst() { - elog "lesspipe offers colorization options. Run 'lesspipe -h' for info." +pkg_preinst() { + if has_version "<${CATEGORY}/${PN}-483-r1" ; then + elog "The lesspipe.sh symlink has been dropped. If you are still setting" + elog "LESSOPEN to that, you will need to update it to '|lesspipe %s'." + elog "Colorization support has been dropped. If you want that, check out" + elog "the new app-text/lesspipe package." + fi }