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

[Git][xorg-team/font/xfonts-100dpi][debian-unstable] 4 commits: d/rules: Add missing build-arch, build-indep targets (Policy §4.9)



Title: GitLab

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

Commits:

  • bf4eb2ea
    by Simon McVittie at 2022-07-21T10:46:24+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: #999152
    
  • eb1382d7
    by Simon McVittie at 2022-07-21T10:46:31+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.
    
  • 308ddf0a
    by Simon McVittie at 2022-07-21T12:44:34+01:00
    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.
    
    Closes: #976571
    
  • 11e7a5f7
    by Simon McVittie at 2022-07-21T12:45:50+01:00
    Update changelog
    

3 changed files:

Changes:

  • debian/changelog
    1 1
     xfonts-100dpi (1:1.0.5) UNRELEASED; urgency=medium
    
    2 2
     
    
    3
    +  [ Julien Cristau ]
    
    3 4
       * Add Vcs-* control fields.
    
    4 5
       * Use https for xorg.freedesktop.org URLs in packaging.
    
    5 6
     
    
    6
    - -- Julien Cristau <jcristau@debian.org>  Mon, 02 Feb 2015 21:07:25 +0100
    
    7
    +  [ Simon McVittie ]
    
    8
    +  * d/rules: Add missing build-arch, build-indep targets (Policy §4.9)
    
    9
    +    (Closes: #999152)
    
    10
    +  * d/control: Declare that the build does not require (fake)root
    
    11
    +  * Use dh_update_autotools_config to update config.guess, config.sub
    
    12
    +    (Closes: #976571)
    
    13
    +
    
    14
    + -- Simon McVittie <smcv@debian.org>  Thu, 21 Jul 2022 11:19:37 +0100
    
    7 15
     
    
    8 16
     xfonts-100dpi (1:1.0.4+nmu1) unstable; urgency=medium
    
    9 17
     
    

  • debian/control
    ... ... @@ -2,10 +2,11 @@ Source: xfonts-100dpi
    2 2
     Section: fonts
    
    3 3
     Priority: optional
    
    4 4
     Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
    
    5
    -Build-Depends: debhelper (>= 7), pkg-config, xfonts-utils (>= 1:7.5)
    
    5
    +Build-Depends: debhelper (>= 10.8), pkg-config, xfonts-utils (>= 1:7.5)
    
    6 6
     Standards-Version: 3.8.3
    
    7 7
     Vcs-Git: https://anonscm.debian.org/git/pkg-xorg/font/xfonts-100dpi.git
    
    8 8
     Vcs-Browser: https://anonscm.debian.org/cgit/pkg-xorg/font/xfonts-100dpi.git
    
    9
    +Rules-Requires-Root: no
    
    9 10
     
    
    10 11
     Package: xfonts-100dpi
    
    11 12
     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: