From owner-freebsd-ports@FreeBSD.ORG Wed Nov 23 07:17:46 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7905016A41F for ; Wed, 23 Nov 2005 07:17:46 +0000 (GMT) (envelope-from hemi@puresimplicity.net) Received: from just.puresimplicity.net (just.puresimplicity.net [68.77.126.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id E395943D66 for ; Wed, 23 Nov 2005 07:17:44 +0000 (GMT) (envelope-from hemi@puresimplicity.net) Received: from just.puresimplicity.net (localhost.puresimplicity.net [127.0.0.1]) by just.puresimplicity.net (8.13.4/8.13.4) with ESMTP id jAN7HhJP063417 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 23 Nov 2005 01:17:43 -0600 (CST) (envelope-from hemi@just.puresimplicity.net) Received: (from hemi@localhost) by just.puresimplicity.net (8.13.4/8.13.4/Submit) id jAN7HhgQ063416; Wed, 23 Nov 2005 01:17:43 -0600 (CST) (envelope-from hemi) Date: Wed, 23 Nov 2005 01:17:43 -0600 From: Josh Tolbert To: Kris Kennaway Message-ID: <20051123071743.GA63376@just.puresimplicity.net> References: <4383E877.6010909@sbcglobal.net> <20051123041045.GA86698@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="SUOF0GtieIMvvwua" Content-Disposition: inline In-Reply-To: <20051123041045.GA86698@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i Cc: ports@freebsd.org, FX Subject: Re: Please update mod_fcgi port (newer versions out for more than a year) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2005 07:17:46 -0000 --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Nov 22, 2005 at 11:10:45PM -0500, Kris Kennaway wrote: > On Tue, Nov 22, 2005 at 09:56:39PM -0600, FX wrote: > > Hi, > > > > The version currently in ports is 0.80 which is very buggy and doesn't > > even support suexec. Newer versions have been out for more than a year. > > > > The current upstream version is 1.07, supports suexec, and is more > > appropriate for production use. > > > > Please consider providing an updated port of mod_fcgid. It is an > > important project for users running Apache2 and ruby-on-rails. > > This port is unmaintained. No update will appear until someone (like > you) in the user community submits one. Please consider giving it a > try! > > Kris Hello, So, I'm not familiar...At all...With mod_fcgid. But, updating the port to 1.07 was a breeze. It builds and installs just fine, but since I'm not familiar with this application I don't really know how to test it. Here's the diff...If I can get one of you to test it out (FX? You requested it...) I'll send-pr this and take maintainership of the port for the time being. Attached is the diff required to update the port. FX, let me know if this works all right for you. Thanks, Josh -- Josh Tolbert hemi@puresimplicity.net || http://www.puresimplicity.net/~hemi/ If your sysadmin's not being fascist, you're paying him too much. --Sam Greenfield --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="mod_fcgid.diff" diff -urN /usr/ports/www/mod_fcgid.old/Makefile /usr/ports/www/mod_fcgid/Makefile --- /usr/ports/www/mod_fcgid.old/Makefile Sun Nov 13 03:30:46 2005 +++ /usr/ports/www/mod_fcgid/Makefile Wed Nov 23 01:11:54 2005 @@ -6,12 +6,12 @@ # PORTNAME= mod_fcgid -PORTVERSION= 0.80 +PORTVERSION= 1.07 CATEGORIES= www MASTER_SITES= http://fastcgi.coremail.cn/ DISTNAME= ${PORTNAME}.${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= hemi@puresimplicity.net COMMENT= An alternative FastCGI module for Apache2 USE_APACHE= yes diff -urN /usr/ports/www/mod_fcgid.old/distinfo /usr/ports/www/mod_fcgid/distinfo --- /usr/ports/www/mod_fcgid.old/distinfo Thu Aug 12 15:51:15 2004 +++ /usr/ports/www/mod_fcgid/distinfo Wed Nov 23 01:08:18 2005 @@ -1,2 +1,2 @@ -MD5 (mod_fcgid.0.80.tar.gz) = 553cf737f242cc657d9fab0c6e62602f -SIZE (mod_fcgid.0.80.tar.gz) = 43616 +MD5 (mod_fcgid.1.07.tar.gz) = ae74bcb009b044739dc22757581b09f3 +SIZE (mod_fcgid.1.07.tar.gz) = 48521 diff -urN /usr/ports/www/mod_fcgid.old/files/patch-fcgid_proc_unix.c /usr/ports/www/mod_fcgid/files/patch-fcgid_proc_unix.c --- /usr/ports/www/mod_fcgid.old/files/patch-fcgid_proc_unix.c Thu Aug 12 15:51:15 2004 +++ /usr/ports/www/mod_fcgid/files/patch-fcgid_proc_unix.c Wed Dec 31 18:00:00 1969 @@ -1,7 +0,0 @@ ---- arch/unix/fcgid_proc_unix.c.orig Mon Jul 26 07:08:03 2004 -+++ arch/unix/fcgid_proc_unix.c Fri Aug 13 04:53:49 2004 -@@ -1,3 +1,4 @@ -+#include - #include - #include "httpd.h" - #include "apr_thread_proc.h" --SUOF0GtieIMvvwua--