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

[Git][xorg-team/app/apitrace][debian-unstable] 2 commits: rules: Attempt to fix built-using to have the source package version, not binNMU.



Title: GitLab

Timo Aaltonen pushed to branch debian-unstable at X Strike Force / app / apitrace

Commits:

2 changed files:

Changes:

  • debian/changelog
    1
    +apitrace (8.0+repack-2) unstable; urgency=medium
    
    2
    +
    
    3
    +  * rules: Attempt to fix built-using to have the source package
    
    4
    +    version, not binNMU.
    
    5
    +
    
    6
    + -- Timo Aaltonen <tjaalton@debian.org>  Thu, 12 Sep 2019 15:46:48 +0300
    
    7
    +
    
    1 8
     apitrace (8.0+repack-1) unstable; urgency=medium
    
    2 9
     
    
    3 10
       * New upstream release.
    

  • debian/rules
    ... ... @@ -30,11 +30,13 @@ override_dh_missing:
    30 30
     override_dh_gencontrol:
    
    31 31
     	echo "built-using:Depends=zlib (= $(shell dpkg-query -s zlib1g-dev \
    
    32 32
                                                    | grep Version: \
    
    33
    -                                               | cut -d' ' -f2))" \
    
    33
    +                                               | cut -d' ' -f2 \
    
    34
    +                                               | sed 's/+.*//'))" \
    
    34 35
                     >> debian/apitrace-tracers.substvars
    
    35 36
     	echo "built-using:Depends=snappy (= $(shell dpkg-query -s libsnappy-dev \
    
    36 37
                                                    | grep Version: \
    
    37
    -                                               | cut -d' ' -f2))" \
    
    38
    +                                               | cut -d' ' -f2 \
    
    39
    +                                               | sed 's/+.*//'))" \
    
    38 40
                     >> debian/apitrace-tracers.substvars
    
    39 41
     	dh_gencontrol
    
    40 42
     
    


  • Reply to: