Bug 177377 - [maintainer update] ftp/tnftpd
Summary: [maintainer update] ftp/tnftpd
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: Martin Wilke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-25 16:40 UTC by Rudolf Čejka
Modified: 2013-03-28 09:40 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rudolf Čejka 2013-03-25 16:40:01 UTC
Update of ftp/tnftpd to 20130325.

File files/patch-libnetbsd-Makefile.am has been removed.

diff -ruN tnftpd/Makefile tnftpd.new/Makefile
--- tnftpd/Makefile	2013-01-10 13:47:23.000000000 +0100
+++ tnftpd.new/Makefile	2013-03-25 16:32:20.000000000 +0100
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	tnftpd
-PORTVERSION=	20100324
+PORTVERSION=	20130325
 CATEGORIES=	ftp ipv6
 MASTER_SITES=	ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/
 
diff -ruN tnftpd/distinfo tnftpd.new/distinfo
--- tnftpd/distinfo	2011-03-19 14:22:42.000000000 +0100
+++ tnftpd.new/distinfo	2013-03-25 16:32:28.000000000 +0100
@@ -1,2 +1,2 @@
-SHA256 (tnftpd-20100324.tar.gz) = ff6b7c39f1bbdb9686a2c92652a59e8c81f1268dd329ff582db91a8ed76c599c
-SIZE (tnftpd-20100324.tar.gz) = 511110
+SHA256 (tnftpd-20130325.tar.gz) = 331006f0bcee593af3f4faaaf1de8db825e2aa60449be1c961916b37d562e147
+SIZE (tnftpd-20130325.tar.gz) = 518350
diff -ruN tnftpd/files/patch-configure.ac tnftpd.new/files/patch-configure.ac
--- tnftpd/files/patch-configure.ac	2012-07-20 16:24:33.000000000 +0200
+++ tnftpd.new/files/patch-configure.ac	2013-03-25 17:14:38.000000000 +0100
@@ -1,8 +1,13 @@
---- configure.ac.orig	2010-03-24 05:31:39.000000000 -0700
-+++ configure.ac	2012-05-03 15:55:32.000000000 -0700
-@@ -87,3 +87,4 @@
- #
--AC_PROG_CC
-+AM_PROG_CC_C_O
-+AM_PROG_AR
- AC_PROG_AWK
+Fix compilation error.
+
+--- configure.ac.orig	2013-03-25 04:52:48.000000000 +0100
++++ configure.ac	2013-03-25 17:03:53.000000000 +0100
+@@ -22,6 +22,8 @@
+ AM_INIT_AUTOMAKE([-Wall -Werror foreign nostdinc silent-rules])
+ AM_MAINTAINER_MODE()
+ 
++AM_PROG_AR()
++
+ LT_PREREQ([2.4])
+ LT_INIT()
+ 
diff -ruN tnftpd/files/patch-libnetbsd-Makefile.am tnftpd.new/files/patch-libnetbsd-Makefile.am
--- tnftpd/files/patch-libnetbsd-Makefile.am	2012-05-11 22:38:04.000000000 +0200
+++ tnftpd.new/files/patch-libnetbsd-Makefile.am	1970-01-01 01:00:00.000000000 +0100
@@ -1,7 +0,0 @@
---- libnetbsd/Makefile.am.orig	2010-01-03 21:46:29.000000000 -0800
-+++ libnetbsd/Makefile.am	2012-05-03 15:58:12.000000000 -0700
-@@ -6,3 +6,3 @@
- 
--CPPFLAGS = \
-+AM_CPPFLAGS = \
- 	-I$(srcdir) \
diff -ruN tnftpd/files/patch-src-Makefile.am tnftpd.new/files/patch-src-Makefile.am
--- tnftpd/files/patch-src-Makefile.am	2010-09-26 21:22:23.000000000 +0200
+++ tnftpd.new/files/patch-src-Makefile.am	2013-03-25 16:51:26.000000000 +0100
@@ -12,7 +12,7 @@
 +	logutmp.c \
 +	logwtmp.c
  
- tnftpd_CPPFLAGS = \
+ AM_CPPFLAGS = \
  	-DHAVE_TNFTPD_H=1 \
 @@ -45,8 +47,6 @@
  	extern.h \
diff -ruN tnftpd/files/patch-src-ftpd.c tnftpd.new/files/patch-src-ftpd.c
--- tnftpd/files/patch-src-ftpd.c	2010-09-26 21:22:23.000000000 +0200
+++ tnftpd.new/files/patch-src-ftpd.c	2013-03-25 16:54:16.000000000 +0100
@@ -1,4 +1,3 @@
-
 Rewrite utmpx support.
 
 --- src/ftpd.c.orig	2009-11-07 04:26:48.000000000 +0100
@@ -13,7 +12,7 @@
  #ifdef SUPPORT_UTMP
  		ftpd_initwtmp();
  #endif
