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

[Git][ocaml-team/dh-ocaml][master] 3 commits: Add support for a different OCaml stdlib dir



Title: GitLab

Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / dh-ocaml

Commits:

  • cf1daec5
    by Stephane Glondu at 2024-08-03T04:02:20+02:00
    Add support for a different OCaml stdlib dir
    
  • 53f13bd0
    by Stephane Glondu at 2024-08-03T04:02:28+02:00
    Update changelog
    
  • edce4047
    by Stephane Glondu at 2024-08-03T05:07:17+02:00
    Prepare upload to unstable
    

2 changed files:

Changes:

  • debhelper/ocaml_dune.pm
    ... ... @@ -68,8 +68,10 @@ sub test {
    68 68
     
    
    69 69
     sub install {
    
    70 70
         my $this = shift;
    
    71
    +    my $ocaml_stdlib_dir = `ocamlc -where`;
    
    72
    +    chomp($ocaml_stdlib_dir);
    
    71 73
         $this->doit_in_sourcedir( "dune", "install", "--destdir=debian/tmp",
    
    72
    -        "--prefix=/usr", "--libdir=/usr/lib/ocaml",
    
    74
    +        "--prefix=/usr", "--libdir=$ocaml_stdlib_dir",
    
    73 75
             $this->get_dune_package_names() );
    
    74 76
     }
    
    75 77
     
    

  • debian/changelog
    1
    +dh-ocaml (2.2) unstable; urgency=medium
    
    2
    +
    
    3
    +  * Add support for a different OCaml stdlib dir
    
    4
    +
    
    5
    + -- Stéphane Glondu <glondu@debian.org>  Sat, 03 Aug 2024 05:07:03 +0200
    
    6
    +
    
    1 7
     dh-ocaml (2.1) unstable; urgency=medium
    
    2 8
     
    
    3 9
       * Cope with move of dynlink.cmxa in OCaml 5.2.0
    


  • Reply to: