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

[Git][ocaml-team/fieldslib][master] 6 commits: New upstream version 0.16.0



Title: GitLab

Julien Puydt pushed to branch master at Debian OCaml Maintainers / fieldslib

Commits:

  • 228cbe4b
    by Julien Puydt at 2023-07-06T11:17:32+02:00
    New upstream version 0.16.0
  • a14af698
    by Julien Puydt at 2023-07-06T11:17:32+02:00
    Update upstream source from tag 'upstream/0.16.0'
    
    Update to upstream version '0.16.0'
    with Debian dir 005e221d9051fb561b257aa2e0dc1b154ae7b41d
  • e9e09a94
    by Julien Puydt at 2023-07-06T11:17:53+02:00
    Package new upstream 0.16.0
    
  • 43ee7f0f
    by Julien Puydt at 2023-07-06T11:18:14+02:00
    Bump standards-version to 4.6.2
    
  • b02c1a42
    by Julien Puydt at 2023-07-06T11:18:39+02:00
    Fix compilation with recent dune
    
  • a7154273
    by Julien Puydt at 2023-07-06T11:18:50+02:00
    Prepare for upload
    

5 changed files:

Changes:

  • LICENSE.md
    1 1
     The MIT License
    
    2 2
     
    
    3
    -Copyright (c) 2009--2022 Jane Street Group, LLC <opensource@janestreet.com>
    
    3
    +Copyright (c) 2009--2023 Jane Street Group, LLC <opensource-contacts@janestreet.com>
    
    4 4
     
    
    5 5
     Permission is hereby granted, free of charge, to any person obtaining a copy
    
    6 6
     of this software and associated documentation files (the "Software"), to deal
    

  • debian/changelog
    1
    +fieldslib (1:0.16.0-1) unstable; urgency=medium
    
    2
    +
    
    3
    +  * Team upload.
    
    4
    +  * New upstream release.
    
    5
    +  * Bump standards-version to 4.6.2
    
    6
    +  * Fix compilation with recent dune
    
    7
    +
    
    8
    + -- Julien Puydt <jpuydt@debian.org>  Thu, 06 Jul 2023 11:18:40 +0200
    
    9
    +
    
    1 10
     fieldslib (1:0.15.0-1) unstable; urgency=medium
    
    2 11
     
    
    3 12
       [ Stéphane Glondu ]
    

  • debian/control
    ... ... @@ -12,7 +12,7 @@ Build-Depends:
    12 12
      ocaml-dune,
    
    13 13
      libbase-ocaml-dev (>= 0.14),
    
    14 14
      dh-ocaml
    
    15
    -Standards-Version: 4.6.1
    
    15
    +Standards-Version: 4.6.2
    
    16 16
     Rules-Requires-Root: no
    
    17 17
     Vcs-Browser: https://salsa.debian.org/ocaml-team/fieldslib
    
    18 18
     Vcs-Git: https://salsa.debian.org/ocaml-team/fieldslib.git
    

  • debian/rules
    ... ... @@ -11,7 +11,7 @@ override_dh_auto_build:
    11 11
     	dune build -p fieldslib
    
    12 12
     
    
    13 13
     override_dh_auto_install:
    
    14
    -	dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=..$(OCAML_STDLIB_DIR)
    
    14
    +	dune install --destdir=$(DESTDIR) --prefix=/usr --libdir=$(OCAML_STDLIB_DIR)
    
    15 15
     	rm -f $(DESTDIR)/usr/doc/fieldslib/LICENSE.md
    
    16 16
     
    
    17 17
     override_dh_dwz:

  • fieldslib.opam
    1 1
     opam-version: "2.0"
    
    2
    -version: "v0.15.0"
    
    2
    +version: "v0.16.0"
    
    3 3
     maintainer: "Jane Street developers"
    
    4 4
     authors: ["Jane Street Group, LLC"]
    
    5 5
     homepage: "https://github.com/janestreet/fieldslib"
    
    ... ... @@ -11,10 +11,11 @@ build: [
    11 11
       ["dune" "build" "-p" name "-j" jobs]
    
    12 12
     ]
    
    13 13
     depends: [
    
    14
    -  "ocaml" {>= "4.08.0"}
    
    15
    -  "base"  {>= "v0.15" & < "v0.16"}
    
    14
    +  "ocaml" {>= "4.14.0"}
    
    15
    +  "base"  {>= "v0.16" & < "v0.17"}
    
    16 16
       "dune"  {>= "2.0.0"}
    
    17 17
     ]
    
    18
    +available: arch != "arm32" & arch != "x86_32"
    
    18 19
     synopsis: "Syntax extension to define first class values representing record fields, to get and set record fields, iterate and fold over all fields of a record and create new record values"
    
    19 20
     description: "
    
    20 21
     Part of Jane Street's Core library
    


  • Reply to: