[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][ocaml-team/ocaml-ogg][master] 4 commits: New upstream version 0.7.2



Title: GitLab

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:

  • CHANGES
    1
    +0.7.2 (28-06-2022)
    
    2
    +=====
    
    3
    +* Use `caml_alloc_custom_mem` for packet allocations (#2348)
    
    4
    +
    
    1 5
     0.7.1 (07-03-2022)
    
    2 6
     =====
    
    3 7
     * Added decoder API for audio big array.
    

  • debian/changelog
    1
    +ocaml-ogg (0.7.2-1) unstable; urgency=medium
    
    2
    +
    
    3
    +  * New upstream version 0.7.2
    
    4
    +  * Bump standards-version to 4.6.1 (no change)
    
    5
    +
    
    6
    + -- Kyle Robbertze <paddatrapper@debian.org>  Tue, 12 Jul 2022 20:14:05 +0200
    
    7
    +
    
    1 8
     ocaml-ogg (0.7.1-1) unstable; urgency=medium
    
    2 9
     
    
    3 10
       * New upstream version 0.7.1
    

  • debian/control
    ... ... @@ -12,7 +12,7 @@ Build-Depends:
    12 12
                    ocaml-dune,
    
    13 13
                    libdune-ocaml-dev,
    
    14 14
                    pkg-config
    
    15
    -Standards-Version: 4.6.0
    
    15
    +Standards-Version: 4.6.1
    
    16 16
     Rules-Requires-Root: no
    
    17 17
     Homepage: http://savonet.sourceforge.net/
    
    18 18
     Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-ogg.git
    

  • dune-project
    1 1
     (lang dune 2.8)
    
    2
    -(version 0.7.1)
    
    2
    +(version 0.7.2)
    
    3 3
     (name ogg)
    
    4 4
     (source (github savonet/ocaml-ogg))
    
    5 5
     (license GPL-2.0)
    

  • ogg.opam
    1 1
     # This file is generated by dune, edit dune-project instead
    
    2 2
     opam-version: "2.0"
    
    3
    -version: "0.7.1"
    
    3
    +version: "0.7.2"
    
    4 4
     synopsis: "Bindings to libogg"
    
    5 5
     maintainer: ["The Savonet Team <savonet-users@lists.sourceforge.net>"]
    
    6 6
     authors: ["The Savonet Team <savonet-users@lists.sourceforge.net>"]
    

  • src/ogg_stubs.c
    ... ... @@ -258,7 +258,7 @@ static struct custom_operations packet_ops = {
    258 258
     value value_of_packet(ogg_packet *op) {
    
    259 259
       CAMLparam0();
    
    260 260
       CAMLlocal1(packet);
    
    261
    -  packet = caml_alloc_custom(&packet_ops, sizeof(ogg_packet *), 1, 0);
    
    261
    +  packet = caml_alloc_custom_mem(&packet_ops, sizeof(ogg_packet *), op->bytes);
    
    262 262
       Packet_val(packet) = copy_packet(op);
    
    263 263
       CAMLreturn(packet);
    
    264 264
     }
    


  • Reply to: