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

[Git][ocaml-team/ocaml-theora][master] 4 commits: d/watch: correctly scan GitHub tags



Title: GitLab

Kyle Robbertze pushed to branch master at Debian OCaml Maintainers / ocaml-theora

Commits:

  • bd8e6f47
    by Kyle Robbertze at 2022-11-13T16:35:02+02:00
    d/watch: correctly scan GitHub tags
    
  • 3ca15f63
    by Kyle Robbertze at 2022-11-13T16:38:30+02:00
    d/control: add missing shlibs:Depends
    
  • e5f43be0
    by Kyle Robbertze at 2022-11-13T16:43:02+02:00
    fix watch url
    
    Gbp-Dch: Ignore
    
  • 0b573a8c
    by Kyle Robbertze at 2022-11-13T16:43:35+02:00
    prepare upload to unstable
    

3 changed files:

Changes:

  • debian/changelog
    1
    -ocaml-theora (0.4.0-2) UNRELEASED; urgency=medium
    
    1
    +ocaml-theora (0.4.0-2) unstable; urgency=low
    
    2 2
     
    
    3
    +  [ Debian Janitor ]
    
    3 4
       * Remove constraints unnecessary since buster (oldstable):
    
    4 5
         + Build-Depends: Drop versioned constraint on libtheora-dev.
    
    5 6
         + libtheora-ocaml-dev: Drop versioned constraint on libogg-ocaml-dev in
    
    6 7
           Depends.
    
    7 8
     
    
    8
    - -- Debian Janitor <janitor@jelmer.uk>  Mon, 31 Oct 2022 21:14:01 -0000
    
    9
    +  [ Kyle Robbertze ]
    
    10
    +  * d/watch: correctly scan GitHub tags
    
    11
    +  * d/control: add missing shlibs:Depends
    
    12
    +
    
    13
    + -- Kyle Robbertze <paddatrapper@debian.org>  Sun, 13 Nov 2022 16:38:44 +0200
    
    9 14
     
    
    10 15
     ocaml-theora (0.4.0-1) unstable; urgency=low
    
    11 16
     
    

  • debian/control
    ... ... @@ -3,16 +3,15 @@ Section: ocaml
    3 3
     Priority: optional
    
    4 4
     Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
    
    5 5
     Uploaders: Kyle Robbertze <paddatrapper@debian.org>
    
    6
    -Build-Depends:
    
    7
    - debhelper-compat (= 13),
    
    8
    - dh-buildinfo,
    
    9
    - ocaml-nox,
    
    10
    - dh-ocaml,
    
    11
    - libtheora-dev,
    
    12
    - libogg-ocaml-dev (>= 0.7.0),
    
    13
    - ocaml-dune,
    
    14
    - libdune-ocaml-dev,
    
    15
    - pkg-config
    
    6
    +Build-Depends: debhelper-compat (= 13),
    
    7
    +               dh-buildinfo,
    
    8
    +               dh-ocaml,
    
    9
    +               libdune-ocaml-dev,
    
    10
    +               libogg-ocaml-dev (>= 0.7.0),
    
    11
    +               libtheora-dev,
    
    12
    +               ocaml-dune,
    
    13
    +               ocaml-nox,
    
    14
    +               pkg-config
    
    16 15
     Standards-Version: 4.6.0
    
    17 16
     Rules-Requires-Root: no
    
    18 17
     Homepage: http://savonet.sourceforge.net/
    
    ... ... @@ -21,7 +20,7 @@ Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-theora
    21 20
     
    
    22 21
     Package: libtheora-ocaml
    
    23 22
     Architecture: any
    
    24
    -Depends: ${ocaml:Depends}, ${shlibs:Depends}, ${misc:Depends}
    
    23
    +Depends: ${misc:Depends}, ${ocaml:Depends}, ${shlibs:Depends}
    
    25 24
     Provides: ${ocaml:Provides}
    
    26 25
     Description: OCaml interface to the theora library
    
    27 26
      This package provides an interface to the theora library for
    
    ... ... @@ -34,8 +33,13 @@ Description: OCaml interface to the theora library
    34 33
     
    
    35 34
     Package: libtheora-ocaml-dev
    
    36 35
     Architecture: any
    
    37
    -Depends: ${ocaml:Depends}, libtheora-dev, libogg-ocaml-dev,
    
    38
    -         libtheora-ocaml (= ${binary:Version}), ocaml-findlib, ${misc:Depends}
    
    36
    +Depends: libogg-ocaml-dev,
    
    37
    +         libtheora-dev,
    
    38
    +         libtheora-ocaml (= ${binary:Version}),
    
    39
    +         ocaml-findlib,
    
    40
    +         ${misc:Depends},
    
    41
    +         ${ocaml:Depends},
    
    42
    +         ${shlibs:Depends}
    
    39 43
     Provides: ${ocaml:Provides}
    
    40 44
     Description: OCaml interface to the theora library
    
    41 45
      This package provides an interface to the theora library for
    

  • debian/watch
    1 1
     version=4
    
    2
    -https://github.com/savonet/ocaml-theora/releases .*/v?([0-9.]+)\.tar\.gz
    2
    +opts="filenamemangle=s%(?:.*?)?v?@ANY_VERSION@@ARCHIVE_EXT@%@PACKAGE@-$1.tar.gz%" \
    
    3
    +    https://github.com/savonet/ocaml-theora/tags \
    
    4
    +    (?:.*?/)?v?@ANY_VERSION@@ARCHIVE_EXT@


  • Reply to: