osmosis_0.44.1-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports, jessie-backports
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Wed, 10 Jun 2015 08:03:39 +0200 Source: osmosis Binary: osmosis Architecture: source all Version: 0.44.1-1~bpo8+1 Distribution: jessie-backports Urgency: medium Maintainer: Debian GIS Project Changed-By: Bas Couwenberg Description: osmosis- Command line OpenStreetMap data processor Closes: 785257 Changes: osmosis (0.44.1-1~bpo8+1) jessie-backports; urgency=medium . * Rebuild for jessie-backports. * Update branch in gbp.conf and Vcs-Git URL. . osmosis (0.44.1-1) unstable; urgency=medium . * New upstream release. * Drop patches applied upstream, refresh remaining patches. * Update alternative JRE dependency for Java 7 to match sourceCompatibility. . osmosis (0.43.1-6) unstable; urgency=medium . * Fix malformed opts=... in watchfile. . osmosis (0.43.1-5) unstable; urgency=medium . * Don't compress SQL examples to allow piping into psql with just cat. * Add patch from upstream to fix java.lang.ClassCastException for java.util.HashMap to org.openstreetmap.osmosis.hstore.PGHStore. (closes: #785257) * Add patches from upstream master branch, changes include: - db-server - way-nodes fixes - replication URL updates to match current planet.osm.org layout Checksums-Sha1: d2270eecba21bc9f66c78f1248d93595d113ff42 2501 osmosis_0.44.1-1~bpo8+1.dsc 6537c0a2e45ac3a32a336ab87b81e2d8485849e2 10936 osmosis_0.44.1-1~bpo8+1.debian.tar.xz fe7281f310d76895826d57685336d743161e093b 1131002 osmosis_0.44.1-1~bpo8+1_all.deb Checksums-Sha256: f9dc33aec3023308829e35f4247d701274c64328ec8ffb67df1639d09b4bd3ab 2501 osmosis_0.44.1-1~bpo8+1.dsc 2b8a10cfe35bec72c08ec7999e0adb0a03cfd905e092ae000b3c71ac8fd8d66d 10936 osmosis_0.44.1-1~bpo8+1.debian.tar.xz d54e6b0e7dfbc399cea96b128cee7a538d4608acce826839d70f711bd809dd61 1131002 osmosis_0.44.1-1~bpo8+1_all.deb Files: 01fe85f66f75d1d6d996959b80518b7b 2501 utils optional osmosis_0.44.1-1~bpo8+1.dsc 080f1d5e5df9471d0381fef74e05795f 10936 utils optional osmosis_0.44.1-1~bpo8+1.debian.tar.xz d7b19715de9d9d1b169c1e21a1cc1a7a 1131002 utils optional osmosis_0.44.1-1~bpo8+1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCgAGBQJVd9ejAAoJEGdQ8QrojUrx8uQQAIMgrrP3X/Lkbb5GDTwBHcHe f1cBXCXRRZoIUgEbijcjmTo2KJ13FvK2+Lwvu9Ou/kY8VCrEHyThA4piUEnEyvAc sJAHNeHXfm731km8wm69cVsswTILadsQr6DXtzVtd+J89y2UKx4EL9bCdU4k69YB /MLVi4D4yyRHoXxcQlYwXW+a1sbo76hJiM2h922nNDmKGCRklWnju6Fz2bRHNAm0 R9R64suSShS0ayv75FtCMt4/FFNgB65MhS96l/qEQLOQ36aju2zLj3/SpAf6ksL8 IYRSOav/0kqn3/nAOLXuQ/3m+gSyYGVtklRCYtodO9hmUV6udoIz3WHfjm1vqPdb ui+LkfJE1i+YJDdfcTrGDCCWotnjtg4Wu0TqKBBSseeaNOiiiplcWCeRkf766tGN OLWkuVspHvfeSkh1oNESE/i8Gw+sJpTaUMEmbMVlFuHtl/l6eXaEcvaJHI/r9A+w dO2hL1/nvNsNA9qpiRhjxe5PGe0dwaMk5XeuEP+zmJbt2UPKSDwknwM+UFIQdc+i pOaIboSOBAAkoufwP+ZzIkvkA4JSB3cuhkv5/gP2boXaigwXWuUkdHZn234NN1LF No78qc69gvGj6NvFn1w5UvNodzkB7z+qI32WwSfvODO5saqRmNqp+ZWcJQd3lHMF xLfM0QFLNq+6pxJVYVky =VOrF -END PGP SIGNATURE- Thank you for your contribution to Debian. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
Bug#788722: thuban: please make the build reproducible
Source: thuban Version: 1.2.2-6 Severity: wishlist Tags: patch User: reproducible-bui...@lists.alioth.debian.org Usertags: timestamps X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org Hi! While working on the "reproducible builds" effort [1], we have noticed that thuban could not be built reproducibly. The build date is embedded into a manpage generated by docbook2x-man The attached patch fixes this by using the date from the latest changelog entry instead. Regards, Reiner [1]: https://wiki.debian.org/ReproducibleBuilds diff --git a/debian/rules b/debian/rules index c0f2e9f..bafab07 100755 --- a/debian/rules +++ b/debian/rules @@ -3,6 +3,8 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +BUILD_DATE=$(shell dpkg-parsechangelog -S Date | LC_ALL=C date -u "+%d %B %Y" -f -) + MANPAGES:=$(wildcard debian/man/*.*.xml) CFLAGS += -Wall -g @@ -27,7 +29,7 @@ override_dh_clean: override_dh_auto_build: # Create man pages from DocBook XML for x in $(MANPAGES) ; do \ - docbook2x-man $$x ; \ + docbook2x-man --string-param header-3="$(BUILD_DATE)" $$x ; \ mv `basename $$x | sed 's/.xml$$//'` `dirname $$x` ; \ done signature.asc Description: OpenPGP digital signature ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
Bug#788722: Acknowledgement (thuban: please make the build reproducible)
I just saw this one is fixed in Git too. Sorry for the noise. :) signature.asc Description: OpenPGP digital signature ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
Bug#788722: Acknowledgement (thuban: please make the build reproducible)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Control: tags -1 pending On 06/14/2015 04:22 PM, Reiner Herrmann wrote: > I just saw this one is fixed in Git too. Sorry for the noise. :) No problem, your bugreport is a good reason to upload a new revision. :) Kind Regards, Bas - -- GPG Key ID: 4096R/6750F10AE88D4AF1 Fingerprint: 8182 DE41 7056 408D 6146 50D1 6750 F10A E88D 4AF1 -BEGIN PGP SIGNATURE- Version: GnuPG v2 iQIcBAEBCgAGBQJVfY9zAAoJEGdQ8QrojUrxN8YP/jJoZGAWqlMkV4PPUHcNQxUG pfQLc4nS5PF35JvE4ChW8PUSzKFtgFYygByHWa02k+4dRfk8+XGbANF+qsBgNr8v ju5zFOhr0MTl39FZ2J8Ywv18LJbzdnqhESfTDXYTD57HocrMppgziKrp6IHaiqI0 HFvMOXLiAE/gnevyRqVtT+P8p+rTVEr+qBfcc7Rvndn2BUiMQ9MoYzSiKfS93clE bwcqkwq1CMXRuIyElBe9e+yvMoPe8WHWCF33tWelRxFSKtrCGkXsXCphJCMKjjcC wrPu8hAMQ220J1jpLhCom8TzcnwXwwW1FfkXfJY32q9rQFnj98wtnWyFsBrhPu+9 QbDNQd8CBe02Ca3tXqzZtNrxXT+jbL8Z9TsVOWfeudhVDMutF9hRcNu84nr37of7 5M1nFpaRVqwcu5BoozFV43SVOOreClA3fc1QD3eak/6AcY2Ye9vkzsL55D6MlxnQ lM3WiITLCEVKR7doEAAhTj3QN7L1BP3gRRPrbDZ7WyUnW4fnbHn6XcVNsC4aXT10 N4fetyI+FWHzxdWLGoB+BQF+TSYBBI5GGnSRDR6ygOZFca680UGfCwchaN+Y1M6O aA3HWP+DplMpL9RHLkXIZh0IZhBQPGj47hgElFW4HkVJ1XasOvyHkGBE+I4gyR/N nmKBQmKe+HG/WQjacC2U =v89w -END PGP SIGNATURE- ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
Processed: Re: Bug#788722: Acknowledgement (thuban: please make the build reproducible)
Processing control commands: > tags -1 pending Bug #788722 [src:thuban] thuban: please make the build reproducible Added tag(s) pending. -- 788722: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788722 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[thuban] branch master updated (2c92cbd -> c0deb54)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository thuban. from 2c92cbd Add gbp.conf to use pristine-tar by default. new 6a26665 Close bug in changelog. new c0deb54 Set distribution to unstable. 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/thuban.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
[thuban] tag debian/1.2.2-6 created (now 50e052f)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to tag debian/1.2.2-6 in repository thuban. at 50e052f (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/thuban.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
[thuban] tag debian/1.2.2-7 created (now c0deb54)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to tag debian/1.2.2-7 in repository thuban. at c0deb54 (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/thuban.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
[thuban] 02/02: 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 thuban. commit c0deb542824889de9ba6675fac44d27492c1e38b Author: Bas Couwenberg Date: Sun Jun 14 16:32:50 2015 +0200 Set distribution to unstable. --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index f747e68..1da49c2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -thuban (1.2.2-7) UNRELEASED; urgency=medium +thuban (1.2.2-7) unstable; urgency=medium * Set the date embedded in man pages to the changelog date for reproducible builds. (closes: #788722) @@ -7,7 +7,7 @@ thuban (1.2.2-7) UNRELEASED; urgency=medium * Bump Standards-Version to 3.9.6, no changes. * Add gbp.conf to use pristine-tar by default. - -- Bas Couwenberg Thu, 23 Apr 2015 23:50:36 +0200 + -- Bas Couwenberg Sun, 14 Jun 2015 16:32:38 +0200 thuban (1.2.2-6) unstable; urgency=medium -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/thuban.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
[thuban] 01/02: Close bug in changelog.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository thuban. commit 6a2666503ab278e972a8a08d5bf179b08d35f667 Author: Bas Couwenberg Date: Sun Jun 14 16:32:07 2015 +0200 Close bug in changelog. --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index a35bca7..f747e68 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,7 @@ thuban (1.2.2-7) UNRELEASED; urgency=medium * Set the date embedded in man pages to the changelog date for -reproducible builds. +reproducible builds. (closes: #788722) * Update my email to @debian.org address. * Update Vcs-Browser URL to use cgit instead of gitweb. * Bump Standards-Version to 3.9.6, no changes. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/thuban.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
Processing of thuban_1.2.2-7_amd64.changes
thuban_1.2.2-7_amd64.changes uploaded successfully to localhost along with the files: thuban_1.2.2-7.dsc thuban_1.2.2-7.debian.tar.xz thuban-doc_1.2.2-7_all.deb thuban_1.2.2-7_amd64.deb Greetings, Your Debian queue daemon (running on host franck.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
thuban_1.2.2-7_amd64.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 14 Jun 2015 16:32:38 +0200 Source: thuban Binary: thuban thuban-doc Architecture: source all amd64 Version: 1.2.2-7 Distribution: unstable Urgency: medium Maintainer: Debian GIS Project Changed-By: Bas Couwenberg Description: thuban - Interactive geographic data viewer thuban-doc - Interactive geographic data viewer - documentation Closes: 788722 Changes: thuban (1.2.2-7) unstable; urgency=medium . * Set the date embedded in man pages to the changelog date for reproducible builds. (closes: #788722) * Update my email to @debian.org address. * Update Vcs-Browser URL to use cgit instead of gitweb. * Bump Standards-Version to 3.9.6, no changes. * Add gbp.conf to use pristine-tar by default. Checksums-Sha1: 5c5bc235b8d9f28072dad9cb784307b4b36f32d0 2151 thuban_1.2.2-7.dsc d69926ef94c3f182ae6bd4b4f7a2c0b654298d84 11692 thuban_1.2.2-7.debian.tar.xz b96b466685359873a67471da575f9239be63a356 486772 thuban-doc_1.2.2-7_all.deb 33468ce86e1527c19302400c86a98919a86fa0cd 496870 thuban_1.2.2-7_amd64.deb Checksums-Sha256: 85d834179e26ce792a063ee10fa5d6abdc961ef3575aef87940675be34041a7a 2151 thuban_1.2.2-7.dsc aa393a4e21cc0907ed65dc3e6a8bdbf6ac3057410e343c0c4f4204db407267dc 11692 thuban_1.2.2-7.debian.tar.xz 6c7696dd54b9359bd5a7c789eaf3a404bf2876f03f5cc763ea78ea59eb001cdd 486772 thuban-doc_1.2.2-7_all.deb cdce741a7dafd177a65daaef77aca3156a4189da2015c9a9159cc1b52d3e7221 496870 thuban_1.2.2-7_amd64.deb Files: b36689c54dd5b6fdae82a571c62e9311 2151 graphics optional thuban_1.2.2-7.dsc a32c5f9912de540fb7fa2df10cc0027b 11692 graphics optional thuban_1.2.2-7.debian.tar.xz 96e58f6741c45f08a7b4f3cebad0532d 486772 doc optional thuban-doc_1.2.2-7_all.deb 411735b637ca52fba78c716ee8bfc888 496870 graphics optional thuban_1.2.2-7_amd64.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCgAGBQJVfZRZAAoJEGdQ8QrojUrxzX4P/0NDqd4Nj2dFqoAINApYqBIx QRd7UoaEHUFNveC3lrZd24+BeCd5n+2/1hY9zfGZ7XRyya29oKscu35yByLKeyJR ZeYg5no3K/PEc75D+lrJJTn4JSloCX/lA2sX5pXQSrkpwJrFCCKM4vRhvQtqewZl Gv29qNpT06x+hq8y5CXPQV8rRgldD8+8UFch6yfclmu7rTftGyB2dO7aCzryRiMF D43e+JqsyKt4/LakMJZZOYrrvcFeMM+HOlLpmxMJZ/m3UKNvjShp7Qnuup9Y+00f 2yRG8AB4uhtTq9J6YHkO20mXOuhmWx3En3Wcdz+Ph8hJ8ftGp0yVhTctr8gRxEOX zdL121IS9cZMIcMEoiaZOuTXLXv3Rmd5/hXGPM3poBLEuhE0OK94ShssP7wHJF18 O1Rmyv3075UOLm/IBiPXM8bGvothYDSpU3bTjKKpyOy3HCLPu7pfhJNF7rvdMJxi XC+oMp6q4JXPalfGtNJyC7CzIhIWSQy7g5z5DU7CW0hm096XH/QCpewOR42zL/W9 z0vOn/B+4MnBnPPKkjS6Bk8L6H3NUEI0aGjo5CW4fr8O0Dz/6OGYa1aafF4ctp+N SQxS2cJRVCOv9wOq+B1jBXZ0r50AXTn6cHJbQscmu8sV04FYA69NazjxCEP5mT8j DjNcTfIDBvo7yhacLZNd =EAMC -END PGP SIGNATURE- Thank you for your contribution to Debian. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
Bug#788722: marked as done (thuban: please make the build reproducible)
Your message dated Sun, 14 Jun 2015 16:15:24 + with message-id and subject line Bug#788722: fixed in thuban 1.2.2-7 has caused the Debian Bug report #788722, regarding thuban: please make the build reproducible to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 788722: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788722 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Source: thuban Version: 1.2.2-6 Severity: wishlist Tags: patch User: reproducible-bui...@lists.alioth.debian.org Usertags: timestamps X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org Hi! While working on the "reproducible builds" effort [1], we have noticed that thuban could not be built reproducibly. The build date is embedded into a manpage generated by docbook2x-man The attached patch fixes this by using the date from the latest changelog entry instead. Regards, Reiner [1]: https://wiki.debian.org/ReproducibleBuilds diff --git a/debian/rules b/debian/rules index c0f2e9f..bafab07 100755 --- a/debian/rules +++ b/debian/rules @@ -3,6 +3,8 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +BUILD_DATE=$(shell dpkg-parsechangelog -S Date | LC_ALL=C date -u "+%d %B %Y" -f -) + MANPAGES:=$(wildcard debian/man/*.*.xml) CFLAGS += -Wall -g @@ -27,7 +29,7 @@ override_dh_clean: override_dh_auto_build: # Create man pages from DocBook XML for x in $(MANPAGES) ; do \ - docbook2x-man $$x ; \ + docbook2x-man --string-param header-3="$(BUILD_DATE)" $$x ; \ mv `basename $$x | sed 's/.xml$$//'` `dirname $$x` ; \ done signature.asc Description: OpenPGP digital signature --- End Message --- --- Begin Message --- Source: thuban Source-Version: 1.2.2-7 We believe that the bug you reported is fixed in the latest version of thuban, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 788...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Bas Couwenberg (supplier of updated thuban package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 14 Jun 2015 16:32:38 +0200 Source: thuban Binary: thuban thuban-doc Architecture: source all amd64 Version: 1.2.2-7 Distribution: unstable Urgency: medium Maintainer: Debian GIS Project Changed-By: Bas Couwenberg Description: thuban - Interactive geographic data viewer thuban-doc - Interactive geographic data viewer - documentation Closes: 788722 Changes: thuban (1.2.2-7) unstable; urgency=medium . * Set the date embedded in man pages to the changelog date for reproducible builds. (closes: #788722) * Update my email to @debian.org address. * Update Vcs-Browser URL to use cgit instead of gitweb. * Bump Standards-Version to 3.9.6, no changes. * Add gbp.conf to use pristine-tar by default. Checksums-Sha1: 5c5bc235b8d9f28072dad9cb784307b4b36f32d0 2151 thuban_1.2.2-7.dsc d69926ef94c3f182ae6bd4b4f7a2c0b654298d84 11692 thuban_1.2.2-7.debian.tar.xz b96b466685359873a67471da575f9239be63a356 486772 thuban-doc_1.2.2-7_all.deb 33468ce86e1527c19302400c86a98919a86fa0cd 496870 thuban_1.2.2-7_amd64.deb Checksums-Sha256: 85d834179e26ce792a063ee10fa5d6abdc961ef3575aef87940675be34041a7a 2151 thuban_1.2.2-7.dsc aa393a4e21cc0907ed65dc3e6a8bdbf6ac3057410e343c0c4f4204db407267dc 11692 thuban_1.2.2-7.debian.tar.xz 6c7696dd54b9359bd5a7c789eaf3a404bf2876f03f5cc763ea78ea59eb001cdd 486772 thuban-doc_1.2.2-7_all.deb cdce741a7dafd177a65daaef77aca3156a4189da2015c9a9159cc1b52d3e7221 496870 thuban_1.2.2-7_amd64.deb Files: b36689c54dd5b6fdae82a571c62e9311 2151 graphics optional thuban_1.2.2-7.dsc a32c5f9912de540fb7fa2df10cc0027b 11692 graphics optional thuban_1.2.2-7.debian.tar.xz 96e58f6741c45f08a7b4f3cebad0532d 486772 doc optional thuban-doc_1.2.2-7_all.deb 411735b637ca52fba78c716ee8bfc888 496870 graphics optional thuban_1.2.2-7_amd64.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCgAGBQJVfZRZAAoJEGdQ8QrojUrxzX4P/0NDqd4Nj2dFqoAINApYqBIx QRd7UoaEHUFNveC3lrZd24+BeCd5n+2/1hY9zfGZ7XRyya29oKscu35yByLKeyJR ZeYg5no3K/PEc75D+lrJJTn4JSloCX/lA2sX5pXQSrkpwJrFCCKM4vRhvQtqewZl Gv29qNpT06x+hq8y5CXPQV8rRgldD8+8UFch6yfclmu7rTftGyB2dO7aCzryRiMF D43e+J
[nco] branch master updated (b5c7844 -> 0d79837)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository nco. from b5c7844 Set distribution to unstable. new 0d79837 Mark hyphen-used-as-minus-sign.patch as Applied-Upstream. 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/patches/hyphen-used-as-minus-sign.patch | 1 + 1 file changed, 1 insertion(+) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/nco.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
[nco] 01/01: Mark hyphen-used-as-minus-sign.patch as Applied-Upstream.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository nco. commit 0d7983733592a81a4feb2d98bcf700487ba08ff8 Author: Bas Couwenberg Date: Sun Jun 14 18:13:09 2015 +0200 Mark hyphen-used-as-minus-sign.patch as Applied-Upstream. --- debian/patches/hyphen-used-as-minus-sign.patch | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/patches/hyphen-used-as-minus-sign.patch b/debian/patches/hyphen-used-as-minus-sign.patch index f57f2f3..12bddb1 100644 --- a/debian/patches/hyphen-used-as-minus-sign.patch +++ b/debian/patches/hyphen-used-as-minus-sign.patch @@ -1,6 +1,7 @@ Description: Fix hyphen-used-as-minus-sign linian issue by escaping minus signs. Author: Bas Couwenberg Forwarded: https://github.com/czender/nco/pull/8 +Applied-Upstream: https://github.com/czender/nco/commit/6efa34c551c263bb2c5d406c37923af2e652c4fe --- a/man/ncatted.1 +++ b/man/ncatted.1 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/nco.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
proj4js 2.3.6+ds-1 MIGRATED to testing
FYI: The status of the proj4js source package in Debian's testing distribution has changed. Previous version: (not in testing) Current version: 2.3.6+ds-1 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See https://release.debian.org/testing-watch/ for more information. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
mgrs 0.0.1-2 MIGRATED to testing
FYI: The status of the mgrs source package in Debian's testing distribution has changed. Previous version: (not in testing) Current version: 0.0.1-2 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See https://release.debian.org/testing-watch/ for more information. ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[tilelite] branch debconf created (now 8fb5c22)
This is an automated email from the git hooks/post-receive script. cbaines-guest pushed a change to branch debconf in repository tilelite. at 8fb5c22 Use debconf for configuration management (not finished) This branch includes the following new commits: new 8fb5c22 Use debconf for configuration management (not finished) 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. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/tilelite.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
[tilelite] 01/01: Use debconf for configuration management (not finished)
This is an automated email from the git hooks/post-receive script. cbaines-guest pushed a commit to branch debconf in repository tilelite. commit 8fb5c22ec4551dd8d42a307a2905ff72b2905925 Author: Christopher Baines Date: Sun Apr 26 11:09:30 2015 +0100 Use debconf for configuration management (not finished) The aim of this is to give the user the option of having tilelite working once the installation is finished. Currently the menu system is implemented, but the questions asked might not be quite right, and the required configuration/user(s) are not created. When tilelite runs mapnik, it may need to connect to a database (probably postgres). This may require running it as a specific user, or a user with specific permissions. It may also write out cached files, that should go to the appropriate Debian place. Supporting every possible configuration option is not sensible, however, I believe it would be good for a user to be able to simply set up a tileserver using tilelite, osm2pgsql and openstreetmap-carto. It might also be good to have some other packages, perhaps openstreetmap-database that could help with setting up a database with osm2pgsql and openstreetmap-carto, for use with tilelite? --- debian/config| 315 +++ debian/postinst | 120 + debian/postrm| 40 +++ debian/rules | 1 + debian/templates | 85 +++ 5 files changed, 561 insertions(+) diff --git a/debian/config b/debian/config new file mode 100755 index 000..d38f9b6 --- /dev/null +++ b/debian/config @@ -0,0 +1,315 @@ +#!/bin/bash +set -e + +log() { + if [ "$DEBCONF_DEBUG" == "developer" ]; then + echo "tilelite: $*" 1>&2; + fi +} + +log "config \"$*\"" + +# source debconf +. /usr/share/debconf/confmodule + +db_capb backup + +TILESET_QUESTIONS=(processname mapfile url user group) + +TILESET_QUESTIONS_WITHOUT_PROCESSNAME=(mapfile url user group) + +containsElement() { + # https://stackoverflow.com/a/8574392 + local e + for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done + return 1 +} + +add_tileset(){ + while true; do + + for question in ${TILESET_QUESTIONS[@]}; do + db_fset tilelite/${question} seen false + db_set tilelite/${question} "" + db_input high tilelite/${question} || true + done + + if db_go; then + + declare -A answers + for question in ${TILESET_QUESTIONS[@]}; do + db_get tilelite/${question} && answer="$RET" + answers[$question]=$answer + done + + for question in ${TILESET_QUESTIONS[@]}; do + # if the string is empty + if [ ${#answer} -eq 0 ]; then + db_input high tilelite/empty_$question || true + + if db_go; then + continue + else + return 0 + fi + fi + done + + if containsElement "${answers[processname]}" "${TILESETS[@]}"; then + db_subst tilelite/duplicate_processname duplicate_name ${answers[processname]} + db_input high tilelite/duplicate_processname + + if db_go; then + continue + else + return 1 + fi + fi + + log "saving tileset details" + + prefix="tilelite/tileset/${answers[processname]}/" + + log "prefix is $prefix" + + for question in ${TILESET_QUESTIONS[@]}; do + db_register tilelite/$question "$prefix$question" + + db_set "$prefix$question" "${answers[$question]}" + done + + TILESETS+=("${answers[processname]}") + + log "TILESETS ${TILESETS[*]}" + + set_tilesets + + log "tileset details saved" + + return 0 + else + return 1 + fi + done +} + +set_tilesets() { + log "setting tilesets to ${TILESETS[*]}" + + joined_tilesets=$(printf " %s" "${TILESETS[@]}") + joined_tilesets=${joined_tilesets:1} + # https://stackoverflow.com/a/2317171 + +
Re: [tilelite] 01/01: Use debconf for configuration management (not finished)
On 14/06/15 18:04, Christopher Baines wrote: > This is an automated email from the git hooks/post-receive script. > > cbaines-guest pushed a commit to branch debconf > in repository tilelite. > > commit 8fb5c22ec4551dd8d42a307a2905ff72b2905925 > Author: Christopher Baines > Date: Sun Apr 26 11:09:30 2015 +0100 > > Use debconf for configuration management (not finished) > > The aim of this is to give the user the option of having tilelite working > once > the installation is finished. > > Currently the menu system is implemented, but the questions asked might > not be > quite right, and the required configuration/user(s) are not created. > > When tilelite runs mapnik, it may need to connect to a database (probably > postgres). This may require running it as a specific user, or a user with > specific permissions. It may also write out cached files, that should go > to the > appropriate Debian place. > > Supporting every possible configuration option is not sensible, however, I > believe it would be good for a user to be able to simply set up a > tileserver > using tilelite, osm2pgsql and openstreetmap-carto. It might also be good > to > have some other packages, perhaps openstreetmap-database that could help > with > setting up a database with osm2pgsql and openstreetmap-carto, for use with > tilelite? > --- > debian/config| 315 > +++ > debian/postinst | 120 + > debian/postrm| 40 +++ > debian/rules | 1 + > debian/templates | 85 +++ > 5 files changed, 561 insertions(+) I have got somewhere now with tilelite and debconf (see the commit message for some stuff also), although its coming to the point where thought is needed about exactly wants supporting, and how packages might interact (with regard to setting up a tileserver). Ruben, do you have any input with regards to meta-packages? ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
Bug#788761: postgis: FTBFS with maven-compiler-plugin 3.*
Package: postgis Version: 2.1.7+dfsg-1 Severity: serious Tags: patch Justification: fails to build from source (but built successfully in the past) User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu wily ubuntu-patch This package fails to build the architecture independent components with the newer maven-compiler-plugin. *** /tmp/tmpvkk2E1/bug_body In Ubuntu, the attached patch was applied to achieve the following: * Switch libmaven-compiler-plugin-java to libmaven-compiler-plugin-2.5-java (Fixes FTBFS) - update debian/control{,.in} Thanks for considering the patch. -- System Information: Debian Release: jessie/sid APT prefers trusty-updates APT policy: (500, 'trusty-updates'), (500, 'trusty-security'), (500, 'trusty-proposed'), (500, 'trusty'), (100, 'trusty-backports') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.13.0-54-generic (SMP w/8 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash diff -Nru postgis-2.1.7+dfsg/debian/changelog postgis-2.1.7+dfsg/debian/changelog diff -Nru postgis-2.1.7+dfsg/debian/control postgis-2.1.7+dfsg/debian/control --- postgis-2.1.7+dfsg/debian/control 2015-05-01 13:44:01.0 -0500 +++ postgis-2.1.7+dfsg/debian/control 2015-06-14 14:43:57.0 -0500 @@ -17,7 +17,7 @@ Build-Depends-Indep: default-jdk, openjdk-7-jdk | java7-sdk, libpostgresql-jdbc-java, fastjar, libjts-java (>= 1.7), maven2, libmaven-clean-plugin-java, libmaven-jar-plugin-java, - libsurefire-java, libmaven-compiler-plugin-java, + libsurefire-java, libmaven-compiler-plugin-2.5-java, libmaven-resources-plugin-java, libmaven-javadoc-plugin-java Standards-Version: 3.9.6 diff -Nru postgis-2.1.7+dfsg/debian/control.in postgis-2.1.7+dfsg/debian/control.in --- postgis-2.1.7+dfsg/debian/control.in 2015-03-30 13:52:26.0 -0500 +++ postgis-2.1.7+dfsg/debian/control.in 2015-06-14 14:43:57.0 -0500 @@ -17,7 +17,7 @@ Build-Depends-Indep: default-jdk, openjdk-7-jdk | java7-sdk, libpostgresql-jdbc-java, fastjar, libjts-java (>= 1.7), maven2, libmaven-clean-plugin-java, libmaven-jar-plugin-java, - libsurefire-java, libmaven-compiler-plugin-java, + libsurefire-java, libmaven-compiler-plugin-2.5-java, libmaven-resources-plugin-java, libmaven-javadoc-plugin-java Standards-Version: 3.9.6 ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[sfcgal] 01/01: Make linitan happy
This is an automated email from the git hooks/post-receive script. giggls-guest pushed a commit to branch master in repository sfcgal. commit 0f6de5c8dfb68f238225cf1c857e9f5c1ffc96fc Author: Sven Geggus Date: Sat Jun 13 16:23:33 2015 +0200 Make linitan happy --- debian/control | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 83b452b..419cf46 100644 --- a/debian/control +++ b/debian/control @@ -27,6 +27,8 @@ Description: Library for ISO 19107:2013 and OGC SFA 1.2 for 3D operations (runti that can be accessed from its C or C++ APIs. PostGIS uses the C API, to expose some SFCGAL's functions in spatial databases (cf. PostGIS manual). + . + This part is the runtime package of the library. Package: libsfcgal-dev Section: libdevel @@ -42,11 +44,17 @@ Description: Library for ISO 19107:2013 and OGC SFA 1.2 for 3D operations (dev p that can be accessed from its C or C++ APIs. PostGIS uses the C API, to expose some SFCGAL's functions in spatial databases (cf. PostGIS manual). + . + This is the development package of the library. Package: sfcgal-bin Architecture: any Multi-Arch: foreign Depends: ${misc:Depends}, ${shlibs:Depends} Description: Simple viewer for SFCGAL library - viewer-SFCGAL is a simple application demonstrating the features of - the SFCGAL library + viewer-SFCGAL is a basic 3D viewer based on OpenSceneGraph. + . + A screencast available on the SFCGAL homepage: + http://oslandia.github.io/SFCGAL/screencast.html + shows how it can be used to make it interact with a PostGIS + database. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/sfcgal.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
[sfcgal] branch master updated (91c4af3 -> 0f6de5c)
This is an automated email from the git hooks/post-receive script. giggls-guest pushed a change to branch master in repository sfcgal. from 91c4af3 first try of the quest to make this debian-policy compliant new 0f6de5c Make linitan happy 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/control | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/sfcgal.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
[gdal] 03/04: pristine-tar data for gdal_2.0.0~rc1+dfsg.orig.tar.gz
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch pristine-tar in repository gdal. commit baf9e23488602fd6adb5feb9ee69516a4151ce0d Author: Bas Couwenberg Date: Sat Jun 13 21:25:54 2015 +0200 pristine-tar data for gdal_2.0.0~rc1+dfsg.orig.tar.gz --- gdal_2.0.0~rc1+dfsg.orig.tar.gz.delta | Bin 0 -> 10288314 bytes gdal_2.0.0~rc1+dfsg.orig.tar.gz.id| 1 + 2 files changed, 1 insertion(+) diff --git a/gdal_2.0.0~rc1+dfsg.orig.tar.gz.delta b/gdal_2.0.0~rc1+dfsg.orig.tar.gz.delta new file mode 100644 index 000..c8820d0 Binary files /dev/null and b/gdal_2.0.0~rc1+dfsg.orig.tar.gz.delta differ diff --git a/gdal_2.0.0~rc1+dfsg.orig.tar.gz.id b/gdal_2.0.0~rc1+dfsg.orig.tar.gz.id new file mode 100644 index 000..697e0d8 --- /dev/null +++ b/gdal_2.0.0~rc1+dfsg.orig.tar.gz.id @@ -0,0 +1 @@ +e4272eccd17a64de0db1225d5b3257793276860b -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 04/04: pristine-tar data for gdal_2.0.0~rc2+dfsg.orig.tar.gz
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch pristine-tar in repository gdal. commit 8f7f2cf90469b17cdd183f782a15237c038e9269 Author: Bas Couwenberg Date: Sun Jun 14 21:03:28 2015 +0200 pristine-tar data for gdal_2.0.0~rc2+dfsg.orig.tar.gz --- gdal_2.0.0~rc2+dfsg.orig.tar.gz.delta | Bin 0 -> 10259071 bytes gdal_2.0.0~rc2+dfsg.orig.tar.gz.id| 1 + 2 files changed, 1 insertion(+) diff --git a/gdal_2.0.0~rc2+dfsg.orig.tar.gz.delta b/gdal_2.0.0~rc2+dfsg.orig.tar.gz.delta new file mode 100644 index 000..eced615 Binary files /dev/null and b/gdal_2.0.0~rc2+dfsg.orig.tar.gz.delta differ diff --git a/gdal_2.0.0~rc2+dfsg.orig.tar.gz.id b/gdal_2.0.0~rc2+dfsg.orig.tar.gz.id new file mode 100644 index 000..9cad6dc --- /dev/null +++ b/gdal_2.0.0~rc2+dfsg.orig.tar.gz.id @@ -0,0 +1 @@ +be84e8adb5c724963d221ebc72cb36cd44f59023 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 02/04: pristine-tar data for gdal_2.0.0~beta2+dfsg.orig.tar.gz
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch pristine-tar in repository gdal. commit 1f39aa53e350353296e1c7d785d8969585f795cc Author: Bas Couwenberg Date: Sat Jun 13 21:24:38 2015 +0200 pristine-tar data for gdal_2.0.0~beta2+dfsg.orig.tar.gz --- gdal_2.0.0~beta2+dfsg.orig.tar.gz.delta | Bin 0 -> 10190497 bytes gdal_2.0.0~beta2+dfsg.orig.tar.gz.id| 1 + 2 files changed, 1 insertion(+) diff --git a/gdal_2.0.0~beta2+dfsg.orig.tar.gz.delta b/gdal_2.0.0~beta2+dfsg.orig.tar.gz.delta new file mode 100644 index 000..8479edf Binary files /dev/null and b/gdal_2.0.0~beta2+dfsg.orig.tar.gz.delta differ diff --git a/gdal_2.0.0~beta2+dfsg.orig.tar.gz.id b/gdal_2.0.0~beta2+dfsg.orig.tar.gz.id new file mode 100644 index 000..53d80a8 --- /dev/null +++ b/gdal_2.0.0~beta2+dfsg.orig.tar.gz.id @@ -0,0 +1 @@ +529eb9db05c1af3caac38cd34241a8130fb933a0 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 04/29: Update watch file for GDAL 2.0.0 RC1.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit f50897a78212a6b6fe55043002bd6e847ba744fd Author: Bas Couwenberg Date: Sat Jun 13 21:14:33 2015 +0200 Update watch file for GDAL 2.0.0 RC1. --- debian/watch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/watch b/debian/watch index 5b4e43b..d7cc829 100644 --- a/debian/watch +++ b/debian/watch @@ -1,7 +1,7 @@ version=3 opts=dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ -uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/,\ +uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/,\ repacksuffix=+dfsg \ -http://download.osgeo.org/gdal/2.0.0beta2/ \ +http://download.osgeo.org/gdal/2.0.0/ \ (?:|.*/)gdal(?:[_\-]v?|)(\d\S*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) #http://trac.osgeo.org/gdal/wiki/DownloadSource \ -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] branch pristine-tar updated (516b218 -> 8f7f2cf)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch pristine-tar in repository gdal. from 516b218 pristine-tar data for gdal_1.11.2+dfsg.orig.tar.gz new 6eecbb5 pristine-tar data for gdal_2.0.0~beta1+dfsg.orig.tar.gz new 1f39aa5 pristine-tar data for gdal_2.0.0~beta2+dfsg.orig.tar.gz new baf9e23 pristine-tar data for gdal_2.0.0~rc1+dfsg.orig.tar.gz new 8f7f2cf pristine-tar data for gdal_2.0.0~rc2+dfsg.orig.tar.gz The 4 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: gdal_2.0.0~beta1+dfsg.orig.tar.gz.delta | Bin 0 -> 10332386 bytes gdal_2.0.0~beta1+dfsg.orig.tar.gz.id| 1 + gdal_2.0.0~beta2+dfsg.orig.tar.gz.delta | Bin 0 -> 10190497 bytes gdal_2.0.0~beta2+dfsg.orig.tar.gz.id| 1 + gdal_2.0.0~rc1+dfsg.orig.tar.gz.delta | Bin 0 -> 10288314 bytes gdal_2.0.0~rc1+dfsg.orig.tar.gz.id | 1 + gdal_2.0.0~rc2+dfsg.orig.tar.gz.delta | Bin 0 -> 10259071 bytes gdal_2.0.0~rc2+dfsg.orig.tar.gz.id | 1 + 8 files changed, 4 insertions(+) create mode 100644 gdal_2.0.0~beta1+dfsg.orig.tar.gz.delta create mode 100644 gdal_2.0.0~beta1+dfsg.orig.tar.gz.id create mode 100644 gdal_2.0.0~beta2+dfsg.orig.tar.gz.delta create mode 100644 gdal_2.0.0~beta2+dfsg.orig.tar.gz.id create mode 100644 gdal_2.0.0~rc1+dfsg.orig.tar.gz.delta create mode 100644 gdal_2.0.0~rc1+dfsg.orig.tar.gz.id create mode 100644 gdal_2.0.0~rc2+dfsg.orig.tar.gz.delta create mode 100644 gdal_2.0.0~rc2+dfsg.orig.tar.gz.id -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] branch experimental-2.0 created (now 56f8c5e)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch experimental-2.0 in repository gdal. at 56f8c5e Drop patches applied upstream. This branch includes the following new commits: new cb0a2d4 Update branch in gbp.conf & Vcs-Git URL. new 15d7d19 Update watch file for GDAL 2.0.0 beta1. new 0f0c8d1 Update watch file for GDAL 2.0.0 beta2. new f50897a Update watch file for GDAL 2.0.0 RC1. new 365d9db Imported Upstream version 2.0.0~beta1+dfsg new d841a3a Merge tag 'upstream/2.0.0_beta1+dfsg' into experimental-2.0 new 496aca2 Imported Upstream version 2.0.0~beta2+dfsg new 0e21944 Merge tag 'upstream/2.0.0_beta2+dfsg' into experimental-2.0 new caa4c70 Imported Upstream version 2.0.0~rc1+dfsg new 2c07a87 Merge tag 'upstream/2.0.0_rc1+dfsg' into experimental-2.0 new 4dbdfe4 New upstream release candidate. new c250f5e Update copyright years & holders. new 0335f9b Use uscan in get-orig-source target. new 90d66bd Drop patches applied upstream, refresh remaining patches. new 353e96f Rename libgdal1h to libgdal20 to match SONAME. new 02c95fc Use packaged libgeotiff & libtiff instead of internal copies. new f8bf1d7 Mark typo patches as Applied-Upstream. new 75d96a2 Update documentation for removal of separate ogr directory. new d1db690 Mark patches as Forwarded. new 6c89e90 Add patches for new typos. new d20a8bd Drop libgdal1-dev transitional package, and obsolete Breaks/Replaces. new c39366e Remove trailing whitespace to fix syntax error in symbols files. new 22cb320 Mark typo patches as Applied-Upstream. new d0fb419 Drop files section for gcore/gdal_rpcimdio.cpp, removed upstream. new e18377b Mark java-make patch as Applied-Upstream. new bf69e09 Imported Upstream version 2.0.0~rc2+dfsg new 17bb7c8 Merge tag 'upstream/2.0.0_rc2+dfsg' into experimental-2.0 new 572b4a0 New upstream release candidate. new 56f8c5e Drop patches applied upstream. The 29 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. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 03/29: Update watch file for GDAL 2.0.0 beta2.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 0f0c8d1489be052d11c84867e93414836390840b Author: Bas Couwenberg Date: Sat Jun 13 21:05:59 2015 +0200 Update watch file for GDAL 2.0.0 beta2. --- debian/watch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/watch b/debian/watch index 3ce3437..5b4e43b 100644 --- a/debian/watch +++ b/debian/watch @@ -2,6 +2,6 @@ version=3 opts=dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/,\ repacksuffix=+dfsg \ -http://download.osgeo.org/gdal/2.0.0beta1/ \ +http://download.osgeo.org/gdal/2.0.0beta2/ \ (?:|.*/)gdal(?:[_\-]v?|)(\d\S*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) #http://trac.osgeo.org/gdal/wiki/DownloadSource \ -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 02/29: Update watch file for GDAL 2.0.0 beta1.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 15d7d19cc35627e1e6906e6eb3023ff1b5127bf8 Author: Bas Couwenberg Date: Sat Jun 13 20:48:15 2015 +0200 Update watch file for GDAL 2.0.0 beta1. --- debian/watch | 12 ++-- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/debian/watch b/debian/watch index 302228c..3ce3437 100644 --- a/debian/watch +++ b/debian/watch @@ -2,14 +2,6 @@ version=3 opts=dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/,\ repacksuffix=+dfsg \ -http://trac.osgeo.org/gdal/wiki/DownloadSource \ +http://download.osgeo.org/gdal/2.0.0beta1/ \ (?:|.*/)gdal(?:[_\-]v?|)(\d\S*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) - -# version=3 -# opts=dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ -# uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/,\ -# downloadurlmangle=s/\/(\d\S*)\//\/$1\/gdal-$1.tar.gz/,\ -# filenamemangle=s/\/(\d\S*)\//gdal-$1.tar.gz/,\ -# repacksuffix=+dfsg \ -# http://download.osgeo.org/gdal/ \ -# (\d\S*)/ +#http://trac.osgeo.org/gdal/wiki/DownloadSource \ -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 01/04: pristine-tar data for gdal_2.0.0~beta1+dfsg.orig.tar.gz
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch pristine-tar in repository gdal. commit 6eecbb53eb93b800f7e573db0df2a513d5032e0b Author: Bas Couwenberg Date: Sat Jun 13 21:23:06 2015 +0200 pristine-tar data for gdal_2.0.0~beta1+dfsg.orig.tar.gz --- gdal_2.0.0~beta1+dfsg.orig.tar.gz.delta | Bin 0 -> 10332386 bytes gdal_2.0.0~beta1+dfsg.orig.tar.gz.id| 1 + 2 files changed, 1 insertion(+) diff --git a/gdal_2.0.0~beta1+dfsg.orig.tar.gz.delta b/gdal_2.0.0~beta1+dfsg.orig.tar.gz.delta new file mode 100644 index 000..c9eeaeb Binary files /dev/null and b/gdal_2.0.0~beta1+dfsg.orig.tar.gz.delta differ diff --git a/gdal_2.0.0~beta1+dfsg.orig.tar.gz.id b/gdal_2.0.0~beta1+dfsg.orig.tar.gz.id new file mode 100644 index 000..29254ed --- /dev/null +++ b/gdal_2.0.0~beta1+dfsg.orig.tar.gz.id @@ -0,0 +1 @@ +721ab2057b398d5b8c83524d2f556cb9f03e2d52 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 01/29: Update branch in gbp.conf & Vcs-Git URL.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit cb0a2d409202246b8db37654bf2029c8d4986083 Author: Bas Couwenberg Date: Sat Jun 13 20:43:36 2015 +0200 Update branch in gbp.conf & Vcs-Git URL. --- debian/control | 2 +- debian/gbp.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/control b/debian/control index 06a3cf4..a3b272f 100644 --- a/debian/control +++ b/debian/control @@ -54,7 +54,7 @@ Build-Depends: debhelper (>= 9), Build-Conflicts: python-setuptools Standards-Version: 3.9.6 Vcs-Browser: http://anonscm.debian.org/cgit/pkg-grass/gdal.git -Vcs-Git: git://anonscm.debian.org/pkg-grass/gdal.git -b experimental +Vcs-Git: git://anonscm.debian.org/pkg-grass/gdal.git -b experimental-2.0 Homepage: http://www.gdal.org/ X-Python3-Version: >= 3.2 diff --git a/debian/gbp.conf b/debian/gbp.conf index 6464eea..3e8fc93 100644 --- a/debian/gbp.conf +++ b/debian/gbp.conf @@ -2,11 +2,11 @@ # The default name for the upstream branch is "upstream". # Change it if the name is different (for instance, "master"). -upstream-branch = upstream +upstream-branch = upstream-2.0 # The default name for the Debian branch is "master". # Change it if the name is different (for instance, "debian/unstable"). -debian-branch = experimental +debian-branch = experimental-2.0 # git-import-orig uses the following names for the upstream tags. # Change the value if you are not using git-import-orig -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 12/29: Update copyright years & holders.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit c250f5e87f839f9e1dc4369405f8691ea95c26ba Author: Bas Couwenberg Date: Sat Jun 13 23:45:37 2015 +0200 Update copyright years & holders. --- debian/changelog | 1 + debian/copyright | 211 +-- 2 files changed, 112 insertions(+), 100 deletions(-) diff --git a/debian/changelog b/debian/changelog index 38705e4..0bd8fb1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ gdal (2.0.0~rc1+dfsg-1) UNRELEASED; urgency=medium * New upstream release candidate. + * Update copyright years & holders. -- Bas Couwenberg Sat, 13 Jun 2015 23:40:47 +0200 diff --git a/debian/copyright b/debian/copyright index 8ac2e5e..b1e747a 100644 --- a/debian/copyright +++ b/debian/copyright @@ -22,93 +22,104 @@ Files-Excluded: data/cubewerx_extra.wkt data/esri_extra.wkt Files: * -Copyright: 2007-2014, Even Rouault - 2009-2014, Martin Landa - 2010, 2013-2014, Kyle Shannon - 2004, 2014, Pirmin Kalberer, Sourcepole AG - 2013-2014, NextGIS - 2013-2014, ZJU Walkinfo Technology Corp., Ltd -2014, Oslandia - 1998-2013, Frank Warmerdam - 2005, 2007-2008, 2010, 2013, Tamas Szekeres - 2009-2013, Jorge Arevalo - 2009-2013, David Zwarg - 2011, 2013, Paul Ramsey -2013, Alan Boudreault -2013, EOX IT Services, GmbH -2012, Andrew Migal -2012, Jean-Claude Repetto -2012, Roger Veciana - 2010-2011, Martin Lambers -2011, Adam Estrada -2011, Alessandro Furieri -2011, Antonio Valentino -2011, Ben Ahmed Daho Ali - 2005-2007, 2010, Daylon Graphics Ltd - 2006-2008, 2010, Ivan Lucena - 2006-2007, 2010, Mateusz Loskot - 2009-2010, PCI Geomatics, 50 West Wilmot Street, Richmond Hill, Ont, Canada - 2009-2010, Ragi Yaser Burhum -2010, Brian Case -2010, Chaitanya kumar CH -2010, Chris Yesson -2010, Constantin Jucovschi -2010, ESRI -2010, Seth Price -2010, SPADAC Inc. -2010, Thomas Hirsch -2002-2005, 2007-2009, Andrey Kiselev -2009, Leonardo de Paula Rosa Piga -2009, Volker Wichmann - 1998-2008, Daniel Morissette - 2006, 2008, Henrik Johansson - 2007-2008, Howard Butler -2008, Chris Toney -2008, Shawn Gervais -2008, Xiuguang Zhou (ESRI) - 2004, 2007, ITC - 2005, 2007, Ari Jolma - 2006-2007, Waypoint Information Technology -2007, Adam Guernsey -2007, Adam Nowacki -2007, Andrea Aime -2007, Chris Schmidt -2007, Christian Mueller -2007, Geoconcept and IGN -2007, Jens Oberender -2007, Kevin Ruland -2007, Philippe P. Vachon -2006, Benjamin Collins -2006, Christopher Condit -2006, Kevin Locke -2006, James Flemer -2006, MapShots Inc (www.mapshots.com) -2006, Oleg Semykin -2006, The MITRE Corporation -2005, Benjamin Simon -2005, Daniel Wallner -2005, Frans van den Bergh -2005, Kevin Ruland -2005, Radim Blazek -2005, Sam Gillingham -2005, Vexcel Corp -2004, Kor de Jong -2004, VIZRT Inc - 1999-2003, Stephane Villeneuve -2003, Applied Coherent Technology Corporation (www.actgate.com) -2003, OPeNDAP, Inc - 1999, 2001-2002, Safe Software Inc. - 2000-2002, Avenza Systems Inc, http://www.avenza.com/ -2002, i3 - information integration and imaging, Fort Collin,CO -2002, Mark Phillips - 2000-2001, Atlantis Scientific Inc -2001, Keyhole, Inc. -
[gdal] 18/29: Update documentation for removal of separate ogr directory.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 75d96a2209b21d605f269294660ee8b4240730d0 Author: Bas Couwenberg Date: Sun Jun 14 13:57:57 2015 +0200 Update documentation for removal of separate ogr directory. --- debian/libgdal-doc.doc-base | 1 - debian/libgdal-doc.install | 1 - debian/libgdal-doc.links| 1 - debian/patches/doc | 21 ++--- 4 files changed, 6 insertions(+), 18 deletions(-) diff --git a/debian/libgdal-doc.doc-base b/debian/libgdal-doc.doc-base index 63db6fe..2947416 100644 --- a/debian/libgdal-doc.doc-base +++ b/debian/libgdal-doc.doc-base @@ -6,4 +6,3 @@ Section: Science/Geoscience Format: HTML Index: /usr/share/doc/libgdal-doc/gdal/index.html Files: /usr/share/doc/libgdal-doc/gdal/*.html - /usr/share/doc/libgdal-doc/ogr/*.html diff --git a/debian/libgdal-doc.install b/debian/libgdal-doc.install index d56c1c8..c25408c 100644 --- a/debian/libgdal-doc.install +++ b/debian/libgdal-doc.install @@ -1,2 +1 @@ usr/share/doc/libgdal-doc/gdal -usr/share/doc/libgdal-doc/ogr diff --git a/debian/libgdal-doc.links b/debian/libgdal-doc.links index 56612f8..ff9df2e 100644 --- a/debian/libgdal-doc.links +++ b/debian/libgdal-doc.links @@ -1,2 +1 @@ usr/share/javascript/jquery/jquery.js usr/share/doc/libgdal-doc/gdal/jquery.js -usr/share/javascript/jquery/jquery.js usr/share/doc/libgdal-doc/ogr/jquery.js diff --git a/debian/patches/doc b/debian/patches/doc index 88b47b3..434425f 100644 --- a/debian/patches/doc +++ b/debian/patches/doc @@ -8,7 +8,7 @@ Last-Update: 2013-10-13 and Mapinfo mid/mif and TAB formats. -OGR is a part of the http://www.gdal.org/";>GDAL library. -+OGR is a part of the GDAL library. ++OGR is a part of the GDAL library. Resources @@ -17,19 +17,10 @@ Last-Update: 2013-10-13 OGR Supported Formats : ESRI Shapefile, ESRI ArcSDE, MapInfo (tab and mid/mif), GML, KML, PostGIS, Oracle Spatial, ... - OGR Utility Programs : ogrinfo, ogr2ogr, ogrtindex -+ OGR Utility Programs : ogrinfo, ogr2ogr, ogrtindex ++ OGR Utility Programs : ogrinfo, ogr2ogr, ogrtindex OGR Class Documentation -@@ -51,7 +51,7 @@ or http://home.gdal.org/project - - Ready to Use Executables - --The best way to get OGR utilities -+The best way to get OGR utilities - in ready-to-use form is to download the latest - http://fwtools.maptools.org/";>FWTools kit - for your platform. While large, these include builds of the OGR utilities --- a/doc/ru/index_ru.dox +++ b/doc/ru/index_ru.dox @@ -26,7 +26,7 @@ GDAL/OGR 1.5.1 (март 2008) можн� @@ -37,7 +28,7 @@ Last-Update: 2013-10-13 Связанная с GDAL библиотека -OGR (исходные тексты которой поставляются вместе с GDAL) -+OGR (исходные тексты которой поставляются вместе с GDAL) ++OGR (исходные тексты которой поставляются вместе с GDAL) предоставляет сходные возможности для работы с векторными данными. На странице обновлений вы сможете найти описание версии 1.3.1, выпущенной в октябре 2005 г. @@ -46,7 +37,7 @@ Last-Update: 2013-10-13 Руководство по написанию драйверов GDAL Руководство по использованию интерфейса трансформации - Руководство по OGRSpatialReference -+ Руководство по OGRSpatialReference ++ Руководство по OGRSpatialReference gdal.h - интерфейс GDAL для языка C. GDALDataset GDALRasterBand @@ -57,7 +48,7 @@ Last-Update: 2013-10-13 lançamento em Abril de 2013 da release 1.10.0 da biblioteca GDAL/OGR. -A bilioteca OGR (cujo código fonte esta incluído na GDAL) possue -+A bilioteca OGR (cujo código fonte esta incluído na GDAL) possue ++A bilioteca OGR (cujo código fonte esta incluído na GDAL) possue funcionalidades semelhantes às da GDAL para datos vetorias (Simple Features). Página Principal: http://www.gdal.org @@ -66,7 +57,7 @@ Last-Update: 2013-10-13 Tutorial de implementação de drivers Tutorial de transformação geométrica - Tutorial de Referência Espacial -+ Tutorial de Referência Espacial ++ Tutorial de Referência Espacial GDAL API para C GDALDataset GDALRasterBand -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 16/29: Use packaged libgeotiff & libtiff instead of internal copies.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 02c95fcacdfa28563e1e40ca80cdcfbb07ecc921 Author: Bas Couwenberg Date: Sun Jun 14 02:41:20 2015 +0200 Use packaged libgeotiff & libtiff instead of internal copies. --- debian/changelog | 1 + debian/control | 4 debian/rules | 13 ++--- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/debian/changelog b/debian/changelog index 180d4d0..8c016ec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ gdal (2.0.0~rc1+dfsg-1) UNRELEASED; urgency=medium * Use uscan in get-orig-source target. * Drop patches applied upstream, refresh remaining patches. * Rename libgdal1h to libgdal20 to match SONAME. + * Use packaged libgeotiff & libtiff instead of internal copies. -- Bas Couwenberg Sat, 13 Jun 2015 23:40:47 +0200 diff --git a/debian/control b/debian/control index 001f690..1e640b5 100644 --- a/debian/control +++ b/debian/control @@ -14,6 +14,8 @@ Build-Depends: debhelper (>= 9), libpng-dev, libjpeg-dev, libgif-dev, + libgeotiff-dev, + libtiff-dev, libwebp-dev, libhdf4-alt-dev, libhdf5-dev (>= 1.8.8), @@ -124,6 +126,8 @@ Depends: libgdal20 (= ${binary:Version}), libpng-dev, libjpeg-dev, libgif-dev, + libgeotiff-dev, + libtiff-dev, libwebp-dev, libhdf4-alt-dev [!arm64 !ppc64 !ppc64el], libhdf5-dev, diff --git a/debian/rules b/debian/rules index e1f7856..fac763d 100755 --- a/debian/rules +++ b/debian/rules @@ -91,8 +91,8 @@ override_dh_auto_configure: --with-hide-internal-symbols=yes \ --with-rename-internal-libtiff-symbols=yes \ --with-rename-internal-libgeotiff-symbols=yes \ - --with-libtiff=internal \ - --with-geotiff=internal \ + --with-libtiff=yes \ + --with-geotiff=yes \ --with-webp \ --with-jasper \ --with-netcdf \ @@ -187,15 +187,6 @@ override_dh_auto_install: install -o root -g root -m 755 $(CURDIR)/swig/python/samples/*.py $(CURDIR)/debian/tmp/usr/share/doc/python-gdal/examples/. # create lintian overrides file - echo "# TIFF/GEOTIFF symbols are renamed to definitively solve problem of" >> $(CURDIR)/debian/libgdal20.lintian-overrides - echo "# symbol collisions for programs that both links geotiff/tiff libraries." >> $(CURDIR)/debian/libgdal20.lintian-overrides - echo "libgdal20: package-name-doesnt-match-sonames libgdal1" >> $(CURDIR)/debian/libgdal20.lintian-overrides - - echo >> $(CURDIR)/debian/libgdal20.lintian-overrides - echo "# Used for BigTIFF support (#501127)" >> $(CURDIR)/debian/libgdal20.lintian-overrides - echo "libgdal20: embedded-library usr/lib/libgdal.so.$$(basename debian/tmp/usr/lib/libgdal.so.*.*.*|cut -d. -f3,4,5): tiff" \ - >> $(CURDIR)/debian/libgdal20.lintian-overrides - echo >> $(CURDIR)/debian/libgdal20.lintian-overrides echo "# False positive on: {136, "Socialist Republic of Viet Nam"}," >> $(CURDIR)/debian/libgdal20.lintian-overrides echo "libgdal20: spelling-error-in-binary usr/lib/libgdal.so.$$(basename debian/tmp/usr/lib/libgdal.so.*.*.*|cut -d. -f3,4,5) Nam Name" \ -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 17/29: Mark typo patches as Applied-Upstream.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit f8bf1d7f0e62184d7af58cbee192b48d60f66058 Author: Bas Couwenberg Date: Sun Jun 14 14:41:58 2015 +0200 Mark typo patches as Applied-Upstream. --- debian/patches/consistant-typo | 1 + debian/patches/explicitely-typo | 1 + debian/patches/inconsistant-typo | 1 + debian/patches/initalize-typo| 1 + debian/patches/paramters-typo| 3 ++- debian/patches/recommanded-typo | 1 + debian/patches/ressource-typo| 1 + debian/patches/supress-typo | 1 + debian/patches/transfered-typo | 1 + debian/patches/usefull-typo | 1 + 10 files changed, 11 insertions(+), 1 deletion(-) diff --git a/debian/patches/consistant-typo b/debian/patches/consistant-typo index 3b7a0cc..49f72d8 100644 --- a/debian/patches/consistant-typo +++ b/debian/patches/consistant-typo @@ -1,6 +1,7 @@ Description: Fix 'consistant' typo, replace with 'consistent'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 --- a/apps/commonutils.cpp +++ b/apps/commonutils.cpp diff --git a/debian/patches/explicitely-typo b/debian/patches/explicitely-typo index 9e9ef1a..46fa4ac 100644 --- a/debian/patches/explicitely-typo +++ b/debian/patches/explicitely-typo @@ -1,6 +1,7 @@ Description: Fix 'explicitely' typo, replace with 'explicitly'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 --- a/NEWS +++ b/NEWS diff --git a/debian/patches/inconsistant-typo b/debian/patches/inconsistant-typo index ec861e3..ed681ae 100644 --- a/debian/patches/inconsistant-typo +++ b/debian/patches/inconsistant-typo @@ -1,6 +1,7 @@ Description: Fix 'inconsistant' typo, replace with 'inconsistent'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 --- a/MIGRATION_GUIDE.TXT +++ b/MIGRATION_GUIDE.TXT diff --git a/debian/patches/initalize-typo b/debian/patches/initalize-typo index 014a53e..4f12470 100644 --- a/debian/patches/initalize-typo +++ b/debian/patches/initalize-typo @@ -1,6 +1,7 @@ Description: Fix 'initialized' typo, replace with 'initialized'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 --- a/gcore/rasterio.cpp +++ b/gcore/rasterio.cpp diff --git a/debian/patches/paramters-typo b/debian/patches/paramters-typo index 0179d26..21fe40b 100644 --- a/debian/patches/paramters-typo +++ b/debian/patches/paramters-typo @@ -1,6 +1,7 @@ Description: Fix 'paramters' typo, replace with 'parameters'. -Author: Bas Couwenger +Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 --- a/ogr/ogrsf_frmts/filegdb/FGdbLayer.cpp +++ b/ogr/ogrsf_frmts/filegdb/FGdbLayer.cpp diff --git a/debian/patches/recommanded-typo b/debian/patches/recommanded-typo index cbb25ec..c8a0c40 100644 --- a/debian/patches/recommanded-typo +++ b/debian/patches/recommanded-typo @@ -1,6 +1,7 @@ Description: Fix 'recommanded' typo, replace with 'recommended'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 --- a/NEWS +++ b/NEWS diff --git a/debian/patches/ressource-typo b/debian/patches/ressource-typo index 3a5fffd..f01080b 100644 --- a/debian/patches/ressource-typo +++ b/debian/patches/ressource-typo @@ -1,6 +1,7 @@ Description: Fix 'ressources' typo, replace with 'resources'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 --- a/frmts/ecw/ecwasyncreader.cpp +++ b/frmts/ecw/ecwasyncreader.cpp diff --git a/debian/patches/supress-typo b/debian/patches/supress-typo index c306944..453c458 100644 --- a/debian/patches/supress-typo +++ b/debian/patches/supress-typo @@ -1,6 +1,7 @@ Description: Fix 'supress' typo, replace with 'suppress'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 --- a/ogr/ogrsf_frmts/arcobjects/aolayer.cpp +++ b/ogr/ogrsf_frmts/arcobjects/aolayer.cpp diff --git a/debian/patches/transfered-typo b/debian/patches/transfered-typo index beffb9b..5719458 100644 --- a/debian/patches/transfered-typo +++ b/debian/patches/transfered-typo @@ -1,6 +1,7 @@ Description: Fix 'transfered' typo, replace with 'transferred'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 --- a/MIGRATION_GUIDE.TXT +++ b/MIGRATION_GUIDE.TXT diff --git a/debian/patches/usefull-typo b/debian/patches/usefull-typo index 306cb1a..cd66
[gdal] 19/29: Mark patches as Forwarded.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit d1db690c9464ccdf703d0b868cae3555d451cf3b Author: Bas Couwenberg Date: Sun Jun 14 17:16:19 2015 +0200 Mark patches as Forwarded. --- debian/patches/doc | 2 ++ debian/patches/doc-brief| 2 ++ debian/patches/ecw-plugin | 2 ++ debian/patches/gdal-grass | 2 ++ debian/patches/gdalpaths| 2 ++ debian/patches/hardening| 2 ++ debian/patches/hdf4 | 2 ++ debian/patches/java-make| 2 ++ debian/patches/java.opt | 2 ++ debian/patches/mrsid-plugin | 2 ++ debian/patches/ogdi | 2 ++ debian/patches/spatialite | 2 ++ debian/patches/symver | 2 ++ 13 files changed, 26 insertions(+) diff --git a/debian/patches/doc b/debian/patches/doc index 434425f..19db429 100644 --- a/debian/patches/doc +++ b/debian/patches/doc @@ -1,6 +1,8 @@ Description: Fix links to OGR documentation. Author: Francesco Paolo Lovergine , Bas Couwenberg Last-Update: 2013-10-13 +Forwarded: https://trac.osgeo.org/gdal/ticket/5996 + --- a/ogr/index.dox +++ b/ogr/index.dox @@ -6,7 +6,7 @@ tools) providing read (and sometimes wri diff --git a/debian/patches/doc-brief b/debian/patches/doc-brief index 788de72..6601a72 100644 --- a/debian/patches/doc-brief +++ b/debian/patches/doc-brief @@ -2,6 +2,8 @@ Description: Add a brief summary to the GDAL and OGR utilities pages. Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=421653 Author: Bas Couwenberg Last-Update: 2013-10-13 +Forwarded: https://trac.osgeo.org/gdal/ticket/5996 + --- a/apps/gdal_utilities.dox +++ b/apps/gdal_utilities.dox @@ -4,6 +4,7 @@ diff --git a/debian/patches/ecw-plugin b/debian/patches/ecw-plugin index aaf4a2a..19b196b 100644 --- a/debian/patches/ecw-plugin +++ b/debian/patches/ecw-plugin @@ -1,6 +1,8 @@ Description: Add support for building the libgdal-ecw plugin. Author: Francesco Paolo Lovergine Last-Update: 2013-10-04 +Forwarded: not-needed + --- a/frmts/ecw/GNUmakefile +++ b/frmts/ecw/GNUmakefile @@ -21,3 +21,12 @@ plugin: $(PLUGIN_SO) diff --git a/debian/patches/gdal-grass b/debian/patches/gdal-grass index 55885a6..0693c70 100644 --- a/debian/patches/gdal-grass +++ b/debian/patches/gdal-grass @@ -2,6 +2,8 @@ Description: Add support for building the libgdal-grass plugin. Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=544978 Author: Francesco Paolo Lovergine Last-Update: 2009-09-08 +Forwarded: not-needed + --- a/frmts/grass/GNUmakefile +++ b/frmts/grass/GNUmakefile @@ -21,11 +21,13 @@ clean: diff --git a/debian/patches/gdalpaths b/debian/patches/gdalpaths index 9e6b5f7..91f3343 100644 --- a/debian/patches/gdalpaths +++ b/debian/patches/gdalpaths @@ -1,6 +1,8 @@ Description: Install GDAL plugins in version specific subdirectory. Author: Francesco Paolo Lovergine Last-Update: 2013-07-01 +Forwarded: not-needed + --- a/gcore/gdaldrivermanager.cpp +++ b/gcore/gdaldrivermanager.cpp @@ -703,7 +703,7 @@ void GDALDriverManager::AutoLoadDrivers( diff --git a/debian/patches/hardening b/debian/patches/hardening index 2f64799..6fc75cd 100644 --- a/debian/patches/hardening +++ b/debian/patches/hardening @@ -1,6 +1,8 @@ Description: Add support for all hardening buildflags. Author: Bas Couwenberg Last-Update: 2013-10-13 +Forwarded: https://trac.osgeo.org/gdal/ticket/5998 + --- a/swig/perl/Makefile.PL +++ b/swig/perl/Makefile.PL @@ -1,4 +1,5 @@ diff --git a/debian/patches/hdf4 b/debian/patches/hdf4 index 990ed66..0a826d8 100644 --- a/debian/patches/hdf4 +++ b/debian/patches/hdf4 @@ -1,6 +1,8 @@ Description: Link the -alt HDF4 libs. Author: Francesco Paolo Lovergine , Alan Boudreault Last-Update: 2012-02-01 +Forwarded: not-needed + --- a/configure +++ b/configure @@ -21397,7 +21397,7 @@ fi diff --git a/debian/patches/java-make b/debian/patches/java-make index 4e587a9..9146f31 100644 --- a/debian/patches/java-make +++ b/debian/patches/java-make @@ -2,6 +2,8 @@ Description: Force removal of object files. Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628022 Author: Francesco Paolo Lovergine Last-Update: 2013-07-01 +Forwarded: https://trac.osgeo.org/gdal/ticket/5997 + --- a/swig/java/GNUmakefile +++ b/swig/java/GNUmakefile @@ -38,11 +38,11 @@ JAVA_OBJECTS = gdalconst_wrap.$(OBJ_EXT) diff --git a/debian/patches/java.opt b/debian/patches/java.opt index 34a33a9..16233c4 100644 --- a/debian/patches/java.opt +++ b/debian/patches/java.opt @@ -2,6 +2,8 @@ Description: Fix path to default JVM. Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628022 Author: Ezequiel Lara Gómez Last-Update: 2013-07-01 +Forwarded: not-needed + --- a/swig/java/java.opt +++ b/swig/java/java.opt @@ -2,6 +2,7 @@ diff --git a/debian/patches/mrsid-plugin b/debian/patches/mrsid-plugin index f9a1947..3acc5ab 100644 --- a/debian/patches/mrsid-plugin +++ b/debian/patches/mrsid-plugin @@ -1,6 +1,8 @@ Descrip
[gdal] 13/29: Use uscan in get-orig-source target.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 0335f9bf552e4ac2dcbb1226b76b05a38e667a3a Author: Bas Couwenberg Date: Sun Jun 14 00:09:38 2015 +0200 Use uscan in get-orig-source target. --- debian/changelog | 1 + debian/rules | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 0bd8fb1..e450508 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ gdal (2.0.0~rc1+dfsg-1) UNRELEASED; urgency=medium * New upstream release candidate. * Update copyright years & holders. + * Use uscan in get-orig-source target. -- Bas Couwenberg Sat, 13 Jun 2015 23:40:47 +0200 diff --git a/debian/rules b/debian/rules index 96d1720..c566e44 100755 --- a/debian/rules +++ b/debian/rules @@ -225,5 +225,5 @@ override_dh_shlibdeps: dh_shlibdeps -L libgdal1h -l debian/libgdal1h/usr/lib get-orig-source: - . debian/get-orig-source + uscan --verbose --force-download -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 27/29: Merge tag 'upstream/2.0.0_rc2+dfsg' into experimental-2.0
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 17bb7c8b5cd7a2fd5897f5e0c58b638f7fc5d254 Merge: e18377b bf69e09 Author: Bas Couwenberg Date: Sun Jun 14 21:03:29 2015 +0200 Merge tag 'upstream/2.0.0_rc2+dfsg' into experimental-2.0 Upstream version 2.0.0~rc2+dfsg MIGRATION_GUIDE.TXT | 6 +- NEWS | 27 ++--- alg/gdalgrid_priv.h | 11 +- alg/gdaltransformer.cpp | 6 +- alg/gdalwarper.h | 4 +- apps/commonutils.cpp | 6 +- apps/gdal_grid.cpp | 10 +- apps/gdal_utilities.dox | 5 +- apps/ogr_utilities.dox | 3 +- apps/ogrlineref.cpp | 2 +- configure| 4 +- configure.in | 12 +-- data/gdalvrt.xsd | 22 +++- frmts/e00grid/e00read.c | 2 +- frmts/ecw/ecwasyncreader.cpp | 4 +- frmts/ecw/ecwdataset.cpp | 6 +- frmts/gtiff/geotiff.cpp | 20 ++-- frmts/hdf4/hdf-eos/GDapi.c | 4 +- frmts/hdf4/hdf-eos/SWapi.c | 4 +- frmts/l1b/l1bdataset.cpp | 6 +- frmts/mbtiles/frmt_mbtiles.html | 2 +- frmts/openjpeg/frmt_jp2openjpeg.html | 8 +- frmts/openjpeg/openjpegdataset.cpp | 10 +- frmts/pdf/frmt_pdf.html | 2 +- frmts/rasdaman/frmt_rasdaman.html| 2 +- frmts/vrt/vrt_tutorial.dox | 14 ++- frmts/vrt/vrtsources.cpp | 34 +-- frmts/zlib/zlib.h| 2 +- gcore/gdal.h | 4 +- gcore/gdal_misc.cpp | 14 ++- gcore/gdaldataset.cpp| 14 +-- gcore/gdaldllmain.cpp| 2 +- gcore/gdaldrivermanager.cpp | 6 +- gcore/gdaljp2metadata.cpp| 6 +- gcore/gdalproxypool.cpp | 75 -- gcore/gdalrasterblock.cpp| 122 +-- man/man1/gdal-config.1 | 4 +- man/man1/gdal2tiles.1| 4 +- man/man1/gdal_calc.1 | 4 +- man/man1/gdal_contour.1 | 4 +- man/man1/gdal_edit.1 | 4 +- man/man1/gdal_fillnodata.1 | 4 +- man/man1/gdal_grid.1 | 4 +- man/man1/gdal_merge.1| 4 +- man/man1/gdal_polygonize.1 | 4 +- man/man1/gdal_proximity.1| 4 +- man/man1/gdal_rasterize.1| 4 +- man/man1/gdal_retile.1 | 4 +- man/man1/gdal_sieve.1| 4 +- man/man1/gdal_translate.1| 4 +- man/man1/gdal_utilities.1| 8 +- man/man1/gdaladdo.1 | 4 +- man/man1/gdalbuildvrt.1 | 4 +- man/man1/gdalcompare.1 | 4 +- man/man1/gdaldem.1 | 4 +- man/man1/gdalinfo.1 | 4 +- man/man1/gdallocationinfo.1 | 4 +- man/man1/gdalmanage.1| 4 +- man/man1/gdalmove.1 | 4 +- man/man1/gdalsrsinfo.1 | 4 +- man/man1/gdaltindex.1| 4 +- man/man1/gdaltransform.1 | 4 +- man/man1/gdalwarp.1 | 4 +- man/man1/nearblack.1 | 4 +- man/man1/ogr2ogr.1 | 6 +- man/man1/ogr_utilities.1 | 8 +- man/man1/ogrinfo.1 | 4 +- man/man1/ogrlineref.1| 4 +- man/man1/ogrtindex.1 | 4 +- man/man1/pct2rgb.1 | 4 +- man/man1/rgb2pct.1 | 4 +- nmake.opt| 4 +- ogr/ogrcurvecollection.cpp | 4 +- ogr/ogrgeometrycollection.cpp| 6 +- ogr/ogrgeometryfactory.cpp | 12 +-- ogr/ogrlinestring.cpp| 6 +- ogr/ogrsf_frmts/arcobjects/aolayer.cpp | 6 +- ogr/ogrsf_frmts/arcobject
[gdal] 10/29: Merge tag 'upstream/2.0.0_rc1+dfsg' into experimental-2.0
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 2c07a87cbfd60a628fa168e8e3ca07a22bb1228a Merge: 0e21944 caa4c70 Author: Bas Couwenberg Date: Sat Jun 13 21:25:54 2015 +0200 Merge tag 'upstream/2.0.0_rc1+dfsg' into experimental-2.0 Upstream version 2.0.0~rc1+dfsg NEWS | 26 +++-- VERSION | 2 +- alg/gdaltransformer.cpp | 10 ++-- apps/gdal_translate.cpp | 12 - apps/gdaldem.cpp | 4 +- apps/gdalinfo.c | 17 -- apps/ogr2ogr.cpp | 68 apps/ogr_utilities.dox | 6 ++- apps/test_ogrsf.cpp | 6 +-- frmts/gtiff/geotiff.cpp | 9 ++-- frmts/jpeg/jpgdataset.cpp| 8 +-- frmts/kea/keaband.h | 5 +- frmts/kea/keacopy.h | 6 ++- frmts/kea/keadataset.h | 5 +- frmts/kea/keamaskband.h | 5 +- frmts/kea/keaoverview.h | 6 ++- frmts/kea/kearat.h | 5 +- frmts/kmlsuperoverlay/kmlsuperoverlaydataset.cpp | 45 +--- frmts/nitf/rpftocfile.cpp| 20 +-- frmts/rasterlite/rasterlitedataset.cpp | 9 ++-- frmts/raw/btdataset.cpp | 4 +- frmts/vrt/vrtdataset.cpp | 29 +- frmts/vrt/vrtdataset.h | 9 +++- frmts/vrt/vrtdriver.cpp | 5 +- frmts/vrt/vrtsources.cpp | 29 -- gcore/gdal_priv.h| 12 - gcore/gdal_version.h | 4 +- gcore/gdaldataset.cpp| 39 -- gcore/gdalrasterband.cpp | 54 --- gcore/gdalrasterblock.cpp| 21 +++- man/man1/gdal-config.1 | 4 +- man/man1/gdal2tiles.1| 4 +- man/man1/gdal_calc.1 | 4 +- man/man1/gdal_contour.1 | 4 +- man/man1/gdal_edit.1 | 4 +- man/man1/gdal_fillnodata.1 | 4 +- man/man1/gdal_grid.1 | 4 +- man/man1/gdal_merge.1| 4 +- man/man1/gdal_polygonize.1 | 4 +- man/man1/gdal_proximity.1| 4 +- man/man1/gdal_rasterize.1| 4 +- man/man1/gdal_retile.1 | 4 +- man/man1/gdal_sieve.1| 4 +- man/man1/gdal_translate.1| 4 +- man/man1/gdal_utilities.1| 4 +- man/man1/gdaladdo.1 | 4 +- man/man1/gdalbuildvrt.1 | 4 +- man/man1/gdalcompare.1 | 4 +- man/man1/gdaldem.1 | 4 +- man/man1/gdalinfo.1 | 4 +- man/man1/gdallocationinfo.1 | 4 +- man/man1/gdalmanage.1| 4 +- man/man1/gdalmove.1 | 4 +- man/man1/gdalsrsinfo.1 | 4 +- man/man1/gdaltindex.1| 4 +- man/man1/gdaltransform.1 | 4 +- man/man1/gdalwarp.1 | 4 +- man/man1/nearblack.1 | 4 +- man/man1/ogr2ogr.1 | 10 ++-- man/man1/ogr_utilities.1 | 4 +- man/man1/ogrinfo.1 | 4 +- man/man1/ogrlineref.1| 4 +- man/man1/ogrtindex.1 | 4 +- man/man1/pct2rgb.1 | 4 +- man/man1/rgb2pct.1 | 4 +- ogr/ogrsf_frmts/gml/ogrgmldatasource.cpp | 24 - ogr/ogrsf_frmts/openair/ogropenairdriver.cpp | 41 -- ogr/ogrsf_frmts/sqlite/ogrsqlitedriver.cpp | 12 +++-- ogr/ogrsf_frmts/sua/ogrsuadriver.cpp | 41 -- ogr/ogrsf_frmts/wfs/drv_wfs.html | 5 +- ogr/ogrsf_frmts/wfs/ogr_wfs.h| 5 +- ogr/ogrsf_frmts/wfs/ogrwfsdatasource.cpp | 9 +++- ogr/ogrsf_frmts/wfs/ogrwfsdriver.cpp | 3 +- ogr/ogrsf_frmts/wfs/ogrwfslayer.cpp | 29 +++--- port/cpl_multiproc.cpp | 10 +++- port/cpl_strtod.cpp | 8 +-- swig/python/samples/build_jp2_from_xml.
[gdal] 22/29: Remove trailing whitespace to fix syntax error in symbols files.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit c39366eae61c009b82a0f8263b7294696d00f38a Author: Bas Couwenberg Date: Sun Jun 14 19:37:49 2015 +0200 Remove trailing whitespace to fix syntax error in symbols files. --- debian/libgdal20.symbols.amd64 | 2 +- debian/libgdal20.symbols.armel | 2 +- debian/libgdal20.symbols.armhf | 2 +- debian/libgdal20.symbols.i386| 2 +- debian/libgdal20.symbols.ia64| 2 +- debian/libgdal20.symbols.mips| 2 +- debian/libgdal20.symbols.mipsel | 2 +- debian/libgdal20.symbols.powerpc | 2 +- debian/libgdal20.symbols.s390x | 2 +- debian/libgdal20.symbols.sparc | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/debian/libgdal20.symbols.amd64 b/debian/libgdal20.symbols.amd64 index 9627f62..fc6a59f 100644 --- a/debian/libgdal20.symbols.amd64 +++ b/debian/libgdal20.symbols.amd64 @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 diff --git a/debian/libgdal20.symbols.armel b/debian/libgdal20.symbols.armel index 8ca83c2..935f57f 100644 --- a/debian/libgdal20.symbols.armel +++ b/debian/libgdal20.symbols.armel @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 diff --git a/debian/libgdal20.symbols.armhf b/debian/libgdal20.symbols.armhf index 8ca83c2..935f57f 100644 --- a/debian/libgdal20.symbols.armhf +++ b/debian/libgdal20.symbols.armhf @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 diff --git a/debian/libgdal20.symbols.i386 b/debian/libgdal20.symbols.i386 index b667718..a0dee3f 100644 --- a/debian/libgdal20.symbols.i386 +++ b/debian/libgdal20.symbols.i386 @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal20.symbols.ia64 b/debian/libgdal20.symbols.ia64 index 70f561d..49164d3 100644 --- a/debian/libgdal20.symbols.ia64 +++ b/debian/libgdal20.symbols.ia64 @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal20.symbols.mips b/debian/libgdal20.symbols.mips index d2dcaf0..e53b7d9 100644 --- a/debian/libgdal20.symbols.mips +++ b/debian/libgdal20.symbols.mips @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal20.symbols.mipsel b/debian/libgdal20.symbols.mipsel index 8b204e4..0c9ba96 100644 --- a/debian/libgdal20.symbols.mipsel +++ b/debian/libgdal20.symbols.mipsel @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal20.symbols.powerpc b/debian/libgdal20.symbols.powerpc index 1825829..e73845c 100644 --- a/debian/libgdal20.symbols.powerpc +++ b/debian/libgdal20.symbols.powerpc @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 diff --git a/debian/libgdal20.symbols.s390x b/debian/libgdal20.symbols.s390x index b12bef3..76f26dd 100644 --- a/debian/libgdal20.symbols.s390x +++ b/debian/libgdal20.symbols.s390x @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal20.symbols.sparc b/debian/libgdal20.symbols.sparc index 1b2cec7..d0d88c6 100644 --- a/debian/libgdal20.symbols.sparc +++ b/debian/libgdal20.symbols.sparc @@ -1,4 +1,4 @@ -libgdal.so.20 libgdal20 #MINVER# +libgdal.so.20 libgdal20 #MINVER# | libgdal20 #MINVER#, libgdal.so.20-2.0.0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.
[gdal] 06/29: Merge tag 'upstream/2.0.0_beta1+dfsg' into experimental-2.0
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit d841a3a4095454da1700d787a22df3cf485e0d17 Merge: f50897a 365d9db Author: Bas Couwenberg Date: Sat Jun 13 21:23:06 2015 +0200 Merge tag 'upstream/2.0.0_beta1+dfsg' into experimental-2.0 Upstream version 2.0.0~beta1+dfsg .gitignore | 1 + COMMITERS |11 +- Doxyfile | 5 + GDALmake.opt.in|30 +- GNUmakefile|14 +- HOWTO-RELEASE | 142 +- MIGRATION_GUIDE.TXT| 217 +- NEWS | 1012 +- PROVENANCE.TXT | 4 +- VERSION| 2 +- Vagrantfile|24 +- alg/GNUmakefile|13 +- alg/gdal_alg.h |16 +- alg/gdal_alg_priv.h|42 +- alg/gdal_crs.c |67 +- alg/gdal_rpc.cpp |82 +- alg/gdal_simplesurf.cpp| 6 +- alg/gdal_tps.cpp |52 +- alg/gdalcutline.cpp|50 +- alg/gdaldither.cpp | 415 +- alg/gdalgeoloc.cpp |68 +- alg/gdalgrid.cpp | 231 +- alg/gdalgrid_priv.h|17 +- alg/gdalgridavx.cpp|20 +- alg/gdalgridsse.cpp| 241 + alg/gdalmediancut.cpp | 791 +- alg/gdalproximity.cpp |51 +- alg/gdalrasterize.cpp |14 +- alg/gdalrasterpolygonenumerator.cpp|16 +- alg/gdalsievefilter.cpp| 8 +- alg/gdaltransformer.cpp| 703 +- alg/gdaltransformgeolocs.cpp |22 +- alg/gdalwarper.cpp | 178 +- alg/gdalwarper.h |70 +- alg/gdalwarpkernel.cpp | 3315 ++-- alg/gdalwarpkernel_opencl.c| 4 +- alg/gdalwarpoperation.cpp | 346 +- alg/llrasterize.cpp|13 +- alg/makefile.vc| 2 +- alg/polygonize.cpp |28 +- alg/rasterfill.cpp |92 +- alg/thinplatespline.cpp|28 +- apps/GNUmakefile |27 +- apps/commonutils.cpp |48 +- apps/gdal_contour.cpp |12 +- apps/gdal_grid.cpp |97 +- apps/gdal_rasterize.cpp|55 +- apps/gdal_translate.cpp| 336 +- apps/gdal_utilities.dox| 126 +- apps/gdaladdo.cpp |30 +- apps/gdalasyncread.cpp |12 +- apps/gdalbuildvrt.cpp |96 +- apps/gdaldem.cpp |64 +- apps/gdalenhance.cpp |30 +- apps/gdalflattenmask.c | 2 +- apps/gdalinfo.c| 345 +- apps/gdallocationinfo.cpp |21 +- apps/gdalserver.c | 4 +- apps/gdalsrsinfo.cpp | 112 +- apps/gdaltindex.c | 6 +- apps/gdaltransform.cpp |29 +- apps/gdalwarp.cpp | 437 +- apps/gdalwarpsimple.c |18 +- apps/multireadtest.cpp | 6 +- apps/nearblack.cpp |12 +- apps/ogr2ogr.cpp | 1321 +- apps/ogr_utilities.dox |84 +- apps/ogrdissolve.cpp |70 +- apps/ogrinfo.cpp | 281 +- apps/ogrlineref.cpp| 246 +- apps/ogrtindex.cpp |44 +- apps/test_ogrsf.cpp| 1435 +- apps/testepsg.cpp |14 +- apps/testreprojm
[gdal] 09/29: Imported Upstream version 2.0.0~rc1+dfsg
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit caa4c70c5870aef17c457a7dcf7ccaa60a4fb8ff Author: Bas Couwenberg Date: Sat Jun 13 21:25:04 2015 +0200 Imported Upstream version 2.0.0~rc1+dfsg --- NEWS | 26 +++-- VERSION | 2 +- alg/gdaltransformer.cpp | 10 ++-- apps/gdal_translate.cpp | 12 - apps/gdaldem.cpp | 4 +- apps/gdalinfo.c | 17 -- apps/ogr2ogr.cpp | 68 apps/ogr_utilities.dox | 6 ++- apps/test_ogrsf.cpp | 6 +-- frmts/gtiff/geotiff.cpp | 9 ++-- frmts/jpeg/jpgdataset.cpp| 8 +-- frmts/kea/keaband.h | 5 +- frmts/kea/keacopy.h | 6 ++- frmts/kea/keadataset.h | 5 +- frmts/kea/keamaskband.h | 5 +- frmts/kea/keaoverview.h | 6 ++- frmts/kea/kearat.h | 5 +- frmts/kmlsuperoverlay/kmlsuperoverlaydataset.cpp | 45 +--- frmts/nitf/rpftocfile.cpp| 20 +-- frmts/rasterlite/rasterlitedataset.cpp | 9 ++-- frmts/raw/btdataset.cpp | 4 +- frmts/vrt/vrtdataset.cpp | 29 +- frmts/vrt/vrtdataset.h | 9 +++- frmts/vrt/vrtdriver.cpp | 5 +- frmts/vrt/vrtsources.cpp | 29 -- gcore/gdal_priv.h| 12 - gcore/gdal_version.h | 4 +- gcore/gdaldataset.cpp| 39 -- gcore/gdalrasterband.cpp | 54 --- gcore/gdalrasterblock.cpp| 21 +++- man/man1/gdal-config.1 | 4 +- man/man1/gdal2tiles.1| 4 +- man/man1/gdal_calc.1 | 4 +- man/man1/gdal_contour.1 | 4 +- man/man1/gdal_edit.1 | 4 +- man/man1/gdal_fillnodata.1 | 4 +- man/man1/gdal_grid.1 | 4 +- man/man1/gdal_merge.1| 4 +- man/man1/gdal_polygonize.1 | 4 +- man/man1/gdal_proximity.1| 4 +- man/man1/gdal_rasterize.1| 4 +- man/man1/gdal_retile.1 | 4 +- man/man1/gdal_sieve.1| 4 +- man/man1/gdal_translate.1| 4 +- man/man1/gdal_utilities.1| 4 +- man/man1/gdaladdo.1 | 4 +- man/man1/gdalbuildvrt.1 | 4 +- man/man1/gdalcompare.1 | 4 +- man/man1/gdaldem.1 | 4 +- man/man1/gdalinfo.1 | 4 +- man/man1/gdallocationinfo.1 | 4 +- man/man1/gdalmanage.1| 4 +- man/man1/gdalmove.1 | 4 +- man/man1/gdalsrsinfo.1 | 4 +- man/man1/gdaltindex.1| 4 +- man/man1/gdaltransform.1 | 4 +- man/man1/gdalwarp.1 | 4 +- man/man1/nearblack.1 | 4 +- man/man1/ogr2ogr.1 | 10 ++-- man/man1/ogr_utilities.1 | 4 +- man/man1/ogrinfo.1 | 4 +- man/man1/ogrlineref.1| 4 +- man/man1/ogrtindex.1 | 4 +- man/man1/pct2rgb.1 | 4 +- man/man1/rgb2pct.1 | 4 +- ogr/ogrsf_frmts/gml/ogrgmldatasource.cpp | 24 - ogr/ogrsf_frmts/openair/ogropenairdriver.cpp | 41 -- ogr/ogrsf_frmts/sqlite/ogrsqlitedriver.cpp | 12 +++-- ogr/ogrsf_frmts/sua/ogrsuadriver.cpp | 41 -- ogr/ogrsf_frmts/wfs/drv_wfs.html | 5 +- ogr/ogrsf_frmts/wfs/ogr_wfs.h| 5 +- ogr/ogrsf_frmts/wfs/ogrwfsdatasource.cpp | 9 +++- ogr/ogrsf_frmts/wfs/ogrwfsdriver.cpp | 3 +- ogr/ogrsf_frmts/wfs/ogrwfslayer.cpp | 29 +++--- port/cpl_multiproc.cpp | 10 +++- port/cpl_strtod.cpp | 8 +-- swig/python/samples/build_jp2_from_xml.py| 5 +- swig/python/samples/ogr_layer_algebra.py | 10 +++-
[gdal] 23/29: Mark typo patches as Applied-Upstream.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 22cb320ef1aac7fc6892720b1af07ccd526499d1 Author: Bas Couwenberg Date: Sun Jun 14 19:53:35 2015 +0200 Mark typo patches as Applied-Upstream. --- debian/patches/allows-to-typo | 1 + debian/patches/paramater-typo | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/patches/allows-to-typo b/debian/patches/allows-to-typo index 24325de..8b0057c 100644 --- a/debian/patches/allows-to-typo +++ b/debian/patches/allows-to-typo @@ -1,6 +1,7 @@ Description: Fix 'allows to' typo, replace with 'allows ing'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29336/ --- a/NEWS +++ b/NEWS diff --git a/debian/patches/paramater-typo b/debian/patches/paramater-typo index 878d7f6..3221267 100644 --- a/debian/patches/paramater-typo +++ b/debian/patches/paramater-typo @@ -1,6 +1,7 @@ Description: Fix 'paramater' typo, replace with 'parameter'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29336/ --- a/frmts/hdf4/hdf-eos/GDapi.c +++ b/frmts/hdf4/hdf-eos/GDapi.c -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 08/29: Merge tag 'upstream/2.0.0_beta2+dfsg' into experimental-2.0
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 0e21944f1851b024bf25cca786dc60fddc8a9ecb Merge: d841a3a 496aca2 Author: Bas Couwenberg Date: Sat Jun 13 21:24:39 2015 +0200 Merge tag 'upstream/2.0.0_beta2+dfsg' into experimental-2.0 Upstream version 2.0.0~beta2+dfsg GNUmakefile| 1 + NEWS | 49 +- VERSION| 2 +- alg/gdal_crs.c | 13 +- alg/gdal_rpc.cpp | 277 +- alg/gdal_tps.cpp | 7 +- alg/gdalgeoloc.cpp | 7 +- alg/gdaltransformer.cpp| 37 +- alg/gdalwarper.cpp | 7 +- apps/GNUmakefile | 2 +- apps/gdal_utilities.dox| 7 +- apps/gdalinfo.c| 994 + apps/gdalwarp.cpp | 282 -- apps/makefile.vc | 2 +- apps/ogr2ogr.cpp | 45 +- apps/ogr_utilities.dox | 7 +- configure | 42 +- configure.in | 3 +- frmts/blx/blx.c| 2 + frmts/gif/gifabstractdataset.cpp | 36 +- frmts/gif/gifabstractdataset.h | 6 +- frmts/gtiff/geotiff.cpp| 26 +- frmts/hdf4/hdf4dataset.cpp | 10 +- frmts/hdf4/hdf4imagedataset.cpp| 47 +- frmts/hfa/hfadataset.cpp | 15 +- frmts/jpeg2000/jpeg2000dataset.cpp | 6 +- frmts/netcdf/netcdfdataset.cpp | 11 +- frmts/pcraster/pcrasterdataset.cpp | 10 +- frmts/pcraster/pcrasterdataset.h | 6 +- frmts/pcraster/pcrasterrasterband.cpp | 68 +- frmts/pcraster/pcrasterrasterband.h| 10 +- frmts/til/tildataset.cpp | 10 +- frmts/vrt/vrtdataset.cpp | 24 +- frmts/vrt/vrtsourcedrasterband.cpp | 8 +- frmts/vrt/vrtsources.cpp | 87 +- frmts/wms/frmt_wms.html| 17 +- gcore/GNUmakefile | 2 +- gcore/gdal.h | 5 +- gcore/gdal_mdreader.cpp| 88 +- gcore/gdal_mdreader.h | 29 +- gcore/gdal_rat.cpp | 117 ++- gcore/gdal_rat.h | 3 +- gcore/gdal_version.h | 4 +- gcore/gdaldataset.cpp | 24 +- gcore/gdaldriver.cpp | 9 +- gcore/gdaljp2metadata.cpp | 105 ++- gcore/gdaljp2metadata.h| 5 +- gcore/makefile.vc | 2 +- gcore/mdreader/GNUmakefile | 4 +- gcore/mdreader/makefile.vc | 8 +- gcore/mdreader/reader_alos.cpp | 405 + gcore/mdreader/{reader_geo_eye.h => reader_alos.h} | 44 +- gcore/mdreader/reader_digital_globe.h | 20 +- gcore/mdreader/reader_eros.cpp | 286 ++ gcore/mdreader/{reader_geo_eye.h => reader_eros.h} | 35 +- gcore/mdreader/reader_geo_eye.cpp | 9 +- gcore/mdreader/reader_geo_eye.h| 14 +- gcore/mdreader/reader_kompsat.cpp | 277 ++ .../{reader_pleiades.h => reader_kompsat.h}| 35 +- gcore/mdreader/reader_landsat.cpp | 12 +- gcore/mdreader/reader_landsat.h| 16 +- gcore/mdreader/reader_orb_view.h | 14 +- gcore/mdreader/reader_pleiades.cpp | 9 +- gcore/mdreader/reader_pleiades.h | 12 +- gcore/mdreader/reader_rapid_eye.cpp| 155 .../{reader_pleiades.h => reader_rapid_eye.h} | 35 +- gcore/mdreader/reader_rdk1.h | 10 +- gcore/mdreader/reader_spot.cpp | 315 +++ .../mdreader/{reader_pleiades.h => reader_spot.h} | 40 +- gcore/rasterio.cpp | 8 +- man/man1/gdal-config.1 | 4 +- man/man1/gdal2tiles.1 | 4 +- man/man1/gdal_calc.1 | 4 +- man/man1/gdal_contour.1| 4 +- man/man1/gdal_edit.1
[gdal] 15/29: Rename libgdal1h to libgdal20 to match SONAME.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 353e96f1557f9076a47617888e5563ddea6559dd Author: Bas Couwenberg Date: Sun Jun 14 02:35:46 2015 +0200 Rename libgdal1h to libgdal20 to match SONAME. --- debian/changelog | 1 + debian/control | 9 debian/gdal-symbols.pl | 2 +- debian/libgdal1h.lintian-overrides | 2 -- debian/{libgdal1h.install => libgdal20.install}| 0 ...dal1h.symbols.alpha => libgdal20.symbols.alpha} | 6 +++--- ...dal1h.symbols.amd64 => libgdal20.symbols.amd64} | 6 +++--- ...dal1h.symbols.arm64 => libgdal20.symbols.arm64} | 6 +++--- ...dal1h.symbols.armhf => libgdal20.symbols.armel} | 6 +++--- ...dal1h.symbols.armel => libgdal20.symbols.armhf} | 6 +++--- ...l1h.symbols.common => libgdal20.symbols.common} | 0 ...bgdal1h.symbols.hppa => libgdal20.symbols.hppa} | 6 +++--- ...mbols.hurd-i386 => libgdal20.symbols.hurd-i386} | 6 +++--- ...bgdal1h.symbols.i386 => libgdal20.symbols.i386} | 6 +++--- ...bgdal1h.symbols.ia64 => libgdal20.symbols.ia64} | 6 +++--- ...ebsd-amd64 => libgdal20.symbols.kfreebsd-amd64} | 6 +++--- ...reebsd-i386 => libgdal20.symbols.kfreebsd-i386} | 6 +++--- ...bgdal1h.symbols.mips => libgdal20.symbols.mips} | 6 +++--- ...l1h.symbols.mipsel => libgdal20.symbols.mipsel} | 6 +++--- ...h.symbols.powerpc => libgdal20.symbols.powerpc} | 6 +++--- ...dal1h.symbols.ppc64 => libgdal20.symbols.ppc64} | 6 +++--- ...h.symbols.ppc64el => libgdal20.symbols.ppc64el} | 6 +++--- ...dal1h.symbols.s390x => libgdal20.symbols.s390x} | 6 +++--- ...dal1h.symbols.sparc => libgdal20.symbols.sparc} | 6 +++--- ...libgdal1h.symbols.x32 => libgdal20.symbols.x32} | 6 +++--- debian/rules | 24 +++--- 26 files changed, 76 insertions(+), 76 deletions(-) diff --git a/debian/changelog b/debian/changelog index f20a7e1..180d4d0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ gdal (2.0.0~rc1+dfsg-1) UNRELEASED; urgency=medium * Update copyright years & holders. * Use uscan in get-orig-source target. * Drop patches applied upstream, refresh remaining patches. + * Rename libgdal1h to libgdal20 to match SONAME. -- Bas Couwenberg Sat, 13 Jun 2015 23:40:47 +0200 diff --git a/debian/control b/debian/control index 9d2fd93..001f690 100644 --- a/debian/control +++ b/debian/control @@ -58,7 +58,7 @@ Vcs-Git: git://anonscm.debian.org/pkg-grass/gdal.git -b experimental-2.0 Homepage: http://www.gdal.org/ X-Python3-Version: >= 3.2 -Package: libgdal1h +Package: libgdal20 Architecture: any Section: libs Depends: ${shlibs:Depends}, @@ -68,7 +68,7 @@ Breaks: libgdal1 (<= 1.10.0-0~), libgdal1-1.6.0 (<= 1.10.0-0~) Replaces: libgdal1 (<= 1.10.0-0~), libgdal1-1.6.0 (<= 1.10.0-0~) -Provides: libgdal.so.1-2.0.0 +Provides: libgdal.so.20-2.0.0 Description: Geospatial Data Abstraction Library GDAL is a translator library for raster geospatial data formats. As a library, it presents a single abstract data model to the @@ -117,7 +117,7 @@ Description: Geospatial Data Abstraction Library - Transitional package Package: libgdal-dev Architecture: any Section: libdevel -Depends: libgdal1h (= ${binary:Version}), +Depends: libgdal20 (= ${binary:Version}), libc6-dev, libnetcdf-dev, libjasper-dev, @@ -166,7 +166,7 @@ Architecture: all Section: doc Depends: libjs-jquery, ${misc:Depends} -Suggests: libgdal1h +Suggests: libgdal20 Description: Documentation for the Geospatial Data Abstraction Library GDAL is a translator library for raster geospatial data formats. As a library, it presents a single abstract data model to the @@ -325,3 +325,4 @@ Description: Java bindings to the Geospatial Data Abstraction Library . This package contains Java bindings for GDAL/OGR library. Homepage: http://map.hut.fi/doc/Geo-GDAL/html/ + diff --git a/debian/gdal-symbols.pl b/debian/gdal-symbols.pl index 0a32cbd..a4ae506 100755 --- a/debian/gdal-symbols.pl +++ b/debian/gdal-symbols.pl @@ -30,7 +30,7 @@ use Term::Prompt; $|=1; -my $package = 'libgdal1h'; +my $package = 'libgdal20'; my $pkgdir = 'binary-'.$package.'/'; our $ua = LWP::UserAgent->new(agent => basename($0)); diff --git a/debian/libgdal1h.lintian-overrides b/debian/libgdal1h.lintian-overrides deleted file mode 100644 index 116bbb9..000 --- a/debian/libgdal1h.lintian-overrides +++ /dev/null @@ -1,2 +0,0 @@ -# Package name should be libgdal1, but because of hidden symbols is libgdal1h -libgdal1h: syntax-error-in-symbols-file 1 diff --git a/debian/libgdal1h.install b/debian/libgdal20.install similarity index 100% rename from debian/libgdal1h.install rename to debian/libgdal20.install diff --git a/debian/libgdal1h.symbols.alpha b/debian/libgd
[gdal] 25/29: Mark java-make patch as Applied-Upstream.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit e18377b62b935fdfbbc0ad61f14b4c7720751565 Author: Bas Couwenberg Date: Sun Jun 14 20:45:46 2015 +0200 Mark java-make patch as Applied-Upstream. --- debian/patches/java-make | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/patches/java-make b/debian/patches/java-make index 9146f31..77ecd7e 100644 --- a/debian/patches/java-make +++ b/debian/patches/java-make @@ -3,6 +3,7 @@ Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628022 Author: Francesco Paolo Lovergine Last-Update: 2013-07-01 Forwarded: https://trac.osgeo.org/gdal/ticket/5997 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29340 --- a/swig/java/GNUmakefile +++ b/swig/java/GNUmakefile -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 11/29: New upstream release candidate.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 4dbdfe472de0ffbbab47d9754e06bd6b9ae7d3ba Author: Bas Couwenberg Date: Sun Jun 14 02:03:21 2015 +0200 New upstream release candidate. --- debian/changelog| 6 ++ debian/control | 2 +- debian/libgdal1h.install| 2 +- debian/libgdal1h.symbols.alpha | 2 +- debian/libgdal1h.symbols.amd64 | 2 +- debian/libgdal1h.symbols.arm64 | 2 +- debian/libgdal1h.symbols.armel | 2 +- debian/libgdal1h.symbols.armhf | 2 +- debian/libgdal1h.symbols.hppa | 2 +- debian/libgdal1h.symbols.hurd-i386 | 2 +- debian/libgdal1h.symbols.i386 | 2 +- debian/libgdal1h.symbols.ia64 | 2 +- debian/libgdal1h.symbols.kfreebsd-amd64 | 2 +- debian/libgdal1h.symbols.kfreebsd-i386 | 2 +- debian/libgdal1h.symbols.mips | 2 +- debian/libgdal1h.symbols.mipsel | 2 +- debian/libgdal1h.symbols.powerpc| 2 +- debian/libgdal1h.symbols.ppc64 | 2 +- debian/libgdal1h.symbols.ppc64el| 2 +- debian/libgdal1h.symbols.s390x | 2 +- debian/libgdal1h.symbols.sparc | 2 +- debian/libgdal1h.symbols.x32| 2 +- 22 files changed, 27 insertions(+), 21 deletions(-) diff --git a/debian/changelog b/debian/changelog index 4557db2..38705e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +gdal (2.0.0~rc1+dfsg-1) UNRELEASED; urgency=medium + + * New upstream release candidate. + + -- Bas Couwenberg Sat, 13 Jun 2015 23:40:47 +0200 + gdal (1.11.2+dfsg-1~exp3) experimental; urgency=medium * Use packaged jquery.js instead of Doxygen copy. diff --git a/debian/control b/debian/control index a3b272f..9d2fd93 100644 --- a/debian/control +++ b/debian/control @@ -68,7 +68,7 @@ Breaks: libgdal1 (<= 1.10.0-0~), libgdal1-1.6.0 (<= 1.10.0-0~) Replaces: libgdal1 (<= 1.10.0-0~), libgdal1-1.6.0 (<= 1.10.0-0~) -Provides: libgdal.so.1-1.11.2 +Provides: libgdal.so.1-2.0.0 Description: Geospatial Data Abstraction Library GDAL is a translator library for raster geospatial data formats. As a library, it presents a single abstract data model to the diff --git a/debian/libgdal1h.install b/debian/libgdal1h.install index 2067bca..eefadc0 100644 --- a/debian/libgdal1h.install +++ b/debian/libgdal1h.install @@ -1,2 +1,2 @@ usr/lib/libgdal.so.* -usr/share/gdal/1.11 +usr/share/gdal/2.0 diff --git a/debian/libgdal1h.symbols.alpha b/debian/libgdal1h.symbols.alpha index 63b37f2..2fcdebc 100644 --- a/debian/libgdal1h.symbols.alpha +++ b/debian/libgdal1h.symbols.alpha @@ -1,5 +1,5 @@ libgdal.so.1 libgdal1h #MINVER# -| libgdal1h #MINVER#, libgdal.so.1-1.11.2 +| libgdal1h #MINVER#, libgdal.so.1-2.0.0 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.10.0 1 (c++)"CPLURLAddKVP(char const*, char const*, char const*)@GDAL_1.8" 1.10.0 1 diff --git a/debian/libgdal1h.symbols.amd64 b/debian/libgdal1h.symbols.amd64 index dee71d2..8821096 100644 --- a/debian/libgdal1h.symbols.amd64 +++ b/debian/libgdal1h.symbols.amd64 @@ -1,5 +1,5 @@ libgdal.so.1 libgdal1h #MINVER# -| libgdal1h #MINVER#, libgdal.so.1-1.11.2 +| libgdal1h #MINVER#, libgdal.so.1-2.0.0 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 (c++)"CPLURLAddKVP(char const*, char const*, char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal1h.symbols.arm64 b/debian/libgdal1h.symbols.arm64 index 322615f..bc48782 100644 --- a/debian/libgdal1h.symbols.arm64 +++ b/debian/libgdal1h.symbols.arm64 @@ -1,5 +1,5 @@ libgdal.so.1 libgdal1h #MINVER# -| libgdal1h #MINVER#, libgdal.so.1-1.11.2 +| libgdal1h #MINVER#, libgdal.so.1-2.0.0 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.10.1 1 (c++)"CPLURLAddKVP(char const*, char const*, char const*)@GDAL_1.8" 1.10.1 1 diff --git a/debian/libgdal1h.symbols.armel b/debian/libgdal1h.symbols.armel index 89fb39b..29e271d 100644 --- a/debian/libgdal1h.symbols.armel +++ b/debian/libgdal1h.symbols.armel @@ -1,5 +1,5 @@ libgdal.so.1 libgdal1h #MINVER# -| libgdal1h #MINVER#, libgdal.so.1-1.11.2 +| libgdal1h #MINVER#, libgdal.so.1-2.0.0 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 (c++)"CPLURLAddKVP(char const*, char const*, char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal1h.symbols.armhf b/debian/libgdal1h.symbols.armhf index 89fb39b..29e271d 100644 --- a/debian/libgdal1h.symbols.armhf +++ b/debian/libgdal1h.symbols.armhf @@ -1,5 +1,5 @@ libgdal.so.1 libgdal1h #MINVER# -| libgdal1h #MINVER#, libgdal.so.1-1.11.2 +| libgdal1h #MINVER#, libgdal.so.1-2.0.0 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 (c++)"CPLURLAddKVP(char const*, char const*, char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debi
[gdal] branch upstream-2.0 created (now bf69e09)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch upstream-2.0 in repository gdal. at bf69e09 Imported Upstream version 2.0.0~rc2+dfsg This branch includes the following new commits: new 365d9db Imported Upstream version 2.0.0~beta1+dfsg new 496aca2 Imported Upstream version 2.0.0~beta2+dfsg new caa4c70 Imported Upstream version 2.0.0~rc1+dfsg new bf69e09 Imported Upstream version 2.0.0~rc2+dfsg The 4 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. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 20/29: Add patches for new typos.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 6c89e9013acfef424abb5dad4036d5938b5ca3ce Author: Bas Couwenberg Date: Sun Jun 14 17:38:26 2015 +0200 Add patches for new typos. --- debian/patches/allows-to-typo | 202 ++ debian/patches/paramater-typo | 48 ++ debian/patches/series | 2 + 3 files changed, 252 insertions(+) diff --git a/debian/patches/allows-to-typo b/debian/patches/allows-to-typo new file mode 100644 index 000..24325de --- /dev/null +++ b/debian/patches/allows-to-typo @@ -0,0 +1,202 @@ +Description: Fix 'allows to' typo, replace with 'allows ing'. +Author: Bas Couwenberg +Forwarded: http://trac.osgeo.org/gdal/ticket/5995 + +--- a/NEWS b/NEWS +@@ -2006,7 +2006,7 @@ NetCDF driver: + * Fix SetNoDataValue() - do not update when already set to new value (#4484) + * Convert longitude values in [180,360] interval to [-180,180] (#4512) - override with config option GDAL_NETCDF_CENTERLONG_180=0 + * Support 2D GEOLOCATION arrays when a projected variable has coordinates attribute and supporting lon/at arrays (#4513) +- * Ignore coordinate and bounds variables (CF sections 5.2, 5.6 and 7.1) as raster bands, but expose them as subdatasets - this allows to open files with projected SRS (or dimension bounds) directly, without specifying the variable as a subdataset ++ * Ignore coordinate and bounds variables (CF sections 5.2, 5.6 and 7.1) as raster bands, but expose them as subdatasets - this allows opening files with projected SRS (or dimension bounds) directly, without specifying the variable as a subdataset + * Better support for Gaussian grids - store original latitude values in special Y_VALUES geolocation metadata item and use it for netcdf export (#4514) + * Write multi-dimensional variables to a single variable (not one for each unrolled band) in CreateCopy() (#2581) + * Fix handling of km units in netcdf driver and importFromProj4() (#4769) +--- a/configure.in b/configure.in +@@ -1671,7 +1671,7 @@ dnl Not found... again, with -lsz. + fi + + dnl HDF4 library newer than 4.2.5 has a SDreset_maxopenfiles/SDget_maxopenfiles interface +-dnl which allows to open many HDF files simultaneously (the max number of files was previously ++dnl which allows opening many HDF files simultaneously (the max number of files was previously + dnl hardcoded and too low, smth. like 32). Search for it and use if available. + AC_CHECK_LIB(mfhdfalt,SDget_maxopenfiles,HDF4_HAS_MAXOPENFILES=yes,HDF4_HAS_MAXOPENFILES=no,$HDF_LIB_NAME) + if test "$HDF4_HAS_MAXOPENFILES" = "no" ; then +--- a/frmts/e00grid/e00read.c b/frmts/e00grid/e00read.c +@@ -243,7 +243,7 @@ voidE00ReadClose(E00ReadPtr psInfo) + /** + * E00ReadRewind() + * +- * Rewind the E00ReadPtr. Allows to start another read pass on the ++ * Rewind the E00ReadPtr. Allows starting another read pass on the + * input file. + **/ + voidE00ReadRewind(E00ReadPtr psInfo) +--- a/frmts/mbtiles/frmt_mbtiles.html b/frmts/mbtiles/frmt_mbtiles.html +@@ -9,7 +9,7 @@ + + MBTiles + +-Starting with GDAL 1.10, the MBTiles driver allows to read rasters in the MBTiles format, ++Starting with GDAL 1.10, the MBTiles driver allows reading rasters in the MBTiles format, + which is a specification for storing tiled map data in SQLite databases. + + GDAL/OGR must be compiled with OGR SQLite driver support, and JPEG and PNG drivers. +--- a/frmts/rasdaman/frmt_rasdaman.html b/frmts/rasdaman/frmt_rasdaman.html +@@ -15,7 +15,7 @@ consideration for OSGeo incubation. + + In our driver implementation, GDAL connects to rasdaman by defining a + query template which is instantiated with the concrete subsetting box +-upon every access. This allows to deliver 2-D cutouts from n-D data sets ++upon every access. This allows delivering 2-D cutouts from n-D data sets + (such as hyperspectral satellite time series, multi-variable climate + simulation data, ocean model data, etc.). In particular, virtual imagery + can be offered which is derived on demand from ground truth data. Some +--- a/nmake.opt b/nmake.opt +@@ -352,7 +352,7 @@ JPEG12_SUPPORTED = 1 + #HDF4_DIR = D:\warmerda\HDF41r5 + #HDF4_LIB = /LIBPATH:$(HDF4_DIR)\lib Ws2_32.lib + # HDF4 library newer than 4.2.5 has a SDreset_maxopenfiles/SDget_maxopenfiles +-# interface which allows to open many HDF files simultaneously (the max ++# interface which allows opening many HDF files simultaneously (the max + # number of files was previously hardcoded and too low, smth. like 32). + # Uncomment following if your library is newer than 4.2.5. + #HDF4_HAS_MAXOPENFILES = YES +--- a/ogr/ogrsf_frmts/selafin/drv_selafin.html b/ogr/
[gdal] 29/29: Drop patches applied upstream.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 56f8c5e727d58068909fba947e7216ced24f255e Author: Bas Couwenberg Date: Sun Jun 14 21:14:21 2015 +0200 Drop patches applied upstream. --- debian/patches/allows-to-typo| 203 -- debian/patches/consistant-typo | 208 -- debian/patches/doc-brief | 24 --- debian/patches/explicitely-typo | 445 --- debian/patches/inconsistant-typo | 174 --- debian/patches/java-make | 26 --- debian/patches/paramater-typo| 49 - debian/patches/paramters-typo| 16 -- debian/patches/recommanded-typo | 16 -- debian/patches/ressource-typo| 16 -- debian/patches/series| 13 -- debian/patches/supress-typo | 107 -- debian/patches/transfered-typo | 38 debian/patches/usefull-typo | 149 - 14 files changed, 1484 deletions(-) diff --git a/debian/patches/allows-to-typo b/debian/patches/allows-to-typo deleted file mode 100644 index 8b0057c..000 --- a/debian/patches/allows-to-typo +++ /dev/null @@ -1,203 +0,0 @@ -Description: Fix 'allows to' typo, replace with 'allows ing'. -Author: Bas Couwenberg -Forwarded: http://trac.osgeo.org/gdal/ticket/5995 -Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29336/ - a/NEWS -+++ b/NEWS -@@ -2006,7 +2006,7 @@ NetCDF driver: - * Fix SetNoDataValue() - do not update when already set to new value (#4484) - * Convert longitude values in [180,360] interval to [-180,180] (#4512) - override with config option GDAL_NETCDF_CENTERLONG_180=0 - * Support 2D GEOLOCATION arrays when a projected variable has coordinates attribute and supporting lon/at arrays (#4513) -- * Ignore coordinate and bounds variables (CF sections 5.2, 5.6 and 7.1) as raster bands, but expose them as subdatasets - this allows to open files with projected SRS (or dimension bounds) directly, without specifying the variable as a subdataset -+ * Ignore coordinate and bounds variables (CF sections 5.2, 5.6 and 7.1) as raster bands, but expose them as subdatasets - this allows opening files with projected SRS (or dimension bounds) directly, without specifying the variable as a subdataset - * Better support for Gaussian grids - store original latitude values in special Y_VALUES geolocation metadata item and use it for netcdf export (#4514) - * Write multi-dimensional variables to a single variable (not one for each unrolled band) in CreateCopy() (#2581) - * Fix handling of km units in netcdf driver and importFromProj4() (#4769) a/configure.in -+++ b/configure.in -@@ -1671,7 +1671,7 @@ dnl Not found... again, with -lsz. - fi - - dnl HDF4 library newer than 4.2.5 has a SDreset_maxopenfiles/SDget_maxopenfiles interface --dnl which allows to open many HDF files simultaneously (the max number of files was previously -+dnl which allows opening many HDF files simultaneously (the max number of files was previously - dnl hardcoded and too low, smth. like 32). Search for it and use if available. - AC_CHECK_LIB(mfhdfalt,SDget_maxopenfiles,HDF4_HAS_MAXOPENFILES=yes,HDF4_HAS_MAXOPENFILES=no,$HDF_LIB_NAME) - if test "$HDF4_HAS_MAXOPENFILES" = "no" ; then a/frmts/e00grid/e00read.c -+++ b/frmts/e00grid/e00read.c -@@ -243,7 +243,7 @@ voidE00ReadClose(E00ReadPtr psInfo) - /** - * E00ReadRewind() - * -- * Rewind the E00ReadPtr. Allows to start another read pass on the -+ * Rewind the E00ReadPtr. Allows starting another read pass on the - * input file. - **/ - voidE00ReadRewind(E00ReadPtr psInfo) a/frmts/mbtiles/frmt_mbtiles.html -+++ b/frmts/mbtiles/frmt_mbtiles.html -@@ -9,7 +9,7 @@ - - MBTiles - --Starting with GDAL 1.10, the MBTiles driver allows to read rasters in the MBTiles format, -+Starting with GDAL 1.10, the MBTiles driver allows reading rasters in the MBTiles format, - which is a specification for storing tiled map data in SQLite databases. - - GDAL/OGR must be compiled with OGR SQLite driver support, and JPEG and PNG drivers. a/frmts/rasdaman/frmt_rasdaman.html -+++ b/frmts/rasdaman/frmt_rasdaman.html -@@ -15,7 +15,7 @@ consideration for OSGeo incubation. - - In our driver implementation, GDAL connects to rasdaman by defining a - query template which is instantiated with the concrete subsetting box --upon every access. This allows to deliver 2-D cutouts from n-D data sets -+upon every access. This allows delivering 2-D cutouts from n-D data sets - (such as hyperspectral satellite time series, multi-variable climate - simulation data, ocean model data, etc.). In particular, virtual imagery - can be offered which is derived on demand from ground truth data. Some -
[gdal] 28/29: New upstream release candidate.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit 572b4a060b6f26d211afb9218a231f25a891e1a3 Author: Bas Couwenberg Date: Sun Jun 14 21:07:13 2015 +0200 New upstream release candidate. --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 48f0c5e..67076b6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -gdal (2.0.0~rc1+dfsg-1) UNRELEASED; urgency=medium +gdal (2.0.0~rc2+dfsg-1) UNRELEASED; urgency=medium * New upstream release candidate. * Update copyright file, changes: @@ -11,7 +11,7 @@ gdal (2.0.0~rc1+dfsg-1) UNRELEASED; urgency=medium * Drop libgdal1-dev transitional package, and obsolete Breaks/Replaces. - -- Bas Couwenberg Sat, 13 Jun 2015 23:40:47 +0200 + -- Bas Couwenberg Sun, 14 Jun 2015 21:03:34 +0200 gdal (1.11.2+dfsg-1~exp3) experimental; urgency=medium -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 21/29: Drop libgdal1-dev transitional package, and obsolete Breaks/Replaces.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit d20a8bd6a5620dd577df975d2be0656a467e5d6e Author: Bas Couwenberg Date: Sun Jun 14 19:11:18 2015 +0200 Drop libgdal1-dev transitional package, and obsolete Breaks/Replaces. --- debian/changelog | 2 ++ debian/control | 32 2 files changed, 2 insertions(+), 32 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8c016ec..ed9ab02 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ gdal (2.0.0~rc1+dfsg-1) UNRELEASED; urgency=medium * Drop patches applied upstream, refresh remaining patches. * Rename libgdal1h to libgdal20 to match SONAME. * Use packaged libgeotiff & libtiff instead of internal copies. + * Drop libgdal1-dev transitional package, and obsolete +Breaks/Replaces. -- Bas Couwenberg Sat, 13 Jun 2015 23:40:47 +0200 diff --git a/debian/control b/debian/control index 1e640b5..fd80b00 100644 --- a/debian/control +++ b/debian/control @@ -66,10 +66,6 @@ Section: libs Depends: ${shlibs:Depends}, ${misc:Depends} Recommends: proj-bin -Breaks: libgdal1 (<= 1.10.0-0~), -libgdal1-1.6.0 (<= 1.10.0-0~) -Replaces: libgdal1 (<= 1.10.0-0~), - libgdal1-1.6.0 (<= 1.10.0-0~) Provides: libgdal.so.20-2.0.0 Description: Geospatial Data Abstraction Library GDAL is a translator library for raster geospatial data formats. @@ -90,32 +86,6 @@ Description: Geospatial Data Abstraction Library . This package contains the shared library. -Package: libgdal1-dev -Architecture: all -Section: libdevel -Depends: libgdal-dev, - ${misc:Depends} -Description: Geospatial Data Abstraction Library - Transitional package - GDAL is a translator library for raster geospatial data formats. - As a library, it presents a single abstract data model to the - calling application for all supported formats. The related OGR - library (which lives within the GDAL source tree) provides - a similar capability for simple features vector data. - . - GDAL supports many popular data formats, including commonly used - ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in - GIS and remote sensing software packages (ERDAS Imagine, - ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote - sensing and scientific data distribution formats such as HDF, - EOS FAST, NOAA L1B, NetCDF, FITS. - . - OGR library supports popular vector formats like ESRI Shapefile, - TIGER data, S57, MapInfo File, DGN, GML and more. - . - This is a transitional dummy package that depends on libgdal-dev - and is used to allow versioned build dependencies to work in - any build environment. - Package: libgdal-dev Architecture: any Section: libdevel @@ -143,8 +113,6 @@ Depends: libgdal20 (= ${binary:Version}), libdap-dev, ${misc:Depends} Suggests: libgdal-doc -Breaks: libgdal1-dev (<< 1.9.0-1~) -Replaces: libgdal1-dev (<< 1.9.0-1~) Description: Geospatial Data Abstraction Library - Development files GDAL is a translator library for raster geospatial data formats. As a library, it presents a single abstract data model to the -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 24/29: Drop files section for gcore/gdal_rpcimdio.cpp, removed upstream.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit d0fb419572c10ca1d7de1d87584f2c1c14cea9a1 Author: Bas Couwenberg Date: Sun Jun 14 20:12:31 2015 +0200 Drop files section for gcore/gdal_rpcimdio.cpp, removed upstream. --- debian/changelog | 4 +++- debian/copyright | 4 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index ed9ab02..48f0c5e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,9 @@ gdal (2.0.0~rc1+dfsg-1) UNRELEASED; urgency=medium * New upstream release candidate. - * Update copyright years & holders. + * Update copyright file, changes: +- Update copyright years & holders +- Drop files section for gcore/gdal_rpcimdio.cpp, removed upstream * Use uscan in get-orig-source target. * Drop patches applied upstream, refresh remaining patches. * Rename libgdal1h to libgdal20 to match SONAME. diff --git a/debian/copyright b/debian/copyright index b1e747a..b273464 100644 --- a/debian/copyright +++ b/debian/copyright @@ -490,10 +490,6 @@ Comment: Thanks to Rodney Brown for his contribution of fa factor of two increase in speed on a Power PC G4 (PPC7455) using gcc -O3. License: zlib -Files: gcore/gdal_rpcimdio.cpp -Copyright: 2008, HER MAJESTY THE QUEEN IN RIGHT OF CANADA as represented by the Canadian Nuclear Safety Commission -License: MIT - Files: gcore/Version.rc Copyright: 2005, Frank Warmerdam Comment: Copyright assignment provided by Martin Daly by email, "Be my guest. Fame! -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[sfcgal] branch master updated (0f6de5c -> d1d3168)
This is an automated email from the git hooks/post-receive script. giggls-guest pushed a change to branch master in repository sfcgal. from 0f6de5c Make linitan happy new d1d3168 add a libsfcgal1.symbols file 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/libsfcgal1.symbols | 14597 1 file changed, 14597 insertions(+) create mode 100644 debian/libsfcgal1.symbols -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/sfcgal.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
[gdal] branch experimental-2.0 updated (56f8c5e -> d090e71)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch experimental-2.0 in repository gdal. from 56f8c5e Drop patches applied upstream. new d090e71 Mark initalize-typo patch as Applied-Upstream. 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/patches/initalize-typo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 01/01: Mark initalize-typo patch as Applied-Upstream.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.0 in repository gdal. commit d090e716bd3184a61a636aee195634e4ec1a379f Author: Bas Couwenberg Date: Sun Jun 14 23:13:50 2015 +0200 Mark initalize-typo patch as Applied-Upstream. --- debian/patches/initalize-typo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/patches/initalize-typo b/debian/patches/initalize-typo index 4f12470..312ed55 100644 --- a/debian/patches/initalize-typo +++ b/debian/patches/initalize-typo @@ -1,7 +1,7 @@ Description: Fix 'initialized' typo, replace with 'initialized'. Author: Bas Couwenberg Forwarded: http://trac.osgeo.org/gdal/ticket/5995 -Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29330 +Applied-Upstream: https://trac.osgeo.org/gdal/changeset/29351 --- a/gcore/rasterio.cpp +++ b/gcore/rasterio.cpp -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] branch experimental updated (79071e1 -> 9f6e8e6)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch experimental in repository gdal. from 79071e1 Set distribution to experimental. new 62c2cbb Remove trailing whitespace to fix syntax error in symbols files. new 9f6e8e6 Use uscan in get-orig-source target. 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/libgdal1h.symbols.amd64 | 2 +- debian/libgdal1h.symbols.armel | 2 +- debian/libgdal1h.symbols.armhf | 2 +- debian/libgdal1h.symbols.i386| 2 +- debian/libgdal1h.symbols.ia64| 2 +- debian/libgdal1h.symbols.mips| 2 +- debian/libgdal1h.symbols.mipsel | 2 +- debian/libgdal1h.symbols.powerpc | 2 +- debian/libgdal1h.symbols.s390x | 2 +- debian/libgdal1h.symbols.sparc | 2 +- debian/rules | 2 +- 12 files changed, 18 insertions(+), 11 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 02/02: Use uscan in get-orig-source target.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental in repository gdal. commit 9f6e8e68bfab202c212256cca2bb7ef783b11794 Author: Bas Couwenberg Date: Sun Jun 14 00:09:38 2015 +0200 Use uscan in get-orig-source target. --- debian/changelog | 1 + debian/rules | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 68a7f83..9333763 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ gdal (1.11.2+dfsg-1~exp4) UNRELEASED; urgency=medium * Remove trailing whitespace to fix syntax error in symbols files. + * Use uscan in get-orig-source target. -- Bas Couwenberg Sun, 14 Jun 2015 20:51:33 +0200 diff --git a/debian/rules b/debian/rules index 96d1720..c566e44 100755 --- a/debian/rules +++ b/debian/rules @@ -225,5 +225,5 @@ override_dh_shlibdeps: dh_shlibdeps -L libgdal1h -l debian/libgdal1h/usr/lib get-orig-source: - . debian/get-orig-source + uscan --verbose --force-download -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
[gdal] 01/02: Remove trailing whitespace to fix syntax error in symbols files.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental in repository gdal. commit 62c2cbbeaac1904e0a0d7a786651fa390d8c55be Author: Bas Couwenberg Date: Sun Jun 14 20:51:48 2015 +0200 Remove trailing whitespace to fix syntax error in symbols files. --- debian/changelog | 6 ++ debian/libgdal1h.symbols.amd64 | 2 +- debian/libgdal1h.symbols.armel | 2 +- debian/libgdal1h.symbols.armhf | 2 +- debian/libgdal1h.symbols.i386| 2 +- debian/libgdal1h.symbols.ia64| 2 +- debian/libgdal1h.symbols.mips| 2 +- debian/libgdal1h.symbols.mipsel | 2 +- debian/libgdal1h.symbols.powerpc | 2 +- debian/libgdal1h.symbols.s390x | 2 +- debian/libgdal1h.symbols.sparc | 2 +- 11 files changed, 16 insertions(+), 10 deletions(-) diff --git a/debian/changelog b/debian/changelog index 4557db2..68a7f83 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +gdal (1.11.2+dfsg-1~exp4) UNRELEASED; urgency=medium + + * Remove trailing whitespace to fix syntax error in symbols files. + + -- Bas Couwenberg Sun, 14 Jun 2015 20:51:33 +0200 + gdal (1.11.2+dfsg-1~exp3) experimental; urgency=medium * Use packaged jquery.js instead of Doxygen copy. diff --git a/debian/libgdal1h.symbols.amd64 b/debian/libgdal1h.symbols.amd64 index dee71d2..a846eab 100644 --- a/debian/libgdal1h.symbols.amd64 +++ b/debian/libgdal1h.symbols.amd64 @@ -1,4 +1,4 @@ -libgdal.so.1 libgdal1h #MINVER# +libgdal.so.1 libgdal1h #MINVER# | libgdal1h #MINVER#, libgdal.so.1-1.11.2 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 diff --git a/debian/libgdal1h.symbols.armel b/debian/libgdal1h.symbols.armel index 89fb39b..a689764 100644 --- a/debian/libgdal1h.symbols.armel +++ b/debian/libgdal1h.symbols.armel @@ -1,4 +1,4 @@ -libgdal.so.1 libgdal1h #MINVER# +libgdal.so.1 libgdal1h #MINVER# | libgdal1h #MINVER#, libgdal.so.1-1.11.2 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 diff --git a/debian/libgdal1h.symbols.armhf b/debian/libgdal1h.symbols.armhf index 89fb39b..a689764 100644 --- a/debian/libgdal1h.symbols.armhf +++ b/debian/libgdal1h.symbols.armhf @@ -1,4 +1,4 @@ -libgdal.so.1 libgdal1h #MINVER# +libgdal.so.1 libgdal1h #MINVER# | libgdal1h #MINVER#, libgdal.so.1-1.11.2 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 diff --git a/debian/libgdal1h.symbols.i386 b/debian/libgdal1h.symbols.i386 index 567311c..b9815fd 100644 --- a/debian/libgdal1h.symbols.i386 +++ b/debian/libgdal1h.symbols.i386 @@ -1,4 +1,4 @@ -libgdal.so.1 libgdal1h #MINVER# +libgdal.so.1 libgdal1h #MINVER# | libgdal1h #MINVER#, libgdal.so.1-1.11.2 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal1h.symbols.ia64 b/debian/libgdal1h.symbols.ia64 index a97d18d..285af0b 100644 --- a/debian/libgdal1h.symbols.ia64 +++ b/debian/libgdal1h.symbols.ia64 @@ -1,4 +1,4 @@ -libgdal.so.1 libgdal1h #MINVER# +libgdal.so.1 libgdal1h #MINVER# | libgdal1h #MINVER#, libgdal.so.1-1.11.2 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal1h.symbols.mips b/debian/libgdal1h.symbols.mips index aa5802d..d47d960 100644 --- a/debian/libgdal1h.symbols.mips +++ b/debian/libgdal1h.symbols.mips @@ -1,4 +1,4 @@ -libgdal.so.1 libgdal1h #MINVER# +libgdal.so.1 libgdal1h #MINVER# | libgdal1h #MINVER#, libgdal.so.1-1.11.2 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal1h.symbols.mipsel b/debian/libgdal1h.symbols.mipsel index f2d2951..82883c0 100644 --- a/debian/libgdal1h.symbols.mipsel +++ b/debian/libgdal1h.symbols.mipsel @@ -1,4 +1,4 @@ -libgdal.so.1 libgdal1h #MINVER# +libgdal.so.1 libgdal1h #MINVER# | libgdal1h #MINVER#, libgdal.so.1-1.11.2 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal1h.symbols.powerpc b/debian/libgdal1h.symbols.powerpc index 9321573..51b5908 100644 --- a/debian/libgdal1h.symbols.powerpc +++ b/debian/libgdal1h.symbols.powerpc @@ -1,4 +1,4 @@ -libgdal.so.1 libgdal1h #MINVER# +libgdal.so.1 libgdal1h #MINVER# | libgdal1h #MINVER#, libgdal.so.1-1.11.2 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.8.0 1 diff --git a/debian/libgdal1h.symbols.s390x b/debian/libgdal1h.symbols.s390x index 1131cb1..229b574 100644 --- a/debian/libgdal1h.symbols.s390x +++ b/debian/libgdal1h.symbols.s390x @@ -1,4 +1,4 @@ -libgdal.so.1 libgdal1h #MINVER# +libgdal.so.1 libgdal1h #MINVER# | libgdal1h #MINVER#, libgdal.so.1-1.11.2 #include "libgdal1h.symbols.common" (c++)"PamGetProxy(char const*)@GDAL_1.8" 1.9.0 1 diff --git a/debian/libgdal1h.symbols.sparc b/debian/libgdal1h.symbols.sparc index 93363e5..9202399 100644 --- a/debian/libgdal1h.symbols.sparc +++ b/debian/libgdal1h.symbols.sp
Processed: Re: Bug#788761: postgis: FTBFS with maven-compiler-plugin 3.*
Processing control commands: > tags -1 pending Bug #788761 [postgis] postgis: FTBFS with maven-compiler-plugin 3.* Added tag(s) pending. -- 788761: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788761 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
Bug#788761: postgis: FTBFS with maven-compiler-plugin 3.*
Control: tags -1 pending Hi Micah, Thanks for forwarding the patch from Ubuntu. On 06/14/2015 09:45 PM, Micah Gersten wrote: > This package fails to build the architecture independent components with the > newer maven-compiler-plugin. > > *** /tmp/tmpvkk2E1/bug_body > > In Ubuntu, the attached patch was applied to achieve the following: > > * Switch libmaven-compiler-plugin-java to libmaven-compiler-plugin-2.5-java > (Fixes FTBFS) > - update debian/control{,.in} > > > Thanks for considering the patch. I've applied the patch in git, and an new upload for unstable is being prepared. Kind Regards, Bas -- GPG Key ID: 4096R/6750F10AE88D4AF1 Fingerprint: 8182 DE41 7056 408D 6146 50D1 6750 F10A E88D 4AF1 ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[sfcgal] 01/02: Revert to name of Sven
This is an automated email from the git hooks/post-receive script. giggls-guest pushed a commit to branch master in repository sfcgal. commit c773647975b3ff8fc7d7e9094c72c9e8ad16c2ae Author: Sven Geggus Date: Sun Jun 14 23:44:08 2015 +0200 Revert to name of Sven --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index ca6816e..48bc67e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,4 +2,4 @@ sfcgal (1.1.0-1) UNRELEASED; urgency=medium * Initial release (closes: #788560) - -- Debian GIS Project Tue, 09 Jun 2015 14:24:02 +0200 + -- Sven Geggus Tue, 09 Jun 2015 14:24:02 +0200 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/sfcgal.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
[sfcgal] branch master updated (d1d3168 -> 462f791)
This is an automated email from the git hooks/post-receive script. giggls-guest pushed a change to branch master in repository sfcgal. from d1d3168 add a libsfcgal1.symbols file new c773647 Revert to name of Sven new 462f791 * re-add building of tests, but ignore failure * enable hardening to get rid of lintian warning 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 | 2 +- debian/control | 2 +- debian/rules | 7 +-- 3 files changed, 7 insertions(+), 4 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/sfcgal.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
[sfcgal] 02/02: * re-add building of tests, but ignore failure * enable hardening to get rid of lintian warning
This is an automated email from the git hooks/post-receive script. giggls-guest pushed a commit to branch master in repository sfcgal. commit 462f791aff23391e433eec540a7786e7f918fa20 Author: Sven Geggus Date: Sun Jun 14 23:44:44 2015 +0200 * re-add building of tests, but ignore failure * enable hardening to get rid of lintian warning --- debian/control | 2 +- debian/rules | 7 +-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/debian/control b/debian/control index 419cf46..0c9dbfd 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Uploaders: Sven Geggus Build-Depends: debhelper (>= 9), cmake, libcgal-dev, libboost-all-dev, libmpfr-dev, libgmp-dev, libopenscenegraph-dev, libopenthreads-dev, libpq-dev, -libqt4-dev, libqt4-opengl-dev +libqt4-dev, libqt4-opengl-dev, astyle Standards-Version: 3.9.6 Homepage: http://www.sfcgal.org/ Vcs-Browser: http://anonscm.debian.org/cgit/pkg-grass/sfcgal.git/ diff --git a/debian/rules b/debian/rules index ce06450..633b105 100755 --- a/debian/rules +++ b/debian/rules @@ -5,6 +5,7 @@ DH_VERBOSE = 1 DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) DPKG_EXPORT_BUILDFLAGS = 1 +DEB_BUILD_HARDENING = 1 include /usr/share/dpkg/default.mk # main packaging script based on dh7 syntax @@ -12,7 +13,7 @@ include /usr/share/dpkg/default.mk dh $@ --parallel override_dh_auto_configure: - dh_auto_configure -- -DSFCGAL_BUILD_VIEWER=ON -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_INSTALL_LIBDIR=lib/$(DEB_HOST_MULTIARCH) + dh_auto_configure -- -DSFCGAL_BUILD_VIEWER=ON -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DSFCGAL_BUILD_TESTS=ON -DCMAKE_INSTALL_LIBDIR=lib/$(DEB_HOST_MULTIARCH) # in addition to the upstream stuff we also want to # install the two manpages written for the debian package @@ -23,5 +24,7 @@ override_dh_install: dh_install --list-missing +# As of version 1.1.0 style test does currently work on Debian +# GNU/Linux for unknown reasons override_dh_auto_test: - true + dh_auto_test || echo "Ignoring test failures" -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/sfcgal.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: Update copyright file.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository postgis. commit 466d28100e07af49bc373b5dcfdbf60fba0e130b Author: Bas Couwenberg Date: Mon Jun 15 00:26:48 2015 +0200 Update copyright file. Changes: - Drop .0 from GPL license shortnames - Align copyright holders - Group files & copyright by license --- debian/changelog | 4 + debian/copyright | 925 ++- 2 files changed, 103 insertions(+), 826 deletions(-) diff --git a/debian/changelog b/debian/changelog index 4299a3d..9930313 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,10 @@ postgis (2.1.7+dfsg-2) UNRELEASED; urgency=medium * Apply patch from Ubuntu to depend on libmaven-compiler-plugin-2.5-java, fixes build failure with maven-compiler-plugin 3.x. (closes: #788761) + * Update copyright file, changes: +- Drop .0 from GPL license shortnames +- Align copyright holders +- Group files & copyright by license -- Bas Couwenberg Sun, 14 Jun 2015 21:51:54 +0200 diff --git a/debian/copyright b/debian/copyright index 7504fd3..7922c2d 100644 --- a/debian/copyright +++ b/debian/copyright @@ -8,8 +8,37 @@ Comment: The OGC test cases are removed because they have unclear licensing, Files-Excluded: extras/ogc_test_suite/* Files: * -Copyright: PostGIS Developers -License: GPL-2.0+ +Copyright:PostGIS Developers + Chris Hodgson + Jeff Lounsbury + 2003-2005, PostgreSQL Global Development Group +2005, Markus Schaber +2006, Corporacion Autonoma Regional de Santander +2008, Stephen Frost (et al) +2009, David Skea + 2007-2010, Mark Cave-Ayland +2010, LISAsoft Pty Ltd +2010, Mark Leslie + 2001-2011, Refractions Research Inc + 2008, 2011, OpenGeo.org + 2009-2011, David Zwarg + 2009-2011, Jorge Arevalo + 2009-2011, Mateusz Loskot + 2009-2011, Pierre Racine + 2010-2011, Nicklas Avén +2011, Andrea Peri +2011, Arrival 3D +2011, Kashif Rasul +2011, OSGeo + 2004, 2008-2012, Paul Ramsey + 2010-2012, Leo Hsu +2012, J Smith + 2008-2013, Sandro Santilli + 2009-2013, Olivier Courtin + 2010-2013, Regina Obe + 2011-2013, Regents of the University of California + 2009-2013, Oslandia +License: GPL-2+ Files: doc/* Copyright: PostGIS Developers @@ -17,21 +46,44 @@ License: CC-BY-SA-3.0 Files: doc/Makefile.comments.in Copyright: 2010, Mark Cave-Aylan -License: GPL-2.0+ +License: GPL-2+ Files: doc/Makefile.in -Copyright: 2003-2012 Sandro Santilli - 2004-2012 Paul Ramsey - 2005-2006 Markus Schaber - 2008-2010 Mark Cave-Ayland - 2008-2010 Kevin Neufeld - 2009-2010 Olivier Courtin - 2009-2011 Regina Obe -License: GPL-2.0+ +Copyright: 2003-2012, Sandro Santilli + 2004-2012, Paul Ramsey + 2005-2006, Markus Schaber + 2008-2010, Mark Cave-Ayland + 2008-2010, Kevin Neufeld + 2009-2010, Olivier Courtin + 2009-2011, Regina Obe +License: GPL-2+ Files: doc/html/image_src/Makefile.in + doc/html/image_src/generator.c + doc/html/image_src/styles.c + doc/html/image_src/styles.h Copyright: 2008, Kevin Neufeld -License: GPL-2.0+ +License: GPL-2+ + +Files: doc/xsl/post_gis_day_cards.html.xsl + doc/xsl/postgis_aggs_mm.xml.xsl + doc/xsl/postgis_cheatsheet.html.xsl + doc/xsl/postgis_comments.sql.xsl + doc/xsl/postgis_gardentest.sql.xsl + doc/xsl/postgis_gardentest_subset.sql.xsl + doc/xsl/postgis_reference.xml.xsl + doc/xsl/raster_cheatsheet.html.xsl + doc/xsl/raster_comments.sql.xsl + doc/xsl/raster_gardentest.sql.xsl + doc/xsl/sfcgal_cheatsheet.html.xsl + doc/xsl/sfcgal_comments.sql.xsl + doc/xsl/tiger_geocoder_cheatsheet.html.xsl + doc/xsl/tiger_geocoder_comments.sql.xsl + doc/xsl/topology_cheatsheet.html.xsl + doc/xsl/topology_comments.sql.xsl + doc/xsl/topology_gardentest.sql.xsl +Copyright: 2008-2010, Regina Obe +License: BSD-3-Clause Files: aclocal.m4 config.rpath @@ -51,7 +103,7 @@ License: fsf-unlimited Files: config.guess config.sub Copyright: 1992-2014, Free Software Foundation, Inc. -License: GPL-3.0+ with Autoconf exception +License: GPL-3+ with Autoconf exception Files: configure Copyright: 1992-1996, 1998-2012, Free Software Foundation, Inc. @@ -59,69 +111,6 @@ License: configure This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. -Files: extensions/Makefile.in -Copyright: 2012, Regina Obe and Leo Hsu - 2012, Sandro Santilli -License: GPL-2.0+ - -Files: extensions/postgis/sql_bits/remove_from_extension.sql.in -Copyright: 2011, Regina Obe -License: GPL-2.0+ - -Files: extensions/postgis_extension_helper.sql -Copyright: 2005, Refracti
[postgis] 01/03: Apply patch from Ubuntu to depend on libmaven-compiler-plugin-2.5-java, fixes build failure with maven-compiler-plugin 3.x.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository postgis. commit e9ce4440cbc68b2dd95d81189cfabafabe2d3139 Author: Bas Couwenberg Date: Sun Jun 14 21:53:55 2015 +0200 Apply patch from Ubuntu to depend on libmaven-compiler-plugin-2.5-java, fixes build failure with maven-compiler-plugin 3.x. --- debian/changelog | 8 debian/control| 2 +- debian/control.in | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index a2b80c0..4299a3d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +postgis (2.1.7+dfsg-2) UNRELEASED; urgency=medium + + * Apply patch from Ubuntu to depend on libmaven-compiler-plugin-2.5-java, +fixes build failure with maven-compiler-plugin 3.x. +(closes: #788761) + + -- Bas Couwenberg Sun, 14 Jun 2015 21:51:54 +0200 + postgis (2.1.7+dfsg-1) unstable; urgency=medium * Restore get-orig-source target, but use uscan instead of custom script. diff --git a/debian/control b/debian/control index 93e9de1..78da0d5 100644 --- a/debian/control +++ b/debian/control @@ -17,7 +17,7 @@ Build-Depends: debhelper (>= 9), po-debconf, Build-Depends-Indep: default-jdk, openjdk-7-jdk | java7-sdk, libpostgresql-jdbc-java, fastjar, libjts-java (>= 1.7), maven2, libmaven-clean-plugin-java, libmaven-jar-plugin-java, - libsurefire-java, libmaven-compiler-plugin-java, + libsurefire-java, libmaven-compiler-plugin-2.5-java, libmaven-resources-plugin-java, libmaven-javadoc-plugin-java Standards-Version: 3.9.6 diff --git a/debian/control.in b/debian/control.in index 7ffc519..49db00f 100644 --- a/debian/control.in +++ b/debian/control.in @@ -17,7 +17,7 @@ Build-Depends: debhelper (>= 9), po-debconf, Build-Depends-Indep: default-jdk, openjdk-7-jdk | java7-sdk, libpostgresql-jdbc-java, fastjar, libjts-java (>= 1.7), maven2, libmaven-clean-plugin-java, libmaven-jar-plugin-java, - libsurefire-java, libmaven-compiler-plugin-java, + libsurefire-java, libmaven-compiler-plugin-2.5-java, libmaven-resources-plugin-java, libmaven-javadoc-plugin-java Standards-Version: 3.9.6 -- 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 (4e1d366 -> 84938be)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository postgis. from 4e1d366 Revert "Update Vcs-Git URL in both control & control.in." new e9ce444 Apply patch from Ubuntu to depend on libmaven-compiler-plugin-2.5-java, fixes build failure with maven-compiler-plugin 3.x. new 466d281 Update copyright file. new 84938be 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 | 12 + debian/control| 2 +- debian/control.in | 2 +- debian/copyright | 925 ++ 4 files changed, 113 insertions(+), 828 deletions(-) -- 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
[gdal] branch experimental updated (9f6e8e6 -> 4eeba56)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch experimental in repository gdal. from 9f6e8e6 Use uscan in get-orig-source target. new 4eeba56 Include upstream version in library package name instead of using an alternative dependency template for the C++ symbols. 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/control | 13 +- debian/gdal-symbols.pl |7 +- .../{libgdal1h.install => libgdal1-1.11.2.install} |0 debian/libgdal1-1.11.2.lintian-overrides |9 + ...symbols.alpha => libgdal1-1.11.2.symbols.alpha} | 5549 ++- ...symbols.amd64 => libgdal1-1.11.2.symbols.amd64} | 5593 ++- ...symbols.arm64 => libgdal1-1.11.2.symbols.arm64} | 5595 ++- ...symbols.armel => libgdal1-1.11.2.symbols.armel} | 5569 ++- ...symbols.armhf => libgdal1-1.11.2.symbols.armhf} | 5569 ++- ...mbols.common => libgdal1-1.11.2.symbols.common} |0 ...h.symbols.hppa => libgdal1-1.11.2.symbols.hppa} | 5595 ++- ...hurd-i386 => libgdal1-1.11.2.symbols.hurd-i386} | 5559 ++- ...symbols.mipsel => libgdal1-1.11.2.symbols.i386} | 5559 ++- ...h.symbols.ia64 => libgdal1-1.11.2.symbols.ia64} | 5607 ++- ...md64 => libgdal1-1.11.2.symbols.kfreebsd-amd64} | 5593 ++- ...-i386 => libgdal1-1.11.2.symbols.kfreebsd-i386} | 5559 ++- ...h.symbols.mips => libgdal1-1.11.2.symbols.mips} | 5609 ++-- ...symbols.i386 => libgdal1-1.11.2.symbols.mipsel} | 5559 ++- ...ols.powerpc => libgdal1-1.11.2.symbols.powerpc} | 5559 ++- ...symbols.ppc64 => libgdal1-1.11.2.symbols.ppc64} | 5549 ++- ...ols.ppc64el => libgdal1-1.11.2.symbols.ppc64el} | 5593 ++- ...symbols.s390x => libgdal1-1.11.2.symbols.s390x} | 5553 ++- ...symbols.sparc => libgdal1-1.11.2.symbols.sparc} | ++- ...l1h.symbols.x32 => libgdal1-1.11.2.symbols.x32} | 5599 ++- debian/libgdal1h.lintian-overrides |2 - debian/rules | 17 +- 27 files changed, 52973 insertions(+), 53000 deletions(-) rename debian/{libgdal1h.install => libgdal1-1.11.2.install} (100%) create mode 100644 debian/libgdal1-1.11.2.lintian-overrides rename debian/{libgdal1h.symbols.alpha => libgdal1-1.11.2.symbols.alpha} (61%) rename debian/{libgdal1h.symbols.amd64 => libgdal1-1.11.2.symbols.amd64} (61%) rename debian/{libgdal1h.symbols.arm64 => libgdal1-1.11.2.symbols.arm64} (62%) rename debian/{libgdal1h.symbols.armel => libgdal1-1.11.2.symbols.armel} (60%) rename debian/{libgdal1h.symbols.armhf => libgdal1-1.11.2.symbols.armhf} (60%) rename debian/{libgdal1h.symbols.common => libgdal1-1.11.2.symbols.common} (100%) rename debian/{libgdal1h.symbols.hppa => libgdal1-1.11.2.symbols.hppa} (62%) rename debian/{libgdal1h.symbols.hurd-i386 => libgdal1-1.11.2.symbols.hurd-i386} (61%) rename debian/{libgdal1h.symbols.mipsel => libgdal1-1.11.2.symbols.i386} (60%) rename debian/{libgdal1h.symbols.ia64 => libgdal1-1.11.2.symbols.ia64} (67%) rename debian/{libgdal1h.symbols.kfreebsd-amd64 => libgdal1-1.11.2.symbols.kfreebsd-amd64} (62%) rename debian/{libgdal1h.symbols.kfreebsd-i386 => libgdal1-1.11.2.symbols.kfreebsd-i386} (61%) rename debian/{libgdal1h.symbols.mips => libgdal1-1.11.2.symbols.mips} (60%) rename debian/{libgdal1h.symbols.i386 => libgdal1-1.11.2.symbols.mipsel} (60%) rename debian/{libgdal1h.symbols.powerpc => libgdal1-1.11.2.symbols.powerpc} (60%) rename debian/{libgdal1h.symbols.ppc64 => libgdal1-1.11.2.symbols.ppc64} (67%) rename debian/{libgdal1h.symbols.ppc64el => libgdal1-1.11.2.symbols.ppc64el} (62%) rename debian/{libgdal1h.symbols.s390x => libgdal1-1.11.2.symbols.s390x} (60%) rename debian/{libgdal1h.symbols.sparc => libgdal1-1.11.2.symbols.sparc} (60%) rename debian/{libgdal1h.symbols.x32 => libgdal1-1.11.2.symbols.x32} (62%) delete mode 100644 debian/libgdal1h.lintian-overrides -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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.1.7+dfsg-2 created (now 84938be)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to tag debian/2.1.7+dfsg-2 in repository postgis. at 84938be (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] 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 84938be5acdf01fc40ea890af1c6fa9f1b75b044 Author: Bas Couwenberg Date: Sun Jun 14 21:55:45 2015 +0200 Set distribution to unstable. --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9930313..20bb894 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -postgis (2.1.7+dfsg-2) UNRELEASED; urgency=medium +postgis (2.1.7+dfsg-2) unstable; urgency=medium * Apply patch from Ubuntu to depend on libmaven-compiler-plugin-2.5-java, fixes build failure with maven-compiler-plugin 3.x. @@ -8,7 +8,7 @@ postgis (2.1.7+dfsg-2) UNRELEASED; urgency=medium - Align copyright holders - Group files & copyright by license - -- Bas Couwenberg Sun, 14 Jun 2015 21:51:54 +0200 + -- Bas Couwenberg Sun, 14 Jun 2015 21:55:36 +0200 postgis (2.1.7+dfsg-1) 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
[gdal] branch experimental-2.0 updated (d090e71 -> b5b8c03)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch experimental-2.0 in repository gdal. from d090e71 Mark initalize-typo patch as Applied-Upstream. new b5b8c03 Include upstream version in library package name instead of using an alternative dependency template for the C++ symbols. 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/control |7 +- debian/gdal-symbols.pl |7 +- .../{libgdal20.install => libgdal20-2.0.0.install} |0 debian/libgdal20-2.0.0.lintian-overrides |6 + ...symbols.alpha => libgdal20-2.0.0.symbols.alpha} | 5549 ++- ...symbols.amd64 => libgdal20-2.0.0.symbols.amd64} | 5593 ++- ...symbols.arm64 => libgdal20-2.0.0.symbols.arm64} | 5595 ++- ...symbols.armel => libgdal20-2.0.0.symbols.armel} | 5569 ++- ...symbols.armhf => libgdal20-2.0.0.symbols.armhf} | 5569 ++- ...mbols.common => libgdal20-2.0.0.symbols.common} |0 ...0.symbols.hppa => libgdal20-2.0.0.symbols.hppa} | 5595 ++- ...hurd-i386 => libgdal20-2.0.0.symbols.hurd-i386} | 5559 ++- ...symbols.mipsel => libgdal20-2.0.0.symbols.i386} | 5559 ++- ...0.symbols.ia64 => libgdal20-2.0.0.symbols.ia64} | 5607 ++- ...md64 => libgdal20-2.0.0.symbols.kfreebsd-amd64} | 5593 ++- ...-i386 => libgdal20-2.0.0.symbols.kfreebsd-i386} | 5559 ++- ...0.symbols.mips => libgdal20-2.0.0.symbols.mips} | 5609 ++-- ...symbols.i386 => libgdal20-2.0.0.symbols.mipsel} | 5559 ++- ...ols.powerpc => libgdal20-2.0.0.symbols.powerpc} | 5559 ++- ...symbols.ppc64 => libgdal20-2.0.0.symbols.ppc64} | 5549 ++- ...ols.ppc64el => libgdal20-2.0.0.symbols.ppc64el} | 5593 ++- ...symbols.s390x => libgdal20-2.0.0.symbols.s390x} | 5553 ++- ...symbols.sparc => libgdal20-2.0.0.symbols.sparc} | ++- ...l20.symbols.x32 => libgdal20-2.0.0.symbols.x32} | 5599 ++- debian/rules |8 +- 26 files changed, 52966 insertions(+), 52987 deletions(-) rename debian/{libgdal20.install => libgdal20-2.0.0.install} (100%) create mode 100644 debian/libgdal20-2.0.0.lintian-overrides rename debian/{libgdal20.symbols.alpha => libgdal20-2.0.0.symbols.alpha} (61%) rename debian/{libgdal20.symbols.amd64 => libgdal20-2.0.0.symbols.amd64} (61%) rename debian/{libgdal20.symbols.arm64 => libgdal20-2.0.0.symbols.arm64} (62%) rename debian/{libgdal20.symbols.armel => libgdal20-2.0.0.symbols.armel} (60%) rename debian/{libgdal20.symbols.armhf => libgdal20-2.0.0.symbols.armhf} (60%) rename debian/{libgdal20.symbols.common => libgdal20-2.0.0.symbols.common} (100%) rename debian/{libgdal20.symbols.hppa => libgdal20-2.0.0.symbols.hppa} (62%) rename debian/{libgdal20.symbols.hurd-i386 => libgdal20-2.0.0.symbols.hurd-i386} (61%) rename debian/{libgdal20.symbols.mipsel => libgdal20-2.0.0.symbols.i386} (60%) rename debian/{libgdal20.symbols.ia64 => libgdal20-2.0.0.symbols.ia64} (67%) rename debian/{libgdal20.symbols.kfreebsd-amd64 => libgdal20-2.0.0.symbols.kfreebsd-amd64} (62%) rename debian/{libgdal20.symbols.kfreebsd-i386 => libgdal20-2.0.0.symbols.kfreebsd-i386} (61%) rename debian/{libgdal20.symbols.mips => libgdal20-2.0.0.symbols.mips} (60%) rename debian/{libgdal20.symbols.i386 => libgdal20-2.0.0.symbols.mipsel} (60%) rename debian/{libgdal20.symbols.powerpc => libgdal20-2.0.0.symbols.powerpc} (60%) rename debian/{libgdal20.symbols.ppc64 => libgdal20-2.0.0.symbols.ppc64} (67%) rename debian/{libgdal20.symbols.ppc64el => libgdal20-2.0.0.symbols.ppc64el} (62%) rename debian/{libgdal20.symbols.s390x => libgdal20-2.0.0.symbols.s390x} (60%) rename debian/{libgdal20.symbols.sparc => libgdal20-2.0.0.symbols.sparc} (60%) rename debian/{libgdal20.symbols.x32 => libgdal20-2.0.0.symbols.x32} (62%) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.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
Processing of postgis_2.1.7+dfsg-2_amd64.changes
postgis_2.1.7+dfsg-2_amd64.changes uploaded successfully to localhost along with the files: postgis_2.1.7+dfsg-2.dsc postgis_2.1.7+dfsg-2.debian.tar.xz liblwgeom-2.1.7_2.1.7+dfsg-2_amd64.deb liblwgeom-dev_2.1.7+dfsg-2_amd64.deb libpostgis-java-doc_2.1.7+dfsg-2_all.deb libpostgis-java_2.1.7+dfsg-2_all.deb postgis-doc_2.1.7+dfsg-2_all.deb postgis_2.1.7+dfsg-2_amd64.deb postgresql-9.4-postgis-2.1-scripts_2.1.7+dfsg-2_all.deb postgresql-9.4-postgis-2.1_2.1.7+dfsg-2_amd64.deb postgresql-9.4-postgis-scripts_2.1.7+dfsg-2_all.deb Greetings, Your Debian queue daemon (running on host franck.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.1.7+dfsg-2_amd64.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 14 Jun 2015 21:55:36 +0200 Source: postgis Binary: postgis postgis-doc libpostgis-java libpostgis-java-doc liblwgeom-2.1.7 liblwgeom-dev postgresql-9.4-postgis-2.1 postgresql-9.4-postgis-scripts postgresql-9.4-postgis-2.1-scripts Architecture: source amd64 all Version: 2.1.7+dfsg-2 Distribution: unstable Urgency: medium Maintainer: Debian GIS Project Changed-By: Bas Couwenberg Description: liblwgeom-2.1.7 - PostGIS "Lightweight Geometry" library liblwgeom-dev - PostGIS "Lightweight Geometry" library - Development files libpostgis-java - Geographic objects support for PostgreSQL -- JDBC support libpostgis-java-doc - Geographic objects support for PostgreSQL -- JDBC documentation postgis- Geographic objects support for PostgreSQL postgis-doc - Geographic objects support for PostgreSQL -- documentation postgresql-9.4-postgis-2.1 - Geographic objects support for PostgreSQL 9.4 postgresql-9.4-postgis-2.1-scripts - PostGIS for PostgreSQL 9.4 -- scripts -- dummy package postgresql-9.4-postgis-scripts - Geographic objects support for PostgreSQL 9.4 -- scripts Closes: 788761 Changes: postgis (2.1.7+dfsg-2) unstable; urgency=medium . * Apply patch from Ubuntu to depend on libmaven-compiler-plugin-2.5-java, fixes build failure with maven-compiler-plugin 3.x. (closes: #788761) * Update copyright file, changes: - Drop .0 from GPL license shortnames - Align copyright holders - Group files & copyright by license Checksums-Sha1: bd38bba73353a98a5926a6625c9a2371c9eead80 3348 postgis_2.1.7+dfsg-2.dsc 223e4a576f886dc3080a7e16eb1affced05f6cf1 61092 postgis_2.1.7+dfsg-2.debian.tar.xz 8696b182f5e1cf61f241cf5232fc4dc03eb9b800 513202 liblwgeom-2.1.7_2.1.7+dfsg-2_amd64.deb 95af36aaf35debbc61a2c7a757ba60a0c7b30328 537380 liblwgeom-dev_2.1.7+dfsg-2_amd64.deb c3f9530b03b92d2e108c284d3c07cc3b3c9917a7 436508 libpostgis-java-doc_2.1.7+dfsg-2_all.deb bedf17d7e69567dd30d9f7309c8f4839c7fff693 436258 libpostgis-java_2.1.7+dfsg-2_all.deb 9fe2fa2f3b75a987358da29a31dfadda2ff3dceb 3006812 postgis-doc_2.1.7+dfsg-2_all.deb 7f895838c3852bb384a601589f459fbd41b0ee5b 518306 postgis_2.1.7+dfsg-2_amd64.deb 04c1d811b3b9118375829dc362eeb8de51d51512 364924 postgresql-9.4-postgis-2.1-scripts_2.1.7+dfsg-2_all.deb 74f1683867707149127c781bff570c5f6841ed2b 604554 postgresql-9.4-postgis-2.1_2.1.7+dfsg-2_amd64.deb b396204d85f12ea7f5c1aff631c5752b8c78af70 733116 postgresql-9.4-postgis-scripts_2.1.7+dfsg-2_all.deb Checksums-Sha256: 6164cf8285bcee70cafb1a85ddbe313eeb497bc4194d905e72514e5c4531d32a 3348 postgis_2.1.7+dfsg-2.dsc c000e00df3a37d2b11fb407556204ca72dc8136a4978db541d0ee167802846ea 61092 postgis_2.1.7+dfsg-2.debian.tar.xz e58748865520251f09acc84c09cf04f3d00d67fb872be26ed4e22a4edec5198c 513202 liblwgeom-2.1.7_2.1.7+dfsg-2_amd64.deb 85c8e112e8903acd7199fcb7bc46b8ae6fe1b9049460eee2fb3165e65ffe166c 537380 liblwgeom-dev_2.1.7+dfsg-2_amd64.deb 49e86d4a6d6aae40fc4cc55bc20b1193ac50e9282f510f9616f547378e074796 436508 libpostgis-java-doc_2.1.7+dfsg-2_all.deb fda277c290bb7e35897749cb99e1a6578d3a46eb077886add2078127f41f0c1e 436258 libpostgis-java_2.1.7+dfsg-2_all.deb 9224a871c00482e57eb46a6f6272320d6a8fe650cb99d30180bdb6e19493269c 3006812 postgis-doc_2.1.7+dfsg-2_all.deb 97463a656de65eac36e37404b44974b1c6cacb4d363b7bb2b345166248b6eaa3 518306 postgis_2.1.7+dfsg-2_amd64.deb 4feedfd353a7f27138d9ef3ab15bd4f7e3f149918ba91bea947b5f2892b7f035 364924 postgresql-9.4-postgis-2.1-scripts_2.1.7+dfsg-2_all.deb 73195c69becb5f090d0519e02462ab56e0d089048fb63e03eec21ca2dcf4c849 604554 postgresql-9.4-postgis-2.1_2.1.7+dfsg-2_amd64.deb c32e35c2501fe6282f1a2516e83371eb47180a89581ce04d087c5abce479aa65 733116 postgresql-9.4-postgis-scripts_2.1.7+dfsg-2_all.deb Files: be0854103b4c6408d4d8f6cb9b1151c0 3348 misc optional postgis_2.1.7+dfsg-2.dsc 15b695741f78f007936eb8eb9f673e0f 61092 misc optional postgis_2.1.7+dfsg-2.debian.tar.xz 127de3b241e4995fd95a2a6ccfa57fdf 513202 libs optional liblwgeom-2.1.7_2.1.7+dfsg-2_amd64.deb 8175e1eb50b969e0bcdf184a08365dbb 537380 libdevel optional liblwgeom-dev_2.1.7+dfsg-2_amd64.deb 63884b32b5e6c22459717f570bbf8536 436508 doc optional libpostgis-java-doc_2.1.7+dfsg-2_all.deb ed55db432371d1891db7480a51d7d9c9 436258 java optional libpostgis-java_2.1.7+dfsg-2_all.deb d5f890c785a9ce66cded5b957c44593a 3006812 doc optional postgis-doc_2.1.7+dfsg-2_all.deb 624cc6671fbe3e656a07412633bb0291 518306 misc optional postgis_2.1.7+dfsg-2_amd64.deb 2b5546c8c34543327b83f514e62c7e01 364924 misc optional postgresql-9.4-postgis-2.1-scripts_2.1.7+dfsg-2_all.deb aac0b470280a5c831521c2072cddb45f 604554 misc optional postgresql-9.4-postgis-2.1_2.1.7+dfsg-2_amd64.deb d49063628ab8a519d8f83c0e30e077a8 733116 misc optional postgresql-9.4-postgis-scripts_2.1.7+dfsg-2_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCgAGBQJVfg+gAAoJEGdQ8QrojUrx2okP/jk9CTGL2xO62LgK44pTt9jh WeE
Bug#788761: marked as done (postgis: FTBFS with maven-compiler-plugin 3.*)
Your message dated Sun, 14 Jun 2015 23:49:28 + with message-id and subject line Bug#788761: fixed in postgis 2.1.7+dfsg-2 has caused the Debian Bug report #788761, regarding postgis: FTBFS with maven-compiler-plugin 3.* to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 788761: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788761 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: postgis Version: 2.1.7+dfsg-1 Severity: serious Tags: patch Justification: fails to build from source (but built successfully in the past) User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu wily ubuntu-patch This package fails to build the architecture independent components with the newer maven-compiler-plugin. *** /tmp/tmpvkk2E1/bug_body In Ubuntu, the attached patch was applied to achieve the following: * Switch libmaven-compiler-plugin-java to libmaven-compiler-plugin-2.5-java (Fixes FTBFS) - update debian/control{,.in} Thanks for considering the patch. -- System Information: Debian Release: jessie/sid APT prefers trusty-updates APT policy: (500, 'trusty-updates'), (500, 'trusty-security'), (500, 'trusty-proposed'), (500, 'trusty'), (100, 'trusty-backports') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.13.0-54-generic (SMP w/8 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash diff -Nru postgis-2.1.7+dfsg/debian/changelog postgis-2.1.7+dfsg/debian/changelog diff -Nru postgis-2.1.7+dfsg/debian/control postgis-2.1.7+dfsg/debian/control --- postgis-2.1.7+dfsg/debian/control 2015-05-01 13:44:01.0 -0500 +++ postgis-2.1.7+dfsg/debian/control 2015-06-14 14:43:57.0 -0500 @@ -17,7 +17,7 @@ Build-Depends-Indep: default-jdk, openjdk-7-jdk | java7-sdk, libpostgresql-jdbc-java, fastjar, libjts-java (>= 1.7), maven2, libmaven-clean-plugin-java, libmaven-jar-plugin-java, - libsurefire-java, libmaven-compiler-plugin-java, + libsurefire-java, libmaven-compiler-plugin-2.5-java, libmaven-resources-plugin-java, libmaven-javadoc-plugin-java Standards-Version: 3.9.6 diff -Nru postgis-2.1.7+dfsg/debian/control.in postgis-2.1.7+dfsg/debian/control.in --- postgis-2.1.7+dfsg/debian/control.in 2015-03-30 13:52:26.0 -0500 +++ postgis-2.1.7+dfsg/debian/control.in 2015-06-14 14:43:57.0 -0500 @@ -17,7 +17,7 @@ Build-Depends-Indep: default-jdk, openjdk-7-jdk | java7-sdk, libpostgresql-jdbc-java, fastjar, libjts-java (>= 1.7), maven2, libmaven-clean-plugin-java, libmaven-jar-plugin-java, - libsurefire-java, libmaven-compiler-plugin-java, + libsurefire-java, libmaven-compiler-plugin-2.5-java, libmaven-resources-plugin-java, libmaven-javadoc-plugin-java Standards-Version: 3.9.6 --- End Message --- --- Begin Message --- Source: postgis Source-Version: 2.1.7+dfsg-2 We believe that the bug you reported is fixed in the latest version of postgis, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 788...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Bas Couwenberg (supplier of updated postgis package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sun, 14 Jun 2015 21:55:36 +0200 Source: postgis Binary: postgis postgis-doc libpostgis-java libpostgis-java-doc liblwgeom-2.1.7 liblwgeom-dev postgresql-9.4-postgis-2.1 postgresql-9.4-postgis-scripts postgresql-9.4-postgis-2.1-scripts Architecture: source amd64 all Version: 2.1.7+dfsg-2 Distribution: unstable Urgency: medium Maintainer: Debian GIS Project Changed-By: Bas Couwenberg Description: liblwgeom-2.1.7 - PostGIS "Lightweight Geometry" library liblwgeom-dev - PostGIS "Lightweight Geometry" library - Development files libpostgis-java - Geographic objects support for PostgreSQL -- JDBC support libpostgis-java-doc - Geographic objects support for PostgreSQL -- JDBC documentation postgis- Geographic objects support for PostgreSQL postgis-doc - Geographic objects support for PostgreSQL -- documentation postgresql-9.4-postgis-2.1 - Geographic objects support for PostgreSQL 9.4 postgresql-9.4-postgis-2.1-scripts - PostGI
r3146 - packages/mbsystem/trunk/debian
Author: hamish-guest Date: 2015-06-15 05:37:26 + (Mon, 15 Jun 2015) New Revision: 3146 Modified: packages/mbsystem/trunk/debian/changelog Log: new upstream release, the last to support GMT4 Modified: packages/mbsystem/trunk/debian/changelog === --- packages/mbsystem/trunk/debian/changelog2014-08-26 00:48:15 UTC (rev 3145) +++ packages/mbsystem/trunk/debian/changelog2015-06-15 05:37:26 UTC (rev 3146) @@ -1,11 +1,11 @@ -mbsystem (5.4.2202-0) UNRELEASED; urgency=low +mbsystem (5.4.2220-0) UNRELEASED; urgency=low * Initial packaging incorporating upstream support for shared libs * Split off -dev, -doc, -data packages * Added doc-base registration * Enable GSF support (now licensed by SAIC as LGPL 2.1) - -- M. Hamish Bowman Tue, 26 Aug 2014 12:46:48 +1200 + -- M. Hamish Bowman Mon, 15 Jun 2015 17:31:55 +1200 mbsystem (5.1.2-0) UNRELEASED; urgency=low ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel