diff -Nru cppo-1.3.1/debian/changelog cppo-1.3.2/debian/changelog --- cppo-1.3.1/debian/changelog 2016-02-11 23:43:37.000000000 +0000 +++ cppo-1.3.2/debian/changelog 2016-06-01 09:35:35.000000000 +0000 @@ -1,3 +1,12 @@ +cppo (1.3.2-1) unstable; urgency=medium + + * Team upload + * New upstream release + * Bump Standards-Version to 3.9.8 + * Fix Vcs-Git + + -- Stéphane Glondu Wed, 01 Jun 2016 11:35:07 +0200 + cppo (1.3.1-2) unstable; urgency=medium * Team upload diff -Nru cppo-1.3.1/debian/control cppo-1.3.2/debian/control --- cppo-1.3.1/debian/control 2016-02-05 20:19:23.000000000 +0000 +++ cppo-1.3.2/debian/control 2016-06-01 09:35:35.000000000 +0000 @@ -8,9 +8,9 @@ ocaml-findlib (>= 1.4), dh-ocaml (>= 0.9~), debhelper (>= 9) -Standards-Version: 3.9.6 +Standards-Version: 3.9.8 Homepage: http://mjambon.com/cppo.html -Vcs-Git: https://anonscm.debian.org/git/git/pkg-ocaml-maint/packages/cppo.git +Vcs-Git: https://anonscm.debian.org/git/pkg-ocaml-maint/packages/cppo.git Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ocaml-maint/packages/cppo.git Package: cppo diff -Nru cppo-1.3.1/Makefile cppo-1.3.2/Makefile --- cppo-1.3.1/Makefile 2015-09-20 07:39:36.000000000 +0000 +++ cppo-1.3.2/Makefile 2016-04-20 19:04:21.000000000 +0000 @@ -1,10 +1,14 @@ -VERSION = 1.3.1 +VERSION = 1.3.2 ifeq "$(shell ocamlc -config |grep os_type)" "os_type: Win32" EXE=.exe else EXE= endif +OBJ_EXT := $(shell ocamlc -config 2>/dev/null \ + | grep '^ext_obj'|sed 's/ext_obj: //') +LIB_EXT := $(shell ocamlc -config 2>/dev/null \ + | grep '^ext_lib'|sed 's/ext_lib: //') ifndef OCAMLYACC OCAMLYACC = ocamlyacc @@ -34,7 +38,7 @@ OCAMLBUILD_IMPL := ocamlbuild_cppo.cma ifeq "${BEST}" ".native" -OCAMLBUILD_IMPL += ocamlbuild_cppo.cmxa ocamlbuild_cppo.a +OCAMLBUILD_IMPL += ocamlbuild_cppo.cmxa ocamlbuild_cppo$(LIB_EXT) ifeq "${NATDYNLINK}" "YES" OCAMLBUILD_IMPL += ocamlbuild_cppo.cmxs endif @@ -99,7 +103,7 @@ $(MAKE) -C test clean: - rm -f *.cm[iox] *.o *.annot *.conflicts *.automaton \ + rm -f *.cm[iox] *$(OBJ_EXT) *.annot *.conflicts *.automaton \ cppo \ cppo_parser.mli cppo_parser.ml cppo_lexer.ml cppo_version.ml $(MAKE) -C examples clean