Kyle Robbertze pushed to branch master at Debian OCaml Maintainers / ocaml-ogg
Commits: 2487ec91 by Kyle Robbertze at 2022-07-12T20:13:21+02:00 New upstream version 0.7.2 - - - - - d1db5df1 by Kyle Robbertze at 2022-07-12T20:13:22+02:00 Update upstream source from tag 'upstream/0.7.2' Update to upstream version '0.7.2' with Debian dir 4b976459ac352b2e91fbf453b194c0b82409ec81 - - - - - 271887a9 by Kyle Robbertze at 2022-07-12T20:13:58+02:00 Bump standards-version to 4.6.1 (no change) - - - - - f80bbd96 by Kyle Robbertze at 2022-07-12T20:15:49+02:00 prepare upload to unstable - - - - - 6 changed files: - CHANGES - debian/changelog - debian/control - dune-project - ogg.opam - src/ogg_stubs.c Changes: ===================================== CHANGES ===================================== @@ -1,3 +1,7 @@ +0.7.2 (28-06-2022) +===== +* Use `caml_alloc_custom_mem` for packet allocations (#2348) + 0.7.1 (07-03-2022) ===== * Added decoder API for audio big array. ===================================== debian/changelog ===================================== @@ -1,3 +1,10 @@ +ocaml-ogg (0.7.2-1) unstable; urgency=medium + + * New upstream version 0.7.2 + * Bump standards-version to 4.6.1 (no change) + + -- Kyle Robbertze <[email protected]> Tue, 12 Jul 2022 20:14:05 +0200 + ocaml-ogg (0.7.1-1) unstable; urgency=medium * New upstream version 0.7.1 ===================================== debian/control ===================================== @@ -12,7 +12,7 @@ Build-Depends: ocaml-dune, libdune-ocaml-dev, pkg-config -Standards-Version: 4.6.0 +Standards-Version: 4.6.1 Rules-Requires-Root: no Homepage: http://savonet.sourceforge.net/ Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-ogg.git ===================================== dune-project ===================================== @@ -1,5 +1,5 @@ (lang dune 2.8) -(version 0.7.1) +(version 0.7.2) (name ogg) (source (github savonet/ocaml-ogg)) (license GPL-2.0) ===================================== ogg.opam ===================================== @@ -1,6 +1,6 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "0.7.1" +version: "0.7.2" synopsis: "Bindings to libogg" maintainer: ["The Savonet Team <[email protected]>"] authors: ["The Savonet Team <[email protected]>"] ===================================== src/ogg_stubs.c ===================================== @@ -258,7 +258,7 @@ static struct custom_operations packet_ops = { value value_of_packet(ogg_packet *op) { CAMLparam0(); CAMLlocal1(packet); - packet = caml_alloc_custom(&packet_ops, sizeof(ogg_packet *), 1, 0); + packet = caml_alloc_custom_mem(&packet_ops, sizeof(ogg_packet *), op->bytes); Packet_val(packet) = copy_packet(op); CAMLreturn(packet); } View it on GitLab: https://salsa.debian.org/ocaml-team/ocaml-ogg/-/compare/560eb2c88bb477179863414ae2ccd495d87215eb...f80bbd96f6eb31fc000c89df7c1bb3807c71afc0 -- View it on GitLab: https://salsa.debian.org/ocaml-team/ocaml-ogg/-/compare/560eb2c88bb477179863414ae2ccd495d87215eb...f80bbd96f6eb31fc000c89df7c1bb3807c71afc0 You're receiving this email because of your account on salsa.debian.org.

