[Pkg-jed-commit] r203 - trunk/packages/jed-extra/utils

Guenter Milde milde-guest at costa.debian.org
Thu Nov 17 10:48:49 UTC 2005


Author: milde-guest
Date: 2005-11-17 10:48:48 +0000 (Thu, 17 Nov 2005)
New Revision: 203

Added:
   trunk/packages/jed-extra/utils/build-from-scratch.sh
Modified:
   trunk/packages/jed-extra/utils/prepare-build.sh
Log:
new script to build the package from a "clean slate"


Added: trunk/packages/jed-extra/utils/build-from-scratch.sh
===================================================================
--- trunk/packages/jed-extra/utils/build-from-scratch.sh	2005-11-17 08:45:58 UTC (rev 202)
+++ trunk/packages/jed-extra/utils/build-from-scratch.sh	2005-11-17 10:48:48 UTC (rev 203)
@@ -0,0 +1,55 @@
+#!/bin/sh
+# Build jed-extra from scratch using only public sources
+# (c) 2005 Guenter Milde
+
+# if everything goes well, this script will result in a subdir jed-extra/
+# with all needed sources and the results of a debbuild
+
+# upstream version
+VERSION=2.0
+
+# Get the jed-extra files from SVN
+# --------------------------------
+
+svn export svn+ssh://svn.debian.org/svn/pkg-jed/trunk/packages/jed-extra
+cd jed-extra
+
+
+# Download the upstream tarball
+# -----------------------------
+
+debian/rules get-orig-source
+
+
+# Unpack and rename
+# -----------------
+
+tar -xzf jed-extra_$VERSION.orig.tar.gz
+mv mode jed-extra-$VERSION
+
+
+# (Re)create the jed-extra.install file list
+# -------------------------------------------
+
+jed-script utils/sort-modes.sl
+
+
+# Move the debian/ subdir to the source tree
+# ------------------------------------------
+mv debian jed-extra-$VERSION/
+
+# Build the package
+# -----------------
+
+# let the builder fix changelog
+echo "Please fix the trailer line in changelog"
+jed changelog
+
+cd jed-extra-$VERSION/debian
+debuild -us -uc
+
+
+
+
+
+


Property changes on: trunk/packages/jed-extra/utils/build-from-scratch.sh
___________________________________________________________________
Name: svn:executable
   + *

Modified: trunk/packages/jed-extra/utils/prepare-build.sh
===================================================================
--- trunk/packages/jed-extra/utils/prepare-build.sh	2005-11-17 08:45:58 UTC (rev 202)
+++ trunk/packages/jed-extra/utils/prepare-build.sh	2005-11-17 10:48:48 UTC (rev 203)
@@ -7,6 +7,7 @@
 # subdirs /debian/ and /utils/
 
 # Get the jed-extra files from SVN
+# --------------------------------
 
 # svn export svn+ssh://svn.debian.org/svn/pkg-jed/trunk/packages/jed-extra
 # cd jed-extra




More information about the Pkg-jed-commit mailing list