Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Feb 2014 23:45:02 +0100 (CET)
From:      Rafael Ostertag <rafi@guengel.ch>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/187075: [maintainer update] security/yapet: new upstream release YAPET 1.0
Message-ID:  <201402252245.s1PMj2qO071991@grimreaper.virtual.kruemel.home>
Resent-Message-ID: <201402252250.s1PMo0cc038915@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         187075
>Category:       ports
>Synopsis:       [maintainer update] security/yapet: new upstream release YAPET 1.0
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Feb 25 22:50:00 UTC 2014
>Closed-Date:
>Last-Modified:
>Originator:     Rafael Ostertag
>Release:        FreeBSD 10.0-RELEASE amd64
>Organization:
>Environment:
n/a

>Description:
changes
-------

 - new upstream release of YAPET version 1.0.
 - enabled ports staging
 - removed stale master site


modified files
--------------

Makefile
distinfo
pkg-plist


deleted files
-------------

files/patch-ui-basewindow.cc
files/patch-ui-secstring.h
files/patch-yapet-cfgfile.h


deleted directories
-------------------

files/

>How-To-Repeat:
n/a
>Fix:
n/a

--- yapet.diff begins here ---
Index: Makefile
===================================================================
--- Makefile	(revision 346078)
+++ Makefile	(working copy)
@@ -1,54 +1,35 @@
-# Created by: Rafael Ostertag <rafi@guengel.ch>
 # $FreeBSD$
 
 PORTNAME=	yapet
-PORTVERSION=	0.7
+PORTVERSION=	1.0
 CATEGORIES=	security
-MASTER_SITES=	http://www.guengel.ch/myapps/yapet/downloads/ http://homepage.hispeed.ch/rostertag/yapet/
+MASTER_SITES=	http://www.guengel.ch/myapps/yapet/downloads/
 
 MAINTAINER=	rafi@guengel.ch
 COMMENT=	Curses based password manager
 
-MAN1=		yapet.1
-MANCOMPRESSED=	no
+LICENSE=	GPLv3RLE
 
+USES=		gmake
 USE_OPENSSL=	yes
 GNU_CONFIGURE=	yes
 
-OPTIONS_DEFINE=	TTITLE PWGEN CSV2YAPET DOCS
-OPTIONS_DEFAULT=	TTITLE PWGEN CSV2YAPET
-TTITLE_DESC=	Enable Terminal Title
-PWGEN_DESC=	Enable Password Generator
-CSV2YAPET_DESC=	Build csv2yapet
+OPTIONS_DEFINE=	CONVERTERS DOCS NLS
+OPTIONS_DEFAULT=	CONVERTERS
+CONVERTERS_DESC=	Utilities for importing/exporting CSV files
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
-# --enable-silent-rules:  will make the build quiet
-# --disable-install-doc:  I take care of installing docs
-CONFIGURE_ARGS+=	--enable-silent-rules --disable-install-doc
+CONFIGURE_ARGS+=	--enable-silent-rules
 
-.if ${PORT_OPTIONS:MTTITLE}
-CONFIGURE_ARGS+=	--enable-terminal-title
+.if ${PORT_OPTIONS:MCONVERTERS}
+CONFIGURE_ARGS+=	--enable-converters
+PLIST_SUB+=		CONVERTERS=""
 .else
-CONFIGURE_ARGS+=	--disable-terminal-title
+CONFIGURE_ARGS+=	--disable-converters
+PLIST_SUB+=		CONVERTERS="@comment "
 .endif
 
-.if ${PORT_OPTIONS:MPWGEN}
-CONFIGURE_ARGS+=	--enable-pwgen
-.else
-CONFIGURE_ARGS+=	--disable-pwgen
-.endif
-
-.if ${PORT_OPTIONS:MCSV2YAPET}
-CONFIGURE_ARGS+=	--enable-csv2yapet
-MAN1+=			csv2yapet.1
-PLIST_SUB+=		CSV2YAPET=""
-.else
-CONFIGURE_ARGS+=	--disable-csv2yapet
-PLIST_SUB+=		CSV2YAPET="@comment "
-.endif
-
 .if ${PORT_OPTIONS:MNLS}
 USES+=			gettext
 CONFIGURE_ARGS+=	--enable-nls
@@ -60,22 +41,4 @@
 PLIST_SUB+=		NLS="@comment "
 .endif
 
-.if ${PORT_OPTIONS:MDOCS}
-PLIST_SUB+=		NOPORTDOCS=""
-.else
-PLIST_SUB+=		NOPORTDOCS="@comment "
-.endif
-
-# Taking care of installing docs due to --disable-install-doc
-# configure switch.
-post-install:
-.if ${PORT_OPTIONS:MDOCS}
-	${MKDIR} ${DOCSDIR}
-	${INSTALL_MAN} ${WRKSRC}/AUTHORS ${DOCSDIR}
-	${INSTALL_MAN} ${WRKSRC}/DESIGN ${DOCSDIR}
-	${INSTALL_MAN} ${WRKSRC}/LICENSE ${DOCSDIR}
-	${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
-	${INSTALL_MAN} ${WRKSRC}/THANKS ${DOCSDIR}
-.endif
-
 .include <bsd.port.mk>
Index: distinfo
===================================================================
--- distinfo	(revision 346078)
+++ distinfo	(working copy)
@@ -1,2 +1,2 @@
-SHA256 (yapet-0.7.tar.gz) = e668fbb5ad471b541e7c110d5fbaeeb4f067c66cee071519a16c5927c6e11085
-SIZE (yapet-0.7.tar.gz) = 2931100
+SHA256 (yapet-1.0.tar.gz) = b419ceb29fbc18f1d048280630214716086542f290df5b62e0d30f7084582772
+SIZE (yapet-1.0.tar.gz) = 3591948
Index: files/patch-ui-basewindow.cc
===================================================================
--- files/patch-ui-basewindow.cc	(revision 346078)
+++ files/patch-ui-basewindow.cc	(working copy)
@@ -1,13 +0,0 @@
---- ui/basewindow.cc.orig	2013-09-17 22:04:34.000000000 +0200
-+++ ui/basewindow.cc	2013-09-17 22:05:18.000000000 +0200
-@@ -33,6 +33,10 @@
- # include <stdio.h>
- #endif
- 
-+#ifdef HAVE_STDLIB_H
-+# include <stdlib.h>
-+#endif
-+
- #ifdef HAVE_ALGORITHM
- # include <algorithm>
- #endif
Index: files/patch-ui-secstring.h
===================================================================
--- files/patch-ui-secstring.h	(revision 346078)
+++ files/patch-ui-secstring.h	(working copy)
@@ -1,11 +0,0 @@
---- ui/secstring.h.orig	2013-09-18 19:44:08.000000000 +0200
-+++ ui/secstring.h	2013-09-18 19:44:30.000000000 +0200
-@@ -61,7 +61,7 @@
-             public:
-                 void deallocate (typename std::allocator<T>::pointer p,
-                                  typename std::allocator<T>::size_type n) {
--                    memset (p, '0', n*sizeof (std::allocator<T>::value_type) );
-+                    memset (p, '0', n*sizeof (typename std::allocator<T>::value_type) );
-                     std::allocator<T>::deallocate (p, n);
-                 }
- 
Index: files/patch-yapet-cfgfile.h
===================================================================
--- files/patch-yapet-cfgfile.h	(revision 346078)
+++ files/patch-yapet-cfgfile.h	(working copy)
@@ -1,13 +0,0 @@
---- yapet/cfgfile.h.orig	2013-09-05 20:47:04.000000000 +0200
-+++ yapet/cfgfile.h	2013-09-05 20:47:46.000000000 +0200
-@@ -35,6 +35,10 @@
- # include <string>
- #endif
- 
-+#ifdef HAVE_SSTREAM
-+# include <sstream>
-+#endif
-+
- // Used for the YAPET::PWGEN::RNGENGINE type
- #include "pwgen/rng.h"
- 
Index: pkg-plist
===================================================================
--- pkg-plist	(revision 346078)
+++ pkg-plist	(working copy)
@@ -1,12 +1,20 @@
 bin/yapet
-%%CSV2YAPET%%bin/csv2yapet
+man/man1/yapet.1.gz
+man/man5/yapet_config.5.gz
+man/man5/yapet_colors.5.gz
+%%CONVERTERS%%bin/csv2yapet
+%%CONVERTERS%%bin/yapet2csv
+%%CONVERTERS%%man/man1/csv2yapet.1.gz
+%%CONVERTERS%%man/man1/yapet2csv.1.gz
 share/applications/yapet.desktop
-%%NOPORTDOCS%%%%DOCSDIR%%/AUTHORS
-%%NOPORTDOCS%%%%DOCSDIR%%/DESIGN
-%%NOPORTDOCS%%%%DOCSDIR%%/LICENSE
-%%NOPORTDOCS%%%%DOCSDIR%%/README
-%%NOPORTDOCS%%%%DOCSDIR%%/THANKS
+%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
+%%PORTDOCS%%%%DOCSDIR%%/DESIGN
+%%PORTDOCS%%%%DOCSDIR%%/COPYING
+%%PORTDOCS%%%%DOCSDIR%%/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/NEWS
+%%PORTDOCS%%%%DOCSDIR%%/README
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
 %%NLS%%share/locale/de/LC_MESSAGES/yapet.mo
+%%NLS%%share/locale/de/LC_MESSAGES/libyacurs.mo
 @dirrmtry share/locale/de/LC_MESSAGES
 @dirrmtry share/locale/de
-%%NOPORTDOCS%%@dirrm %%DOCSDIR%%
--- yapet.diff ends here ---


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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402252245.s1PMj2qO071991>