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

[Git][xorg-team/lib/glw][debian-unstable] 4 commits: Import 8.0.0-1.2~exp1 NMU



Title: GitLab

Julien Cristau pushed to branch debian-unstable at X Strike Force / lib / glw

Commits:

  • a1fe66c3
    by Julien Cristau at 2024-03-31T09:40:56+02:00
    Import 8.0.0-1.2~exp1 NMU
    
  • 2961812e
    by Julien Cristau at 2024-03-31T09:42:41+02:00
    Merge branch 'time64_t' into debian-unstable
    
  • f54d09cf
    by Julien Cristau at 2024-03-31T10:11:55+02:00
    Actually rename library package for 64-bit time_t transition (closes: #1062170).
    
  • 78d2a09e
    by Julien Cristau at 2024-03-31T10:14:59+02:00
    Upload to unstable
    

6 changed files:

Changes:

  • debian/changelog
    1
    -glw (8.0.0-1.2) UNRELEASED; urgency=low
    
    1
    +glw (8.0.0-2) unstable; urgency=low
    
    2 2
     
    
    3
    +  [ Debian Janitor ]
    
    3 4
       * Trim trailing whitespace.
    
    4 5
       * Use secure copyright file specification URI.
    
    5 6
       * Bump debhelper from deprecated 9 to 12.
    
    ... ... @@ -14,7 +15,18 @@ glw (8.0.0-1.2) UNRELEASED; urgency=low
    14 15
         + debian/rules: Drop --fail-missing argument to dh_missing, which is now the
    
    15 16
           default.
    
    16 17
     
    
    17
    - -- Debian Janitor <janitor@jelmer.uk>  Sat, 06 Jun 2020 16:59:52 -0000
    
    18
    +  [ Julien Cristau ]
    
    19
    +  * Actually rename library package for 64-bit time_t transition
    
    20
    +    (closes: #1062170).
    
    21
    +
    
    22
    + -- Julien Cristau <jcristau@debian.org>  Sun, 31 Mar 2024 10:13:37 +0200
    
    23
    +
    
    24
    +glw (8.0.0-1.2~exp1) experimental; urgency=medium
    
    25
    +
    
    26
    +  * Non-maintainer upload.
    
    27
    +  * Rename libraries for 64-bit time_t transition.
    
    28
    +
    
    29
    + -- Lukas Märdian <slyon@debian.org>  Wed, 31 Jan 2024 14:54:08 +0000
    
    18 30
     
    
    19 31
     glw (8.0.0-1.1) unstable; urgency=low
    
    20 32
     
    

  • debian/control
    ... ... @@ -17,12 +17,15 @@ Vcs-Git: https://salsa.debian.org/xorg-team/lib/glw.git
    17 17
     Vcs-Browser: https://salsa.debian.org/xorg-team/lib/glw
    
    18 18
     Homepage: https://mesa3d.sourceforge.net/
    
    19 19
     
    
    20
    -Package: libglw1-mesa
    
    20
    +Package: libglw1t64-mesa
    
    21
    +Replaces: libglw1-mesa
    
    22
    +Breaks: libglw1-mesa (<< ${source:Version})
    
    21 23
     Architecture: any
    
    22 24
     Depends:
    
    23 25
      ${shlibs:Depends},
    
    24 26
      ${misc:Depends},
    
    25
    -Provides: libglw1
    
    27
    +Provides: ${t64:Provides}
    
    28
    +X-Time64-Compat: libglw1-mesa
    
    26 29
     Pre-Depends: ${misc:Pre-Depends}
    
    27 30
     Multi-Arch: same
    
    28 31
     Description: GL widget library for Athena and Motif -- runtime
    
    ... ... @@ -33,7 +36,7 @@ Package: libglw1-mesa-dev
    33 36
     Section: libdevel
    
    34 37
     Architecture: any
    
    35 38
     Depends:
    
    36
    - libglw1-mesa (= ${binary:Version}),
    
    39
    + libglw1t64-mesa (= ${binary:Version}),
    
    37 40
      libx11-dev,
    
    38 41
      libxt-dev,
    
    39 42
      libmotif-dev | lesstif2-dev,
    

  • debian/libglw1-mesa.shlibs deleted
    1
    -libGLw 1 libglw1-mesa | libglw1

  • debian/libglw1-mesa.installdebian/libglw1t64-mesa.install

  • debian/libglw1-mesa.lintian-overridesdebian/libglw1t64-mesa.lintian-overrides

  • debian/rules
    1 1
     #!/usr/bin/make -f
    
    2 2
     
    
    3
    +DEB_HOST_ARCH_BITS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_BITS)
    
    4
    +
    
    3 5
     override_dh_auto_configure:
    
    4 6
     	dh_auto_configure -- --disable-silent-rules --enable-motif
    
    5 7
     
    
    ... ... @@ -9,6 +11,13 @@ override_dh_install:
    9 11
     	rm -f debian/tmp/usr/include/GL/*P.h
    
    10 12
     	dh_install
    
    11 13
     
    
    14
    +override_dh_makeshlibs:
    
    15
    +ifeq ($(DEB_HOST_ARCH_BITS), 32)
    
    16
    +	dh_makeshlibs -V'libglw1t64-mesa'
    
    17
    +else
    
    18
    +	dh_makeshlibs -V'libglw1t64-mesa | libglw1'
    
    19
    +endif
    
    20
    +
    
    12 21
     %:
    
    13 22
     	dh $@ --with quilt --builddirectory=build/
    
    14 23
     
    


  • Reply to: