ports/167547: Update port: ftp/yafc to 1.1.3

Norihiko Murase mur1080224 at inter7.jp
Thu May 3 05:40:10 UTC 2012


>Number:         167547
>Category:       ports
>Synopsis:       Update port: ftp/yafc to 1.1.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu May 03 05:40:09 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Norihiko Murase
>Release:        FreeBSD 8.2-RELEASE-p3 i386
>Organization:
>Environment:
>Description:
The new release of Yafc is available, which is 1.1.3.

* Remove files:
  files/patch-src__input.c
* Changed official web site -- GitHub instead of sourceforge.net

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -urN /usr/ports/ftp/yafc/Makefile NewPorts_yafc/Makefile
--- /usr/ports/ftp/yafc/Makefile	2011-10-24 12:33:02.000000000 +0900
+++ NewPorts_yafc/Makefile	2012-05-03 13:51:05.000000000 +0900
@@ -6,10 +6,9 @@
 #
 
 PORTNAME=	yafc
-PORTVERSION=	1.1.1
-PORTREVISION=	1
+PORTVERSION=	1.1.3
 CATEGORIES=	ftp
-MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
+MASTER_SITES=	https://github.com/downloads/sebastinas/yafc/
 
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Yet another ftp client. Similar to ftp(1)
diff -urN /usr/ports/ftp/yafc/distinfo NewPorts_yafc/distinfo
--- /usr/ports/ftp/yafc/distinfo	2011-03-19 21:30:19.000000000 +0900
+++ NewPorts_yafc/distinfo	2012-05-03 13:06:56.000000000 +0900
@@ -1,2 +1,2 @@
-SHA256 (yafc-1.1.1.tar.bz2) = ab72b2ed89fb75dbe8ebd119458cf513392225f367cccfad881e9780aefcd7e6
-SIZE (yafc-1.1.1.tar.bz2) = 858991
+SHA256 (yafc-1.1.3.tar.bz2) = bcd9027081798b1e76fa2af6f900c333c7ab0e9fcd804b1f36f54879b3d377a7
+SIZE (yafc-1.1.3.tar.bz2) = 542126
diff -urN /usr/ports/ftp/yafc/files/patch-src__input.c NewPorts_yafc/files/patch-src__input.c
--- /usr/ports/ftp/yafc/files/patch-src__input.c	2006-07-11 07:15:42.000000000 +0900
+++ NewPorts_yafc/files/patch-src__input.c	1970-01-01 09:00:00.000000000 +0900
@@ -1,66 +0,0 @@
---- src/input.c.bak	Thu Oct  6 04:31:25 2005
-+++ src/input.c	Sun Jul  9 12:42:12 2006
-@@ -76,7 +76,11 @@
- 
- # include <fcntl.h> 
- # include <sys/ioctl.h> 
-+#if 0
- # include <termio.h> 
-+#else
-+# include <termios.h> 
-+#endif
- 
- char *getpass_hook(const char *prompt)
- {
-@@ -89,23 +93,39 @@
- #else
- 	int c, n = 0;
- 	char tmp[1024];
-+#if 0
- 	struct termio tbuf, tbufsave;
-+#else
-+	struct termios tbuf, tbufsave;
-+#endif
- 	FILE *fd;
- 
- 	if((fd = fopen("/dev/tty", "rb")) == NULL) {
- 		perror("fopen /dev/tty");
- 		return NULL;
- 	}
-+#if 0
- 	if (ioctl(fileno(fd), TCGETA, &tbuf) < 0) {
-+#else
-+	if (ioctl(fileno(fd), TIOCGETA, &tbuf) < 0) {
-+#endif
- 		perror("ioctl get");
- 		fclose(fd);
- 		return NULL;
- 	}
- 	tbufsave = tbuf;
-+#if 0
- 	tbuf.c_iflag &= ~(IUCLC | ISTRIP | IXON | IXOFF);
-+#else
-+	tbuf.c_iflag &= ~(ISTRIP | IXON | IXOFF);
-+#endif
- 	tbuf.c_lflag &= ~(ICANON | ISIG | ECHO);
- 	tbuf.c_cc[4] = 1; /* MIN */
-+#if 0
- 	if (ioctl(fileno(fd), TCSETA, &tbuf) < 0) {
-+#else
-+	if (ioctl(fileno(fd), TIOCSETA, &tbuf) < 0) {
-+#endif
- 		perror("ioctl set");
- 		fclose(fd);
- 		return NULL;
-@@ -132,7 +152,11 @@
- 		fflush(stderr);
- 	}
- 	tmp[n] = '\0';
-+#if 0
- 	if (ioctl(fileno(fd), TCSETA, &tbufsave) < 0) {
-+#else
-+	if (ioctl(fileno(fd), TIOCSETA, &tbufsave) < 0) {
-+#endif
- 		perror("ioctl restore");
- 		fclose(fd);
- 		return NULL;
diff -urN /usr/ports/ftp/yafc/pkg-descr NewPorts_yafc/pkg-descr
--- /usr/ports/ftp/yafc/pkg-descr	2000-10-18 05:10:04.000000000 +0900
+++ NewPorts_yafc/pkg-descr	2012-05-03 13:04:29.000000000 +0900
@@ -2,4 +2,4 @@
 Directory cache, remote filename completion, aliases, colored ls,
 recursive get/put/ls/rm, nohup mode transfers, and more!
 
-WWW: http://yafc.sourceforge.net/
+WWW: http://www.yafc-ftp.com/


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list