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

[Git][xorg-team/font/xfonts-cyrillic][debian-unstable] 7 commits: Import Debian version 1.0.5



Title: GitLab

Timo Aaltonen pushed to branch debian-unstable at X Strike Force / font / xfonts-cyrillic

Commits:

  • 41daa3f4
    by Holger Levsen at 2022-07-21T10:49:32+01:00
    Import Debian version 1.0.5
    
    xfonts-cyrillic (1:1.0.5) unstable; urgency=medium
    ..
      * Non maintainer upload by the Reproducible Builds team.
      * No source change upload to rebuild on buildd with .buildinfo files.
    
  • 33e4c3f2
    by Simon McVittie at 2022-07-21T11:12:07+01:00
    Merge changes from XSF git with changes from NMU
    
    The NMU mistakenly had a non-NMU-style version number, so incorporating
    it into the changelog seems like the easiest way to avoid a
    version-number collision.
    
  • bd08f103
    by Simon McVittie at 2022-07-21T13:06:42+01:00
    d/control: Update Vcs-* for migration to salsa.debian.org
    
  • 4b2f9a5f
    by Simon McVittie at 2022-07-21T13:06:42+01:00
    d/rules: Add missing build-arch, build-indep targets (Policy §4.9)
    
    diffoscope confirms that this does not alter the contents of the
    resulting binary package.
    
    Closes: #999227
    
  • 29cffc19
    by Simon McVittie at 2022-07-21T13:06:42+01:00
    d/control: Declare that the build does not require (fake)root
    
    diffoscope confirms that this does not alter the contents of the
    resulting binary package.
    
  • 1b9d9460
    by Simon McVittie at 2022-07-21T13:06:42+01:00
    d/rules: Use dh_update_autotools_config to update config.guess, config.sub
    
    The originals will be put back automatically by dh_clean.
    
    diffoscope confirms that this does not alter the contents of the
    resulting binary package.
    
    Fixes the equivalent of #856271, #976471, #976571 for this package.
    
  • 65e8127d
    by Simon McVittie at 2022-07-21T13:06:42+01:00
    Update changelog
    

3 changed files:

Changes:

  • debian/changelog
    1
    -xfonts-cyrillic (1:1.0.5) UNRELEASED; urgency=medium
    
    1
    +xfonts-cyrillic (1:1.0.6) UNRELEASED; urgency=medium
    
    2 2
     
    
    3
    +  [ Julien Cristau ]
    
    3 4
       * Switch Vcs-* control fields to https.
    
    4 5
       * Switch upstream URLs in packaging to https.
    
    5 6
     
    
    6
    - -- Julien Cristau <jcristau@debian.org>  Sun, 21 Aug 2016 19:31:15 +0200
    
    7
    +  [ Simon McVittie ]
    
    8
    +  * d/control: Update Vcs-* for migration to salsa.debian.org
    
    9
    +  * d/rules: Add missing build-arch, build-indep targets (Policy §4.9)
    
    10
    +    (Closes: #999227)
    
    11
    +  * d/control: Declare that the build does not require (fake)root
    
    12
    +  * d/rules: Use dh_update_autotools_config to update config.guess,
    
    13
    +    config.sub
    
    14
    +
    
    15
    + -- Simon McVittie <smcv@debian.org>  Thu, 21 Jul 2022 11:21:28 +0100
    
    16
    +
    
    17
    +xfonts-cyrillic (1:1.0.5) unstable; urgency=medium
    
    18
    +
    
    19
    +  * Non maintainer upload by the Reproducible Builds team.
    
    20
    +  * No source change upload to rebuild on buildd with .buildinfo files.
    
    21
    +
    
    22
    + -- Holger Levsen <holger@debian.org>  Fri, 01 Jan 2021 17:23:03 +0100
    
    7 23
     
    
    8 24
     xfonts-cyrillic (1:1.0.4) unstable; urgency=medium
    
    9 25
     
    

  • debian/control
    ... ... @@ -3,12 +3,13 @@ Section: fonts
    3 3
     Priority: optional
    
    4 4
     Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
    
    5 5
     Build-Depends:
    
    6
    - debhelper (>= 7),
    
    6
    + debhelper (>= 10.8),
    
    7 7
      xfonts-utils (>= 1:7.5),
    
    8 8
      pkg-config,
    
    9 9
     Standards-Version: 3.8.3
    
    10
    -Vcs-Git: https://anonscm.debian.org/git/pkg-xorg/font/xfonts-cyrillic.git
    
    11
    -Vcs-Browser: https://anonscm.debian.org/git/pkg-xorg/font/xfonts-cyrillic.git
    
    10
    +Vcs-Git: https://salsa.debian.org/xorg-team/font/xfonts-cyrillic.git
    
    11
    +Vcs-Browser: https://salsa.debian.org/xorg-team/font/xfonts-cyrillic
    
    12
    +Rules-Requires-Root: no
    
    12 13
     
    
    13 14
     Package: xfonts-cyrillic
    
    14 15
     Architecture: all
    

  • debian/rules
    ... ... @@ -35,8 +35,12 @@ else
    35 35
     	confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
    
    36 36
     endif
    
    37 37
     
    
    38
    -$(STAMP_DIR)/build-%:
    
    38
    +$(STAMP_DIR)/prepare:
    
    39 39
     	mkdir -p $(STAMP_DIR)
    
    40
    +	dh_update_autotools_config
    
    41
    +	>$@
    
    42
    +
    
    43
    +$(STAMP_DIR)/build-%: $(STAMP_DIR)/prepare
    
    40 44
     	mkdir -p $*-build
    
    41 45
     	cd $*-build && \
    
    42 46
     	../$*/configure \
    
    ... ... @@ -48,9 +52,13 @@ $(STAMP_DIR)/build-%:
    48 52
     	>$@
    
    49 53
     
    
    50 54
     build: build-stamp
    
    55
    +build-indep: build-stamp
    
    51 56
     build-stamp: $(addprefix $(STAMP_DIR)/build-,$(SUBDIRS))
    
    52 57
     	>$@
    
    53 58
     
    
    59
    +build-arch:
    
    60
    +# Nothing to do
    
    61
    +
    
    54 62
     clean:
    
    55 63
     	dh_testdir
    
    56 64
     	rm -f config.cache config.log config.status
    


  • Reply to: