Ticket #33820: base-outdated.patch

File base-outdated.patch, 906 bytes (added by seanfarley (Sean Farley), 12 years ago)
  • base/src/macports1.0/macports.tcl

    # HG changeset patch
    # User Sean Farley <sean@mcs.anl.gov>
    # Date 1332961259 18000
    # Node ID 90e8ddbc29ba190e66262274720ed29416d7f325
    # Parent  866e0583954b414712173996926e79b1b4cd3a9f
    base: add ui_msg to output outdated ports during selfupdate
    
    diff --git a/base/src/macports1.0/macports.tcl b/base/src/macports1.0/macports.tcl
    a b  
    33463346            ui_msg "Not all sources could be fully synced using the old version of MacPorts."
    33473347            ui_msg "Please run selfupdate again now that MacPorts base has been updated."
    33483348        } else {
    33493349            ui_msg "\nThe ports tree has been updated. To upgrade your installed ports, you should run"
    33503350            ui_msg "  port upgrade outdated"
     3351            set outdated [exec port outdated]
     3352            ui_msg "\n$outdated"
    33513353        }
    33523354    }
    33533355
    33543356    return 0
    33553357}