From: mal0rd Date: Sun, 26 May 2002 04:55:11 +0000 (+0000) Subject: Added debian-dist and debian-upload targets. Also documented usage. X-Git-Tag: v_3_1_archive_branchpoint~280 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=9d463432b4e7421b58ea6b6762dbb427e83d9780;hp=ef5aefd3eb55f5451433141ee20ea4a6e4d39beb Added debian-dist and debian-upload targets. Also documented usage. --- diff --git a/GNUmakefile.in b/GNUmakefile.in index 7efae513..5237aaea 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -1,6 +1,6 @@ # Note: Makefile is built automatically from Makefile.in # -# $Id: GNUmakefile.in,v 1.104 2002/05/24 00:03:49 oes Exp $ +# $Id: GNUmakefile.in,v 1.105 2002/05/25 22:48:19 hal9 Exp $ # # Written by and Copyright (C) 2001 the SourceForge # Privoxy team. http://www.privoxy.org/ @@ -457,9 +457,16 @@ hpux-upload: # debian distribution ############################################################################# debian-dist: - @$(ECHO) coming soon. + @$(ECHO) Creating Debian package. Will exist in parent directory. + dpkg-buildpackage -rfakeroot -us -uc debian-upload: - @$(ECHO) coming soon. + ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming ../privoxy_$(shell dpkg-parsechangelog | grep "Version" | sed "s/Version: //")_$(shell dpkg --print-architecture).deb + @$(ECHO) ------------------------------------------------------- + @$(ECHO) Now goto + @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118 + @$(ECHO) ... and release the files. + @$(ECHO) ------------------------------------------------------- + ############################################################################# # macosx distribution @@ -839,6 +846,9 @@ coffee: ## end: # $Log: GNUmakefile.in,v $ +# Revision 1.105 2002/05/25 22:48:19 hal9 +# Add -notoc to README build (per oes's dsl magic). +# # Revision 1.104 2002/05/24 00:03:49 oes # Use p_doc.css for the Homepage for consistency # diff --git a/doc/source/developer-manual.sgml b/doc/source/developer-manual.sgml index 5049edd9..01fe1da3 100644 --- a/doc/source/developer-manual.sgml +++ b/doc/source/developer-manual.sgml @@ -8,8 +8,8 @@ - - + + @@ -23,7 +23,7 @@ This file belongs into ijbswa.sourceforge.net:/home/groups/i/ij/ijbswa/htdocs/ - $Id: developer-manual.sgml,v 1.45 2002/05/19 23:01:54 hal9 Exp $ + $Id: developer-manual.sgml,v 1.46 2002/05/22 17:15:00 oes Exp $ Copyright (C) 2001, 2002 Privoxy Developers See LICENSE. @@ -50,7 +50,7 @@ - $Id: developer-manual.sgml,v 1.45 2002/05/19 23:01:54 hal9 Exp $ + $Id: developer-manual.sgml,v 1.46 2002/05/22 17:15:00 oes Exp $ ource$ @@ -1787,7 +1787,7 @@ const char FILENAME_h_rcs[] = FILENAME_H_VERSION; #ifndef _FILENAME_H #define _FILENAME_H -#define FILENAME_H_VERSION "$Id: developer-manual.sgml,v 1.45 2002/05/19 23:01:54 hal9 Exp $" +#define FILENAME_H_VERSION "$Id: developer-manual.sgml,v 1.46 2002/05/22 17:15:00 oes Exp $" /********************************************************************* * * File : $Source$ @@ -2449,16 +2449,29 @@ at sourceforge. Three simple steps: First, make sure that you have freshly exported the right version into an empty directory. (See "Building and releasing packages" above). Then, run: - - + + cd current autoheader && autoconf && ./configure - - - Then do FIXME. - + + + Then, run: + + + + make debian-dist + + + + To upload the package to Sourceforge, simply issue + + + + make debian-upload + + Mac OSX @@ -2801,6 +2814,9 @@ zip -r privoxyosx_setup_x.y.z.zip Privoxy.pkg Temple Place - Suite 330, Boston, MA 02111-1307, USA. $Log: developer-manual.sgml,v $ + Revision 1.46 2002/05/22 17:15:00 oes + Updated intro + Revision 1.45 2002/05/19 23:01:54 hal9 Add small section on general packaging guidelines (e.g. actions files must be writable).