[Pkg-jed-commit] r292 - in trunk/packages/jed-extra: debian utils

Guenter Milde milde-guest at costa.debian.org
Thu May 18 12:17:07 UTC 2006


Author: milde-guest
Date: 2006-05-18 12:17:06 +0000 (Thu, 18 May 2006)
New Revision: 292

Added:
   trunk/packages/jed-extra/utils/build-from-svn-copy.sh
Removed:
   trunk/packages/jed-extra/utils/prepare-build.sh
Modified:
   trunk/packages/jed-extra/debian/rules
Log:
Rename prepare-build.sl to build-from-svn-copy.sh, as it now also start the
build and lintian check.

Bugfix in the rules



Modified: trunk/packages/jed-extra/debian/rules
===================================================================
--- trunk/packages/jed-extra/debian/rules	2006-05-18 12:09:34 UTC (rev 291)
+++ trunk/packages/jed-extra/debian/rules	2006-05-18 12:17:06 UTC (rev 292)
@@ -82,7 +82,7 @@
         # dh_install -X.html -X.otl -X.example -XREADME
 	
         # install package documentation
-	dh_installdocs contents.txt
+	dh_installdocs debian/contents.txt
 
 	# Install examples
 	dh_installexamples debian/examples/*

Copied: trunk/packages/jed-extra/utils/build-from-svn-copy.sh (from rev 290, trunk/packages/jed-extra/utils/prepare-build.sh)

Deleted: trunk/packages/jed-extra/utils/prepare-build.sh
===================================================================
--- trunk/packages/jed-extra/utils/prepare-build.sh	2006-05-18 12:09:34 UTC (rev 291)
+++ trunk/packages/jed-extra/utils/prepare-build.sh	2006-05-18 12:17:06 UTC (rev 292)
@@ -1,53 +0,0 @@
-#!/bin/sh
-# This is an experimental script that helps me test-build jed-extra
-# (c) 2005 Guenter Milde
-
-# Build the jed-extra package from existing working copy of SVN files
-# 
-# Call this script from <pkg-jed SVN>/trunk/packages/jed-extra/utils/ 
-# (this should be the dir where this file resides)
-
-cd ..
-
-# upstream version
-VER=`perl -ne '/\(([\d.]+)-/; print $1; exit' < debian/changelog`
-
-# Update the jed-extra files from SVN
-# --------------------------------
-
-# svn update
-
-# Get the upstream tarball
-# ------------------------
-
-# If there is no jed-extra_$VER.orig.tar.gz, download (see debian/rules)
-
-debian/rules get-orig-source
-
-# Unpack
-# ------
-
-# remove old dir (if left over)
-rm -Rf jedmodes-$VER
-tar -xzf jed-extra_$VER.orig.tar.gz
-
-# Copy the debian/ subdir to the source tree
-# ------------------------------------------
-install -d jedmodes-$VER/debian
-cp -uRf debian/* jedmodes-$VER/debian
-
-cd jedmodes-$VER
-
-# Fix the trailer line in changelog automatically
-perl -ni -e 'if (not $done and /^ --/) {'\
-'              print (" -- Rafael Laboissiere "'\
-'                     . "<rafael at debian.org>  ",'\
-'                     qx/date -R/, "\n");'\
-'              $done = 1;'\
-'            } else {print}' debian/changelog
-
-# Build and test
-# --------------
-
-# (do not sign, ignore SVN entries)
-debuild -i -us -uc




More information about the Pkg-jed-commit mailing list