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

[Git][ftp-team/dak][master] fix: no oldoldstable for a week



Title: GitLab

Ansgar pushed to branch master at Debian FTP Team / dak

Commits:

  • 20045a88
    by Ansgar at 2025-08-03T20:22:37+02:00
    fix: no oldoldstable for a week
    

1 changed file:

Changes:

  • config/debian/dinstall.functions
    ... ... @@ -219,7 +219,8 @@ function copyoverrides() {
    219 219
             STABLE=$(dak admin suite-config get-value stable codename)
    
    220 220
             OLDSTABLE=$(dak admin suite-config get-value oldstable codename)
    
    221 221
             OLDOLDSTABLE=$(dak admin suite-config get-value oldoldstable codename)
    
    222
    -        for ofile in ${overridedir}/override.{$OLDOLDSTABLE,$OLDSTABLE,$STABLE,$TESTING,sid}.{,extra.}{main,contrib,non-free}*; do
    
    222
    +        #for ofile in ${overridedir}/override.{$OLDOLDSTABLE,$OLDSTABLE,$STABLE,$TESTING,sid}.{,extra.}{main,contrib,non-free}*; do
    
    223
    +        for ofile in ${overridedir}/override.{$OLDSTABLE,$STABLE,$TESTING,sid}.{,extra.}{main,contrib,non-free}*; do
    
    223 224
                 bname=${ofile##*/}
    
    224 225
                 gzip -9cv --rsyncable  --no-name ${ofile} > ${indices}/${bname}.gz
    
    225 226
                 chmod g+w ${indices}/${bname}.gz
    
    ... ... @@ -357,15 +358,17 @@ function mkfilesindices() {
    357 358
         TESTING=$(dak admin suite-config get-value testing codename)
    
    358 359
         STABLE=$(dak admin suite-config get-value stable codename)
    
    359 360
         OLDSTABLE=$(dak admin suite-config get-value oldstable codename)
    
    360
    -    OLDOLDSTABLE=$(dak admin suite-config get-value oldoldstable codename)
    
    361
    +    # OLDOLDSTABLE=$(dak admin suite-config get-value oldoldstable codename)
    
    361 362
     
    
    362 363
         (cd $base/ftp/
    
    363
    -     for dist in sid $OLDOLDSTABLE $OLDSTABLE $STABLE $TESTING; do
    
    364
    +     #for dist in sid $OLDOLDSTABLE $OLDSTABLE $STABLE $TESTING; do
    
    365
    +     for dist in sid $OLDSTABLE $STABLE $TESTING; do
    
    364 366
     	 find ./dists/$dist/main/i18n/ \! -type d | sort -u | gzip -9 --rsyncable --no-name > $base/ftp/indices/files/components/translation-$dist.list.gz
    
    365 367
          done
    
    366 368
         )
    
    367 369
     
    
    368
    -    (cat ../arch-i386.files ../arch-amd64.files; zcat suite-proposed-updates.list.gz ; zcat translation-sid.list.gz ; zcat translation-$OLDOLDSTABLE.list.gz ; zcat translation-$OLDSTABLE.list.gz ; zcat translation-$STABLE.list.gz ; zcat translation-$TESTING.list.gz) |
    
    370
    +    # (cat ../arch-i386.files ../arch-amd64.files; zcat suite-proposed-updates.list.gz ; zcat translation-sid.list.gz ; zcat translation-$OLDOLDSTABLE.list.gz ; zcat translation-$OLDSTABLE.list.gz ; zcat translation-$STABLE.list.gz ; zcat translation-$TESTING.list.gz) |
    
    371
    +    (cat ../arch-i386.files ../arch-amd64.files; zcat suite-proposed-updates.list.gz ; zcat translation-sid.list.gz ; zcat translation-$OLDSTABLE.list.gz ; zcat translation-$STABLE.list.gz ; zcat translation-$TESTING.list.gz) |
    
    369 372
             sort -u | poolfirst > ../typical.files
    
    370 373
     
    
    371 374
         rm -f $ARCHLIST
    


  • Reply to: