Bug 176120 - [new port] mail/mail2nntp - A simple mail to news gateway
Summary: [new port] mail/mail2nntp - A simple mail to news gateway
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: Jason Helfman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-13 18:50 UTC by Gary J. Hayers
Modified: 2013-02-16 00:40 UTC (History)
0 users

See Also:


Attachments
file.shar (2.13 KB, text/plain)
2013-02-13 18:50 UTC, Gary J. Hayers
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Gary J. Hayers 2013-02-13 18:50:00 UTC
- Submission of new port mail2nntp - A simple mail to news gateway
- Request maintainership of news/p5-NNTPClient as new port is dependant on it.

Fix: --- Makefile-orig       2012-11-17 06:00:43.000000000 +0000
+++ Makefile    2013-02-13 18:44:56.000000000 +0000
@@ -12,7 +12,7 @@
 MASTER_SITE_SUBDIR=    News
 PKGNAMEPREFIX= p5-

-MAINTAINER=    ports@FreeBSD.org
+MAINTAINER=    gary@hayers.org
 COMMENT=       Client interface to NNTP (RFC977)

 PERL_CONFIGURE=        yes

Patch attached with submission follows:
Comment 1 Mark Linimon freebsd_committer freebsd_triage 2013-02-13 19:20:11 UTC
Responsible Changed
From-To: freebsd-bugs->freebsd-ports-bugs

fix synopsis and make this a ports PR.
Comment 2 Gary J. Hayers 2013-02-13 22:13:14 UTC
Thanks Mark

-- 
Regards,
Gary J. Hayers
gary@hayers.org

PGP Signature
http://www.hayers.org/pgp
Comment 3 Jason Helfman freebsd_committer freebsd_triage 2013-02-13 22:44:38 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jgh

I'll take it.
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-02-14 05:09:32 UTC
Author: jgh
Date: Thu Feb 14 05:09:24 2013
New Revision: 312191
URL: http://svnweb.freebsd.org/changeset/ports/312191

Log:
  add new port: news/mail2nntp
  
  mail2nntp is a bridge from email realm to the newsgroup one.
  It can be used to replicate a mailing-list on a newsgroup server.
  It is a generic toot, using NNTP network commands
  
  WWW: http://sourceforge.net/projects/mail2nntp/
  
  PR:		176120
  Submitted by:	gary@hayers.org

Added:
  head/news/mail2nntp/
  head/news/mail2nntp/Makefile   (contents, props changed)
  head/news/mail2nntp/distinfo   (contents, props changed)
  head/news/mail2nntp/pkg-descr   (contents, props changed)
Modified:
  head/news/Makefile   (contents, props changed)

Modified: head/news/Makefile
==============================================================================
--- head/news/Makefile	Thu Feb 14 03:56:03 2013	(r312190)
+++ head/news/Makefile	Thu Feb 14 05:09:24 2013	(r312191)
@@ -43,6 +43,7 @@
     SUBDIR += leafnode
     SUBDIR += lottanzb
     SUBDIR += lusernet
+    SUBDIR += mail2nntp
     SUBDIR += mmail
     SUBDIR += multisuck
     SUBDIR += newscache

Added: head/news/mail2nntp/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/news/mail2nntp/Makefile	Thu Feb 14 05:09:24 2013	(r312191)
@@ -0,0 +1,32 @@
+# Created by: gary@hayers.org
+# $FreeBSD$
+
+PORTNAME=	mail2nntp
+PORTVERSION=	1.0
+CATEGORIES=	news mail
+MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/Stable%201.0/
+
+MAINTAINER=	gary@hayers.org
+COMMENT=	Simple mail to news gateway
+
+LICENSE=	GPLv2
+
+RUN_DEPENDS=	p5-NNTPClient>=0:${PORTSDIR}/news/p5-NNTPClient
+
+USE_PERL5_RUN=	yes
+NO_BUILD=	yes
+
+PORTDOCS=	*
+PLIST_FILES=	bin/mail2nntp.pl
+
+.include <bsd.port.options.mk>
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/mail2nntp.pl ${PREFIX}/bin
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/Changelog ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>

Added: head/news/mail2nntp/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/news/mail2nntp/distinfo	Thu Feb 14 05:09:24 2013	(r312191)
@@ -0,0 +1,2 @@
+SHA256 (mail2nntp-1.0.tar.gz) = 1ba8eacbb0a8ef7d0a1fd1487e4f06c794d56383daa0a481365064e2d2f75346
+SIZE (mail2nntp-1.0.tar.gz) = 9644

Added: head/news/mail2nntp/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/news/mail2nntp/pkg-descr	Thu Feb 14 05:09:24 2013	(r312191)
@@ -0,0 +1,5 @@
+mail2nntp is a bridge from email realm to the newsgroup one. 
+It can be used to replicate a mailing-list on a newsgroup server. 
+It is a generic toot, using NNTP network commands
+
+WWW: http://sourceforge.net/projects/mail2nntp/
_______________________________________________
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 5 dfilter service freebsd_committer freebsd_triage 2013-02-14 05:10:17 UTC
Author: jgh
Date: Thu Feb 14 05:10:09 2013
New Revision: 312192
URL: http://svnweb.freebsd.org/changeset/ports/312192

Log:
  - pass maintainership to submitter
  
  PR:		176120
  Submitted by:	gary@hayers.org

Modified:
  head/news/p5-NNTPClient/Makefile

Modified: head/news/p5-NNTPClient/Makefile
==============================================================================
--- head/news/p5-NNTPClient/Makefile	Thu Feb 14 05:09:24 2013	(r312191)
+++ head/news/p5-NNTPClient/Makefile	Thu Feb 14 05:10:09 2013	(r312192)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-NNTPClient
-# Date created:				1st June 2000
-# Whom:					Ade Lovett <ade@FreeBSD.org>
-#
+# Created by: Ade Lovett <ade@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	NNTPClient
 PORTVERSION=	0.37
@@ -12,11 +8,11 @@ MASTER_SITES=	CPAN
 MASTER_SITE_SUBDIR=	News
 PKGNAMEPREFIX=	p5-
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	gary@hayers.org
 COMMENT=	Client interface to NNTP (RFC977)
 
 PERL_CONFIGURE=	yes
 
-MAN3=		News::NNTPClient.3
+MAN3=	News::NNTPClient.3
 
 .include <bsd.port.mk>
_______________________________________________
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 Jason Helfman freebsd_committer freebsd_triage 2013-02-14 05:13:14 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!
Comment 7 Gary J. Hayers 2013-02-16 00:35:15 UTC
Thanks for the commit Jason. 

--
Regards, 
Gary J. Hayers

PGP signature 
http://www.hayers.org/pgp