Bug 186140 - [PATCH] net/bwping update to 1.7
Summary: [PATCH] net/bwping update to 1.7
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: Pawel Pekala
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-26 22:00 UTC by Eero Hänninen
Modified: 2014-02-21 23:00 UTC (History)
0 users

See Also:


Attachments
file.diff (1.67 KB, patch)
2014-01-26 22:00 UTC, Eero Hänninen
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Eero Hänninen 2014-01-26 22:00:00 UTC
- version update to 1.7
- corrected license to bsd2clause
- stage support

Fix: Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-26 22:00:07 UTC
Maintainer of net/bwping,

Please note that PR ports/186140 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/186140

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-26 22:00:08 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Oleg Derevenetz 2014-01-26 22:03:35 UTC
Patch looks OK to me, I approve it.

2014/1/27 Edwin Groothuis <edwin@freebsd.org>:
> Maintainer of net/bwping,
>
> Please note that PR ports/186140 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/186140
>
> --
> Edwin Groothuis via the GNATS Auto Assign Tool
> edwin@FreeBSD.org
Comment 4 Pawel Pekala freebsd_committer freebsd_triage 2014-02-21 22:43:35 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pawel

I'll take it.
Comment 5 dfilter service freebsd_committer freebsd_triage 2014-02-21 22:51:54 UTC
Author: pawel
Date: Fri Feb 21 22:51:46 2014
New Revision: 345560
URL: http://svnweb.freebsd.org/changeset/ports/345560
QAT: https://qat.redports.org/buildarchive/r345560/

Log:
  - Update to version 1.7
  - Correct LICENSE to bsd2clause
  - Stage support
  
  PR:		ports/186140
  Submitted by:	Eero Hanninen <fax@nohik.ee>
  Approved by:	maintainer

Modified:
  head/net/bwping/Makefile
  head/net/bwping/distinfo

Modified: head/net/bwping/Makefile
==============================================================================
--- head/net/bwping/Makefile	Fri Feb 21 22:39:20 2014	(r345559)
+++ head/net/bwping/Makefile	Fri Feb 21 22:51:46 2014	(r345560)
@@ -1,22 +1,19 @@
 # $FreeBSD$
 
 PORTNAME=	bwping
-PORTVERSION=	1.6
+PORTVERSION=	1.7
 CATEGORIES=	net
 MASTER_SITES=	SF
 
 MAINTAINER=	oleg.derevenetz@gmail.com
 COMMENT=	Tool to measure bandwidth and RTT between two hosts using ICMP
 
-LICENSE=	BSD
+LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 GNU_CONFIGURE=	yes
-MAN8=		bwping.8
 
-PLIST_FILES=	sbin/bwping
-
-NO_STAGE=	yes
+PLIST_FILES=	sbin/bwping man/man8/bwping.8.gz
 
 OPTIONS_DEFINE=	IPV6
 
@@ -24,16 +21,17 @@ OPTIONS_DEFINE=	IPV6
 
 .if ${PORT_OPTIONS:MIPV6}
 CONFIGURE_ENV+=	ac_cv_ipv6=yes
-MAN8+=		bwping6.8
-PLIST_FILES+=	sbin/bwping6
+PLIST_FILES+=	sbin/bwping6 man/man8/bwping6.8.gz
 .else
 CONFIGURE_ENV+=	ac_cv_ipv6=no
 .endif
 
 post-install:
-	@${CHMOD} 4555 ${PREFIX}/sbin/bwping
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/bwping
+	${CHMOD} 4555 ${STAGEDIR}${PREFIX}/sbin/bwping
 .if ${PORT_OPTIONS:MIPV6}
-	@${CHMOD} 4555 ${PREFIX}/sbin/bwping6
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/bwping6
+	${CHMOD} 4555 ${STAGEDIR}${PREFIX}/sbin/bwping6
 .endif
 
 .include <bsd.port.mk>

Modified: head/net/bwping/distinfo
==============================================================================
--- head/net/bwping/distinfo	Fri Feb 21 22:39:20 2014	(r345559)
+++ head/net/bwping/distinfo	Fri Feb 21 22:51:46 2014	(r345560)
@@ -1,2 +1,2 @@
-SHA256 (bwping-1.6.tar.gz) = 1ed88685e978edb0266f8fcce2189b56577b5c4a77eeb8953ac452257ee47fdb
-SIZE (bwping-1.6.tar.gz) = 90379
+SHA256 (bwping-1.7.tar.gz) = a73db87b47d363d722cd60473a546930a5e78df8d21437191ba4ca06d7197297
+SIZE (bwping-1.7.tar.gz) = 90441
_______________________________________________
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 6 Pawel Pekala freebsd_committer freebsd_triage 2014-02-21 22:52:09 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!