Bug 178261 - Update port: sysutils/less to 458
Summary: Update port: sysutils/less to 458
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Wen Heping
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-04-30 16:20 UTC by Norihiko Murase
Modified: 2013-05-11 16:40 UTC (History)
0 users

See Also:


Attachments
file.diff (1.29 KB, patch)
2013-04-30 16:20 UTC, Norihiko Murase
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Norihiko Murase 2013-04-30 16:20:00 UTC
Hi!

I've noticed the new version of less, which is 458 and was 
released on Apr 24. I would like you to upgrade the ports 
("sysutils/less") for this release.

The patch for the upgrade is attached.

Fix: The change of this patch is as follows:
  * Update to 458
  * Convert to OptionsNG (new options framework)
      - However, you should note that the option named 
        COLO*U*R_LESS is deprecated...
  * Add LICENSE


Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-04-30 16:20:07 UTC
Maintainer of sysutils/less,

Please note that PR ports/178261 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/178261

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-04-30 16:20:09 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 jharris 2013-05-01 01:12:23 UTC
On Tue, Apr 30, 2013 at 03:20:07PM +0000, Edwin Groothuis wrote:
> Maintainer of sysutils/less,
> 
> Please note that PR ports/178261 has just been submitted.


> The full text of the PR can be found at:
>     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/178261


Approved, thanks!  Release notes:

  http://www.greenwoodsoftware.com/less/news.451.html

-- 
Jason Harris           |  PGP:  This _is_ PGP-signed, isn't it?
jharris@widomaker.com _|_ Got photons? (TM), (C) 2004
Comment 4 Mark Linimon freebsd_committer freebsd_triage 2013-05-01 05:43:55 UTC
State Changed
From-To: feedback->open

Maintainer approved.
Comment 5 Wen Heping freebsd_committer freebsd_triage 2013-05-01 08:21:01 UTC
Responsible Changed
From-To: freebsd-ports-bugs->wen

I'll take it.
Comment 6 dfilter service freebsd_committer freebsd_triage 2013-05-11 16:38:14 UTC
Author: wen
Date: Sat May 11 15:37:56 2013
New Revision: 317890
URL: http://svnweb.freebsd.org/changeset/ports/317890

Log:
  - Update to 458
  - Convert to optionsNG
  - Add LICENSE
  
  PR:		178261
  Submitted by:	Norihiko Murase <mur1080224@inter7.jp>
  Approved by:	Jason Harris <jharris@widomaker.com> (maintainer)

Modified:
  head/sysutils/less/Makefile
  head/sysutils/less/distinfo

Modified: head/sysutils/less/Makefile
==============================================================================
--- head/sysutils/less/Makefile	Sat May 11 15:37:47 2013	(r317889)
+++ head/sysutils/less/Makefile	Sat May 11 15:37:56 2013	(r317890)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	less
-PORTVERSION=	451
+PORTVERSION=	458
 CATEGORIES=	sysutils
 MASTER_SITES=	http://www.greenwoodsoftware.com/%SUBDIR%/ \
 		${MASTER_SITE_GNU}
@@ -11,18 +11,23 @@ MASTER_SITE_SUBDIR=	less
 MAINTAINER=	jharris@widomaker.com
 COMMENT=	A better pager utility
 
+LICENSE=	GPLv3
+
+OPTIONS_DEFINE=	COLOR_LESS
+COLOR_LESS_DESC=Enables color support via escape sequence
+
 PLIST_FILES=	bin/less bin/lesskey bin/lessecho
 
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
 
 GNU_CONFIGURE=	yes
 MAN1=		less.1 lesskey.1 lessecho.1
 
-.if defined(COLOUR_LESS) || defined(COLOR_LESS)
+.if ${PORT_OPTIONS:MCOLOUR_LESS}
 CPPFLAGS+=	-DCOLOR_LESS
 
 pre-fetch:
 	@${ECHO_MSG} "Making a color version of less."
 .endif
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>

Modified: head/sysutils/less/distinfo
==============================================================================
--- head/sysutils/less/distinfo	Sat May 11 15:37:47 2013	(r317889)
+++ head/sysutils/less/distinfo	Sat May 11 15:37:56 2013	(r317890)
@@ -1,2 +1,2 @@
-SHA256 (less-451.tar.gz) = 9fe8287c647afeafb4149c5dedaeacfd20971ed7c26c7553794bb750536b5f57
-SIZE (less-451.tar.gz) = 310144
+SHA256 (less-458.tar.gz) = e536c7819ede54b3d487f0ffc4c14b3620bed83734d92a81e89f62346db0fcac
+SIZE (less-458.tar.gz) = 311224
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 7 Wen Heping freebsd_committer freebsd_triage 2013-05-11 16:38:55 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!