diff -Nru ocurl-0.7.6/debian/changelog ocurl-0.7.6/debian/changelog --- ocurl-0.7.6/debian/changelog 2016-05-30 14:54:09.000000000 +0000 +++ ocurl-0.7.6/debian/changelog 2016-05-31 08:55:05.000000000 +0000 @@ -1,3 +1,12 @@ +ocurl (0.7.6-2) unstable; urgency=medium + + * Team upload + * Fix installation on bytecode-only architectures + * Switch debian/copyright to format 1.0 + * Bump Standards-Version to 3.9.8 + + -- Stéphane Glondu Tue, 31 May 2016 10:54:26 +0200 + ocurl (0.7.6-1) unstable; urgency=medium * Team upload diff -Nru ocurl-0.7.6/debian/control ocurl-0.7.6/debian/control --- ocurl-0.7.6/debian/control 2016-05-30 14:11:26.000000000 +0000 +++ ocurl-0.7.6/debian/control 2016-05-31 08:55:04.000000000 +0000 @@ -15,7 +15,7 @@ ocaml-findlib (>= 1.2.5), libkrb5-dev, dh-ocaml (>= 0.9) -Standards-Version: 3.9.2 +Standards-Version: 3.9.8 Vcs-Git: https://anonscm.debian.org/git/pkg-ocaml-maint/packages/ocurl.git Vcs-Browser: https://anonscm.debian.org/git/pkg-ocaml-maint/packages/ocurl.git Homepage: http://ocurl.forge.ocamlcore.org diff -Nru ocurl-0.7.6/debian/copyright ocurl-0.7.6/debian/copyright --- ocurl-0.7.6/debian/copyright 2016-05-30 14:11:26.000000000 +0000 +++ ocurl-0.7.6/debian/copyright 2016-05-31 08:55:04.000000000 +0000 @@ -1,31 +1,35 @@ -This package was debianized by Enrico Tassi on -Mon, 17 Jan 2005 17:51:22 +0100. - -It was downloaded from http://sourceforge.net/projects/ocurl - -Copyright: - -Upstream Author: Lars Nilsson - -License: - -Copyright (c) 2003, Lars Nilsson, - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Packaged-By: Enrico Tassi +Packaged-Date: Mon, 17 Jan 2005 17:51:22 +0100 +Source: http://sourceforge.net/projects/ocurl + +Files: * +Copyright: 2003-2008, Lars Nilsson + 2009, ygrek + 2013-2014, Thomas Leonard +License: MIT + +Files: debian/* +Copyright: 2005-2009, Enrico Tassi + 2016-, Stéphane Glondu +License: MIT + +License: MIT + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + . + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff -Nru ocurl-0.7.6/debian/libcurl-ocaml-dev.install.in ocurl-0.7.6/debian/libcurl-ocaml-dev.install.in --- ocurl-0.7.6/debian/libcurl-ocaml-dev.install.in 2016-05-30 14:11:26.000000000 +0000 +++ ocurl-0.7.6/debian/libcurl-ocaml-dev.install.in 2016-05-31 08:31:04.000000000 +0000 @@ -1,5 +1,5 @@ @OCamlStdlibDir@/curl/META -@OCamlStdlibDir@/curl/*.o +OPT: @OCamlStdlibDir@/curl/*.o @OCamlStdlibDir@/curl/*.a @OCamlStdlibDir@/curl/*.cm* @OCamlStdlibDir@/curl/*.ml* diff -Nru ocurl-0.7.6/debian/patches/0003-Fix-installation-on-bytecode-only-architectures.patch ocurl-0.7.6/debian/patches/0003-Fix-installation-on-bytecode-only-architectures.patch --- ocurl-0.7.6/debian/patches/0003-Fix-installation-on-bytecode-only-architectures.patch 1970-01-01 00:00:00.000000000 +0000 +++ ocurl-0.7.6/debian/patches/0003-Fix-installation-on-bytecode-only-architectures.patch 2016-05-31 08:08:28.000000000 +0000 @@ -0,0 +1,25 @@ +From: Stephane Glondu +Date: Tue, 31 May 2016 10:07:54 +0200 +Subject: Fix installation on bytecode-only architectures + +Signed-off-by: Stephane Glondu +--- + Makefile.in | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile.in b/Makefile.in +index 0b7ee58..bdcc545 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -42,9 +42,9 @@ TARGETS += curl_lwt.cmx + endif + endif + +-INSTALL_TARGETS = curl$(EXT_LIB) curl.cmi curl.mli $(TARGETS) ++INSTALL_TARGETS = $(wildcard curl$(EXT_LIB)) curl.cmi curl.mli $(TARGETS) + ifneq (@OCAML_PKG_lwt@,no) +-INSTALL_TARGETS += curl_lwt.cmi curl_lwt.mli curl_lwt$(EXT_OBJ) ++INSTALL_TARGETS += curl_lwt.cmi curl_lwt.mli $(wildcard curl_lwt$(EXT_OBJ)) + endif + + all: diff -Nru ocurl-0.7.6/debian/patches/series ocurl-0.7.6/debian/patches/series --- ocurl-0.7.6/debian/patches/series 2016-05-30 14:13:15.000000000 +0000 +++ ocurl-0.7.6/debian/patches/series 2016-05-31 08:08:28.000000000 +0000 @@ -1,2 +1,3 @@ 0003-CURLE_URL_MALFORMAT_USER-is-obsolete.patch 0002-Disable-Internet-using-tests.patch +0003-Fix-installation-on-bytecode-only-architectures.patch