From max@rael.lcs.mit.edu  Thu Aug 30 20:41:11 2007
Return-Path: <max@rael.lcs.mit.edu>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 125AF16A51D
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 30 Aug 2007 20:41:11 +0000 (UTC)
	(envelope-from max@rael.lcs.mit.edu)
Received: from rael.lcs.mit.edu (rael.lcs.mit.edu [18.26.4.239])
	by mx1.freebsd.org (Postfix) with ESMTP id ACDC613C459
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 30 Aug 2007 20:41:10 +0000 (UTC)
	(envelope-from max@rael.lcs.mit.edu)
Received: from rael.lcs.mit.edu (localhost [127.0.0.1])
	by rael.lcs.mit.edu (8.13.3/8.13.3) with ESMTP id l7UKTOtR067481;
	Thu, 30 Aug 2007 16:29:24 -0400 (EDT)
	(envelope-from max@rael.lcs.mit.edu)
Received: (from max@localhost)
	by rael.lcs.mit.edu (8.13.3/8.13.3/Submit) id l7UKTOA8067480;
	Thu, 30 Aug 2007 16:29:24 -0400 (EDT)
	(envelope-from max)
Message-Id: <200708302029.l7UKTOA8067480@rael.lcs.mit.edu>
Date: Thu, 30 Aug 2007 16:29:24 -0400 (EDT)
From: ports@okws.org
Reply-To: ports@okws.org
To: FreeBSD-gnats-submit@freebsd.org
Cc: ports@okws.org
Subject: update of sfslite port
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         115952
>Category:       ports
>Synopsis:       update of devel/sfslite port
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    alepulver
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 30 20:50:02 GMT 2007
>Closed-Date:    Thu Sep 27 19:54:08 GMT 2007
>Last-Modified:  Thu Sep 27 20:00:02 GMT 2007
>Originator:     Maxwell Krohn
>Release:        FreeBSD 5.4-RELEASE-p22 i386
>Organization:
OKWS.org
>Environment:
System: FreeBSD rael.lcs.mit.edu 5.4-RELEASE-p22 FreeBSD 5.4-RELEASE-p22 #7: Wed Mar 14 16:00:17 EDT 2007 strib@freebsd-5.pdos.lcs.mit.edu:/usr/obj/usr/src/sys/PDOS i386

diff -u devel/sfslite.old/Makefile devel/sfslite/Makefile
--- devel/sfslite.old/Makefile	Mon Aug 14 18:55:16 2006
+++ devel/sfslite/Makefile	Thu Aug 30 15:55:11 2007
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	sfslite
-PORTVERSION=	0.8.4
+PORTVERSION=	1.2.2
 PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://dist.okws.org/dist/
@@ -16,8 +16,6 @@
 
 GNU_CONFIGURE=	yes
 USE_GMAKE=	yes
-CONFIGURE_ARGS+=--with-sfsuser=sfs \
-		--with-sfsgroup=sfs
 #
 # rpcc does not work with byacc, so just require BISON
 #
@@ -49,6 +47,7 @@
 .else
 BUILD_MODE?=	shopt
 RPCC_BIN?=	bin
+CONFIGURE_ARGS += --enable-system-bin
 .endif # define(BUILD_MODE)
 
 USE_LDCONFIG=	yes
diff -u devel/sfslite.old/distinfo devel/sfslite/distinfo
--- devel/sfslite.old/distinfo	Tue Dec  6 11:04:29 2005
+++ devel/sfslite/distinfo	Thu Aug 30 16:10:46 2007
@@ -1,3 +1,3 @@
-MD5 (sfslite-0.8.4.tar.gz) = 743caad1058dc30d28698f80718af035
-SHA256 (sfslite-0.8.4.tar.gz) = b0b37ad6d319ca1f732aa88274e88f03884b9388cc396605cf101d3cb99451b4
-SIZE (sfslite-0.8.4.tar.gz) = 929145
+MD5 (sfslite-1.2.2.tar.gz) = a819f483eb2a0508f363c2f9cb2326e4
+SHA256 (sfslite-1.2.2.tar.gz) = 8b78bede2a2dc4d6756652a71ac22969490ab0bc2218b3651f2374067b146089
+SIZE (sfslite-1.2.2.tar.gz) = 1269819
diff -u devel/sfslite.old/pkg-install devel/sfslite/pkg-install
--- devel/sfslite.old/pkg-install	Sat Sep 17 07:04:52 2005
+++ devel/sfslite/pkg-install	Thu Aug 30 15:30:56 2007
@@ -1,45 +1,3 @@
 #!/bin/sh
 
-if [ -n "${PACKAGE_BUILDING}" ]; then
-	exit 0
-fi
-
-USER=sfs
-GROUP=sfs
-UID=171
-GID=171
-PW=/usr/sbin/pw
-COMMENT='Self-Certifying File System'
-
-if [ "$2" = "PRE-INSTALL" ]; then
-	echo -n "Checking for group '$GROUP'... "
-
-	if ! ${PW} groupshow $GROUP >/dev/null 2>&1; then
-		echo -n "doesn't exist, adding... "
-		if ${PW} groupadd $GROUP -g ${GID}; then
-			echo "success."
-		else
-			echo "FAILED!"
-			exit 1
-		fi
-	else
-		echo "exists."
-	fi
-
-	echo -n "Checking for user '$USER'... "
-
-	if ! ${PW} usershow $USER >/dev/null 2>&1; then
-		echo -n "doesn't exist, adding... "
-		if ${PW} useradd $USER -u ${UID} -c ${COMMENT} \
-                   -d /nonexistent -g $GROUP -s /sbin/nologin -h -; then
-			echo "success."
-		else
-			echo "FAILED!"
-			exit 1
-		fi
-	else
-		echo "exists."
-	fi
-fi
-
-exit 0
+exit 0 
diff -u devel/sfslite.old/pkg-plist devel/sfslite/pkg-plist
--- devel/sfslite.old/pkg-plist	Sat Jan 21 20:48:33 2006
+++ devel/sfslite/pkg-plist	Thu Aug 30 16:06:25 2007
@@ -1,5 +1,5 @@
 %%RPCC_BIN%%/rpcc
-%%RPCC_BIN%%/unwrap
+%%RPCC_BIN%%/tame
 include/sfslite
 include/sfslite-%%VERSION%%/%%TAG%%/aclnt.h
 include/sfslite-%%VERSION%%/%%TAG%%/aes.h
@@ -27,6 +27,7 @@
 include/sfslite-%%VERSION%%/%%TAG%%/blowfish.h
 include/sfslite-%%VERSION%%/%%TAG%%/callback.h
 include/sfslite-%%VERSION%%/%%TAG%%/cbuf.h
+include/sfslite-%%VERSION%%/%%TAG%%/corebench.h
 include/sfslite-%%VERSION%%/%%TAG%%/crypt.h
 include/sfslite-%%VERSION%%/%%TAG%%/crypt_prot.h
 include/sfslite-%%VERSION%%/%%TAG%%/crypt_prot.x
@@ -83,16 +84,40 @@
 include/sfslite-%%VERSION%%/%%TAG%%/sfsschnorr.h
 include/sfslite-%%VERSION%%/%%TAG%%/sfsserv.h
 include/sfslite-%%VERSION%%/%%TAG%%/sfstty.h
+include/sfslite-%%VERSION%%/%%TAG%%/sfs_select.h
 include/sfslite-%%VERSION%%/%%TAG%%/sha1.h
 include/sfslite-%%VERSION%%/%%TAG%%/srp.h
 include/sfslite-%%VERSION%%/%%TAG%%/stllike.h
 include/sfslite-%%VERSION%%/%%TAG%%/str.h
 include/sfslite-%%VERSION%%/%%TAG%%/suio++.h
 include/sfslite-%%VERSION%%/%%TAG%%/sysconf.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_aio.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_autocb.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_closure.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_connectors.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_event_ag.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_event_green.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_event.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_io.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_lock.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_nlock.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_pc.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_pipeline.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_recycle.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_rendezvous.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_rpcserver.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_run.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_slotset.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_tfork_ag.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_tfork.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_thread.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_trigger.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_typedefs.h
+include/sfslite-%%VERSION%%/%%TAG%%/tame_weakref.h
 include/sfslite-%%VERSION%%/%%TAG%%/tiger.h
 include/sfslite-%%VERSION%%/%%TAG%%/umac.h
 include/sfslite-%%VERSION%%/%%TAG%%/union.h
-include/sfslite-%%VERSION%%/%%TAG%%/unwrap.h
 include/sfslite-%%VERSION%%/%%TAG%%/uvfstrans.h
 include/sfslite-%%VERSION%%/%%TAG%%/vatmpl.h
 include/sfslite-%%VERSION%%/%%TAG%%/vec.h
@@ -100,6 +125,16 @@
 include/sfslite-%%VERSION%%/%%TAG%%/xdr_suio.h
 include/sfslite-%%VERSION%%/%%TAG%%/xdrmisc.h
 include/sfslite-%%VERSION%%/%%TAG%%/xhinfo.h
+include/sfslite-%%VERSION%%/%%TAG%%/dsa.h
+include/sfslite-%%VERSION%%/%%TAG%%/elgamal.h
+include/sfslite-%%VERSION%%/%%TAG%%/fips186.h
+include/sfslite-%%VERSION%%/%%TAG%%/fprint.h
+include/sfslite-%%VERSION%%/%%TAG%%/homoenc.h
+include/sfslite-%%VERSION%%/%%TAG%%/qtailq.h
+include/sfslite-%%VERSION%%/%%TAG%%/rabin_fprint.h
+include/sfslite-%%VERSION%%/%%TAG%%/rabinpoly.h
+include/sfslite-%%VERSION%%/%%TAG%%/rexcommon.h
+include/sfslite-%%VERSION%%/%%TAG%%/sfssesscrypt.h
 lib/sfslite
 lib/sfslite-%%VERSION%%/%%TAG%%/aiod
 lib/sfslite-%%VERSION%%/%%TAG%%/env.mk
@@ -119,6 +154,10 @@
 lib/sfslite-%%VERSION%%/%%TAG%%/libsfsmisc.la
 lib/sfslite-%%VERSION%%/%%TAG%%/libsfsmisc.so
 lib/sfslite-%%VERSION%%/%%TAG%%/libsfsmisc.so.0
+lib/sfslite-%%VERSION%%/%%TAG%%/libtame.a
+lib/sfslite-%%VERSION%%/%%TAG%%/libtame.la
+lib/sfslite-%%VERSION%%/%%TAG%%/libtame.so
+lib/sfslite-%%VERSION%%/%%TAG%%/libtame.so.0
 lib/sfslite-%%VERSION%%/%%TAG%%/mallock.o
 lib/sfslite-%%VERSION%%/%%TAG%%/mmcd
 @dirrm lib/sfslite-%%VERSION%%/%%TAG%%
>Description:
>How-To-Repeat:
>Fix:
>Release-Note:
>Audit-Trail:
Class-Changed-From-To: maintainer-update->change-request 
Class-Changed-By: edwin 
Class-Changed-When: Thu Aug 30 20:50:16 UTC 2007 
Class-Changed-Why:  
Fix category (submitter is not maintainer) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=115952 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Thu Aug 30 20:50:38 UTC 2007 
State-Changed-Why:  
Awaiting maintainers feedback 

http://www.freebsd.org/cgi/query-pr.cgi?pr=115952 
State-Changed-From-To: feedback->open 
State-Changed-By: edwin 
State-Changed-When: Thu Aug 30 20:52:55 UTC 2007 
State-Changed-Why:  
Fix gnats-aa scripts damage. 


Class-Changed-From-To: change-request->maintainer-update 
Class-Changed-By: edwin 
Class-Changed-When: Thu Aug 30 20:52:55 UTC 2007 
Class-Changed-Why:  
Fix gnats-aa scripts damage. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=115952 
Responsible-Changed-From-To: freebsd-ports-bugs->alepulver 
Responsible-Changed-By: alepulver 
Responsible-Changed-When: Mon Sep 10 02:12:54 UTC 2007 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=115952 
State-Changed-From-To: open->closed 
State-Changed-By: alepulver 
State-Changed-When: Thu Sep 27 19:54:06 UTC 2007 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=115952 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/115952: commit references a PR
Date: Thu, 27 Sep 2007 19:54:01 +0000 (UTC)

 alepulver    2007-09-27 19:53:54 UTC
 
   FreeBSD ports repository
 
   Modified files:
     devel/sfslite        Makefile distinfo pkg-install pkg-plist 
     devel/sfslite/files  patch-async-sysconf.h 
   Removed files:
     devel/sfslite/files  patch-arpc-authopaque.C 
                          patch-arpc-authuint.C 
                          patch-arpc-rpctypes.h 
                          patch-arpc-xdr_suio.C 
                          patch-arpc-xdr_suio.h 
   Log:
   - Update to version 1.2.2.
   
   PR:             ports/115952
   Submitted by:   ports@okws.org (maintainer)
   
   Revision  Changes    Path
   1.7       +2 -4      ports/devel/sfslite/Makefile
   1.4       +3 -3      ports/devel/sfslite/distinfo
   1.2       +0 -29     ports/devel/sfslite/files/patch-arpc-authopaque.C (dead)
   1.2       +0 -20     ports/devel/sfslite/files/patch-arpc-authuint.C (dead)
   1.2       +0 -14     ports/devel/sfslite/files/patch-arpc-rpctypes.h (dead)
   1.2       +0 -20     ports/devel/sfslite/files/patch-arpc-xdr_suio.C (dead)
   1.2       +0 -12     ports/devel/sfslite/files/patch-arpc-xdr_suio.h (dead)
   1.2       +11 -7     ports/devel/sfslite/files/patch-async-sysconf.h
   1.2       +1 -43     ports/devel/sfslite/pkg-install
   1.4       +42 -2     ports/devel/sfslite/pkg-plist
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