-@@ -1319,23 +1316,18 @@
+@@ -1320,23 +1317,18 @@
  	(void)gettimeofday(&tv, NULL);
  #endif
  #ifdef SUPPORT_UTMPX
@@ -42,7 +41,7 @@
  #endif
  #ifdef SUPPORT_UTMP
  	if (doutmp) {
-@@ -1355,17 +1347,23 @@
+@@ -1356,17 +1348,23 @@
  logout_utmp(void)
  {
  #ifdef SUPPORT_UTMPX
diff -ruN tnftpd/files/patch-src-logutmp.c tnftpd.new/files/patch-src-logutmp.c
--- tnftpd/files/patch-src-logutmp.c	2010-09-26 21:22:23.000000000 +0200
+++ tnftpd.new/files/patch-src-logutmp.c	2013-03-25 16:52:56.000000000 +0100
@@ -1,4 +1,3 @@
-
 FreeBSD does not have header file util.h, fortunately it is not needed.
 Add header file time.h for time(). Rewrite utmpx support.
 
diff -ruN tnftpd/files/patch-src-logwtmp.c tnftpd.new/files/patch-src-logwtmp.c
--- tnftpd/files/patch-src-logwtmp.c	2010-09-26 21:22:23.000000000 +0200
+++ tnftpd.new/files/patch-src-logwtmp.c	2013-03-25 16:52:59.000000000 +0100
@@ -1,4 +1,3 @@
-
 FreeBSD does not have header file util.h, fortunately it is not needed. Add
 header files sys/socket.h and netdb.h for getaddrinfo() and getnameinfo().
 If host name is longer than UT_HOSTSIZE (16 characters), log numeric
diff -ruN tnftpd/files/patch-tnftpd.h tnftpd.new/files/patch-tnftpd.h
--- tnftpd/files/patch-tnftpd.h	2010-09-26 21:22:23.000000000 +0200
+++ tnftpd.new/files/patch-tnftpd.h	2013-03-25 16:53:04.000000000 +0100
@@ -1,4 +1,3 @@
-
 FreeBSD does not have LOGIN_NAME_MAX, but it has MAXLOGNAME instead,
 so use it as much as possible. Rewrite utmpx support.
Comment 1 Martin Wilke freebsd_committer freebsd_triage 2013-03-28 08:29:59 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

I'll take it.
Comment 2 Martin Wilke freebsd_committer freebsd_triage 2013-03-28 09:33:47 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-03-28 09:33:57 UTC
Author: miwi
Date: Thu Mar 28 09:33:42 2013
New Revision: 315454
URL: http://svnweb.freebsd.org/changeset/ports/315454

Log:
  - Update to 20130325
  
  PR:		177377
  Submitted by:	Rudolf Cejka <cejkar@fit.vutbr.cz> (maintainer)

Deleted:
  head/ftp/tnftpd/files/patch-libnetbsd-Makefile.am
Modified:
  head/ftp/tnftpd/Makefile   (contents, props changed)
  head/ftp/tnftpd/distinfo   (contents, props changed)
  head/ftp/tnftpd/files/patch-configure.ac   (contents, props changed)
  head/ftp/tnftpd/files/patch-src-Makefile.am   (contents, props changed)
  head/ftp/tnftpd/files/patch-src-ftpd.c   (contents, props changed)
  head/ftp/tnftpd/files/patch-src-logutmp.c   (contents, props changed)
  head/ftp/tnftpd/files/patch-src-logwtmp.c   (contents, props changed)
  head/ftp/tnftpd/files/patch-tnftpd.h   (contents, props changed)

Modified: head/ftp/tnftpd/Makefile
==============================================================================
--- head/ftp/tnftpd/Makefile	Thu Mar 28 09:32:14 2013	(r315453)
+++ head/ftp/tnftpd/Makefile	Thu Mar 28 09:33:42 2013	(r315454)
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	tnftpd
-PORTVERSION=	20100324
+PORTVERSION=	20130325
 CATEGORIES=	ftp ipv6
 MASTER_SITES=	ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/
 

Modified: head/ftp/tnftpd/distinfo
==============================================================================
--- head/ftp/tnftpd/distinfo	Thu Mar 28 09:32:14 2013	(r315453)
+++ head/ftp/tnftpd/distinfo	Thu Mar 28 09:33:42 2013	(r315454)
@@ -1,2 +1,2 @@
-SHA256 (tnftpd-20100324.tar.gz) = ff6b7c39f1bbdb9686a2c92652a59e8c81f1268dd329ff582db91a8ed76c599c
-SIZE (tnftpd-20100324.tar.gz) = 511110
+SHA256 (tnftpd-20130325.tar.gz) = 331006f0bcee593af3f4faaaf1de8db825e2aa60449be1c961916b37d562e147
+SIZE (tnftpd-20130325.tar.gz) = 518350

Modified: head/ftp/tnftpd/files/patch-configure.ac
==============================================================================
--- head/ftp/tnftpd/files/patch-configure.ac	Thu Mar 28 09:32:14 2013	(r315453)
+++ head/ftp/tnftpd/files/patch-configure.ac	Thu Mar 28 09:33:42 2013	(r315454)
@@ -1,8 +1,13 @@
---- configure.ac.orig	2010-03-24 05:31:39.000000000 -0700
-+++ configure.ac	2012-05-03 15:55:32.000000000 -0700
-@@ -87,3 +87,4 @@
- #
--AC_PROG_CC
-+AM_PROG_CC_C_O
-+AM_PROG_AR
- AC_PROG_AWK
+Fix compilation error.
+
+--- configure.ac.orig	2013-03-25 04:52:48.000000000 +0100
++++ configure.ac	2013-03-25 17:03:53.000000000 +0100
+@@ -22,6 +22,8 @@
+ AM_INIT_AUTOMAKE([-Wall -Werror foreign nostdinc silent-rules])
+ AM_MAINTAINER_MODE()
+ 
++AM_PROG_AR()
++
+ LT_PREREQ([2.4])
+ LT_INIT()
+ 

Modified: head/ftp/tnftpd/files/patch-src-Makefile.am
==============================================================================
--- head/ftp/tnftpd/files/patch-src-Makefile.am	Thu Mar 28 09:32:14 2013	(r315453)
+++ head/ftp/tnftpd/files/patch-src-Makefile.am	Thu Mar 28 09:33:42 2013	(r315454)
@@ -12,7 +12,7 @@ a build.
 +	logutmp.c \
 +	logwtmp.c
  
- tnftpd_CPPFLAGS = \
+ AM_CPPFLAGS = \
  	-DHAVE_TNFTPD_H=1 \
 @@ -45,8 +47,6 @@
  	extern.h \

Modified: head/ftp/tnftpd/files/patch-src-ftpd.c
==============================================================================
--- head/ftp/tnftpd/files/patch-src-ftpd.c	Thu Mar 28 09:32:14 2013	(r315453)
+++ head/ftp/tnftpd/files/patch-src-ftpd.c	Thu Mar 28 09:33:42 2013	(r315454)
@@ -1,4 +1,3 @@
-
 Rewrite utmpx support.
 
 --- src/ftpd.c.orig	2009-11-07 04:26:48.000000000 +0100
@@ -13,7 +12,7 @@ Rewrite utmpx support.
  #ifdef SUPPORT_UTMP
  		ftpd_initwtmp();
  #endif
-@@ -1319,23 +1316,18 @@
+@@ -1320,23 +1317,18 @@
  	(void)gettimeofday(&tv, NULL);
  #endif
  #ifdef SUPPORT_UTMPX
@@ -42,7 +41,7 @@ Rewrite utmpx support.
  #endif
  #ifdef SUPPORT_UTMP
  	if (doutmp) {
-@@ -1355,17 +1347,23 @@
+@@ -1356,17 +1348,23 @@
  logout_utmp(void)
  {
  #ifdef SUPPORT_UTMPX

Modified: head/ftp/tnftpd/files/patch-src-logutmp.c
==============================================================================
--- head/ftp/tnftpd/files/patch-src-logutmp.c	Thu Mar 28 09:32:14 2013	(r315453)
+++ head/ftp/tnftpd/files/patch-src-logutmp.c	Thu Mar 28 09:33:42 2013	(r315454)
@@ -1,4 +1,3 @@
-
 FreeBSD does not have header file util.h, fortunately it is not needed.
 Add header file time.h for time(). Rewrite utmpx support.
 

Modified: head/ftp/tnftpd/files/patch-src-logwtmp.c
==============================================================================
--- head/ftp/tnftpd/files/patch-src-logwtmp.c	Thu Mar 28 09:32:14 2013	(r315453)
+++ head/ftp/tnftpd/files/patch-src-logwtmp.c	Thu Mar 28 09:33:42 2013	(r315454)
@@ -1,4 +1,3 @@
-
 FreeBSD does not have header file util.h, fortunately it is not needed. Add
 header files sys/socket.h and netdb.h for getaddrinfo() and getnameinfo().
 If host name is longer than UT_HOSTSIZE (16 characters), log numeric

Modified: head/ftp/tnftpd/files/patch-tnftpd.h
==============================================================================
--- head/ftp/tnftpd/files/patch-tnftpd.h	Thu Mar 28 09:32:14 2013	(r315453)
+++ head/ftp/tnftpd/files/patch-tnftpd.h	Thu Mar 28 09:33:42 2013	(r315454)
@@ -1,4 +1,3 @@
-
 FreeBSD does not have LOGIN_NAME_MAX, but it has MAXLOGNAME instead,
 so use it as much as possible. Rewrite utmpx support.
 
_______________________________________________
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"