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

[Git][xorg-team/lib/mesa][debian-experimental] rules: Fix mangling of the upstream version in clean target to work with upstream rc's.



Title: GitLab

Timo Aaltonen pushed to branch debian-experimental at X Strike Force / lib / mesa

Commits:

  • 6316844a
    by Timo Aaltonen at 2023-11-21T12:12:58+02:00
    rules: Fix mangling of the upstream version in clean target to work with upstream rc's.
    

2 changed files:

Changes:

  • debian/changelog
    1
    +mesa (23.3.0~rc4-2) UNRELEASED; urgency=medium
    
    2
    +
    
    3
    +  * rules: Fix mangling of the upstream version in clean target to work
    
    4
    +    with upstream rc's.
    
    5
    +
    
    6
    + -- Timo Aaltonen <tjaalton@debian.org>  Tue, 21 Nov 2023 12:12:54 +0200
    
    7
    +
    
    1 8
     mesa (23.3.0~rc4-1) experimental; urgency=medium
    
    2 9
     
    
    3 10
       [ Fabio Pedretti ]
    

  • debian/rules
    ... ... @@ -204,7 +204,7 @@ confflags += \
    204 204
     	$(confflags_VALGRIND)
    
    205 205
     
    
    206 206
     override_dh_clean: regen_control
    
    207
    -	sed -i 's/-.*//' VERSION
    
    207
    +	dpkg-parsechangelog | awk '/^Version:/ {print $$2}' | sed 's/-.*//;s/~/-/' > VERSION
    
    208 208
     	rm -rf .pc
    
    209 209
     	rm -rf build
    
    210 210
     	rm -rf configure bin/config.guess bin/config.sub config.h.in
    


  • Reply to: