[Pkg-jed-commit] r1049 - jed-extra/trunk/debian

Guenter Milde milde-guest at alioth.debian.org
Fri Feb 8 15:13:58 UTC 2008


Author: milde-guest
Date: 2008-02-08 15:13:58 +0000 (Fri, 08 Feb 2008)
New Revision: 1049

Modified:
   jed-extra/trunk/debian/changelog
   jed-extra/trunk/debian/rules
Log:
New upstream release, finally. Please upload to unstable.

Modified: jed-extra/trunk/debian/changelog
===================================================================
--- jed-extra/trunk/debian/changelog	2008-02-08 15:08:43 UTC (rev 1048)
+++ jed-extra/trunk/debian/changelog	2008-02-08 15:13:58 UTC (rev 1049)
@@ -1,15 +1,15 @@
-jed-extra (2.4.2pre6-1) DO-NOT-RELEASE; urgency=low
+jed-extra (2.4.3-1) unstable; urgency=low
 
   * New upstream release:
       * fix activation of optional extensions
         (e.g. navigating in the help browser with "," and "." keys),
+      * fix dfa syntax highlight with utf-8,
       * rst.sl: fix tokenlist interface so that Mode>Navigate works again,
       		split outlining features to rst-outline.sl
-      * help.sl: enable-dfa patch applied upstream,
       * libdir.sl: use add_doc_file() (closes: #446271).
       * ispell.sl: better error report if spell program is missing 
         (closes: #451565).
-      * tests: include test scripts for some of the modes
+      * tests/: include existing test scripts
   * Remove generated files at every install or removal
     (Also removes spurious ini.sl~ files from bug #446272).
   * Create the System>Ispell menu popup in 50jed-extra.sl

Modified: jed-extra/trunk/debian/rules
===================================================================
--- jed-extra/trunk/debian/rules	2008-02-08 15:08:43 UTC (rev 1048)
+++ jed-extra/trunk/debian/rules	2008-02-08 15:13:58 UTC (rev 1049)
@@ -34,25 +34,31 @@
 # Source download
 # ---------------
 
-WGET = wget -N
+# WGET = wget -N
+# Use curl, as this also understands a file:// URL
+# * write output to file named like the remote file
+# * attempt  to  figure  out  the timestamp  of the remote file, 
+#   and if that is available make the local file get that same timestamp.
+WGET = curl --remote-name --remote-time  
+
 # URL of the upstream source package
 UPSTREAM_VERSION ?= $(shell perl -ne '/([\d.]+[pre]*\d*)-?/; print $$1; exit' < debian/changelog)
-UPSTREAM_PACKAGE = jedmodes-$(UPSTREAM_VERSION).tgz
+UPSTREAM_PACKAGE =          jedmodes-$(UPSTREAM_VERSION).tgz
 UPSTREAM_PACKAGE_CHECKSUM = jedmodes-$(UPSTREAM_VERSION).md5sum
+# officially released CVS tarball from the SF FRS
+RELEASE_URL = http://osdn.dl.sourceforge.net/sourceforge/jedmodes/
 # pre-release (source tarball from the jedmodes home site)
 PRERELEASE_URL = http://jedmodes.sourceforge.net/cvs/
-# officially released CVS tarball from the SF FRS
-RELEASE_URL = http://osdn.dl.sourceforge.net/sourceforge/jedmodes/
 # local copy
-LOCAL_RELEASE_URL = file:~/.jed/jedmodes/src/
+LOCAL_RELEASE_URL = file:/home/milde/.jed/jedmodes/src/
 
 # Choose source
 # -------------
 
 # TODO: auto-select PRERELEASE_URL if UPSTREAM_VERSION contains "pre"
 
-# UPSTREAM_URL = $(RELEASE_URL)
-UPSTREAM_URL = $(PRERELEASE_URL)
+UPSTREAM_URL = $(RELEASE_URL)
+# UPSTREAM_URL = $(PRERELEASE_URL)
 # UPSTREAM_URL = $(LOCAL_RELEASE_URL)
 
 # Rules
@@ -62,7 +68,7 @@
 	# get and check the jedmodes tarball
 	$(WGET) $(UPSTREAM_URL)$(UPSTREAM_PACKAGE)
 	# Check the md5sum of the upstream tarball
-	$(WGET) $(PRERELEASE_URL)$(UPSTREAM_PACKAGE_CHECKSUM)
+	$(WGET) $(UPSTREAM_URL)$(UPSTREAM_PACKAGE_CHECKSUM)
 	cat $(UPSTREAM_PACKAGE_CHECKSUM) | md5sum -c || exit 1
 
 	mv $(UPSTREAM_PACKAGE) jed-extra_$(UPSTREAM_VERSION).orig.tar.gz




More information about the Pkg-jed-commit mailing list