[vhffs-dev] [1655] fixed vhffs-packages Makefiles

[ Thread Index | Date Index | More vhffs.org/vhffs-dev Archives ]


Revision: 1655
Author:   gradator
Date:     2011-04-16 22:25:14 +0200 (Sat, 16 Apr 2011)
Log Message:
-----------
fixed vhffs-packages Makefiles

Modified Paths:
--------------
    trunk/vhffs-packages/Makefile.am

Added Paths:
-----------
    trunk/vhffs-packages/old/oldbuildwithdput.pl

Removed Paths:
-------------
    trunk/vhffs-packages/oldbuildwithdput.pl

Modified: trunk/vhffs-packages/Makefile.am
===================================================================
--- trunk/vhffs-packages/Makefile.am	2011-04-16 20:16:57 UTC (rev 1654)
+++ trunk/vhffs-packages/Makefile.am	2011-04-16 20:25:14 UTC (rev 1655)
@@ -1,28 +1,31 @@
 EXTRA_DIST = \
-	mysql40/mysqldb.patch.sql \
-	mysql40/output \
-	mysql40/username-len.patch \
-	mysql40/mysql-server.README.Debian.addon \
-	mysql40/build \
-	mysql41/mysqldb.patch.sql \
-	mysql41/output \
-	mysql41/username-len.patch \
-	mysql41/mysql-server.README.Debian.addon \
-	mysql41/build \
-	oldbuildwithdput.pl \
 	buildall.sh \
-	old/php/output \
-	old/php/build \
-	old/php/cgi.patch \
-	old/suphp/suphp.c.patch \
-	old/suphp/output \
-	old/suphp/disable-check-writable.patch \
-	old/suphp/build \
-	old/suphp/argv.patch \
-	old/suphp/suphp.h.patch \
-	patches/pureftpd/passivemodeandssl.patch \
-	patches/pureftpd/customerproof-tf.patch \
-	pure-ftpd/output \
-	pure-ftpd/build \
+	tfsyscall/tfsyscall-0.2.2-2.6.36.1.patch \
+	tfsyscall/tfsyscall-0.1.1-2.6.28.9.patch \
+	tfsyscall/tfsyscall-0.2.0-2.6.33.2.patch \
+	tfsyscall/tfsyscall-0.1.1-2.6.25.11.patch \
+	tfsyscall/tfsyscall-0.2.0-2.6.28.9.patch \
+	tfsyscall/tfsyscall-0.1.0-2.6.24.4.patch \
+	tfsyscall/tfsyscall-0.1.1-2.6.23.16.patch \
+	tfsyscall/tfsyscall-0.2.2-2.6.33.2.patch \
+	tfsyscall/tfsyscall-0.2.0-2.6.29.5.patch \
+	tfsyscall/tfsyscall-0.2.1-2.6.33.2.patch \
+	lighttpd/lenny.patch \
+	lighttpd/README \
+	lighttpd/10-partialcontentabuse.conf \
+	lighttpd/1.4.23.patch \
+	lighttpd/mod_partialcontentabuse.c \
+	lighttpd/1.4.25.patch \
+	lighttpd/1.4.26.patch \
+	mydns/mydns-1.1.0-7etch1-fix-bug-long-txt-reply.patch \
+	phppgadmin/phppgadmin_4.2.3_tuxfamily.patch \
+	pureftpd/customerproof-tf.patch \
+	pureftpd/estpandpassive.patch \
+	suphp/12_TuxFamily-suphp-0.6.2-3-add-targetmode-execute.dpatch \
+	suphp/10_TuxFamily-suphp-0.6.2-3-directorygroupcheck.dpatch \
+	suphp/11_TuxFamily-suphp-0.6.2-3-limits.dpatch \
+	mysql/200_mysql-dfsg-5.0-5.0.32-username-length.dpatch \
+	mysql/200_mysql-5.1-5.1.49-username-length.dpatch \
+	mysql/200_mysql-dfsg-5.0-5.0.51a-username-length.dpatch \
 	README
 

