[postgis] 01/03: Add patch to fix FTBFS with proj 5.0.0. (closes: #889981)
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository postgis. commit a24ebb9ab8ef52f8527487e126fec4294050f830 Author: Bas Couwenberg Date: Sat Feb 17 12:07:17 2018 +0100 Add patch to fix FTBFS with proj 5.0.0. (closes: #889981) --- debian/changelog | 2 + debian/patches/series | 1 + ..._transform-Reset-pj_errno-after-any-error.patch | 52 ++ 3 files changed, 55 insertions(+) diff --git a/debian/changelog b/debian/changelog index 9ba16da..812af60 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ postgis (2.4.3+dfsg-3) UNRELEASED; urgency=medium * Fix deprecated source override location. + * Add patch to fix FTBFS with proj 5.0.0. +(closes: #889981) -- Bas Couwenberg Sat, 10 Feb 2018 11:48:30 +0100 diff --git a/debian/patches/series b/debian/patches/series index 274d7af..b204be1 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@ link-liblwgeom relax-test-timing-constraints.patch autotools-pkg-config-macro-not-cross-compilation-safe.patch +svn-r16382-pj_transform-Reset-pj_errno-after-any-error.patch diff --git a/debian/patches/svn-r16382-pj_transform-Reset-pj_errno-after-any-error.patch b/debian/patches/svn-r16382-pj_transform-Reset-pj_errno-after-any-error.patch new file mode 100644 index 000..267c118 --- /dev/null +++ b/debian/patches/svn-r16382-pj_transform-Reset-pj_errno-after-any-error.patch @@ -0,0 +1,52 @@ +Description: pj_transform: Reset pj_errno after any error. +Author: Raúl Marín Rodríguez +Origin: https://trac.osgeo.org/postgis/changeset/16382 +Bug: https://trac.osgeo.org/postgis/ticket/4016 +Bug-Debian: https://bugs.debian.org/889981 + +--- a/liblwgeom/lwgeom_transform.c b/liblwgeom/lwgeom_transform.c +@@ -130,7 +130,7 @@ lwgeom_transform(LWGEOM *geom, projPJ in + int + point4d_transform(POINT4D *pt, projPJ srcpj, projPJ dstpj) + { +- int* pj_errno_ref; ++ + POINT4D orig_pt; + + /* Make a copy of the input point so we can report the original should an error occur */ +@@ -142,25 +142,25 @@ point4d_transform(POINT4D *pt, projPJ sr + + LWDEBUGF(4, "transforming POINT(%f %f) from '%s' to '%s'", orig_pt.x, orig_pt.y, pj_get_def(srcpj,0), pj_get_def(dstpj,0)); + +- /* Perform the transform */ +- pj_transform(srcpj, dstpj, 1, 0, &(pt->x), &(pt->y), &(pt->z)); ++ if (pj_transform(srcpj, dstpj, 1, 0, &(pt->x), &(pt->y), &(pt->z)) != 0) ++ { ++ int* pj_errno_ref = pj_get_errno_ref(); ++ int pj_errno_val = *pj_errno_ref; + +- /* For NAD grid-shift errors, display an error message with an additional hint */ +- pj_errno_ref = pj_get_errno_ref(); ++ /* Force a reset of pj_errno to avoid future errors */ ++ *pj_errno_ref = 0; + +- if (*pj_errno_ref != 0) +- { +- if (*pj_errno_ref == -38) ++ if (pj_errno_val == -38) + { + lwnotice("PostGIS was unable to transform the point because either no grid shift files were found, or the point does not lie within the range for which the grid shift is defined. Refer to the ST_Transform() section of the PostGIS manual for details on how to configure PostGIS to alter this behaviour."); + lwerror("transform: couldn't project point (%g %g %g): %s (%d)", +- orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(*pj_errno_ref), *pj_errno_ref); ++ orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(pj_errno_val), pj_errno_val); + return 0; + } + else + { + lwerror("transform: couldn't project point (%g %g %g): %s (%d)", +- orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(*pj_errno_ref), *pj_errno_ref); ++ orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(pj_errno_val), pj_errno_val); + return 0; + } + } -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/postgis.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[postgis] 02/03: Strip trailing whitespace from changelog file.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository postgis. commit 3c0d1ec7ab2f5b5572c0657da8219cdbb69c1fa9 Author: Bas Couwenberg Date: Sat Feb 17 12:24:26 2018 +0100 Strip trailing whitespace from changelog file. --- debian/changelog | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 812af60..7ebd37b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ postgis (2.4.3+dfsg-3) UNRELEASED; urgency=medium * Fix deprecated source override location. * Add patch to fix FTBFS with proj 5.0.0. (closes: #889981) + * Strip trailing whitespace from changelog file. -- Bas Couwenberg Sat, 10 Feb 2018 11:48:30 +0100 @@ -961,7 +962,7 @@ postgis (1.5.2-1) unstable; urgency=low * New upstream release, with a few bug fixes. * Added shp2pgsql-gui binary. - * Removed patches, applied upstream: getopt. + * Removed patches, applied upstream: getopt. -- Alan Boudreault Wed, 29 Sep 2010 09:16:10 -0400 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/postgis.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[postgis] 03/03: Set distribution to unstable.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository postgis. commit d9c77afe625496b91f0cd77667423a5816379b3d Author: Bas Couwenberg Date: Sat Feb 17 12:24:43 2018 +0100 Set distribution to unstable. --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7ebd37b..a0d0404 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,11 @@ -postgis (2.4.3+dfsg-3) UNRELEASED; urgency=medium +postgis (2.4.3+dfsg-3) unstable; urgency=medium * Fix deprecated source override location. * Add patch to fix FTBFS with proj 5.0.0. (closes: #889981) * Strip trailing whitespace from changelog file. - -- Bas Couwenberg Sat, 10 Feb 2018 11:48:30 +0100 + -- Bas Couwenberg Sat, 17 Feb 2018 12:24:27 +0100 postgis (2.4.3+dfsg-2) unstable; urgency=medium -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/postgis.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[postgis] tag debian/2.4.3+dfsg-3 created (now d9c77af)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to tag debian/2.4.3+dfsg-3 in repository postgis. at d9c77af (commit) No new revisions were added by this update. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/postgis.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[postgis] branch master updated (9ee985b -> d9c77af)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository postgis. from 9ee985b Fix deprecated source override location. new a24ebb9 Add patch to fix FTBFS with proj 5.0.0. (closes: #889981) new 3c0d1ec Strip trailing whitespace from changelog file. new d9c77af Set distribution to unstable. The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 9 ++-- debian/patches/series | 1 + ..._transform-Reset-pj_errno-after-any-error.patch | 52 ++ 3 files changed, 59 insertions(+), 3 deletions(-) create mode 100644 debian/patches/svn-r16382-pj_transform-Reset-pj_errno-after-any-error.patch -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/postgis.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/postgis] Pushed new tag debian/2.4.3+dfsg-3
Bas Couwenberg pushed new tag debian/2.4.3+dfsg-3 at Debian GIS Project / postgis --- View it on GitLab: https://salsa.debian.org/debian-gis-team/postgis/tree/debian/2.4.3+dfsg-3 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/postgis][master] 3 commits: Add patch to fix FTBFS with proj 5.0.0. (closes: #889981)
Bas Couwenberg pushed to branch master at Debian GIS Project / postgis Commits: a24ebb9a by Bas Couwenberg at 2018-02-17T12:07:17+01:00 Add patch to fix FTBFS with proj 5.0.0. (closes: #889981) - - - - - 3c0d1ec7 by Bas Couwenberg at 2018-02-17T12:24:26+01:00 Strip trailing whitespace from changelog file. - - - - - d9c77afe by Bas Couwenberg at 2018-02-17T12:24:43+01:00 Set distribution to unstable. - - - - - 3 changed files: - debian/changelog - debian/patches/series - + debian/patches/svn-r16382-pj_transform-Reset-pj_errno-after-any-error.patch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,11 @@ -postgis (2.4.3+dfsg-3) UNRELEASED; urgency=medium +postgis (2.4.3+dfsg-3) unstable; urgency=medium * Fix deprecated source override location. + * Add patch to fix FTBFS with proj 5.0.0. +(closes: #889981) + * Strip trailing whitespace from changelog file. - -- Bas Couwenberg Sat, 10 Feb 2018 11:48:30 +0100 + -- Bas Couwenberg Sat, 17 Feb 2018 12:24:27 +0100 postgis (2.4.3+dfsg-2) unstable; urgency=medium @@ -959,7 +962,7 @@ postgis (1.5.2-1) unstable; urgency=low * New upstream release, with a few bug fixes. * Added shp2pgsql-gui binary. - * Removed patches, applied upstream: getopt. + * Removed patches, applied upstream: getopt. -- Alan Boudreault Wed, 29 Sep 2010 09:16:10 -0400 = debian/patches/series = --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@ link-liblwgeom relax-test-timing-constraints.patch autotools-pkg-config-macro-not-cross-compilation-safe.patch +svn-r16382-pj_transform-Reset-pj_errno-after-any-error.patch = debian/patches/svn-r16382-pj_transform-Reset-pj_errno-after-any-error.patch = --- /dev/null +++ b/debian/patches/svn-r16382-pj_transform-Reset-pj_errno-after-any-error.patch @@ -0,0 +1,52 @@ +Description: pj_transform: Reset pj_errno after any error. +Author: Raúl Marín Rodríguez +Origin: https://trac.osgeo.org/postgis/changeset/16382 +Bug: https://trac.osgeo.org/postgis/ticket/4016 +Bug-Debian: https://bugs.debian.org/889981 + +--- a/liblwgeom/lwgeom_transform.c b/liblwgeom/lwgeom_transform.c +@@ -130,7 +130,7 @@ lwgeom_transform(LWGEOM *geom, projPJ in + int + point4d_transform(POINT4D *pt, projPJ srcpj, projPJ dstpj) + { +- int* pj_errno_ref; ++ + POINT4D orig_pt; + + /* Make a copy of the input point so we can report the original should an error occur */ +@@ -142,25 +142,25 @@ point4d_transform(POINT4D *pt, projPJ sr + + LWDEBUGF(4, "transforming POINT(%f %f) from '%s' to '%s'", orig_pt.x, orig_pt.y, pj_get_def(srcpj,0), pj_get_def(dstpj,0)); + +- /* Perform the transform */ +- pj_transform(srcpj, dstpj, 1, 0, &(pt->x), &(pt->y), &(pt->z)); ++ if (pj_transform(srcpj, dstpj, 1, 0, &(pt->x), &(pt->y), &(pt->z)) != 0) ++ { ++ int* pj_errno_ref = pj_get_errno_ref(); ++ int pj_errno_val = *pj_errno_ref; + +- /* For NAD grid-shift errors, display an error message with an additional hint */ +- pj_errno_ref = pj_get_errno_ref(); ++ /* Force a reset of pj_errno to avoid future errors */ ++ *pj_errno_ref = 0; + +- if (*pj_errno_ref != 0) +- { +- if (*pj_errno_ref == -38) ++ if (pj_errno_val == -38) + { + lwnotice("PostGIS was unable to transform the point because either no grid shift files were found, or the point does not lie within the range for which the grid shift is defined. Refer to the ST_Transform() section of the PostGIS manual for details on how to configure PostGIS to alter this behaviour."); + lwerror("transform: couldn't project point (%g %g %g): %s (%d)", +- orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(*pj_errno_ref), *pj_errno_ref); ++ orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(pj_errno_val), pj_errno_val); + return 0; + } + else + { + lwerror("transform: couldn't project point (%g %g %g): %s (%d)", +- orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(*pj_errno_ref), *pj_errno_ref); ++ orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(pj_errno_val), pj_errno_val); + return 0; + } + } View it on GitLab: https://salsa.debian.org/debian-gis-team/postgis/compare/9ee985b6c5b7995a8b0d7b8c2119b47ca466fba4...d9c77afe625496b91f0cd77667423a5816379b3d --- View it on GitLab: https://salsa.debian.org/debian-gis-team/postgis/compare/9ee985b6c5b7995a8b0d7b8c2119b47ca466fba4...d9c77afe625496b91f0cd77667423a581
Processing of postgis_2.4.3+dfsg-3_amd64.changes
postgis_2.4.3+dfsg-3_amd64.changes uploaded successfully to localhost along with the files: postgis_2.4.3+dfsg-3.dsc postgis_2.4.3+dfsg-3.debian.tar.xz liblwgeom-2.4-0-dbgsym_2.4.3+dfsg-3_amd64.deb liblwgeom-2.4-0_2.4.3+dfsg-3_amd64.deb liblwgeom-dev_2.4.3+dfsg-3_amd64.deb postgis-dbgsym_2.4.3+dfsg-3_amd64.deb postgis-doc_2.4.3+dfsg-3_all.deb postgis-gui-dbgsym_2.4.3+dfsg-3_amd64.deb postgis-gui_2.4.3+dfsg-3_amd64.deb postgis_2.4.3+dfsg-3_amd64.buildinfo postgis_2.4.3+dfsg-3_amd64.deb postgresql-10-postgis-2.4-dbgsym_2.4.3+dfsg-3_amd64.deb postgresql-10-postgis-2.4-scripts_2.4.3+dfsg-3_all.deb postgresql-10-postgis-2.4_2.4.3+dfsg-3_amd64.deb postgresql-10-postgis-scripts_2.4.3+dfsg-3_all.deb Greetings, Your Debian queue daemon (running on host usper.debian.org) ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
postgis_2.4.3+dfsg-3_amd64.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sat, 17 Feb 2018 12:24:27 +0100 Source: postgis Binary: postgis postgis-gui postgis-doc liblwgeom-2.4-0 liblwgeom-dev postgresql-10-postgis-2.4 postgresql-10-postgis-2.4-scripts postgresql-10-postgis-scripts Architecture: source amd64 all Version: 2.4.3+dfsg-3 Distribution: unstable Urgency: medium Maintainer: Debian GIS Project Changed-By: Bas Couwenberg Description: liblwgeom-2.4-0 - PostGIS "Lightweight Geometry" library liblwgeom-dev - PostGIS "Lightweight Geometry" library - Development files postgis- Geographic objects support for PostgreSQL postgis-doc - Geographic objects support for PostgreSQL -- documentation postgis-gui - Geographic objects support for PostgreSQL -- GUI programs postgresql-10-postgis-2.4 - Geographic objects support for PostgreSQL 10 postgresql-10-postgis-2.4-scripts - Geographic objects support for PostgreSQL 10 -- SQL scripts postgresql-10-postgis-scripts - transitional dummy package Closes: 889981 Changes: postgis (2.4.3+dfsg-3) unstable; urgency=medium . * Fix deprecated source override location. * Add patch to fix FTBFS with proj 5.0.0. (closes: #889981) * Strip trailing whitespace from changelog file. Checksums-Sha1: 16dc16ecbb253868ba32dadd7bcdd637ffcf97b6 3097 postgis_2.4.3+dfsg-3.dsc c71978c73dbaf7b0d50f19285c54872fde6ca559 43964 postgis_2.4.3+dfsg-3.debian.tar.xz f271365f562f86df57bea932982e244c276ada86 516624 liblwgeom-2.4-0-dbgsym_2.4.3+dfsg-3_amd64.deb c970fc80ee71d168037cec9d554e0b213be9d07e 692208 liblwgeom-2.4-0_2.4.3+dfsg-3_amd64.deb 36e6a7e5b502daa584a5b01540515579afad64af 728940 liblwgeom-dev_2.4.3+dfsg-3_amd64.deb 81b1a91e144da668324751b585dbceb98c7fadf5 267964 postgis-dbgsym_2.4.3+dfsg-3_amd64.deb 2efbe3f2a0a91fa1a6090f67c17ab78f28dc9415 3433328 postgis-doc_2.4.3+dfsg-3_all.deb b44f7b73f43ebe4d296855268014018fa08711fa 135808 postgis-gui-dbgsym_2.4.3+dfsg-3_amd64.deb 3e53592f32d1d6e7b1063d5cc2b789a9c59b2087 583984 postgis-gui_2.4.3+dfsg-3_amd64.deb 13598cdd8a1c55a42d5d8fd918abff62837900d6 21195 postgis_2.4.3+dfsg-3_amd64.buildinfo 57e780a33f41375b056045fbeb97f5f28b2de7bf 605656 postgis_2.4.3+dfsg-3_amd64.deb 19896cf692ece907fdd7100c2f094de94296bdb1 1551484 postgresql-10-postgis-2.4-dbgsym_2.4.3+dfsg-3_amd64.deb e2ab4b35c6690c19654373aabb0791c0835b266b 1024548 postgresql-10-postgis-2.4-scripts_2.4.3+dfsg-3_all.deb 95d71336e7e4f4bf0b7f0e612083e9e056420245 1039732 postgresql-10-postgis-2.4_2.4.3+dfsg-3_amd64.deb 180833fcb0427844eb8b8d54912e88aecd11b8b8 492492 postgresql-10-postgis-scripts_2.4.3+dfsg-3_all.deb Checksums-Sha256: 9f6cf9d3ef57910dcffdb2cbde7c699b8e16b70c16ca61cb28269ca51ab21f16 3097 postgis_2.4.3+dfsg-3.dsc b515288a965d88f98b87b8b4368f0ffdfa0229cc936ec3c11ebf07cf09c1799e 43964 postgis_2.4.3+dfsg-3.debian.tar.xz 8d244ec35fb86c5e8787f3b43e8db099c426e157a7a0c56b0d4cebf412b79435 516624 liblwgeom-2.4-0-dbgsym_2.4.3+dfsg-3_amd64.deb b169d1a60bb9775671aea59bfbbed32a8aa8529dd0cb938faf78f09bec9445ed 692208 liblwgeom-2.4-0_2.4.3+dfsg-3_amd64.deb fb4dede93a3075178a82d850c4f22ddf66096cba22d92224405cea76dd56650c 728940 liblwgeom-dev_2.4.3+dfsg-3_amd64.deb c231188d87ec3c623e374eb7b8c3316ca695463d05a2c23523bce83d69302317 267964 postgis-dbgsym_2.4.3+dfsg-3_amd64.deb 6fd04a44cb776023403913f28683a294425f1464f632a515e94ee61fb9ceccd2 3433328 postgis-doc_2.4.3+dfsg-3_all.deb c8ffad832840ee2fbdb77cab0aad7d3f386f5659cfcbcea8c055cdfc4e7e32ae 135808 postgis-gui-dbgsym_2.4.3+dfsg-3_amd64.deb fb34b4bf02b84376e9d3b1063c70683652dc5e3c2a757599d6605c9de4065cbd 583984 postgis-gui_2.4.3+dfsg-3_amd64.deb 3029cf36dfdee6d3ca5006d1ce687d21abc2bba726337f321564ba721ff80824 21195 postgis_2.4.3+dfsg-3_amd64.buildinfo 13e7853332e36efff96ef0b5d5984a39f1603ee03edd743bf81c147c19ce7509 605656 postgis_2.4.3+dfsg-3_amd64.deb 76eef5ee042d97c7c16c4d886fd53ac7da52937e76f03303be2c00b15f923ab5 1551484 postgresql-10-postgis-2.4-dbgsym_2.4.3+dfsg-3_amd64.deb 0de142da0c89d984994caabcf72758d88507b4b423cfeb4805934651c65dc7d4 1024548 postgresql-10-postgis-2.4-scripts_2.4.3+dfsg-3_all.deb 726ea8ddb490686026d3ac94d49b359f1bbc25201486ce8c46e0eb9fc30c9709 1039732 postgresql-10-postgis-2.4_2.4.3+dfsg-3_amd64.deb 4945e07c9059a7a8898f4cce6901da84b88a71f5897ba9abcac860c65e70bbd0 492492 postgresql-10-postgis-scripts_2.4.3+dfsg-3_all.deb Files: 4e81ded5b9a02efb0511b0d934b1113f 3097 misc optional postgis_2.4.3+dfsg-3.dsc d51a0aefc51a7253b4626e8a3edfcad0 43964 misc optional postgis_2.4.3+dfsg-3.debian.tar.xz bb9a1eb836ae3b01ebcb2a1fed2a8260 516624 debug optional liblwgeom-2.4-0-dbgsym_2.4.3+dfsg-3_amd64.deb 5d4713268aff8c6bc46c25b047a33d43 692208 libs optional liblwgeom-2.4-0_2.4.3+dfsg-3_amd64.deb 8e4c9ff45e89f9d24916f1c96589c333 728940 libdevel optional liblwgeom-dev_2.4.3+dfsg-3_amd64.deb 80f6dbb6c18d7f2105f01d9d59f7ddbf 267964 debug optional postgis-dbgsym_2.4.3+dfsg-3_amd64.deb 83b526ca3def80153185c77d582d906c 3433328 doc optional po
[geos] branch master updated (b879735 -> 6fe211f)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository geos. from b879735 Fix deprecated source override location. new 6fe211f Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog| 1 + debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) delete mode 100644 debian/source/lintian-overrides -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/geos.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/geos][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / geos Commits: 6fe211f9 by Bas Couwenberg at 2018-02-17T17:42:26+01:00 Update watch file to use HTTPS. - - - - - 4 changed files: - debian/changelog - debian/copyright - − debian/source/lintian-overrides - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ geos (3.6.2-2) UNRELEASED; urgency=medium * Don't use libjs-jquery for Doxygen docs. * Bump Standards-Version to 4.1.3, no changes. * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Sat, 20 Jan 2018 15:51:39 +0100 = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: GEOS Upstream-Contact: GEOS Developers -Source: http://download.osgeo.org/geos/ +Source: https://download.osgeo.org/geos/ Files: * Copyright: 2016, Daniel Baston = debian/source/lintian-overrides deleted = --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -geos source: debian-watch-uses-insecure-uri * - = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/geos \ +https://download.osgeo.org/geos \ (?:|.*/)geos-(?:[_\-]v?|)(\d\S*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) View it on GitLab: https://salsa.debian.org/debian-gis-team/geos/commit/6fe211f95de39b17cdc5fd1eac478cbf7586a0ac --- View it on GitLab: https://salsa.debian.org/debian-gis-team/geos/commit/6fe211f95de39b17cdc5fd1eac478cbf7586a0ac You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[geos] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository geos. commit 6fe211f95de39b17cdc5fd1eac478cbf7586a0ac Author: Bas Couwenberg Date: Sat Feb 17 17:42:26 2018 +0100 Update watch file to use HTTPS. --- debian/changelog| 1 + debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 313f9b8..2ccda00 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ geos (3.6.2-2) UNRELEASED; urgency=medium * Don't use libjs-jquery for Doxygen docs. * Bump Standards-Version to 4.1.3, no changes. * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Sat, 20 Jan 2018 15:51:39 +0100 diff --git a/debian/copyright b/debian/copyright index e87c3d7..e601c48 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: GEOS Upstream-Contact: GEOS Developers -Source: http://download.osgeo.org/geos/ +Source: https://download.osgeo.org/geos/ Files: * Copyright: 2016, Daniel Baston diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides deleted file mode 100644 index e74b23a..000 --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -geos source: debian-watch-uses-insecure-uri * - diff --git a/debian/watch b/debian/watch index 4f37c77..80a 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/geos \ +https://download.osgeo.org/geos \ (?:|.*/)geos-(?:[_\-]v?|)(\d\S*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/geos.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[libgeotiff-dfsg] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository libgeotiff-dfsg. commit 29ff5f8b3b0a78bf32728738ee8d0f74f9f8ee5e Author: Bas Couwenberg Date: Sat Feb 17 17:44:34 2018 +0100 Update watch file to use HTTPS. --- debian/changelog| 3 +-- debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/debian/changelog b/debian/changelog index 0b960c7..0840b71 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,9 +5,8 @@ libgeotiff-dfsg (1.4.2-3) UNRELEASED; urgency=medium * Use pkg-info.mk variables instead of dpkg-parsechangelog output. * Strip trailing whitespace from changelog & control files. * Update copyright-format URL to use HTTPS. - * Add lintian override for debian-watch-uses-insecure-uri. * Add autopkgtest to test installability. - * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Sun, 24 Sep 2017 13:06:02 +0200 diff --git a/debian/copyright b/debian/copyright index 98a058a..e56c8b7 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: GeoTIFF Upstream-Contact: GeoTIFF Developers -Source: http://download.osgeo.org/geotiff/ +Source: https://download.osgeo.org/geotiff/ Files-Excluded: csv/* Files: * diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides deleted file mode 100644 index 1009fed..000 --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -libgeotiff-dfsg source: debian-watch-uses-insecure-uri * - diff --git a/debian/watch b/debian/watch index f92cd49..b54873b 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/geotiff/libgeotiff/ \ +https://download.osgeo.org/geotiff/libgeotiff/ \ (?:.*?/)?(?:rel|v|libgeotiff)?[\-\_]?(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libgeotiff-dfsg.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[libgeotiff-dfsg] branch master updated (2ef291e -> 29ff5f8)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository libgeotiff-dfsg. from 2ef291e Fix deprecated source override location. new 29ff5f8 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog| 3 +-- debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 7 deletions(-) delete mode 100644 debian/source/lintian-overrides -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libgeotiff-dfsg.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/libgeotiff-dfsg][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / libgeotiff-dfsg Commits: 29ff5f8b by Bas Couwenberg at 2018-02-17T17:44:34+01:00 Update watch file to use HTTPS. - - - - - 4 changed files: - debian/changelog - debian/copyright - − debian/source/lintian-overrides - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -5,9 +5,8 @@ libgeotiff-dfsg (1.4.2-3) UNRELEASED; urgency=medium * Use pkg-info.mk variables instead of dpkg-parsechangelog output. * Strip trailing whitespace from changelog & control files. * Update copyright-format URL to use HTTPS. - * Add lintian override for debian-watch-uses-insecure-uri. * Add autopkgtest to test installability. - * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Sun, 24 Sep 2017 13:06:02 +0200 = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: GeoTIFF Upstream-Contact: GeoTIFF Developers -Source: http://download.osgeo.org/geotiff/ +Source: https://download.osgeo.org/geotiff/ Files-Excluded: csv/* Files: * = debian/source/lintian-overrides deleted = --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -libgeotiff-dfsg source: debian-watch-uses-insecure-uri * - = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/geotiff/libgeotiff/ \ +https://download.osgeo.org/geotiff/libgeotiff/ \ (?:.*?/)?(?:rel|v|libgeotiff)?[\-\_]?(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/libgeotiff-dfsg/commit/29ff5f8b3b0a78bf32728738ee8d0f74f9f8ee5e --- View it on GitLab: https://salsa.debian.org/debian-gis-team/libgeotiff-dfsg/commit/29ff5f8b3b0a78bf32728738ee8d0f74f9f8ee5e You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[libgeotiff-epsg] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository libgeotiff-epsg. commit fdaf619b7742fe16bc4686db9d3efaea26e6ac54 Author: Bas Couwenberg Date: Sat Feb 17 17:45:39 2018 +0100 Update watch file to use HTTPS. --- debian/changelog | 1 + debian/copyright | 2 +- debian/watch | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 17f86f4..e9719fa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ libgeotiff-epsg (1.4.2-2) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.3, no changes. * Strip trailing whitespace from changelog & control files. * Update copyright-format URL to use HTTPS. + * Update watch file to use HTTPS. -- Bas Couwenberg Sun, 24 Sep 2017 13:06:32 +0200 diff --git a/debian/copyright b/debian/copyright index 0ae876d..eaa6639 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: GeoTIFF Upstream-Contact: GeoTIFF Developers -Source: http://download.osgeo.org/geotiff/ +Source: https://download.osgeo.org/geotiff/ Comment: The csv directory is extracted from the geotiff tarball. The non-free csv data is included in the libgeotiff-epsg package, the rest is DFSG free and included in the libgeotiff-dfsg package. diff --git a/debian/watch b/debian/watch index f92cd49..b54873b 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/geotiff/libgeotiff/ \ +https://download.osgeo.org/geotiff/libgeotiff/ \ (?:.*?/)?(?:rel|v|libgeotiff)?[\-\_]?(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libgeotiff-epsg.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[libgeotiff-epsg] branch master updated (8fe766e -> fdaf619)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository libgeotiff-epsg. from 8fe766e Bump Standards-Version to 4.1.3, no changes. new fdaf619 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 1 + debian/copyright | 2 +- debian/watch | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libgeotiff-epsg.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/libgeotiff-epsg][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / libgeotiff-epsg Commits: fdaf619b by Bas Couwenberg at 2018-02-17T17:45:39+01:00 Update watch file to use HTTPS. - - - - - 3 changed files: - debian/changelog - debian/copyright - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ libgeotiff-epsg (1.4.2-2) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.3, no changes. * Strip trailing whitespace from changelog & control files. * Update copyright-format URL to use HTTPS. + * Update watch file to use HTTPS. -- Bas Couwenberg Sun, 24 Sep 2017 13:06:32 +0200 = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: GeoTIFF Upstream-Contact: GeoTIFF Developers -Source: http://download.osgeo.org/geotiff/ +Source: https://download.osgeo.org/geotiff/ Comment: The csv directory is extracted from the geotiff tarball. The non-free csv data is included in the libgeotiff-epsg package, the rest is DFSG free and included in the libgeotiff-dfsg package. = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/geotiff/libgeotiff/ \ +https://download.osgeo.org/geotiff/libgeotiff/ \ (?:.*?/)?(?:rel|v|libgeotiff)?[\-\_]?(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/libgeotiff-epsg/commit/fdaf619b7742fe16bc4686db9d3efaea26e6ac54 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/libgeotiff-epsg/commit/fdaf619b7742fe16bc4686db9d3efaea26e6ac54 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[liblas] branch master updated (82444d0 -> 1796904)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository liblas. from 82444d0 Fix deprecated source override location. new 1796904 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog| 1 + debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/liblas.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[liblas] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository liblas. commit 179690431aaf517aa96f592fefa7d80bffee234c Author: Bas Couwenberg Date: Sat Feb 17 17:46:29 2018 +0100 Update watch file to use HTTPS. --- debian/changelog| 1 + debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5fc0833..5dd0e1f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ liblas (1.8.1-7) UNRELEASED; urgency=medium * Update copyright-format URL to use HTTPS. * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Sat, 20 Jan 2018 22:08:28 +0100 diff --git a/debian/copyright b/debian/copyright index 1cdd7fd..c5a72c6 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: LibLAS Upstream-Contact: libLAS developers -Source: http://download.osgeo.org/liblas/ +Source: https://download.osgeo.org/liblas/ Files: * Copyright: 2007, Martin Isenburg diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides index 4a9a772..dec5a92 100644 --- a/debian/source/lintian-overrides +++ b/debian/source/lintian-overrides @@ -1,6 +1,3 @@ -# download.osgeo.org is not available via HTTPS -liblas source: debian-watch-uses-insecure-uri * - # Only a single Python version is supported during the build liblas source: python-foo-but-no-python3-foo python-liblas diff --git a/debian/watch b/debian/watch index efe1af6..3dc2f64 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|b|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/liblas/ \ +https://download.osgeo.org/liblas/ \ (?:.*?/)?(?:libLAS)?[\-\_]?(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/liblas.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/libspatialindex][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / libspatialindex Commits: a715bfd8 by Bas Couwenberg at 2018-02-17T17:47:04+01:00 Update watch file to use HTTPS. - - - - - 3 changed files: - debian/changelog - debian/copyright - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ spatialindex (1.8.5-6) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.0, changes: priority. * Strip trailing whitespace from changelog. * Update copyright-format URL to use HTTPS. + * Update watch file to use HTTPS. -- Bas Couwenberg Sun, 24 Sep 2017 13:09:13 +0200 = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: libspatialindex Upstream-Contact: Marios Hadjieleftheriou -Source: http://download.osgeo.org/libspatialindex/ +Source: https://download.osgeo.org/libspatialindex/ Files: * Copyright: 2002-2004, Marios Hadjieleftheriou = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/libspatialindex/ \ +https://download.osgeo.org/libspatialindex/ \ spatialindex(?:-src)?-(\d.*)\.(?:tgz|tar\.(?:gz|bz2|xz)) View it on GitLab: https://salsa.debian.org/debian-gis-team/libspatialindex/commit/a715bfd83e92771d25716c71ba76c6ac26ee983d --- View it on GitLab: https://salsa.debian.org/debian-gis-team/libspatialindex/commit/a715bfd83e92771d25716c71ba76c6ac26ee983d You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/liblas][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / liblas Commits: 17969043 by Bas Couwenberg at 2018-02-17T17:46:29+01:00 Update watch file to use HTTPS. - - - - - 4 changed files: - debian/changelog - debian/copyright - debian/source/lintian-overrides - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ liblas (1.8.1-7) UNRELEASED; urgency=medium * Update copyright-format URL to use HTTPS. * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Sat, 20 Jan 2018 22:08:28 +0100 = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: LibLAS Upstream-Contact: libLAS developers -Source: http://download.osgeo.org/liblas/ +Source: https://download.osgeo.org/liblas/ Files: * Copyright: 2007, Martin Isenburg = debian/source/lintian-overrides = --- a/debian/source/lintian-overrides +++ b/debian/source/lintian-overrides @@ -1,6 +1,3 @@ -# download.osgeo.org is not available via HTTPS -liblas source: debian-watch-uses-insecure-uri * - # Only a single Python version is supported during the build liblas source: python-foo-but-no-python3-foo python-liblas = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|b|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/liblas/ \ +https://download.osgeo.org/liblas/ \ (?:.*?/)?(?:libLAS)?[\-\_]?(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/liblas/commit/179690431aaf517aa96f592fefa7d80bffee234c --- View it on GitLab: https://salsa.debian.org/debian-gis-team/liblas/commit/179690431aaf517aa96f592fefa7d80bffee234c You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[libspatialindex] branch master updated (0fcd601 -> a715bfd)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository libspatialindex. from 0fcd601 Update copyright-format URL to use HTTPS. new a715bfd Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 1 + debian/copyright | 2 +- debian/watch | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libspatialindex.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[libspatialindex] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository libspatialindex. commit a715bfd83e92771d25716c71ba76c6ac26ee983d Author: Bas Couwenberg Date: Sat Feb 17 17:47:04 2018 +0100 Update watch file to use HTTPS. --- debian/changelog | 1 + debian/copyright | 2 +- debian/watch | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5a5d3de..ae7f284 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ spatialindex (1.8.5-6) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.0, changes: priority. * Strip trailing whitespace from changelog. * Update copyright-format URL to use HTTPS. + * Update watch file to use HTTPS. -- Bas Couwenberg Sun, 24 Sep 2017 13:09:13 +0200 diff --git a/debian/copyright b/debian/copyright index 0c23bad..2d1f214 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: libspatialindex Upstream-Contact: Marios Hadjieleftheriou -Source: http://download.osgeo.org/libspatialindex/ +Source: https://download.osgeo.org/libspatialindex/ Files: * Copyright: 2002-2004, Marios Hadjieleftheriou diff --git a/debian/watch b/debian/watch index d459bc6..09abe6e 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/libspatialindex/ \ +https://download.osgeo.org/libspatialindex/ \ spatialindex(?:-src)?-(\d.*)\.(?:tgz|tar\.(?:gz|bz2|xz)) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libspatialindex.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[mapserver] branch master updated (567ab55 -> 8f3b028)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository mapserver. from 567ab55 Fix deprecated source override location. new 8f3b028 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog| 1 + debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/mapserver.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[mapserver] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository mapserver. commit 8f3b0289295392adc2c2825b868e0fea7a19fdd9 Author: Bas Couwenberg Date: Sat Feb 17 17:51:40 2018 +0100 Update watch file to use HTTPS. --- debian/changelog| 1 + debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index e2ceb79..32f4df8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ mapserver (7.0.7-2) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.3, no changes. * Add patch to exclude .java files from mapscript.jar. * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Sat, 20 Jan 2018 22:17:20 +0100 diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides index 3cba969..1db8a3a 100644 --- a/debian/source/lintian-overrides +++ b/debian/source/lintian-overrides @@ -1,6 +1,3 @@ -# download.osgeo.org is not available via HTTPS -mapserver source: debian-watch-uses-insecure-uri * - # Only a single Python version is supported during the build mapserver source: python-foo-but-no-python3-foo python-mapscript diff --git a/debian/watch b/debian/watch index 499cb8c..4a6e9e5 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g \ -http://download.osgeo.org/mapserver/ \ +https://download.osgeo.org/mapserver/ \ (?:.*/)?(?:rel|v|mapserver)[\-\_]?(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/mapserver.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-gui] branch master updated (14ca675 -> ee4d0c4)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository ossim-gui. from 14ca675 Update copyright-format URL to use HTTPS. new ee4d0c4 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-gui.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-gui] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository ossim-gui. commit ee4d0c42db13605d033740542bb44be89f0da146 Author: Bas Couwenberg Date: Sat Feb 17 17:53:05 2018 +0100 Update watch file to use HTTPS. --- debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/copyright b/debian/copyright index ad330fc..d304238 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM GUI Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossimGui. Files-Excluded: csmApi/* diff --git a/debian/watch b/debian/watch index 7970034..f2ec15b 100644 --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-gui-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-gui.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/ossim-gui][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / ossim-gui Commits: ee4d0c42 by Bas Couwenberg at 2018-02-17T17:53:05+01:00 Update watch file to use HTTPS. - - - - - 2 changed files: - debian/copyright - debian/watch Changes: = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM GUI Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossimGui. Files-Excluded: csmApi/* = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-gui-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-gui/commit/ee4d0c42db13605d033740542bb44be89f0da146 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-gui/commit/ee4d0c42db13605d033740542bb44be89f0da146 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/mapserver][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / mapserver Commits: 8f3b0289 by Bas Couwenberg at 2018-02-17T17:51:40+01:00 Update watch file to use HTTPS. - - - - - 3 changed files: - debian/changelog - debian/source/lintian-overrides - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ mapserver (7.0.7-2) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.3, no changes. * Add patch to exclude .java files from mapscript.jar. * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Sat, 20 Jan 2018 22:17:20 +0100 = debian/source/lintian-overrides = --- a/debian/source/lintian-overrides +++ b/debian/source/lintian-overrides @@ -1,6 +1,3 @@ -# download.osgeo.org is not available via HTTPS -mapserver source: debian-watch-uses-insecure-uri * - # Only a single Python version is supported during the build mapserver source: python-foo-but-no-python3-foo python-mapscript = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g \ -http://download.osgeo.org/mapserver/ \ +https://download.osgeo.org/mapserver/ \ (?:.*/)?(?:rel|v|mapserver)[\-\_]?(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/mapserver/commit/8f3b0289295392adc2c2825b868e0fea7a19fdd9 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/mapserver/commit/8f3b0289295392adc2c2825b868e0fea7a19fdd9 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/ossim-package-support][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / ossim-package-support Commits: 1a26c447 by Bas Couwenberg at 2018-02-17T17:53:31+01:00 Update watch file to use HTTPS. - - - - - 2 changed files: - debian/copyright - debian/watch Changes: = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,6 +1,6 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than the required ossim_package_support subdirectories. Files-Excluded: csmApi/* = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-package-support-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-package-support/commit/1a26c447a17197d61c4b93637f78e09c58cb2318 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-package-support/commit/1a26c447a17197d61c4b93637f78e09c58cb2318 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-package-support] branch master updated (f8529eb -> 1a26c44)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository ossim-package-support. from f8529eb Update copyright-format URL to use HTTPS. new 1a26c44 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-package-support.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-package-support] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository ossim-package-support. commit 1a26c447a17197d61c4b93637f78e09c58cb2318 Author: Bas Couwenberg Date: Sat Feb 17 17:53:31 2018 +0100 Update watch file to use HTTPS. --- debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/copyright b/debian/copyright index c709401..2582adb 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,6 +1,6 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than the required ossim_package_support subdirectories. Files-Excluded: csmApi/* diff --git a/debian/watch b/debian/watch index 5b415ca..33cc49f 100644 --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-package-support-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-package-support.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/ossim-planet-qt][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / ossim-planet-qt Commits: d32fea23 by Bas Couwenberg at 2018-02-17T17:54:14+01:00 Update watch file to use HTTPS. - - - - - 2 changed files: - debian/copyright - debian/watch Changes: = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM Planet Qt Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossimPlanetQt. Files-Excluded: csmApi/* = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-planet-qt-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-planet-qt/commit/d32fea23158065274cfac7ff1eea300544fe50b6 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-planet-qt/commit/d32fea23158065274cfac7ff1eea300544fe50b6 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/ossim-planet][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / ossim-planet Commits: 7d1894c7 by Bas Couwenberg at 2018-02-17T17:53:53+01:00 Update watch file to use HTTPS. - - - - - 2 changed files: - debian/copyright - debian/watch Changes: = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM Planet Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossimPlanet. Files-Excluded: csmApi/* = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-planet-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-planet/commit/7d1894c7b98f828baee253c1fe6b0afcd380cd45 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-planet/commit/7d1894c7b98f828baee253c1fe6b0afcd380cd45 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-planet] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository ossim-planet. commit 7d1894c7b98f828baee253c1fe6b0afcd380cd45 Author: Bas Couwenberg Date: Sat Feb 17 17:53:53 2018 +0100 Update watch file to use HTTPS. --- debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/copyright b/debian/copyright index b66204c..1a7523c 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM Planet Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossimPlanet. Files-Excluded: csmApi/* diff --git a/debian/watch b/debian/watch index bfa89ce..2150478 100644 --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-planet-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-planet.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-planet-qt] branch master updated (9a63499 -> d32fea2)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository ossim-planet-qt. from 9a63499 Update copyright-format URL to use HTTPS. new d32fea2 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-planet-qt.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-planet-qt] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository ossim-planet-qt. commit d32fea23158065274cfac7ff1eea300544fe50b6 Author: Bas Couwenberg Date: Sat Feb 17 17:54:14 2018 +0100 Update watch file to use HTTPS. --- debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/copyright b/debian/copyright index 3d82d19..ce9ce34 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM Planet Qt Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossimPlanetQt. Files-Excluded: csmApi/* diff --git a/debian/watch b/debian/watch index 89dc20d..5e0fc24 100644 --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-planet-qt-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-planet-qt.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-plugins] branch master updated (19677a4 -> 14f8cf8)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository ossim-plugins. from 19677a4 Update copyright-format URL to use HTTPS. new 14f8cf8 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-plugins.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-planet] branch master updated (f0bb9e3 -> 7d1894c)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository ossim-planet. from f0bb9e3 Update copyright-format URL to use HTTPS. new 7d1894c Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-planet.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-plugins] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository ossim-plugins. commit 14f8cf8dbeb2a5f7184deab28d39bdc386efa17e Author: Bas Couwenberg Date: Sat Feb 17 17:54:33 2018 +0100 Update watch file to use HTTPS. --- debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/copyright b/debian/copyright index 0b3ac37..64fd3b5 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM Plugins Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossim-plugins. Files-Excluded: csmApi/* diff --git a/debian/watch b/debian/watch index a7ec577..676b5aa 100644 --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-plugins-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-plugins.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/ossim-video][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / ossim-video Commits: b16f266b by Bas Couwenberg at 2018-02-17T17:54:53+01:00 Update watch file to use HTTPS. - - - - - 2 changed files: - debian/copyright - debian/watch Changes: = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM Video Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossimPredator. Files-Excluded: csmApi/* = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-video-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-video/commit/b16f266bda341d3829b0567b120cac77466afd54 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-video/commit/b16f266bda341d3829b0567b120cac77466afd54 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-video] branch master updated (8509397 -> b16f266)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository ossim-video. from 8509397 Update copyright-format URL to use HTTPS. new b16f266 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-video.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-wms] branch master updated (0594567 -> d25b3f8)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository ossim-wms. from 0594567 Update copyright-format URL to use HTTPS. new d25b3f8 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-wms.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/ossim-wms][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / ossim-wms Commits: d25b3f84 by Bas Couwenberg at 2018-02-17T17:55:14+01:00 Update watch file to use HTTPS. - - - - - 2 changed files: - debian/copyright - debian/watch Changes: = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM WMS Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for libwms. Files-Excluded: csmApi/* = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-wms-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-wms/commit/d25b3f849f0c6ce4c91ce83eb9bf1a0418da2fb8 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-wms/commit/d25b3f849f0c6ce4c91ce83eb9bf1a0418da2fb8 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/ossim-plugins][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / ossim-plugins Commits: 14f8cf8d by Bas Couwenberg at 2018-02-17T17:54:33+01:00 Update watch file to use HTTPS. - - - - - 2 changed files: - debian/copyright - debian/watch Changes: = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM Plugins Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossim-plugins. Files-Excluded: csmApi/* = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-plugins-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-plugins/commit/14f8cf8dbeb2a5f7184deab28d39bdc386efa17e --- View it on GitLab: https://salsa.debian.org/debian-gis-team/ossim-plugins/commit/14f8cf8dbeb2a5f7184deab28d39bdc386efa17e You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-wms] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository ossim-wms. commit d25b3f849f0c6ce4c91ce83eb9bf1a0418da2fb8 Author: Bas Couwenberg Date: Sat Feb 17 17:55:14 2018 +0100 Update watch file to use HTTPS. --- debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/copyright b/debian/copyright index 41dc70f..bd56ab4 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM WMS Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for libwms. Files-Excluded: csmApi/* diff --git a/debian/watch b/debian/watch index c8d7147..aa944cb 100644 --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-wms-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-wms.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[ossim-video] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository ossim-video. commit b16f266bda341d3829b0567b120cac77466afd54 Author: Bas Couwenberg Date: Sat Feb 17 17:54:53 2018 +0100 Update watch file to use HTTPS. --- debian/copyright | 2 +- debian/watch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/copyright b/debian/copyright index 65d2799..500976c 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: OSSIM Video Upstream-Contact: OSSIM Developers -Source: http://download.osgeo.org/ossim/source/ +Source: https://download.osgeo.org/ossim/source/ The upstream tarball is repacked to exclude all subdirectories other than those for ossimPredator. Files-Excluded: csmApi/* diff --git a/debian/watch b/debian/watch index 0ce4a7e..25bc991 100644 --- a/debian/watch +++ b/debian/watch @@ -4,4 +4,4 @@ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/;s/-/./g,\ filenamemangle=s/ossim[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/ossim-video-$1.$2/,\ repacksuffix=+ds \ -http://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) +https://download.osgeo.org/ossim/source/ossim-(\d\S+)/ossim-(\d\S+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/ossim-video.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[pdal] branch master updated (5730bee -> 5325058)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository pdal. from 5730bee Fix deprecated source override location. new 5325058 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog| 2 +- debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 debian/source/lintian-overrides -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/pdal][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / pdal Commits: 53250582 by Bas Couwenberg at 2018-02-17T17:56:00+01:00 Update watch file to use HTTPS. - - - - - 4 changed files: - debian/changelog - debian/copyright - − debian/source/lintian-overrides - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ pdal (1.6.0-2) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.3, no changes. * Update copyright-format URL to use HTTPS. - * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Fri, 15 Dec 2017 11:22:00 +0100 = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: PDAL Upstream-Contact: Hobu, Inc. -Source: http://download.osgeo.org/pdal/ +Source: https://download.osgeo.org/pdal/ Files: * Copyright: 2014-2017, Hobu, Inc. = debian/source/lintian-overrides deleted = --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -pdal source: debian-watch-uses-insecure-uri * - = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/pdal/ \ +https://download.osgeo.org/pdal/ \ (?:.*?/)?(?:rel|v|PDAL)?[\-\_]?(\d\S+?)(?:-src)?\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/pdal/commit/53250582be67c7fbe60f7fb30b86b303c53a496d --- View it on GitLab: https://salsa.debian.org/debian-gis-team/pdal/commit/53250582be67c7fbe60f7fb30b86b303c53a496d You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[pdal] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository pdal. commit 53250582be67c7fbe60f7fb30b86b303c53a496d Author: Bas Couwenberg Date: Sat Feb 17 17:56:00 2018 +0100 Update watch file to use HTTPS. --- debian/changelog| 2 +- debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index ff50101..6896965 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ pdal (1.6.0-2) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.3, no changes. * Update copyright-format URL to use HTTPS. - * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Fri, 15 Dec 2017 11:22:00 +0100 diff --git a/debian/copyright b/debian/copyright index 0934962..6308701 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: PDAL Upstream-Contact: Hobu, Inc. -Source: http://download.osgeo.org/pdal/ +Source: https://download.osgeo.org/pdal/ Files: * Copyright: 2014-2017, Hobu, Inc. diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides deleted file mode 100644 index e91ba72..000 --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -pdal source: debian-watch-uses-insecure-uri * - diff --git a/debian/watch b/debian/watch index 58fbaff..f79c89b 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/pdal/ \ +https://download.osgeo.org/pdal/ \ (?:.*?/)?(?:rel|v|PDAL)?[\-\_]?(\d\S+?)(?:-src)?\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[postgis] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository postgis. commit 35a996cc57803b0694dde95d36354d1f1e19a556 Author: Bas Couwenberg Date: Sat Feb 17 17:57:02 2018 +0100 Update watch file to use HTTPS. --- debian/changelog| 6 ++ debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index a0d0404..2bcc366 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +postgis (2.4.3+dfsg-4) UNRELEASED; urgency=medium + + * Update watch file to use HTTPS. + + -- Bas Couwenberg Sat, 17 Feb 2018 17:56:54 +0100 + postgis (2.4.3+dfsg-3) unstable; urgency=medium * Fix deprecated source override location. diff --git a/debian/copyright b/debian/copyright index e933857..24b8f6c 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: PostGIS Upstream-Contact: PostGIS Developers -Source: http://download.osgeo.org/postgis/source/ +Source: https://download.osgeo.org/postgis/source/ Comment: The OGC test cases are removed because they have unclear licensing, the work is probably licensed under the OGC Document Notice which doesn't permit modification. diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides deleted file mode 100644 index 9cd570a..000 --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -postgis source: debian-watch-uses-insecure-uri * - diff --git a/debian/watch b/debian/watch index d193602..fd4a8c7 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)\d*)$/$1~$2/,\ repacksuffix=+dfsg \ -http://download.osgeo.org/postgis/source/ \ +https://download.osgeo.org/postgis/source/ \ (?:.*/|)postgis[\-\._]?([\d\.]+(?:(?:RC|rc|pre|dev|beta|alpha|b|a)\d+)?)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/postgis.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[postgis] branch master updated (d9c77af -> 35a996c)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository postgis. from d9c77af Set distribution to unstable. new 35a996c Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog| 6 ++ debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) delete mode 100644 debian/source/lintian-overrides -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/postgis.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/postgis][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / postgis Commits: 35a996cc by Bas Couwenberg at 2018-02-17T17:57:02+01:00 Update watch file to use HTTPS. - - - - - 4 changed files: - debian/changelog - debian/copyright - − debian/source/lintian-overrides - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +postgis (2.4.3+dfsg-4) UNRELEASED; urgency=medium + + * Update watch file to use HTTPS. + + -- Bas Couwenberg Sat, 17 Feb 2018 17:56:54 +0100 + postgis (2.4.3+dfsg-3) unstable; urgency=medium * Fix deprecated source override location. = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: PostGIS Upstream-Contact: PostGIS Developers -Source: http://download.osgeo.org/postgis/source/ +Source: https://download.osgeo.org/postgis/source/ Comment: The OGC test cases are removed because they have unclear licensing, the work is probably licensed under the OGC Document Notice which doesn't permit modification. = debian/source/lintian-overrides deleted = --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -postgis source: debian-watch-uses-insecure-uri * - = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)\d*)$/$1~$2/,\ repacksuffix=+dfsg \ -http://download.osgeo.org/postgis/source/ \ +https://download.osgeo.org/postgis/source/ \ (?:.*/|)postgis[\-\._]?([\d\.]+(?:(?:RC|rc|pre|dev|beta|alpha|b|a)\d+)?)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) View it on GitLab: https://salsa.debian.org/debian-gis-team/postgis/commit/35a996cc57803b0694dde95d36354d1f1e19a556 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/postgis/commit/35a996cc57803b0694dde95d36354d1f1e19a556 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[proj] branch experimental updated (5c96558 -> 342c5a4)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch experimental in repository proj. from 5c96558 Set distribution to experimental. new 3b39077 Ignore test failures on more problematic architectures. new 342c5a4 Update watch file to use HTTPS. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog| 7 +++ debian/copyright| 2 +- debian/rules| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) delete mode 100644 debian/source/lintian-overrides -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/proj.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[proj] 01/02: Ignore test failures on more problematic architectures.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental in repository proj. commit 3b39077e29b3757713554ef15b0692cf0aa068b5 Author: Bas Couwenberg Date: Wed Feb 14 09:53:25 2018 +0100 Ignore test failures on more problematic architectures. --- debian/changelog | 6 ++ debian/rules | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index b9f2d7b..73f4d3e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +proj (5.0.0~rc3-1~exp2) UNRELEASED; urgency=medium + + * Ignore test failures on more problematic architectures. + + -- Bas Couwenberg Wed, 14 Feb 2018 09:53:22 +0100 + proj (5.0.0~rc3-1~exp1) experimental; urgency=medium * New upstream release candidate. diff --git a/debian/rules b/debian/rules index 1b43b53..8b811a4 100755 --- a/debian/rules +++ b/debian/rules @@ -58,7 +58,7 @@ override_dh_auto_build: override_dh_auto_test: # Ignore test failures on problematic architectures only -ifneq (,$(findstring $(DEB_BUILD_ARCH),"i386 hurd-i386 ia64 powerpc")) +ifneq (,$(findstring $(DEB_BUILD_ARCH),"arm64 i386 ppc64el s390x hurd-i386 ia64 powerpc ppc64")) dh_auto_test || echo "Ignoring test failures" else dh_auto_test -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/proj.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[proj] 02/02: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental in repository proj. commit 342c5a4cc1a49f7e8ba0f1aafe6f1d2b14711d01 Author: Bas Couwenberg Date: Sat Feb 17 17:59:48 2018 +0100 Update watch file to use HTTPS. --- debian/changelog| 1 + debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 73f4d3e..0a03578 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ proj (5.0.0~rc3-1~exp2) UNRELEASED; urgency=medium * Ignore test failures on more problematic architectures. + * Update watch file to use HTTPS. -- Bas Couwenberg Wed, 14 Feb 2018 09:53:22 +0100 diff --git a/debian/copyright b/debian/copyright index 5c1e839..a231f3d 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: PROJ.4 Upstream-Contact: MetaCRS Developers -Source: http://download.osgeo.org/proj/ +Source: https://download.osgeo.org/proj/ Files: * Comment: Version 4.3.3 was authored by: diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides deleted file mode 100644 index e050621..000 --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -proj source: debian-watch-uses-insecure-uri * - diff --git a/debian/watch b/debian/watch index 1cfac00..816857b 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|b|beta|a|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/proj/ \ +https://download.osgeo.org/proj/ \ (?:.*/)?proj[\-\_](\d+[\.\d+]+(?:[a-zA-Z]+\d+)?)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/proj.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/proj][experimental] 2 commits: Ignore test failures on more problematic architectures.
Bas Couwenberg pushed to branch experimental at Debian GIS Project / proj Commits: 3b39077e by Bas Couwenberg at 2018-02-14T09:53:25+01:00 Ignore test failures on more problematic architectures. - - - - - 342c5a4c by Bas Couwenberg at 2018-02-17T17:59:48+01:00 Update watch file to use HTTPS. - - - - - 5 changed files: - debian/changelog - debian/copyright - debian/rules - − debian/source/lintian-overrides - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +proj (5.0.0~rc3-1~exp2) UNRELEASED; urgency=medium + + * Ignore test failures on more problematic architectures. + * Update watch file to use HTTPS. + + -- Bas Couwenberg Wed, 14 Feb 2018 09:53:22 +0100 + proj (5.0.0~rc3-1~exp1) experimental; urgency=medium * New upstream release candidate. = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: PROJ.4 Upstream-Contact: MetaCRS Developers -Source: http://download.osgeo.org/proj/ +Source: https://download.osgeo.org/proj/ Files: * Comment: Version 4.3.3 was authored by: = debian/rules = --- a/debian/rules +++ b/debian/rules @@ -58,7 +58,7 @@ override_dh_auto_build: override_dh_auto_test: # Ignore test failures on problematic architectures only -ifneq (,$(findstring $(DEB_BUILD_ARCH),"i386 hurd-i386 ia64 powerpc")) +ifneq (,$(findstring $(DEB_BUILD_ARCH),"arm64 i386 ppc64el s390x hurd-i386 ia64 powerpc ppc64")) dh_auto_test || echo "Ignoring test failures" else dh_auto_test = debian/source/lintian-overrides deleted = --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -proj source: debian-watch-uses-insecure-uri * - = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|b|beta|a|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/proj/ \ +https://download.osgeo.org/proj/ \ (?:.*/)?proj[\-\_](\d+[\.\d+]+(?:[a-zA-Z]+\d+)?)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/proj/compare/5c96558048e03303bbb44c4f4e8a14cdb5f3d728...342c5a4cc1a49f7e8ba0f1aafe6f1d2b14711d01 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/proj/compare/5c96558048e03303bbb44c4f4e8a14cdb5f3d728...342c5a4cc1a49f7e8ba0f1aafe6f1d2b14711d01 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[pycsw] branch master updated (3933cf6 -> 1540b54)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository pycsw. from 3933cf6 Update copyright-format URL to use HTTPS. new 1540b54 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 1 + debian/watch | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pycsw.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[pycsw] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository pycsw. commit 1540b54caf3755d79280744ac4fcb9922f35a044 Author: Bas Couwenberg Date: Sat Feb 17 18:00:31 2018 +0100 Update watch file to use HTTPS. --- debian/changelog | 1 + debian/watch | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 6dccb72..1e75333 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ pycsw (2.0.3+dfsg-2) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.0, changes: priority. * Strip trailing whitespace from changelog. * Update copyright-format URL to use HTTPS. + * Update watch file to use HTTPS. -- Bas Couwenberg Sun, 24 Sep 2017 13:19:35 +0200 diff --git a/debian/watch b/debian/watch index 740f7f8..76e15f0 100644 --- a/debian/watch +++ b/debian/watch @@ -3,5 +3,5 @@ opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/,\ repacksuffix=+dfsg \ -http://download.osgeo.org/pycsw/ \ +https://download.osgeo.org/pycsw/ \ pycsw-(\d.*)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pycsw.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/pycsw][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / pycsw Commits: 1540b54c by Bas Couwenberg at 2018-02-17T18:00:31+01:00 Update watch file to use HTTPS. - - - - - 2 changed files: - debian/changelog - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ pycsw (2.0.3+dfsg-2) UNRELEASED; urgency=medium * Bump Standards-Version to 4.1.0, changes: priority. * Strip trailing whitespace from changelog. * Update copyright-format URL to use HTTPS. + * Update watch file to use HTTPS. -- Bas Couwenberg Sun, 24 Sep 2017 13:19:35 +0200 = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -3,5 +3,5 @@ opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/,\ repacksuffix=+dfsg \ -http://download.osgeo.org/pycsw/ \ +https://download.osgeo.org/pycsw/ \ pycsw-(\d.*)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) View it on GitLab: https://salsa.debian.org/debian-gis-team/pycsw/commit/1540b54caf3755d79280744ac4fcb9922f35a044 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/pycsw/commit/1540b54caf3755d79280744ac4fcb9922f35a044 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[shapelib] branch master updated (e8f1866 -> 8886734)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository shapelib. from e8f1866 Fix deprecated source override location. new 8886734 Update watch file to use HTTPS. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog| 3 +-- debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 7 deletions(-) delete mode 100644 debian/source/lintian-overrides -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/shapelib.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[shapelib] 01/01: Update watch file to use HTTPS.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository shapelib. commit 8886734d392a18908aa2f9f44bbe61de2928db8d Author: Bas Couwenberg Date: Sat Feb 17 18:01:23 2018 +0100 Update watch file to use HTTPS. --- debian/changelog| 3 +-- debian/copyright| 2 +- debian/source/lintian-overrides | 3 --- debian/watch| 2 +- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/debian/changelog b/debian/changelog index f9ec2b3..9515c4b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,7 @@ shapelib (1.4.1-2) UNRELEASED; urgency=medium * Strip trailing whitespace from changelog. * Update copyright-format URL to use HTTPS. * Bump Standards-Version to 4.1.3, no changes. - * Add lintian override for debian-watch-uses-insecure-uri. - * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Wed, 15 Nov 2017 22:12:52 +0100 diff --git a/debian/copyright b/debian/copyright index b6de870..ab17983 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Shapefile C Library Upstream-Contact: Frank Warmerdam -Source: http://download.osgeo.org/shapelib/ +Source: https://download.osgeo.org/shapelib/ Files: * Copyright: 2012-2016, Even Rouault diff --git a/debian/source/lintian-overrides b/debian/source/lintian-overrides deleted file mode 100644 index a215373..000 --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -shapelib source: debian-watch-uses-insecure-uri * - diff --git a/debian/watch b/debian/watch index debdf48..140c03a 100644 --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/shapelib/ \ +https://download.osgeo.org/shapelib/ \ (?:|.*/)shapelib(?:[_\-]v?|)(\d[^\s/]*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/shapelib.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/shapelib][master] Update watch file to use HTTPS.
Bas Couwenberg pushed to branch master at Debian GIS Project / shapelib Commits: 8886734d by Bas Couwenberg at 2018-02-17T18:01:23+01:00 Update watch file to use HTTPS. - - - - - 4 changed files: - debian/changelog - debian/copyright - − debian/source/lintian-overrides - debian/watch Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,7 @@ shapelib (1.4.1-2) UNRELEASED; urgency=medium * Strip trailing whitespace from changelog. * Update copyright-format URL to use HTTPS. * Bump Standards-Version to 4.1.3, no changes. - * Add lintian override for debian-watch-uses-insecure-uri. - * Fix deprecated source override location. + * Update watch file to use HTTPS. -- Bas Couwenberg Wed, 15 Nov 2017 22:12:52 +0100 = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Shapefile C Library Upstream-Contact: Frank Warmerdam -Source: http://download.osgeo.org/shapelib/ +Source: https://download.osgeo.org/shapelib/ Files: * Copyright: 2012-2016, Even Rouault = debian/source/lintian-overrides deleted = --- a/debian/source/lintian-overrides +++ /dev/null @@ -1,3 +0,0 @@ -# download.osgeo.org is not available via HTTPS -shapelib source: debian-watch-uses-insecure-uri * - = debian/watch = --- a/debian/watch +++ b/debian/watch @@ -2,5 +2,5 @@ version=3 opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ -http://download.osgeo.org/shapelib/ \ +https://download.osgeo.org/shapelib/ \ (?:|.*/)shapelib(?:[_\-]v?|)(\d[^\s/]*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) View it on GitLab: https://salsa.debian.org/debian-gis-team/shapelib/commit/8886734d392a18908aa2f9f44bbe61de2928db8d --- View it on GitLab: https://salsa.debian.org/debian-gis-team/shapelib/commit/8886734d392a18908aa2f9f44bbe61de2928db8d You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[tinyows] branch master updated (b5a0c10 -> c2bcbf1)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository tinyows. from b5a0c10 Update copyright-format URL to use HTTPS. new c2bcbf1 Change Source URL to GitHub repository. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 1 + debian/copyright | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/tinyows.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[tinyows] 01/01: Change Source URL to GitHub repository.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository tinyows. commit c2bcbf15b97f55324a9c62b13912295cc3281339 Author: Bas Couwenberg Date: Sat Feb 17 18:03:26 2018 +0100 Change Source URL to GitHub repository. --- debian/changelog | 1 + debian/copyright | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 70351e7..6493571 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ tinyows (1.1.1-5) UNRELEASED; urgency=medium * Strip trailing whitespace from changelog & control files. * Update copyright-format URL to use HTTPS. + * Change Source URL to GitHub repository. -- Bas Couwenberg Wed, 15 Nov 2017 22:16:17 +0100 diff --git a/debian/copyright b/debian/copyright index 6deb99d..b1706fa 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: TinyOWS Upstream-Contact: Barbara Philippot, Olivier Courtin and the MapServer team. -Source: http://download.osgeo.org/mapserver/ +Source: https://github.com/mapserver/tinyows Files: * Copyright: 2007-2012, Barbara Philippot - Olivier Courtin -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/tinyows.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[Git][debian-gis-team/tinyows][master] Change Source URL to GitHub repository.
Bas Couwenberg pushed to branch master at Debian GIS Project / tinyows Commits: c2bcbf15 by Bas Couwenberg at 2018-02-17T18:03:26+01:00 Change Source URL to GitHub repository. - - - - - 2 changed files: - debian/changelog - debian/copyright Changes: = debian/changelog = --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ tinyows (1.1.1-5) UNRELEASED; urgency=medium * Strip trailing whitespace from changelog & control files. * Update copyright-format URL to use HTTPS. + * Change Source URL to GitHub repository. -- Bas Couwenberg Wed, 15 Nov 2017 22:16:17 +0100 = debian/copyright = --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: TinyOWS Upstream-Contact: Barbara Philippot, Olivier Courtin and the MapServer team. -Source: http://download.osgeo.org/mapserver/ +Source: https://github.com/mapserver/tinyows Files: * Copyright: 2007-2012, Barbara Philippot - Olivier Courtin View it on GitLab: https://salsa.debian.org/debian-gis-team/tinyows/commit/c2bcbf15b97f55324a9c62b13912295cc3281339 --- View it on GitLab: https://salsa.debian.org/debian-gis-team/tinyows/commit/c2bcbf15b97f55324a9c62b13912295cc3281339 You're receiving this email because of your account on salsa.debian.org. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel