[Pkg-osm-commits] [SCM] website branch, master, updated. db176d9cc82ab363bca7b84baf9f6c83dac26551

2011-05-01 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit db176d9cc82ab363bca7b84baf9f6c83dac26551
Author: Jonas Smedegaard d...@jones.dk
Date:   Mon May 2 00:41:04 2011 +0200

Fix use Ikiwiki linking syntax: Is reverse order of Markdown syntax.

diff --git a/input/index.mdwn b/input/index.mdwn
index ec92311..e627645 100644
--- a/input/index.mdwn
+++ b/input/index.mdwn
@@ -15,7 +15,7 @@ Useful links
 
 * Packages [we maintain][ddpo]
 * [Bugs][bugs]
-* Packages [[we would like to package|/wnpp/]]
+* Packages [[/wnpp/|we would like to package]]
 
 [ddpo]: 
http://qa.debian.org/developer.php?login=pkg-osm-ma...@lists.alioth.debian.org
 [bugs]: 
http://bugs.debian.org/cgi-bin/pkgreport.cgi?maint=pkg-osm-maint%40lists.alioth.debian.org
@@ -23,4 +23,4 @@ Useful links
 Documentation
 -
 
-* [[Hacking the website|/website-hacking/]]
+* [[/website-hacking/|Hacking the website]]

-- 
Git repository for pkg-osm

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] website branch, master, updated. 5d21d784c436ec7182ed7c0864c33d445af979c3

2011-05-01 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 4c3aaa8bc6dd27ac96b7263472e69514525aef8d
Author: Jonas Smedegaard d...@jones.dk
Date:   Mon May 2 00:43:34 2011 +0200

Revert Fix use Ikiwiki linking syntax: Must reference object (i.e. strip 
trailing slash).

This reverts commit 4cfba0811ea12634d880bd26dc39e4bfe504a5b8.

diff --git a/input/index.mdwn b/input/index.mdwn
index 2a69327..e627645 100644
--- a/input/index.mdwn
+++ b/input/index.mdwn
@@ -15,7 +15,7 @@ Useful links
 
 * Packages [we maintain][ddpo]
 * [Bugs][bugs]
-* Packages [[/wnpp|we would like to package]]
+* Packages [[/wnpp/|we would like to package]]
 
 [ddpo]: 
http://qa.debian.org/developer.php?login=pkg-osm-ma...@lists.alioth.debian.org
 [bugs]: 
http://bugs.debian.org/cgi-bin/pkgreport.cgi?maint=pkg-osm-maint%40lists.alioth.debian.org
@@ -23,4 +23,4 @@ Useful links
 Documentation
 -
 
-* [[/website-hacking|Hacking the website]]
+* [[/website-hacking/|Hacking the website]]

-- 
Git repository for pkg-osm

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] openlayers branch, master, updated. debian/2.11+ds1-1-2-gb46ea35

2011-10-09 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit b46ea35ad7029199e539cd64af42bbfc8089b190
Author: Jonas Smedegaard d...@jones.dk
Date:   Sun Oct 9 12:52:58 2011 +0200

Update changelog.

diff --git a/debian/changelog b/debian/changelog
index 01d00d5..3453b2a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+openlayers (2.11+ds1-2) UNRELEASED; urgency=low
+
+  * Add patch to improve GeoRSS parsing.
+
+ -- Jonas Smedegaard d...@jones.dk  Sun, 09 Oct 2011 12:52:16 +0200
+
 openlayers (2.11+ds1-1) unstable; urgency=low
 
   * New upstream release

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] openlayers branch, master, updated. debian/2.11+ds1-1-2-gb46ea35

2011-10-09 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit ad2585af9a8fcbe909c1e33ee8c1cab4bead3b16
Author: Jonas Smedegaard d...@jones.dk
Date:   Sun Oct 9 12:52:00 2011 +0200

Add patch to improve GeoRSS parsing.

diff --git a/debian/patches/improved-GeoRSS-parsing.patch 
b/debian/patches/improved-GeoRSS-parsing.patch
new file mode 100644
index 000..909709f
--- /dev/null
+++ b/debian/patches/improved-GeoRSS-parsing.patch
@@ -0,0 +1,19 @@
+Description: Improve GeoRSS parsing
+ Fix gracefully handle some GeoRSS on IE8 and older.
+ Example: http://kobenhavnsdelebiler.dk/kort/biler.rdf
+Author: Jonas Smedegaard d...@jones.dk
+Last-Update: 2011-10-09
+
+--- a/lib/OpenLayers/Layer/GeoRSS.js
 b/lib/OpenLayers/Layer/GeoRSS.js
+@@ -145,7 +145,9 @@
+ name = doc.getElementsByTagNameNS('*', 
'title')[0].firstChild.nodeValue;
+ }
+ catch (e) {
+-name = 
doc.getElementsByTagName('title')[0].firstChild.nodeValue;
++try {
++name = 
doc.getElementsByTagName('title')[0].firstChild.nodeValue;
++catch (e) {}
+ }
+ if (name) {
+ this.setName(name);
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..3c9066c
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+improved-GeoRSS-parsing.patch

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.3-1-11-g0a22d3a

2012-06-25 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 3e0c1a19517bad9f3cd01d4ec727c521bd209dc3
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Jun 21 19:52:21 2012 +0200

Tidy rules file: Add commented out hint for fetching snapshot.

diff --git a/debian/rules b/debian/rules
index 46dc31c..fde988a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -32,6 +32,8 @@ CDBS_BUILD_DEPENDS += , node-uglify , node-jake
 
 DEB_UPSTREAM_URL = https://github.com/CloudMade/Leaflet/tarball
 DEB_UPSTREAM_TARBALL_BASENAME = v$(DEB_UPSTREAM_TARBALL_VERSION)
+# Set below to fetch snapshot of HEAD instead of tagged release
+#DEB_UPSTREAM_TARBALL_BASENAME = master
 DEB_UPSTREAM_TARBALL_DELIMITER =
 DEB_UPSTREAM_TARBALL_EXTENSION =
 DEB_UPSTREAM_RECEIVED_EXTENSION = tar.gz

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.3-1-11-g0a22d3a

2012-06-25 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit a62b0f9b152d22d72dc9593d2259acaa9ca1fcc8
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Jun 21 19:57:05 2012 +0200

Refresh patch 01, and simplify to minimally needed.

diff --git a/debian/patches/01-dont_test_during_build.diff 
b/debian/patches/01-dont_test_during_build.diff
index 77fd223..c7dfe81 100644
--- a/debian/patches/01-dont_test_during_build.diff
+++ b/debian/patches/01-dont_test_during_build.diff
@@ -1,41 +1,18 @@
 --- a/Jakefile.js
 +++ b/Jakefile.js
-@@ -1,29 +1,12 @@
--var build = require('./build/build.js'),
+@@ -1,5 +1,5 @@
+ var build = require('./build/build.js'),
 -  lint = require('./build/hint.js');
-+var build = require('./build/build.js');
++  lint = null;
  
  var crlf = '\r\n',
COPYRIGHT = '/*' + crlf + ' Copyright (c) 2010-2011, CloudMade, 
Vladimir Agafonkin' + crlf +
- ' Leaflet is a modern open-source JavaScript library for 
interactive maps.' + crlf +
- ' http://leaflet.cloudmade.com' + crlf + '*/' + crlf;
+@@ -23,7 +23,7 @@
+ });
  
--desc('Check Leaflet source for errors with JSHint');
--task('lint', function () {
--  var files = build.getFiles();
--  
--  console.log('Checking for JS errors...');
--  
--  var errorsFound = lint.jshint(files);
--  
--  if (errorsFound  0) {
--  console.log(errorsFound + ' error(s) found.\n');
--  fail();
--  } else {
--  console.log('\tCheck passed');
--  }
--});
--
  desc('Combine and compress Leaflet source files');
 -task('build', ['lint'], function (compsBase32, buildName) {
 +task('build', function (compsBase32, buildName) {
var pathPart = 'dist/leaflet' + (buildName ? '-' + buildName : ''),
srcPath = pathPart + '-src.js',
path = pathPart + '.js';
-@@ -62,4 +45,4 @@
-   }
- });
- 
--task('default', ['build']);
-\ No newline at end of file
-+task('default', ['build']);

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.3-1-11-g0a22d3a

2012-06-25 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit bba4855623188934798e9f4b1ee29e75b6b68652
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Jun 21 19:45:38 2012 +0200

Fix tighten build-dpendency on cdbs: Needed for recent debhelper support. 
Relax slightly build-dependency on debhelper: Eases backporting.

diff --git a/debian/control b/debian/control
index e439a88..6e5c5ac 100644
--- a/debian/control
+++ b/debian/control
@@ -3,8 +3,8 @@ Section: web
 Priority: extra
 Maintainer: Debian OpenStreetMap Team pkg-osm-ma...@lists.alioth.debian.org
 Uploaders: Andrew Harvey andrew.harv...@gmail.com
-Build-Depends: cdbs,
- debhelper (= 8.0.0),
+Build-Depends: cdbs (= 0.4.85~),
+ debhelper (= 8~),
  dh-buildinfo,
  node-uglify,
  node-jake

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet annotated tag, upstream/0.4_20120621, created. upstream/0.4_20120621

2012-06-25 Thread Jonas Smedegaard
The annotated tag, upstream/0.4_20120621 has been created
at  f5d64b6fa01755f00444d9cb156813ca5591bb00 (tag)
   tagging  d156b9685e6cc23b6a52e9a32c676e138ba6d248 (commit)
  replaces  upstream/0.3.1
 tagged by  Jonas Smedegaard
on  Thu Jun 21 18:52:03 2012 +0200

- Shortlog 
Upstream version 0.4~20120621
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCgAGBQJP41EzAAoJECx8MUbBoAEh4qQQAKFSS225gQNANaNBcBjv0x+2
887QBJN/42QDhnMEwDbm4JOpNDNit3zOU6i6oyPeOR/rlaXNs/LeVohopdWmoEM0
KAUyhEGJPMp3vrp7KU1ZFfeLnMLTdkCS85LTZpcgur0lORE3jiwD/D0F+2Pke4q9
8hnHXy+BeriBftBthrpslURFS0LTJf9r365jFHTe4tie4R2NRsOhCF9DCTk0SIQM
g7bFv1GQX491YN+PYWAn6U39b+ICN534kQKZzEgNENxx+KS6jX0EHdQxGubNB80F
w7UwwKQ3bfuGPA1oczMv2AOIMZB0N/QCnz+Q/W9Cy/zxZ/0LsT8RhUufaWCxybfX
c9j1qWPMhC2O+AzuGw4mC3CNRCMS6eZdTb78DlttufyJMtzvvzbgYXEvv0rrWCrs
Nz8WkqTZ/IaDGrDsdiMOMkhRahvuO3QBtiaoa0jSusADc84UJ9qMvu80vrfo5FYQ
AJqoZfGMu5pVPiKilT5rV/rcWo8uVicUlGL0+SlbfYqDlgtDSnlPcaBn2K01gMs0
PTRcAJEIOhJmkrOlduChhQvXm3Law7pJoWkJO3XMdPKx13RvgcjVN8KpYEG25z8a
A9S8vqxF5aVmT/iB3G46bdZHIQUq9pmoU6Gw0PztNzcQeIpkSYVRr07jOaKANiKa
e7A+iA50J1Zz0pyQfSPy
=/YqM
-END PGP SIGNATURE-

Jonas Smedegaard (1):
  Imported Upstream version 0.4~20120621

---

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.3-1-19-ged4f1ea

2012-06-25 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 3e21dfe2c677cd8fc88bb7273cba23f9f4885775
Author: Jonas Smedegaard d...@jones.dk
Date:   Tue Jun 26 02:22:08 2012 +0200

Add DEP3 header to patch 2001.

diff --git a/debian/patches/2001-dont_test_during_build.patch 
b/debian/patches/2001-dont_test_during_build.patch
index c7dfe81..bc8f9f0 100644
--- a/debian/patches/2001-dont_test_during_build.patch
+++ b/debian/patches/2001-dont_test_during_build.patch
@@ -1,3 +1,8 @@
+Description: avoid running tests until jshlint is packaged
+Author: Andrew Harvey andrew.harv...@gmail.com
+Forwarded: not-needed
+Last-Update: 2012-02-14
+
 --- a/Jakefile.js
 +++ b/Jakefile.js
 @@ -1,5 +1,5 @@

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.3-1-19-ged4f1ea

2012-06-25 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 721c6e01a6869a8e5fe6fb0929472dc8ad79b83f
Author: Jonas Smedegaard d...@jones.dk
Date:   Tue Jun 26 02:44:06 2012 +0200

Add myself as uploader.

diff --git a/debian/control b/debian/control
index 38774d0..e041201 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,8 @@ Source: leaflet
 Section: web
 Priority: extra
 Maintainer: Debian OpenStreetMap Team pkg-osm-ma...@lists.alioth.debian.org
-Uploaders: Andrew Harvey andrew.harv...@gmail.com
+Uploaders: Andrew Harvey andrew.harv...@gmail.com,
+ Jonas Smedegaard d...@jones.dk
 Build-Depends: cdbs (= 0.4.106~),
  debhelper (= 8~),
  dh-buildinfo,

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.3-1-19-ged4f1ea

2012-06-25 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit cc58436a43e9012365f7cdda57d3816d43f25181
Author: Jonas Smedegaard d...@jones.dk
Date:   Tue Jun 26 02:44:47 2012 +0200

Bump standards-version to 3.9.3.

diff --git a/debian/control b/debian/control
index e041201..c40f691 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ Build-Depends: cdbs (= 0.4.106~),
  dh-buildinfo,
  node-uglify,
  node-jake
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Homepage: http://leaflet.cloudmade.com/
 Vcs-Git: git://git.debian.org/pkg-osm/leaflet.git
 Vcs-Browser: http://git.debian.org/?p=pkg-osm/leaflet.git

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.3-1-19-ged4f1ea

2012-06-25 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit ed4f1ea7824f9c585396a5dacd43d88188958abd
Author: Jonas Smedegaard d...@jones.dk
Date:   Tue Jun 26 02:46:36 2012 +0200

Prepare for release: Update changelog.

diff --git a/debian/changelog b/debian/changelog
index d010c60..9794e63 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-leaflet (0.3.1-1) UNRELEASED; urgency=low
+leaflet (0.3.1-1) unstable; urgency=low
 
   * New upstream release.
 Closes: bug#678419.
@@ -14,9 +14,15 @@ leaflet (0.3.1-1) UNRELEASED; urgency=low
 Closes: bug#678426.
 Tighten build-dependency on cdbs: Needed for routine to put files
 aside.
-  * Refresh patch 01, and simplify to minimally needed.
-
- -- Jonas Smedegaard d...@jones.dk  Thu, 21 Jun 2012 20:06:29 +0200
+  * Refresh patch, minimize, add DEP3 header, and rename to 2001.
+  * Add debian/patches/README documenting numbering micro-policy.
+  * Add patch from upstream VCS to fix non-removable attributions
+regression.
+  * Git-ignore quilt .pc subdir to ease git-buildpackage usage.
+  * Add myself as uploader.
+  * Bump standards-version to 3.9.3.
+
+ -- Jonas Smedegaard d...@jones.dk  Tue, 26 Jun 2012 02:46:21 +0200
 
 leaflet (0.3-1) unstable; urgency=low
 

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet annotated tag, debian/0.3.1-1, created. debian/0.3.1-1

2012-06-25 Thread Jonas Smedegaard
The annotated tag, debian/0.3.1-1 has been created
at  4b108ecd80110999d8eaacb86a0e0d60670de491 (tag)
   tagging  ed4f1ea7824f9c585396a5dacd43d88188958abd (commit)
  replaces  debian/0.3-1
 tagged by  Jonas Smedegaard
on  Tue Jun 26 02:47:06 2012 +0200

- Shortlog 
Debian release 0.3.1-1

Andrew Harvey (3):
  update debian files for 0.3.1-1 release
  Imported Upstream version 0.3.1
  Merge tag 'upstream/0.3.1'

Jonas Smedegaard (16):
  Update watch, rules and copyrigh files to directly use github.com URL 
(not githubredir.debian.net or Homepage).
  Tidy control file: newline-delimit build-dependencies.
  Tidy rules file: shorten internal variable; improve header syntactically; 
drop unused parts.
  Fix tighten build-dpendency on cdbs: Needed for recent debhelper support. 
Relax slightly build-dependency on debhelper: Eases backporting.
  Put aside upstream shipped autogenerated files during build (instead of 
stripping and repackaging source tarball). Tighten build-dependency on cdbs: 
Needed for routine to put files aside.
  Tidy rules file: Add commented out hint for fetching snapshot.
  Refresh patch 01, and simplify to minimally needed.
  Update changelog.
  Rename patch 01...diff → 2001...patch.
  Add debian/patches/README documenting numbering micro-policy.
  Add DEP3 header to patch 2001.
  Add patch from upstream VCS to fix non-removable attributions regression.
  Git-ignore quilt .pc subdir to ease git-buildpackage usage.
  Add myself as uploader.
  Bump standards-version to 3.9.3.
  Prepare for release: Update changelog.

---

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits

[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.3.1-1-16-gd1c6144

2012-07-30 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit b89f1bf17ea5376562b34893daec788495ac6f9b
Author: Jonas Smedegaard d...@jones.dk
Date:   Mon Jul 30 20:17:41 2012 +0200

Update copyright file: Bump file format to 1.0, and add Github issue 
tracker as upstream contact.

diff --git a/debian/copyright b/debian/copyright
index 0fe2401..969acf4 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,5 +1,6 @@
-Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?view=corev=174
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: Leaflet
+Upstream-Contact: https://github.com/CloudMade/Leaflet/issues
 Source: https://github.com/CloudMade/Leaflet/
 
 Files: *

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4-1-4-gc83c913

2012-08-06 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 5c60bee9ccb9aa71930d56f8a9a7804cadd5917c
Merge: d1c61440db0cd7ea9855f4ecac1a18ddeb68b24a 
f9966fd633698a2c5f4fc56085f27ec8022c5b0e
Author: Jonas Smedegaard d...@jones.dk
Date:   Mon Aug 6 21:37:52 2012 +0200

Merge tag 'upstream/0.4.2'

Upstream version 0.4.2

# gpg: Signature made man 06 aug 2012 21:37:48 CEST using RSA key ID 
C1A00121
# gpg: please do a --check-trustdb
# gpg: Good signature from Jonas Smedegaard d...@jones.dk
# gpg: aka Jonas Smedegaard jo...@homebase.dk
# gpg: aka Jonas Smedegaard j...@debian.org
# gpg: aka Jonas Smedegaard jo...@dgi-huset.dk
# gpg: aka Jonas Smedegaard jo...@107b.dk
# gpg: aka [jpeg image of size 4165]


-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, pristine-tar, updated. 6d670257a5438ff94728f96fff9e3f3b10dc4898

2012-08-06 Thread Jonas Smedegaard
The following commit has been merged in the pristine-tar branch:
commit 6d670257a5438ff94728f96fff9e3f3b10dc4898
Author: Jonas Smedegaard d...@jones.dk
Date:   Mon Aug 6 21:37:48 2012 +0200

pristine-tar data for leaflet_0.4.2.orig.tar.gz

diff --git a/leaflet_0.4.2.orig.tar.gz.delta b/leaflet_0.4.2.orig.tar.gz.delta
new file mode 100644
index 000..30904ce
Binary files /dev/null and b/leaflet_0.4.2.orig.tar.gz.delta differ
diff --git a/leaflet_0.4.2.orig.tar.gz.id b/leaflet_0.4.2.orig.tar.gz.id
new file mode 100644
index 000..438816d
--- /dev/null
+++ b/leaflet_0.4.2.orig.tar.gz.id
@@ -0,0 +1 @@
+16abcb4d77bdeb67e656ebee5de1b590847f2083

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4-1-8-g8a54306

2012-09-23 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 8a543063c1cd5779e1dd654e4865a8074fb0866e
Author: Jonas Smedegaard d...@jones.dk
Date:   Sun Sep 23 19:20:42 2012 +0200

Prepare for release: Update changelog file and copyright hints.

diff --git a/debian/changelog b/debian/changelog
index 55001f0..453dc33 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-leaflet (0.4.4-1) UNRELEASED; urgency=low
+leaflet (0.4.4-1) unstable; urgency=low
 
   * New upstream release.
 
- -- Jonas Smedegaard d...@jones.dk  Mon, 06 Aug 2012 21:40:41 +0200
+ -- Jonas Smedegaard d...@jones.dk  Sun, 23 Sep 2012 19:19:38 +0200
 
 leaflet (0.4-1) experimental; urgency=low
 
diff --git a/debian/copyright_hints b/debian/copyright_hints
index ce55d24..b6e63a0 100644
--- a/debian/copyright_hints
+++ b/debian/copyright_hints
@@ -33,6 +33,7 @@ Files: CHANGELOG.md
  debug/map/scroll.html
  debug/map/wms-marble.html
  debug/map/wms.html
+ debug/tests/opacity.html
  debug/vector/bounds-extend.html
  debug/vector/editable.html
  debug/vector/feature-group-bounds.html
@@ -41,6 +42,7 @@ Files: CHANGELOG.md
  debug/vector/rectangle.html
  debug/vector/route.js
  debug/vector/touchzoomemu.html
+ debug/vector/us-states.js
  debug/vector/vector-bounds.html
  debug/vector/vector-canvas.html
  debug/vector/vector-mobile.html

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet annotated tag, debian/0.4.4-1, created. debian/0.4.4-1

2012-09-23 Thread Jonas Smedegaard
The annotated tag, debian/0.4.4-1 has been created
at  2c18fce7ab9bad34221016b9223e26ff8638f96c (tag)
   tagging  8a543063c1cd5779e1dd654e4865a8074fb0866e (commit)
  replaces  debian/0.4-1
 tagged by  Jonas Smedegaard
on  Sun Sep 23 19:22:58 2012 +0200

- Shortlog 
Debian release 0.4.4-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCgAGBQJQX0VyAAoJECx8MUbBoAEh+CwQAKN1C3WbrBotQBqnrnUvM/KJ
GcgvGcLc9ifywD1xUHNmU10c2xT2sF2U2aWKBUVnOXKm38pcNHB7cK2B+VfmVDw2
0uYuhBoClhWa3IVlSL4HBwxZd/oj1UOuNurwBb/UZTdNNcgLSFRZ4UhPOZqvQXMJ
geRzT9eF+VK3RS9G6Q2hulhvFhWIFEcjGkjB+BFA6B6FUb2dvahnKdIlOix6FiXa
DV7HpYUC2zxHIDwZb7Bd5EKD5TcR87soTIMU4uQSYk6jsliBXZHQ5twRXwpkT+4N
nTMONV/KILcJtqMKG2Y5C9ATFe2nVG8ba4BahShkUZvXunlfhbXPq7wUlDER7+YL
Zo54NOe8B5KpCh2hOZE3ESii2pDhgNGvWy88LGIKNKdyUfycWD1QfJOHCq9d3pvg
tlpds0UZJmy7x8qaLGHaB9s/uLfZeJjwsIuo0pcfD95K5LhnVwD3wIDCVm4EKBOS
5rvKx/6yEEbcwFNaRZjWzz6qCLXjPGY5kpvof+RNLChv02oyglFFLh140XU9ckXZ
0PKUQgywLIPUtRA48UqGHVSexSDX+vSr6Jh2NQtTo+0Swt7PhIo+zOmZsS5vP50N
dQin3uHV2+jeTbXyH+SYHWwYoGClCGcG9uqAnmb/WZU7zvPMhEzEg0sM8BZfYcaB
Evy+Xcg82LoXcboy+oR4
=hSoe
-END PGP SIGNATURE-

Andrew Harvey (3):
  bump to upstream version 0.4.4
  Imported Upstream version 0.4.4
  Merge tag 'upstream/0.4.4'

Jonas Smedegaard (5):
  Imported Upstream version 0.4.2
  Merge tag 'upstream/0.4.2'
  Update upstream-tarball hints for new upstream source.
  Update changelog and copyright hints.
  Prepare for release: Update changelog file and copyright hints.

---

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.4-1-6-ge2863a5

2012-11-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit e2863a58636f30ed2417f90c0a90fab7ac87b75d
Author: Jonas Smedegaard d...@jones.dk
Date:   Wed Nov 14 14:01:20 2012 +0100

Prepare for release: Update changelog and control file.

diff --git a/debian/changelog b/debian/changelog
index 843f950..36fa10b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,13 @@
-leaflet (0.4.5-1) UNRELEASED; urgency=low
+leaflet (0.4.5-1) unstable; urgency=low
 
   * New upstream release.
 
- -- Andrew Harvey andrew.harv...@gmail.com  Fri, 26 Oct 2012 08:03:32 +1100
+  [ Jonas Smedegaard ]
+  * Adapt watch file and upstream-tarball hints to use improved upstream
+paths.
+  * Use anonscm.debian.org for Vcs-Browser field.
+
+ -- Jonas Smedegaard d...@jones.dk  Wed, 14 Nov 2012 14:01:07 +0100
 
 leaflet (0.4.4-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index b88f81f..c869a3e 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Build-Depends: cdbs (= 0.4.106~),
 Standards-Version: 3.9.3
 Homepage: http://leaflet.cloudmade.com/
 Vcs-Git: git://git.debian.org/pkg-osm/leaflet.git
-Vcs-Browser: http://git.debian.org/?p=pkg-osm/leaflet.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-osm/leaflet.git
 
 Package: libjs-leaflet
 Architecture: all

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.4-1-6-ge2863a5

2012-11-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 9fc173d865b6ca66cbb3209ba19d0e821780e80d
Author: Jonas Smedegaard d...@jones.dk
Date:   Wed Nov 14 13:54:44 2012 +0100

Use anonscm.debian.org for Vcs-Browser field.

diff --git a/debian/control.in b/debian/control.in
index a7776bb..fd803fe 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -8,7 +8,7 @@ Build-Depends: @cdbs@
 Standards-Version: 3.9.3
 Homepage: http://leaflet.cloudmade.com/
 Vcs-Git: git://git.debian.org/pkg-osm/leaflet.git
-Vcs-Browser: http://git.debian.org/?p=pkg-osm/leaflet.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-osm/leaflet.git
 
 Package: libjs-leaflet
 Architecture: all

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-8-gb691156

2013-01-11 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 7a6dc921b892a801f41ea6576922be1f0beece9b
Author: Jonas Smedegaard d...@jones.dk
Date:   Fri Jan 11 16:01:46 2013 +0100

Update short and long description based on upstream texts.

diff --git a/debian/control.in b/debian/control.in
index 50239d5..ed19453 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -14,7 +14,14 @@ Package: libjs-leaflet
 Architecture: all
 Depends: ${misc:Depends}
 Recommends: javascript-common
-Description: JavaScript library for displaying map data in web browsers
- Leaflet is a modern JavaScript library for interactive maps on both desktop
- and mobile browsers by CloudMade.
-
+Description: JavaScript library for mobile-friendly interactive maps
+ Leaflet is a modern JavaScript library for mobile-friendly interactive
+ maps.  Weighing just about 27 KB of JS code, it has all the features
+ most developers ever need for online maps.
+ .
+ Leaflet is designed with simplicity, performance and usability in mind.
+ It works efficiently across all major desktop and mobile platforms out
+ of the box, taking advantage of HTML5 and CSS3 on modern browsers while
+ still being accessible on older ones. It can be extended with many
+ plugins, has a beautiful, easy to use and well-documented API and a
+ simple, readable source code that is a joy to contribute to.

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-8-gb691156

2013-01-11 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit f724984120fac0ba21c56d0e4b72b334412f72aa
Author: Jonas Smedegaard d...@jones.dk
Date:   Fri Jan 11 15:57:12 2013 +0100

Tidy control file: Shorten Vcs-Git URL.

diff --git a/debian/control.in b/debian/control.in
index 0d2e2c6..50239d5 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -7,7 +7,7 @@ Uploaders: Andrew Harvey andrew.harv...@gmail.com,
 Build-Depends: @cdbs@
 Standards-Version: 3.9.3
 Homepage: http://leafletjs.com/
-Vcs-Git: git://git.debian.org/pkg-osm/leaflet.git
+Vcs-Git: git://git.debian.org/pkg-osm/leaflet
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-osm/leaflet.git
 
 Package: libjs-leaflet

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-8-gb691156

2013-01-11 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit e7cc7c16a28cb3f00c9ee0dc7da1630da5d42a16
Author: Jonas Smedegaard d...@jones.dk
Date:   Fri Jan 11 16:11:45 2013 +0100

Enable copyright check during normal builds. Build-depend on devscripts.

diff --git a/debian/rules b/debian/rules
index 1374a0e..48516c8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -24,10 +24,6 @@ include /usr/share/cdbs/1/rules/debhelper.mk
 libname = leaflet
 pkg = libjs-leaflet
 
-# suppress optional build-dependencies
-CDBS_BUILD_DEPENDS_rules_upstream-tarball =
-CDBS_BUILD_DEPENDS_rules_utils_copyright-check =
-
 CDBS_BUILD_DEPENDS += , node-uglify , node-jake
 
 DEB_UPSTREAM_URL = https://github.com/Leaflet/Leaflet/archive

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-8-gb691156

2013-01-11 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit fa8a05113eed761db44f62d55efe0c46f5de4be7
Author: Jonas Smedegaard d...@jones.dk
Date:   Fri Jan 11 13:51:11 2013 +0100

Update upstream URLs to reflect new Homepage and development project home.

diff --git a/debian/control.in b/debian/control.in
index fd803fe..0d2e2c6 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -6,7 +6,7 @@ Uploaders: Andrew Harvey andrew.harv...@gmail.com,
  Jonas Smedegaard d...@jones.dk
 Build-Depends: @cdbs@
 Standards-Version: 3.9.3
-Homepage: http://leaflet.cloudmade.com/
+Homepage: http://leafletjs.com/
 Vcs-Git: git://git.debian.org/pkg-osm/leaflet.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-osm/leaflet.git
 
diff --git a/debian/copyright b/debian/copyright
index 969acf4..f5d559d 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,7 +1,7 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: Leaflet
-Upstream-Contact: https://github.com/CloudMade/Leaflet/issues
-Source: https://github.com/CloudMade/Leaflet/
+Upstream-Contact: https://github.com/Leaflet/Leaflet/issues
+Source: https://github.com/Leaflet/Leaflet/
 
 Files: *
 Copyright: 2010-2012, CloudMade, Vladimir Agafonkin
diff --git a/debian/rules b/debian/rules
index 546d98b..9e6c494 100755
--- a/debian/rules
+++ b/debian/rules
@@ -30,7 +30,7 @@ CDBS_BUILD_DEPENDS_rules_utils_copyright-check =
 
 CDBS_BUILD_DEPENDS += , node-uglify , node-jake
 
-DEB_UPSTREAM_URL = https://github.com/CloudMade/Leaflet/archive
+DEB_UPSTREAM_URL = https://github.com/Leaflet/Leaflet/archive
 DEB_UPSTREAM_TARBALL_BASENAME = v$(DEB_UPSTREAM_TARBALL_VERSION)
 DEB_UPSTREAM_WGET_OPTS += --no-check-certificate
 DEB_UPSTREAM_TARBALL_MD5 = 988f242c5aa76f0389798cd3e8f2c7cd
diff --git a/debian/watch b/debian/watch
index 9174e3f..85e3c3b 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,2 +1,2 @@
 version=3
-https://github.com/CloudMade/Leaflet/tags .*/archive/v?(\d[\d\.]+).tar.gz
+https://github.com/Leaflet/Leaflet/tags .*/archive/v?(\d[\d\.]+).tar.gz

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-8-gb691156

2013-01-11 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 3597d7639b9ff60a4fb9343ca0383f04376b2a8d
Author: Jonas Smedegaard d...@jones.dk
Date:   Fri Jan 11 16:22:42 2013 +0100

Add README.source covering use of CDBS and git-buildpackage.

diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 000..63f32b1
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,9 @@
+CDBS+git-buildpackage
+-
+
+This source package uses CDBS and git-buildpackage.
+
+More info here: http://wiki.debian.org/CDBS+git-buildpackage
+
+
+ -- Jonas Smedegaard d...@jones.dk  Wed, 14 Nov 2012 18:34:55 +0100

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-8-gb691156

2013-01-11 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 691b70a75c4d62bbb2753fc5bbe4df0ac3fb3ce6
Author: Jonas Smedegaard d...@jones.dk
Date:   Fri Jan 11 16:15:10 2013 +0100

Extend copyright coverage of packaging, and tighten to GPL-3+ (except patch 
2001 kept as BSD-2-clause or GPL-2+).

diff --git a/debian/copyright b/debian/copyright
index f5d559d..144b9b3 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -12,13 +12,13 @@ Copyright: 2008-2011, Pivotal Labs
 License: Expat
 
 Files: debian/*
-Copyright: 2011 Andrew Harvey andrew.harv...@gmail.com
-License: BSD-2-clause or GPL-2+
-
-Files: debian/rules
 Copyright: 2011, Andrew Harvey andrew.harv...@gmail.com
-   2010-2011, Jonas Smedegaard d...@jones.dk
-License: GPL-2+
+  2010-2013, Jonas Smedegaard d...@jones.dk
+License: GPL-3+
+
+Files: debian/patches/2001-dont_test_during_build.patch
+Copyright: 2012, Andrew Harvey andrew.harv...@gmail.com
+License: BSD-2-clause or GPL-2+
 
 License: BSD-2-clause
  All rights reserved.
@@ -85,3 +85,19 @@ License: GPL-2+
  .
  You should have received a copy of the 'GNU General Public License'
  along with this program.  If not, see http://www.gnu.org/licenses/.
+
+License: GPL-3+
+ This program is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by the
+ Free Software Foundation; either version 3 of the License, or (at your
+ option) any later version.
+ .
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ General Public License for more details.
+ .
+ Comment:
+ .
+ On Debian systems the 'GNU General Public License' version 3 is located
+ in '/usr/share/common-licenses/GPL-3'.
diff --git a/debian/rules b/debian/rules
index 48516c8..f43a0a5 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,12 +1,12 @@
 #!/usr/bin/make -f
 # -*- mode: makefile; coding: utf-8 -*-
-# Copyright 2010, 2011 Jonas Smedegaard d...@jones.dk
-# Copyright 2011 Andrew Harvey andrew.harv...@gmail.com
+# Copyright © 2010, 2011, 2012, 2013 Jonas Smedegaard d...@jones.dk
+# Copyright © 2011 Andrew Harvey andrew.harv...@gmail.com
 # Description: Main Debian packaging script for Leaflet
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
+# the Free Software Foundation; either version 3, or (at your option)
 # any later version.
 #
 # This program is distributed in the hope that it will be useful, but

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits

[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-21-g7f1fdf1

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 15bd1dee305b4293666071dc66f1670ed77ea9a8
Author: Jonas Smedegaard d...@jones.dk
Date:   Sat Jan 19 11:22:38 2013 +0100

Add patch 2002 to revive pre-0.5 use of Uglifyjs 1.x.

diff --git a/debian/patches/2002_use_old_uglifyjs.patch 
b/debian/patches/2002_use_old_uglifyjs.patch
new file mode 100644
index 000..34c60b2
--- /dev/null
+++ b/debian/patches/2002_use_old_uglifyjs.patch
@@ -0,0 +1,37 @@
+Description: Revive pre-0.5 use of Uglifyjs 1.x.
+Author: Jonas Smedegaard d...@jones.dk
+Forwarded: not-needed
+Last-Update: 2013-01-19
+
+--- a/build/build.js
 b/build/build.js
+@@ -63,6 +63,17 @@
+   return files;
+ }
+ 
++function uglify(code) {
++  var pro = UglifyJS.uglify;
++
++  var ast = UglifyJS.parser.parse(code);
++  ast = pro.ast_mangle(ast, {mangle: true});
++  ast = pro.ast_squeeze(ast);
++  ast = pro.ast_squeeze_more(ast);
++
++  return pro.gen_code(ast) + ';';
++};
++
+ exports.lint = function () {
+ 
+   var files = getFiles();
+@@ -137,10 +148,7 @@
+ 
+   var path = pathPart + '.js',
+   oldCompressed = loadSilently(path),
+-  newCompressed = copy + UglifyJS.minify(newSrc, {
+-  warnings: true,
+-  fromString: true
+-  }).code,
++  newCompressed = copy + uglify(newSrc),
+   delta = getSizeDelta(newCompressed, oldCompressed);
+ 
+   console.log('\tCompressed size: ' + newCompressed.length + ' bytes (' + 
delta + ')');
diff --git a/debian/patches/series b/debian/patches/series
index cb10c03..fa8edf4 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 2001-dont_test_during_build.patch
+2002_use_old_uglifyjs.patch

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-21-g7f1fdf1

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 7f1fdf1191a9db4442fe7a617948518d1c5037a9
Author: Jonas Smedegaard d...@jones.dk
Date:   Sat Jan 19 13:35:06 2013 +0100

Prepare for release: Update changelog and copyright hints.

diff --git a/debian/changelog b/debian/changelog
index 68f5dd6..fb15546 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,13 @@
-leaflet (0.5-1) UNRELEASED; urgency=low
+leaflet (0.5-1) unstable; urgency=low
+
+  [ upstream ]
+  * New release.
+Highlights:
++ IE10 touch devices and Metro apps support.
++ Retina-enabled markers.
++ Much better panning inertia implementation.
++ Hand cursors for dragging.
++ New zoom control design.
 
   [ Jonas Smedegaard ]
   * Update upstream URLs to reflect new Homepage and development project
@@ -10,11 +19,16 @@ leaflet (0.5-1) UNRELEASED; urgency=low
   * Extend copyright coverage of packaging, and tighten to GPL-3+
 (except patch 2001 kept as BSD-2-clause or GPL-2+).
   * Add README.source covering use of CDBS and git-buildpackage.
+  * Update and extend coverage of main copyright holders, and add
+comment about misleading notes still at some places in source.
+  * Add patch 2002 to revive pre-0.5 use of Uglifyjs 1.x.
+  * Add NEWS file with entry echoing backwards-incompatible changes from
+upstream changelog.
 
   [ Andrew Harvey ]
-  * New upstream release.
+  * Refresh patch 2001.
 
- -- Andrew Harvey andrew.harv...@gmail.com  Sat, 19 Jan 2013 09:16:51 +1100
+ -- Jonas Smedegaard d...@jones.dk  Sat, 19 Jan 2013 13:22:05 +0100
 
 leaflet (0.4.5-1) unstable; urgency=low
 
diff --git a/debian/copyright_hints b/debian/copyright_hints
index 8fff444..06ef93e 100644
--- a/debian/copyright_hints
+++ b/debian/copyright_hints
@@ -5,17 +5,21 @@ Source: FIXME
 Disclaimer: Autogenerated by CDBS
 
 Files: CHANGELOG.md
+ CONTRIBUTING.md
+ Jakefile.js
  README.md
  build/build.html
  build/build.js
  build/deps.js
- build/hint.js
  build/hintrc.js
+ debian/NEWS
  debian/README.source
  debian/compat
  debian/control
  debian/control.in
  debian/gbp.conf
+ debian/patches/2001-dont_test_during_build.patch
+ debian/patches/2002_use_old_uglifyjs.patch
  debian/patches/README
  debian/patches/series
  debian/source/format
@@ -32,9 +36,15 @@ Files: CHANGELOG.md
  debug/map/map.html
  debug/map/max-bounds.html
  debug/map/scroll.html
+ debug/map/simple-proj.html
  debug/map/wms-marble.html
  debug/map/wms.html
+ debug/map/zoomlevels.html
+ debug/tests/bringtoback.html
+ debug/tests/click_on_canvas.html
+ debug/tests/click_on_canvas_broken.html
  debug/tests/opacity.html
+ debug/tests/removetilewhilepan.html
  debug/vector/bounds-extend.html
  debug/vector/editable.html
  debug/vector/feature-group-bounds.html
@@ -51,16 +61,17 @@ Files: CHANGELOG.md
  debug/vector/vector.html
  dist/images/marker-icon.png
  dist/images/marker-shadow.png
- dist/images/zoom-in.png
- dist/images/zoom-out.png
  dist/leaflet.css
  dist/leaflet.ie.css
+ spec/happen.js
  spec/jasmine/jasmine-html.js
  spec/jasmine/jasmine.css
  spec/jasmine/jasmine.js
  spec/runner.html
  spec/suites/LeafletSpec.js
  spec/suites/SpecHelper.js
+ spec/suites/control/Control.LayersSpec.js
+ spec/suites/control/Control.ScaleSpec.js
  spec/suites/core/ClassSpec.js
  spec/suites/core/EventsSpec.js
  spec/suites/core/UtilSpec.js
@@ -73,6 +84,7 @@ Files: CHANGELOG.md
  spec/suites/geometry/PointSpec.js
  spec/suites/geometry/TransformationSpec.js
  spec/suites/layer/TileLayerSpec.js
+ spec/suites/layer/vector/CircleSpec.js
  spec/suites/layer/vector/PolylineGeometrySpec.js
  spec/suites/map/MapSpec.js
  src/Leaflet.js
@@ -87,12 +99,12 @@ Files: CHANGELOG.md
  src/core/Handler.js
  src/core/Util.js
  src/dom/DomEvent.DoubleTap.js
+ src/dom/DomEvent.MsTouch.js
  src/dom/DomEvent.js
  src/dom/DomUtil.js
  src/dom/Draggable.js
- src/dom/transition/Transition.Native.js
- src/dom/transition/Transition.Timer.js
- src/dom/transition/Transition.js
+ src/dom/PosAnimation.Timer.js
+ src/dom/PosAnimation.js
  src/geo/LatLng.js
  src/geo/LatLngBounds.js
  src/geo/crs/CRS.EPSG3395.js
@@ -109,6 +121,7 @@ Files: CHANGELOG.md
  src/geometry/Point.js
  src/geometry/PolyUtil.js
  src/geometry/Transformation.js
+ src/images/marker.svg
  src/layer/FeatureGroup.js
  src/layer/GeoJSON.js
  src/layer/ImageOverlay.js
@@ -156,12 +169,14 @@ License: UNKNOWN
 
 Files: dist/leaflet-src.js
  dist/leaflet.js
-Copyright: 2010-2012, CloudMade, Vladimir Agafonkin
+ src/copyright.js
+Copyright: 2010-2013, Vladimir Agafonkin, CloudMade
 License: UNKNOWN
  FIXME
 
 Files: LICENSE
-Copyright: 2010-2011, CloudMade, Vladimir Agafonkin
+Copyright: 2010-2011, CloudMade
+  2010-2013, Vladimir Agafonkin
   HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
SPECIAL
   HOLDERS AND CONTRIBUTORS AS IS AND ANY
 License: BSD-2-clause
@@ -179,15 +194,8 @@ Copyright: 2010-2013, Jonas Smedegaard d...@jones.dk
 License: GPL-3+
  FIXME
 
-Files: Jakefile.js
-Copyright

[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-21-g7f1fdf1

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 779b6a4330dfbcd722eed376b93b7919807a9a47
Author: Jonas Smedegaard d...@jones.dk
Date:   Sat Jan 19 10:31:48 2013 +0100

Fix typo in patch 2001 header.

diff --git a/debian/patches/2001-dont_test_during_build.patch 
b/debian/patches/2001-dont_test_during_build.patch
index 95d1f9d..ac98838 100644
--- a/debian/patches/2001-dont_test_during_build.patch
+++ b/debian/patches/2001-dont_test_during_build.patch
@@ -1,4 +1,4 @@
-Description: avoid running tests as jshlint isn't packaged
+Description: avoid running tests as jslint isn't packaged
 Author: Andrew Harvey andrew.harv...@gmail.com
 Forwarded: not-needed
 Last-Update: 2013-01-19

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-21-g7f1fdf1

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 68ed44b0f74cbe27e787da1a56386df502bdc06b
Author: Jonas Smedegaard d...@jones.dk
Date:   Sat Jan 19 13:32:30 2013 +0100

Add NEWS file with entry echoing backwards-incompatible changes from 
upstream changelog.

diff --git a/debian/NEWS b/debian/NEWS
new file mode 100644
index 000..aa16702
--- /dev/null
+++ b/debian/NEWS
@@ -0,0 +1,14 @@
+leaflet (0.5-1) unstable; urgency=low
+
+  * This release includes the following backwards-incompatible changes:
+
++ Removed default 'LatLng' wrapping/clamping of coordinates
+  ('-180, -90' to '180, 90'), wrapping moved to an explicit method
+  ('LatLng' 'wrap').
++ Disabled 'Map' 'worldCopyJump' option by default (jumping back to
+  the original world copy when panning out of it). Enable it
+  explicitly if you need it.
++ Changed styles for the zoom control (you may need to update your
+  custom styles for it).
+
+ -- Jonas Smedegaard d...@jones.dk  Sat, 19 Jan 2013 13:22:05 +0100

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet annotated tag, debian/0.5-1, created. debian/0.5-1

2013-02-14 Thread Jonas Smedegaard
The annotated tag, debian/0.5-1 has been created
at  5c1c4dc04d6188711581a83600acf981f9906f26 (tag)
   tagging  7f1fdf1191a9db4442fe7a617948518d1c5037a9 (commit)
  replaces  debian/0.4.5-1
 tagged by  Jonas Smedegaard
on  Sat Jan 19 13:36:08 2013 +0100

- Shortlog 
Debian release 0.5-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAABCgAGBQJQ+pM4AAoJECx8MUbBoAEhwEMQAI7ZOgCgF+kju4Ljuhju0t8n
tzLbIOoPOVAytMDclDmJeDWguWnZHqlMuzXoP3zlcMIN5Pe1GVrLsFTGacnd3Jrz
xndlq1nCgn3S+d2pNseePc/bMha6WAZTeDh4jvbMPM1VWfUUP+Uolwbxx+unsrX/
UaB2rimyupEYiYhp5sdFsVrgdabsi+eqzISbZM2FABDAzQMiakrXk64z1qJz9Qve
4FGm4Ub8eNU46Ly/G7Qw3jbc4Xuif69mFnpVBrvI7lNHARnkxycunRjv71Vv9HT0
GrG/WGvRtFfnYxjtGDPGoqIoMEFyT88UOfQg+fVf/jLmCude3WrpxBDJ22jC5Acj
/Yx3D84Lvxtg9tBlZGZNVQ8lRoZ33keG45bOM2W6UZ9vhsEy5hBcOwRhsKVm2Z6i
LJemG3m2WdchEr8+tuJYTQgOFzkrMk/fPw2+NjGzPiMF4L8mJ3RPqz0Dhj9hQcvT
s4bymUHn3jc1a4SIdYBKIAKFOCp5OiSBTyS35wCR5aP/lk+36X/8kh6IfvIoBct4
KPggQQIBtTqsDebjSO6786iKb99R2Vb7uKp+9K07+u4eKlb3Yy8CDPbtXviAucYh
2TU6uRooEavip89rK5ruV2U8P/t1cQxz33Ot9IDd0MUAn+undJXr8iN9sLRrCtcV
oyOieh9A/FxMAwLUGOn/
=Qp2y
-END PGP SIGNATURE-

Andrew Harvey (5):
  bump upstream version to 0.5
  Imported Upstream version 0.5
  Merge tag 'upstream/0.5'
  refresh patches
  bump dependency versions

Jonas Smedegaard (16):
  Update upstream URLs to reflect new Homepage and development project home.
  Tidy control file: Shorten Vcs-Git URL.
  Update short and long description based on upstream texts.
  Update upstream-tarball hints for current upstream source.
  Enable copyright check during normal builds. Build-depend on devscripts.
  Extend copyright coverage of packaging, and tighten to GPL-3+ (except 
patch 2001 kept as BSD-2-clause or GPL-2+).
  Add README.source covering use of CDBS and git-buildpackage.
  Update changelog, control file and copyright hints.
  Revert bump dependency versions.
  Minimize patch 2001 to only avoid jslint, not eradicate its use in source.
  Fix typo in patch 2001 header.
  Supress one more image from copyright check.
  Update and extend coverage of main copyright holders, and add comment 
about misleading notes still at some places in source.
  Add patch 2002 to revive pre-0.5 use of Uglifyjs 1.x.
  Add NEWS file with entry echoing backwards-incompatible changes from 
upstream changelog.
  Prepare for release: Update changelog and copyright hints.

---

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-21-g7f1fdf1

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 5e6cb1beeb629ad01d629e129d7d456aa026307f
Author: Jonas Smedegaard d...@jones.dk
Date:   Sat Jan 19 10:11:15 2013 +0100

Revert bump dependency versions.

We can pick minifier independent from upstream, and uglifyjs2 is not yet
in Debian.

This reverts commit df68986df32009fa259fb20cf3a76a6622760dcc.

diff --git a/debian/changelog b/debian/changelog
index ede30b0..68f5dd6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,7 +13,6 @@ leaflet (0.5-1) UNRELEASED; urgency=low
 
   [ Andrew Harvey ]
   * New upstream release.
-  * Bump dependency versions.
 
  -- Andrew Harvey andrew.harv...@gmail.com  Sat, 19 Jan 2013 09:16:51 +1100
 
diff --git a/debian/control b/debian/control
index b53ac1b..287ceab 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Build-Depends: devscripts,
  cdbs (= 0.4.106~),
  debhelper,
  dh-buildinfo,
- node-uglify2,
+ node-uglify,
  node-jake
 Standards-Version: 3.9.3
 Homepage: http://leafletjs.com/

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-21-g7f1fdf1

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit f4c20110909b6da25683901713aca4006f1d8982
Author: Jonas Smedegaard d...@jones.dk
Date:   Sat Jan 19 10:53:37 2013 +0100

Update and extend coverage of main copyright holders, and add comment about 
misleading notes still at some places in source.

diff --git a/debian/copyright b/debian/copyright
index 144b9b3..548df4e 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,8 +4,12 @@ Upstream-Contact: https://github.com/Leaflet/Leaflet/issues
 Source: https://github.com/Leaflet/Leaflet/
 
 Files: *
-Copyright: 2010-2012, CloudMade, Vladimir Agafonkin
+Copyright: 2010-2011, CloudMade
+  2010-2013, Vladimir Agafonkin
 License: BSD-2-clause
+Comment:
+ LICENSE file was updated on 2012-01-11 to clarify coverage of main
+ copyright holders, even if still written as a combo at other places.
 
 Files: spec/jasmine/*
 Copyright: 2008-2011, Pivotal Labs

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.4.5-1-21-g7f1fdf1

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 54af272589f77f474665c6527f3c6e93629d78b9
Author: Jonas Smedegaard d...@jones.dk
Date:   Sat Jan 19 10:30:47 2013 +0100

Minimize patch 2001 to only avoid jslint, not eradicate its use in source.

diff --git a/debian/patches/2001-dont_test_during_build.patch 
b/debian/patches/2001-dont_test_during_build.patch
index b323bcc..95d1f9d 100644
--- a/debian/patches/2001-dont_test_during_build.patch
+++ b/debian/patches/2001-dont_test_during_build.patch
@@ -3,84 +3,21 @@ Author: Andrew Harvey andrew.harv...@gmail.com
 Forwarded: not-needed
 Last-Update: 2013-01-19
 
 leaflet.orig/Jakefile.js
-+++ leaflet/Jakefile.js
-@@ -5,7 +5,6 @@
+--- a/Jakefile.js
 b/Jakefile.js
+@@ -18,6 +18,6 @@
+ task('lint', build.lint);
  
- npm install -g jake
- npm install uglify-js
--npm install jshint
- 
- To check the code and build Leaflet from source, run jake
- 
-@@ -14,10 +13,7 @@
- 
- var build = require('./build/build.js');
- 
--desc('Check Leaflet source for errors with JSHint');
--task('lint', build.lint);
--
  desc('Combine and compress Leaflet source files');
 -task('build', ['lint'], build.build);
-+task('build', [], build.build);
++task('build', build.build);
  
  task('default', ['build']);
 leaflet.orig/build/build.js
-+++ leaflet/build/build.js
-@@ -1,32 +1,10 @@
+--- a/build/build.js
 b/build/build.js
+@@ -1,5 +1,4 @@
  var fs = require('fs'),
 -jshint = require('jshint'),
  UglifyJS = require('uglify-js'),
  
  deps = require('./deps.js').deps,
- hintrc = require('./hintrc.js').config;
- 
- 
--function lintFiles(files) {
--
--  var errorsFound = 0,
--  i, j, len, len2, src, errors, e;
--
--  for (i = 0, len = files.length; i  len; i++) {
--
--  jshint.JSHINT(fs.readFileSync(files[i], 'utf8'), hintrc);
--  errors = jshint.JSHINT.errors;
--
--  for (j = 0, len2 = errors.length; j  len2; j++) {
--  e = errors[j];
--  console.log(files[i] + '\tline ' + e.line + '\tcol ' + 
e.character + '\t ' + e.reason);
--  }
--
--  errorsFound += len2;
--  }
--
--  return errorsFound;
--}
--
- function getFiles(compsBase32) {
-   var memo = {},
-   comps;
-@@ -64,23 +42,6 @@
-   return files;
- }
- 
--exports.lint = function () {
--
--  var files = getFiles();
--
--  console.log('Checking for JS errors...');
--
--  var errorsFound = lintFiles(files);
--
--  if (errorsFound  0) {
--  console.log(errorsFound + ' error(s) found.\n');
--  fail();
--  } else {
--  console.log('\tCheck passed');
--  }
--};
--
--
- function getSizeDelta(newContent, oldContent) {
-   if (!oldContent) {
-   return 'new';

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.5-1-6-gf962eff

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 303d34af9ae65706731cf586a81fe98d456ba523
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Feb 14 13:12:53 2013 +0100

Extend git-buildpackage config to ignore upstream .gitignore files.

diff --git a/debian/gbp.conf b/debian/gbp.conf
index a7281f9..790a2f9 100644
--- a/debian/gbp.conf
+++ b/debian/gbp.conf
@@ -3,3 +3,6 @@
 [DEFAULT]
 pristine-tar = True
 sign-tags = True
+
+[git-import-orig]
+filter = .gitignore

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet annotated tag, debian/0.5.1-1, created. debian/0.5.1-1

2013-02-14 Thread Jonas Smedegaard
The annotated tag, debian/0.5.1-1 has been created
at  9c4d05ad33dde6be0501f6ccd430024e77b4449f (tag)
   tagging  f962eff912d25cee5e9e4d3f7a47401171aa2e03 (commit)
  replaces  debian/0.5-1
 tagged by  Jonas Smedegaard
on  Thu Feb 14 13:26:02 2013 +0100

- Shortlog 
Debian release 0.5.1-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQEcBAABCgAGBQJRHNfaAAoJEE7BtyI3T5vWJfQH/0zF0MyjWAppcXCNh0pd43Y2
B2uTiA5ckajdYM6V6K6QlyoJ3QBnKyjT/sVpwZpllsMthPRNLm6eI4/QFxDIsI8F
ISS5v9l+o8OzVOwHlzh5E37AEUOFKX0sQiHNrFmUT6dVS2h6IwwZbYA86Or4Ffrf
HqEaCLHuuPggGgNOuRdAzTNuqHBX7gp2qIljqHTE6aoJ9aCSeW8VWTWMNtQJcfj0
6AWpLxQI0G0gyW8AbViCzFrYtFyUZvKCnawgHwDVM2ZI4K37RJMhBg8G1ruiXH69
P64xnQXJQ6+7/pY5HQLd+/HzOxpgmPpyDyLzRb8j5Zle6gxCOC580JEC5gENe6c=
=jbc9
-END PGP SIGNATURE-

Jonas Smedegaard (6):
  Extend git-buildpackage config to ignore upstream .gitignore files.
  Strip upstream parts of .gitignore file.
  Imported Upstream version 0.5.1
  Merge tag 'upstream/0.5.1'
  Update upstream-tarball hints for current upstream source.
  Prepare for release: Update changelog.

---

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet annotated tag, upstream/0.5.1, created. upstream/0.5.1

2013-02-14 Thread Jonas Smedegaard
The annotated tag, upstream/0.5.1 has been created
at  68bb6ec8273f9888b2cd54de05e9e1b9e0ff5d08 (tag)
   tagging  f55784b879b91d5be0f461644d47eefb1a73f8d6 (commit)
  replaces  upstream/0.5
 tagged by  Jonas Smedegaard
on  Thu Feb 14 13:13:44 2013 +0100

- Shortlog 
Upstream version 0.5.1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQEcBAABCgAGBQJRHNT4AAoJEE7BtyI3T5vWATsH+wXNWFwtSip+TIAUdy8x6pr6
RM9sdEPECDfzkAISmuwUedAzgnGxRVgYB4DSzDNOB5Mlno6nTdFi8231x/5QRou3
o1zmDOhI4m3pNnNriACwrxLnXqsPzaKYmXXM2ytAz50t532QneuS+hFomp60GmcM
0dAxb/xaZGN4AMlke1L+D6M9HuQWRnQNvOq1HKlrTiHdCVZpZnQXdkY6ZCWPr6vY
2iVmsfzKsxJJlM7XC51tMGOLmrgfLR32t2m1w1V6UM6utB56fFg5gmrKKwilyE3i
LhqejWVAWu1/ctqYoN3qjV1OPvjN8MxzFo7CqxTA809kKNfMKKC5KJgtX9gLLwg=
=Iv10
-END PGP SIGNATURE-

Jonas Smedegaard (1):
  Imported Upstream version 0.5.1

---

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.5-1-6-gf962eff

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit e7dffc34241b775a025090030d7eaa189ec185a0
Merge: e82eacb459e0b635473288cde83dc988622d934a 
f55784b879b91d5be0f461644d47eefb1a73f8d6
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Feb 14 13:14:09 2013 +0100

Merge tag 'upstream/0.5.1'

Upstream version 0.5.1

Conflicts (manually resolved):
.gitignore


-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.5-1-6-gf962eff

2013-02-14 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit a560589bcf483058a13b9291dddbe17c289f4a55
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Feb 14 13:14:46 2013 +0100

Update upstream-tarball hints for current upstream source.

diff --git a/debian/rules b/debian/rules
index da2df81..add215c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,7 +28,7 @@ CDBS_BUILD_DEPENDS += , node-uglify , node-jake
 
 DEB_UPSTREAM_URL = https://github.com/Leaflet/Leaflet/archive
 DEB_UPSTREAM_TARBALL_BASENAME = v$(DEB_UPSTREAM_TARBALL_VERSION)
-DEB_UPSTREAM_TARBALL_MD5 = 9b2afef5f3c4acc3c84cad8d31f75de1
+DEB_UPSTREAM_TARBALL_MD5 = ac54371aa1db3ac51255f5247e113469
 
 # Skip checking some images (in addition to the defaults)
 DEB_COPYRIGHT_CHECK_IGNORE_REGEX = 
^(dist/images/(layers|marker-icon@2x)\.png|debian/(changelog|copyright(|_hints|_newhints)))$

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.5.1-1-1-gdfda917

2013-04-18 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit dfda917cdcfec168e170df445155365473c07e98
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Apr 18 21:58:12 2013 +0200

Update README.source to emphasize control.in file as *not* a show-stopper 
for contributions.

diff --git a/debian/README.source b/debian/README.source
index 63f32b1..f88449e 100644
--- a/debian/README.source
+++ b/debian/README.source
@@ -1,9 +1,11 @@
 CDBS+git-buildpackage
 -
 
-This source package uses CDBS and git-buildpackage.
+This source package uses CDBS and git-buildpackage.  NMUs need not (but
+are encouraged to) make special use of these tools.  In particular, the
+debian/control.in file can be completely ignored.
 
 More info here: http://wiki.debian.org/CDBS+git-buildpackage
 
 
- -- Jonas Smedegaard d...@jones.dk  Wed, 14 Nov 2012 18:34:55 +0100
+ -- Jonas Smedegaard d...@jones.dk  Mon, 18 Feb 2013 12:55:37 +0100

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.5.1-1-2440-gc0c91ef

2013-06-26 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit ec20726bd762c4046702e12ca7dd46b9c7b6d678
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Jun 27 00:27:40 2013 +0200

Stop tracking md5sum of upstream tarball.

diff --git a/debian/rules b/debian/rules
index add215c..1dff43b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,7 +28,6 @@ CDBS_BUILD_DEPENDS += , node-uglify , node-jake
 
 DEB_UPSTREAM_URL = https://github.com/Leaflet/Leaflet/archive
 DEB_UPSTREAM_TARBALL_BASENAME = v$(DEB_UPSTREAM_TARBALL_VERSION)
-DEB_UPSTREAM_TARBALL_MD5 = ac54371aa1db3ac51255f5247e113469
 
 # Skip checking some images (in addition to the defaults)
 DEB_COPYRIGHT_CHECK_IGNORE_REGEX = 
^(dist/images/(layers|marker-icon@2x)\.png|debian/(changelog|copyright(|_hints|_newhints)))$

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.5.1-1-2440-gc0c91ef

2013-06-26 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 028ea0ab9785171e117fd2e27c5a6d50b5032de3
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Jun 27 01:06:03 2013 +0200

Update copyright file: Drop Files section for no longer shipped jasmine. 
Add Files section for convenience code copy of sinon.js (derivation of 
BSD-3-clause) and expect.js (Expat).

diff --git a/debian/copyright b/debian/copyright
index 548df4e..1a81bb3 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -11,9 +11,23 @@ Comment:
  LICENSE file was updated on 2012-01-11 to clarify coverage of main
  copyright holders, even if still written as a combo at other places.
 
-Files: spec/jasmine/*
-Copyright: 2008-2011, Pivotal Labs
+Files: spec/sinon.js
+Copyright: 2010-2013, Christian Johansen christ...@cjohansen.no
+  2011, Sven Fuchs
+  2012, Maximilian Antoni
+License: BSD-3-clause~Christian
+
+Files: spec/expect.js
+Copyright:
+  Joyent, Inc. and other Node contributors
+  2010-2011 TJ Holowaychuk t...@vision-media.ca
+  2011 Aseem Kishore aseem.kish...@gmail.com
+  2011 Guillermo Rauch guille...@learnboost.com
 License: Expat
+Comment:
+ Code lacks copyright header, but is clearly same code as
+ https://github.com/LearnBoost/expect.js with above listed copyright
+ and licensing.
 
 Files: debian/*
 Copyright: 2011, Andrew Harvey andrew.harv...@gmail.com
@@ -51,6 +65,32 @@ License: BSD-2-clause
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+License: BSD-3-clause~Christian
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ * Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+ * Neither the name of Christian Johansen nor the names of his
+   contributors may be used to endorse or promote products derived from
+   this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS
+ IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
 License: Expat
  Permission is hereby granted, free of charge, to any person obtaining a
  copy of this software and associated documentation files (the

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.5.1-1-2440-gc0c91ef

2013-06-26 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 182a10ef356f7864d84b8db174ea05c294c0f546
Merge: ec20726bd762c4046702e12ca7dd46b9c7b6d678 
05b1eda46111ef20ed5fa680bb9b4d545d780cbf
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Jun 27 00:28:19 2013 +0200

Merge tag 'upstream/0.6'

Upstream version 0.6

# gpg: Signature made tor 27 jun 2013 00:28:15 CEST
# gpg:using RSA key 0x4EC1B722374F9BD6
# gpg: Good signature from Jonas Smedegaard d...@jones.dk
# gpg: aka Jonas Smedegaard jo...@homebase.dk
# gpg: aka Jonas Smedegaard j...@debian.org
# gpg: aka Jonas Smedegaard jo...@dgi-huset.dk
# gpg: aka Jonas Smedegaard jo...@107b.dk
# gpg: aka [jpeg image of size 4165]


-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet annotated tag, debian/0.6-1, created. debian/0.6-1

2013-06-26 Thread Jonas Smedegaard
The annotated tag, debian/0.6-1 has been created
at  446cc782b10987a1f9830143dfdcbf69bf8c3b06 (tag)
   tagging  c0c91ef4d78f96ae6a68f5f40f46139aabead0ca (commit)
  replaces  upstream/0.6
 tagged by  Jonas Smedegaard
on  Thu Jun 27 02:09:00 2013 +0200

- Shortlog 
leaflet Debian release 0.6-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQEcBAABCgAGBQJRy4KcAAoJEE7BtyI3T5vWgRQIAKpHXVv6KGnUBkQPFPLWwvSC
8dpdO8GO1qYJ9h0W/qTz9iyptrIxpK0CyP8GxJA46wgfcwOx176n07pidPx7IjsA
tIVQiWyC3j6JoA0AUQ9B4rY1Efic2GfJ+q16uffsyTwLiPLXonxxZskcFqhRVg7j
8x2MFUFTFpWV6FW5WpkXRJQkGRAKrfKkFy7+n6HslnUjGg0b2oHEJzIff/uJ3mz5
Fh/wzvwEv2n4XAA89s5ZpBcV6UFcPfSJ8BFdCuD68Y5FBaN4vwX5a3I5EYRTt4b/
uVXoyGbHMRmGjNyS8y2A+57Q7GHXeFpSsuMuvSJMVTYRvQK8v45T70NFDYf4h+4=
=qIJp
-END PGP SIGNATURE-

Andrew Harvey (13):
  Imported Debian patch 0.2.1-1
  Merge tag 'upstream/0.3'
  updating debian files for 0.3-1 release
  update debian files for 0.3.1-1 release
  Merge tag 'upstream/0.3.1'
  bump to upstream version 0.4.4
  Merge tag 'upstream/0.4.4'
  bump upstream version to 0.4.5
  Merge tag 'upstream/0.4.5'
  bump upstream version to 0.5
  Merge tag 'upstream/0.5'
  refresh patches
  bump dependency versions

David Paleino (1):
  Releasing to sid

Jonas Smedegaard (66):
  Update watch, rules and copyrigh files to directly use github.com URL 
(not githubredir.debian.net or Homepage).
  Tidy control file: newline-delimit build-dependencies.
  Tidy rules file: shorten internal variable; improve header syntactically; 
drop unused parts.
  Fix tighten build-dpendency on cdbs: Needed for recent debhelper support. 
Relax slightly build-dependency on debhelper: Eases backporting.
  Put aside upstream shipped autogenerated files during build (instead of 
stripping and repackaging source tarball). Tighten build-dependency on cdbs: 
Needed for routine to put files aside.
  Tidy rules file: Add commented out hint for fetching snapshot.
  Refresh patch 01, and simplify to minimally needed.
  Update changelog.
  Rename patch 01...diff → 2001...patch.
  Add debian/patches/README documenting numbering micro-policy.
  Add DEP3 header to patch 2001.
  Add patch from upstream VCS to fix non-removable attributions regression.
  Git-ignore quilt .pc subdir to ease git-buildpackage usage.
  Add myself as uploader.
  Bump standards-version to 3.9.3.
  Prepare for release: Update changelog.
  Merge tag 'upstream/0.4'
  Update upstream-tarball hints for new upstream source.
  Update copyright file: Cover new jasmine files,  Expat licensed.
  Drop patch cherry-picked upstream: Included upstream.
  Refresh patch 2001.
  Update copyright file: Extend coverage of main project to include current 
year.
  Update copyright file: Adjust to use standard short name BSD-2-clause.
  Update copyright file: Rewrap License sections at 72 chars.
  Update copyright file: Rephrase reference to GPL to be shorter, and 
reference FSF website (not postal address). Put both in 
pseudo-comment-in-license paragraph (to emphasize them being not verbatim yet 
obey File format 1.0 mandating License paragraph being either single-line or 
include all licensing info).
  Update copyright file: Bump file format to 1.0, and add Github issue 
tracker as upstream contact.
  Add control.in to ease managing package relations.
  Add copyright hints, and skip checking an image.
  Add git-buildpackage config, enabling signed tags and use of pristine-tar.
  Prepare for release: Update changelog and control file.
  Merge tag 'upstream/0.4.2'
  Update upstream-tarball hints for new upstream source.
  Update changelog and copyright hints.
  Prepare for release: Update changelog file and copyright hints.
  Adapt watch file and upstream-tarball hints to use improved upstream 
paths.
  Use anonscm.debian.org for Vcs-Browser field.
  Prepare for release: Update changelog and control file.
  Update upstream URLs to reflect new Homepage and development project home.
  Tidy control file: Shorten Vcs-Git URL.
  Update short and long description based on upstream texts.
  Update upstream-tarball hints for current upstream source.
  Enable copyright check during normal builds. Build-depend on devscripts.
  Extend copyright coverage of packaging, and tighten to GPL-3+ (except 
patch 2001 kept as BSD-2-clause or GPL-2+).
  Add README.source covering use of CDBS and git-buildpackage.
  Update changelog, control file and copyright hints.
  Revert bump dependency versions.
  Minimize patch 2001 to only avoid jslint, not eradicate its use in source.
  Fix typo in patch 2001 header.
  Supress one more image from copyright check.
  Update and extend coverage of main copyright holders

[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.5.1-1-2440-gc0c91ef

2013-06-26 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit f309eb9f565ae23d66d40220ecbaf34efa353743
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Jun 27 01:46:53 2013 +0200

Add NEWS entry listing backwards-incompatible changes.

diff --git a/debian/NEWS b/debian/NEWS
index aa16702..2dcfb7d 100644
--- a/debian/NEWS
+++ b/debian/NEWS
@@ -1,3 +1,15 @@
+leaflet (0.6-1) unstable; urgency=low
+
+  * This release includes the following backwards-incompatible changes:
+
++ Moved polyline editing code into Leaflet.draw plugin (where it
+  fits much better along with all other editing and drawing
+  handlers). The API remains the same.
++ Dropped support for environments that augment 'Object.prototype'
+  (luckily it's a thing of the past nowadays).
+
+ -- Jonas Smedegaard d...@jones.dk  Thu, 27 Jun 2013 01:44:42 +0200
+
 leaflet (0.5-1) unstable; urgency=low
 
   * This release includes the following backwards-incompatible changes:

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.5.1-1-2440-gc0c91ef

2013-06-26 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit ca72a714d1e54af4ea2beb57a64fa5a638a8b424
Author: Jonas Smedegaard d...@jones.dk
Date:   Thu Jun 27 02:06:34 2013 +0200

Unfuzz patches.

diff --git a/debian/patches/2001-dont_test_during_build.patch 
b/debian/patches/2001-dont_test_during_build.patch
index ac98838..8e3d366 100644
--- a/debian/patches/2001-dont_test_during_build.patch
+++ b/debian/patches/2001-dont_test_during_build.patch
@@ -5,14 +5,15 @@ Last-Update: 2013-01-19
 
 --- a/Jakefile.js
 +++ b/Jakefile.js
-@@ -18,6 +18,6 @@
+@@ -18,7 +18,7 @@
  task('lint', build.lint);
  
  desc('Combine and compress Leaflet source files');
 -task('build', ['lint'], build.build);
 +task('build', build.build);
  
- task('default', ['build']);
+ desc('Run PhantomJS tests');
+ task('test', ['lint'], build.test);
 --- a/build/build.js
 +++ b/build/build.js
 @@ -1,5 +1,4 @@
diff --git a/debian/patches/2002_use_old_uglifyjs.patch 
b/debian/patches/2002_use_old_uglifyjs.patch
index 34c60b2..a64c2b8 100644
--- a/debian/patches/2002_use_old_uglifyjs.patch
+++ b/debian/patches/2002_use_old_uglifyjs.patch
@@ -5,9 +5,9 @@ Last-Update: 2013-01-19
 
 --- a/build/build.js
 +++ b/build/build.js
-@@ -63,6 +63,17 @@
-   return files;
- }
+@@ -64,6 +64,17 @@
+ 
+ exports.getFiles = getFiles;
  
 +function uglify(code) {
 +  var pro = UglifyJS.uglify;
@@ -23,7 +23,7 @@ Last-Update: 2013-01-19
  exports.lint = function () {
  
var files = getFiles();
-@@ -137,10 +148,7 @@
+@@ -138,10 +149,7 @@
  
var path = pathPart + '.js',
oldCompressed = loadSilently(path),

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.6-1-36-g2236291

2013-07-01 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 41744e97a6980050a6cc126dbd0700eb210341b4
Author: Jonas Smedegaard d...@jones.dk
Date:   Mon Jul 1 03:02:38 2013 +0200

Bump standards-version to 3.9.4.

diff --git a/debian/control.in b/debian/control.in
index 5e47f4f..b273b1f 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -5,7 +5,7 @@ Maintainer: Debian OpenStreetMap Team 
pkg-osm-ma...@lists.alioth.debian.org
 Uploaders: Andrew Harvey andrew.harv...@gmail.com,
  Jonas Smedegaard d...@jones.dk
 Build-Depends: @cdbs@
-Standards-Version: 3.9.3
+Standards-Version: 3.9.4
 Homepage: http://leafletjs.com/
 Vcs-Git: git://anonscm.debian.org/pkg-osm/leaflet
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-osm/leaflet.git

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.6-1-36-g2236291

2013-07-01 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 840126e7691fbdfddd40900281af6bd7a57e
Merge: c0c91ef4d78f96ae6a68f5f40f46139aabead0ca 
7c612771ff56375ac311b78f269b436eaa4943ef
Author: Jonas Smedegaard d...@jones.dk
Date:   Mon Jul 1 02:53:25 2013 +0200

Merge tag 'upstream/0.6.2'

Upstream version 0.6.2

# gpg: Signature made man 01 jul 2013 02:53:24 CEST
# gpg:using RSA key 0x4EC1B722374F9BD6
# gpg: Good signature from Jonas Smedegaard d...@jones.dk
# gpg: aka Jonas Smedegaard jo...@homebase.dk
# gpg: aka Jonas Smedegaard j...@debian.org
# gpg: aka Jonas Smedegaard jo...@dgi-huset.dk
# gpg: aka Jonas Smedegaard jo...@107b.dk
# gpg: aka [jpeg image of size 4165]


-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet annotated tag, debian/0.6.2-1, created. debian/0.6.2-1

2013-07-01 Thread Jonas Smedegaard
The annotated tag, debian/0.6.2-1 has been created
at  d59acffc6f1a7f3cd767f89f98f5d15318d67371 (tag)
   tagging  2236291bd1103ff0a6679ddc90123b73f7066ff1 (commit)
  replaces  upstream/0.6.2
 tagged by  Jonas Smedegaard
on  Mon Jul 1 03:04:55 2013 +0200

- Shortlog 
leaflet Debian release 0.6.2-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQEcBAABCgAGBQJR0NW3AAoJEE7BtyI3T5vWDZAIAJGbGCBliwd7xs6pj+yZ2tv5
WcF2aQo9GZL6joTg9Ckp3WUTrY7+l2yMNbytV/qACqmGUzlmigTBcMdF1p1z1+ST
DOgOSKvAI2q3eBLeSPzkiGa7VnZYQuA+zOG7zAew9M1njwsJVyrJDt9ozeJ4FFya
eOVqQQ/5HQDl0EGNKcNThMxKhRS85B+MNPsnxuLc97F+UrkmNFzapStlGvfXMjgx
HEVMdIM744LgzL3BvTxLn9UBjp3RTAhVWsskvwnpP2SUV8c7ym0Wrm3a/j7bLXIT
ap+SsS4th2wkaesSV3hjOnSz7o5mLRo9NGSfsix0XsdSC1f3LT0uDnSU5jrVnGE=
=rGU+
-END PGP SIGNATURE-

Andrew Harvey (13):
  Imported Debian patch 0.2.1-1
  Merge tag 'upstream/0.3'
  updating debian files for 0.3-1 release
  update debian files for 0.3.1-1 release
  Merge tag 'upstream/0.3.1'
  bump to upstream version 0.4.4
  Merge tag 'upstream/0.4.4'
  bump upstream version to 0.4.5
  Merge tag 'upstream/0.4.5'
  bump upstream version to 0.5
  Merge tag 'upstream/0.5'
  refresh patches
  bump dependency versions

David Paleino (1):
  Releasing to sid

Jonas Smedegaard (70):
  Update watch, rules and copyrigh files to directly use github.com URL 
(not githubredir.debian.net or Homepage).
  Tidy control file: newline-delimit build-dependencies.
  Tidy rules file: shorten internal variable; improve header syntactically; 
drop unused parts.
  Fix tighten build-dpendency on cdbs: Needed for recent debhelper support. 
Relax slightly build-dependency on debhelper: Eases backporting.
  Put aside upstream shipped autogenerated files during build (instead of 
stripping and repackaging source tarball). Tighten build-dependency on cdbs: 
Needed for routine to put files aside.
  Tidy rules file: Add commented out hint for fetching snapshot.
  Refresh patch 01, and simplify to minimally needed.
  Update changelog.
  Rename patch 01...diff → 2001...patch.
  Add debian/patches/README documenting numbering micro-policy.
  Add DEP3 header to patch 2001.
  Add patch from upstream VCS to fix non-removable attributions regression.
  Git-ignore quilt .pc subdir to ease git-buildpackage usage.
  Add myself as uploader.
  Bump standards-version to 3.9.3.
  Prepare for release: Update changelog.
  Merge tag 'upstream/0.4'
  Update upstream-tarball hints for new upstream source.
  Update copyright file: Cover new jasmine files,  Expat licensed.
  Drop patch cherry-picked upstream: Included upstream.
  Refresh patch 2001.
  Update copyright file: Extend coverage of main project to include current 
year.
  Update copyright file: Adjust to use standard short name BSD-2-clause.
  Update copyright file: Rewrap License sections at 72 chars.
  Update copyright file: Rephrase reference to GPL to be shorter, and 
reference FSF website (not postal address). Put both in 
pseudo-comment-in-license paragraph (to emphasize them being not verbatim yet 
obey File format 1.0 mandating License paragraph being either single-line or 
include all licensing info).
  Update copyright file: Bump file format to 1.0, and add Github issue 
tracker as upstream contact.
  Add control.in to ease managing package relations.
  Add copyright hints, and skip checking an image.
  Add git-buildpackage config, enabling signed tags and use of pristine-tar.
  Prepare for release: Update changelog and control file.
  Merge tag 'upstream/0.4.2'
  Update upstream-tarball hints for new upstream source.
  Update changelog and copyright hints.
  Prepare for release: Update changelog file and copyright hints.
  Adapt watch file and upstream-tarball hints to use improved upstream 
paths.
  Use anonscm.debian.org for Vcs-Browser field.
  Prepare for release: Update changelog and control file.
  Update upstream URLs to reflect new Homepage and development project home.
  Tidy control file: Shorten Vcs-Git URL.
  Update short and long description based on upstream texts.
  Update upstream-tarball hints for current upstream source.
  Enable copyright check during normal builds. Build-depend on devscripts.
  Extend copyright coverage of packaging, and tighten to GPL-3+ (except 
patch 2001 kept as BSD-2-clause or GPL-2+).
  Add README.source covering use of CDBS and git-buildpackage.
  Update changelog, control file and copyright hints.
  Revert bump dependency versions.
  Minimize patch 2001 to only avoid jslint, not eradicate its use in source.
  Fix typo in patch 2001 header.
  Supress one more image from copyright check.
  Update and extend coverage of main copyright holders

[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.6-1-36-g2236291

2013-07-01 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit 39d36b175f8f051b8e1bbb626d51e5429776a397
Author: Jonas Smedegaard d...@jones.dk
Date:   Mon Jul 1 03:02:27 2013 +0200

Use canonical hostname (anonscm.debian.org) in Vcs-Git URI.

diff --git a/debian/control.in b/debian/control.in
index ed19453..5e47f4f 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -7,7 +7,7 @@ Uploaders: Andrew Harvey andrew.harv...@gmail.com,
 Build-Depends: @cdbs@
 Standards-Version: 3.9.3
 Homepage: http://leafletjs.com/
-Vcs-Git: git://git.debian.org/pkg-osm/leaflet
+Vcs-Git: git://anonscm.debian.org/pkg-osm/leaflet
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-osm/leaflet.git
 
 Package: libjs-leaflet

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.6.2-1-89-gb1fb903

2013-07-20 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit a28658b41086e99b6b6d35d4aec53dae3801f6c6
Merge: 2236291bd1103ff0a6679ddc90123b73f7066ff1 
8cc663a713c0f1e83ef38b5e972c0185d5f7b2d4
Author: Jonas Smedegaard d...@jones.dk
Date:   Sun Jul 21 01:14:37 2013 +0200

Merge tag 'upstream/0.6.3'

Upstream version 0.6.3

# gpg: Signature made søn 21 jul 2013 01:14:33 CEST
# gpg:using RSA key 0x4EC1B722374F9BD6
# gpg: Good signature from Jonas Smedegaard d...@jones.dk
# gpg: aka Jonas Smedegaard jo...@homebase.dk
# gpg: aka Jonas Smedegaard j...@debian.org
# gpg: aka Jonas Smedegaard jo...@dgi-huset.dk
# gpg: aka Jonas Smedegaard jo...@107b.dk
# gpg: aka [jpeg image of size 4165]


-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits

[Pkg-osm-commits] [SCM] leaflet branch, pristine-tar, updated. 7c013d6c0d78e11e797c088f568ba2c4690fc4e9

2013-07-20 Thread Jonas Smedegaard
The following commit has been merged in the pristine-tar branch:
commit 7c013d6c0d78e11e797c088f568ba2c4690fc4e9
Author: Jonas Smedegaard d...@jones.dk
Date:   Sun Jul 21 01:14:33 2013 +0200

pristine-tar data for leaflet_0.6.3.orig.tar.gz

diff --git a/leaflet_0.6.3.orig.tar.gz.delta b/leaflet_0.6.3.orig.tar.gz.delta
new file mode 100644
index 000..b968b49
Binary files /dev/null and b/leaflet_0.6.3.orig.tar.gz.delta differ
diff --git a/leaflet_0.6.3.orig.tar.gz.id b/leaflet_0.6.3.orig.tar.gz.id
new file mode 100644
index 000..6528395
--- /dev/null
+++ b/leaflet_0.6.3.orig.tar.gz.id
@@ -0,0 +1 @@
+18efeb3bdac8088e5942226e60f8a8243cba7728

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet annotated tag, debian/0.6.3-1, created. debian/0.6.3-1

2013-07-20 Thread Jonas Smedegaard
The annotated tag, debian/0.6.3-1 has been created
at  66ef94f41c39950176fd0ddc687a5bda400d27fe (tag)
   tagging  b1fb90335320766145e689dfcec10e1f7edb8cad (commit)
  replaces  upstream/0.6.3
 tagged by  Jonas Smedegaard
on  Sun Jul 21 01:20:36 2013 +0200

- Shortlog 
leaflet Debian release 0.6.3-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQEcBAABCgAGBQJR6xtEAAoJEE7BtyI3T5vWi3UH/RICR3t0pdKzVAw4i/ZS7X9J
WSUcOcANqTdxth34prDpFYkb/AaCTvxw9y15yDGOAaYs0X2ThV9Jwjz/lx09lLMr
B1pv6V9EgeRlz/Px3btQ7PQuQ+Cs+E0+IXBMo9lGMtkWvq9U/6b2PyXKJ16LA1CF
WEAZdyvVOAslepvezAeJLNWdhmMN6w/2GcWxiIC50QELN+DW5VQictL/UZiUgPrU
cyicyhHHekwbeqR9I2rsJohlFjCoBgmUEo9Qktp3ILH8k4pDJuGwU5J+siDe6aqm
3m0Q4+9VWveySdQ/MWJk+ftUh192DdjlQAvvZRCDHGPkmiSoW5a50ELKl8iXS30=
=r9wP
-END PGP SIGNATURE-

Andrew Harvey (13):
  Imported Debian patch 0.2.1-1
  Merge tag 'upstream/0.3'
  updating debian files for 0.3-1 release
  update debian files for 0.3.1-1 release
  Merge tag 'upstream/0.3.1'
  bump to upstream version 0.4.4
  Merge tag 'upstream/0.4.4'
  bump upstream version to 0.4.5
  Merge tag 'upstream/0.4.5'
  bump upstream version to 0.5
  Merge tag 'upstream/0.5'
  refresh patches
  bump dependency versions

David Paleino (1):
  Releasing to sid

Jonas Smedegaard (72):
  Update watch, rules and copyrigh files to directly use github.com URL 
(not githubredir.debian.net or Homepage).
  Tidy control file: newline-delimit build-dependencies.
  Tidy rules file: shorten internal variable; improve header syntactically; 
drop unused parts.
  Fix tighten build-dpendency on cdbs: Needed for recent debhelper support. 
Relax slightly build-dependency on debhelper: Eases backporting.
  Put aside upstream shipped autogenerated files during build (instead of 
stripping and repackaging source tarball). Tighten build-dependency on cdbs: 
Needed for routine to put files aside.
  Tidy rules file: Add commented out hint for fetching snapshot.
  Refresh patch 01, and simplify to minimally needed.
  Update changelog.
  Rename patch 01...diff → 2001...patch.
  Add debian/patches/README documenting numbering micro-policy.
  Add DEP3 header to patch 2001.
  Add patch from upstream VCS to fix non-removable attributions regression.
  Git-ignore quilt .pc subdir to ease git-buildpackage usage.
  Add myself as uploader.
  Bump standards-version to 3.9.3.
  Prepare for release: Update changelog.
  Merge tag 'upstream/0.4'
  Update upstream-tarball hints for new upstream source.
  Update copyright file: Cover new jasmine files,  Expat licensed.
  Drop patch cherry-picked upstream: Included upstream.
  Refresh patch 2001.
  Update copyright file: Extend coverage of main project to include current 
year.
  Update copyright file: Adjust to use standard short name BSD-2-clause.
  Update copyright file: Rewrap License sections at 72 chars.
  Update copyright file: Rephrase reference to GPL to be shorter, and 
reference FSF website (not postal address). Put both in 
pseudo-comment-in-license paragraph (to emphasize them being not verbatim yet 
obey File format 1.0 mandating License paragraph being either single-line or 
include all licensing info).
  Update copyright file: Bump file format to 1.0, and add Github issue 
tracker as upstream contact.
  Add control.in to ease managing package relations.
  Add copyright hints, and skip checking an image.
  Add git-buildpackage config, enabling signed tags and use of pristine-tar.
  Prepare for release: Update changelog and control file.
  Merge tag 'upstream/0.4.2'
  Update upstream-tarball hints for new upstream source.
  Update changelog and copyright hints.
  Prepare for release: Update changelog file and copyright hints.
  Adapt watch file and upstream-tarball hints to use improved upstream 
paths.
  Use anonscm.debian.org for Vcs-Browser field.
  Prepare for release: Update changelog and control file.
  Update upstream URLs to reflect new Homepage and development project home.
  Tidy control file: Shorten Vcs-Git URL.
  Update short and long description based on upstream texts.
  Update upstream-tarball hints for current upstream source.
  Enable copyright check during normal builds. Build-depend on devscripts.
  Extend copyright coverage of packaging, and tighten to GPL-3+ (except 
patch 2001 kept as BSD-2-clause or GPL-2+).
  Add README.source covering use of CDBS and git-buildpackage.
  Update changelog, control file and copyright hints.
  Revert bump dependency versions.
  Minimize patch 2001 to only avoid jslint, not eradicate its use in source.
  Fix typo in patch 2001 header.
  Supress one more image from copyright check.
  Update and extend coverage of main copyright holders

[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.6.3-1-6-g35c6e63

2013-08-02 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit b4187ba37f2684f57b59b596fad5103a01db13d9
Merge: b1fb90335320766145e689dfcec10e1f7edb8cad 
e5916866c4668ed99f54ac94240b4c26345b89b8
Author: Jonas Smedegaard d...@jones.dk
Date:   Wed Jul 31 20:54:40 2013 +0200

Merge tag 'upstream/0.6.4'

Upstream version 0.6.4

# gpg: Underskrift lavet ons 31 jul 2013 20:54:32 CEST
# gpg:bruger RSA nøgle 0x4EC1B722374F9BD6
# gpg: God underskrift fra »Jonas Smedegaard d...@jones.dk«
# gpg:også kendt som »Jonas Smedegaard jo...@homebase.dk«
# gpg:også kendt som »Jonas Smedegaard j...@debian.org«
# gpg:også kendt som »Jonas Smedegaard jo...@dgi-huset.dk«
# gpg:også kendt som »Jonas Smedegaard jo...@107b.dk«
# gpg:også kendt som »[jpeg image of size 4165]«


-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits

[Pkg-osm-commits] [SCM] leaflet annotated tag, upstream/0.6.4, created. upstream/0.6.4

2013-08-02 Thread Jonas Smedegaard
The annotated tag, upstream/0.6.4 has been created
at  e7cf22ad58a664773c38a80a203e73f406d2862c (tag)
   tagging  e5916866c4668ed99f54ac94240b4c26345b89b8 (commit)
  replaces  upstream/0.6.3
 tagged by  Jonas Smedegaard
on  Wed Jul 31 20:54:32 2013 +0200

- Shortlog 
Upstream version 0.6.4
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.14 (GNU/Linux)

iQEcBAABCgAGBQJR+V1oAAoJEE7BtyI3T5vWeTAIAKABNyNl2OKbxwhLVXtYKjoH
FdIjjw7Z/3nA7IuQQozfstmdm514sLVhjCY1Ai3JB+LXEz7Y19jyog7f6QyD1BOI
2gZNmP1EVumQ43fTbFAUp16YxAdR4Mv6Cmyb6gePM9c7EjlypaCoi0wKoc5mlMKQ
Z+49MxnW3up1e3vgCfOHhFHsRd/BhuQsSHMOpWgluJ4fPJHyAYsTZYhy73XgwmUm
4fOjydg5C6AadcRw+tboYq1wjieQCd8mmEVI/xkHpBC4PI4H8ARWbNEdkwGeSGpD
kSJkbZ7VPyCWMkblgW3SSXluTL1Uw2e06PMG5tk0WQbcq9tg7C3Zy30hMDjCEfk=
=BUFD
-END PGP SIGNATURE-

Jonas Smedegaard (1):
  Imported Upstream version 0.6.4

Vladimir Agafonkin (3):
  fix infinite loop in getBounds and setMaxBounds, close #1895, close #1866
  fix map scrolling right on click with horizontal scroll on page, close 
#1901
  bump version

---

-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits


[Pkg-osm-commits] [SCM] leaflet branch, master, updated. debian/0.6.3-1-6-g35c6e63

2013-08-02 Thread Jonas Smedegaard
The following commit has been merged in the master branch:
commit e5916866c4668ed99f54ac94240b4c26345b89b8
Merge: 8cc663a713c0f1e83ef38b5e972c0185d5f7b2d4 
3a8cff69e4797d05005382c4b01e55797d329756
Author: Jonas Smedegaard d...@jones.dk
Date:   Wed Jul 31 20:54:31 2013 +0200

Imported Upstream version 0.6.4


-- 
JavaScript library for displaying map data in web browsers

___
Pkg-osm-commits mailing list
Pkg-osm-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-osm-commits