Copied: trunk/vhffs-packages/old/oldbuildwithdput.pl (from rev 1648, trunk/vhffs-packages/oldbuildwithdput.pl)
===================================================================
--- trunk/vhffs-packages/old/oldbuildwithdput.pl	                        (rev 0)
+++ trunk/vhffs-packages/old/oldbuildwithdput.pl	2011-04-16 20:25:14 UTC (rev 1655)
@@ -0,0 +1,62 @@
+#!/usr/bin/perl
+
+################################################
+# This is autobuilder for vhffs-packages
+# 
+#
+#
+################################################
+
+# CONF
+################
+
+# Turn it into 1 if you use dput to manage your packages.
+my $local_dput = 1;
+
+
+
+
+
+###################################
+# Dont touch any line below this
+###################################
+use strict;
+use File::Copy;
+
+opendir( DIR , "." ) or die("cannot open current directory");
+my @dirs = readdir( DIR );
+my $dir;
+
+system( "rm -f /tmp/packages/*" ) if( -d "/tmp/packages" );
+mkdir( "/tmp/packages" ) if( ! -d "/tmp/packages" );
+
+foreach $dir (@dirs)
+{
+	if( -d $dir )
+	{
+		if( ( -f $dir."/build" ) && ( -x $dir."/build" ) )
+		{
+			
+			print "Build package in directory $dir\n";
+			system( "cd $dir && ./build && cd .." );
+
+			if( ( defined $local_dput) && ( $local_dput == 1 ) )
+			{
+				if( -x "/usr/bin/dput" )
+				{
+					system("cp $dir/output/* /tmp/packages");
+				}
+			}
+			print "\n";
+		}
+	}
+}
+closedir( DIR );
+
+if( ( defined $local_dput) && ( $local_dput == 1 ) )
+{
+	if( -x "/usr/bin/dput" )
+	{
+		system("dput local /tmp/packages/*.changes");
+	}
+}

Deleted: trunk/vhffs-packages/oldbuildwithdput.pl
===================================================================
--- trunk/vhffs-packages/oldbuildwithdput.pl	2011-04-16 20:16:57 UTC (rev 1654)
+++ trunk/vhffs-packages/oldbuildwithdput.pl	2011-04-16 20:25:14 UTC (rev 1655)
@@ -1,62 +0,0 @@
-#!/usr/bin/perl
-
-################################################
-# This is autobuilder for vhffs-packages
-# 
-#
-#
-################################################
-
-# CONF
-################
-
-# Turn it into 1 if you use dput to manage your packages.
-my $local_dput = 1;
-
-
-
-
-
-###################################
-# Dont touch any line below this
-###################################
-use strict;
-use File::Copy;
-
-opendir( DIR , "." ) or die("cannot open current directory");
-my @dirs = readdir( DIR );
-my $dir;
-
-system( "rm -f /tmp/packages/*" ) if( -d "/tmp/packages" );
-mkdir( "/tmp/packages" ) if( ! -d "/tmp/packages" );
-
-foreach $dir (@dirs)
-{
-	if( -d $dir )
-	{
-		if( ( -f $dir."/build" ) && ( -x $dir."/build" ) )
-		{
-			
-			print "Build package in directory $dir\n";
-			system( "cd $dir && ./build && cd .." );
-
-			if( ( defined $local_dput) && ( $local_dput == 1 ) )
-			{
-				if( -x "/usr/bin/dput" )
-				{
-					system("cp $dir/output/* /tmp/packages");
-				}
-			}
-			print "\n";
-		}
-	}
-}
-closedir( DIR );
-
-if( ( defined $local_dput) && ( $local_dput == 1 ) )
-{
-	if( -x "/usr/bin/dput" )
-	{
-		system("dput local /tmp/packages/*.changes");
-	}
-}


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/