Changes between Version 24 and Version 25 of CommittersTipsAndTricks


Ignore:
Timestamp:
Jun 24, 2009, 11:38:48 PM (15 years ago)
Author:
dweber@…
Comment:

Minor change to header and order of material for checksums

Legend:

Unmodified
Added
Removed
Modified
  • CommittersTipsAndTricks

    v24 v25  
    182182
    183183
    184 == A bash script to run checksums ==
     184== Checksum tips ==
     185
     186=== Checksums for port updates ===
     187If you're updating a port's version and simply need the checksums for the new version, run the following while in the port's directory:
     188{{{
     189$ port -v checksum
     190...
     191The correct checksum line may be:
     192checksums           md5     1ca0cf40350913fa620f73cbd906378a \
     193                    sha1    2921531ece0eacb303b0c9a4978d0d050dcfd5d2 \
     194                    rmd160  6cacbcf37581b5e19fe9fe674dd7b0722f1a19de
     195
     196}}}
     197You can then copy/paste the result into the Portfile.
     198
     199=== A bash script for checksums ===
    185200
    186201{{{
     
    203218rmd160 1f842ea95ad6dd2cba2cdc2d2bd8e0be5063fb9b
    204219}}}
    205 
    206 === Checksums for port updates ===
    207 If you're updating a port's version and simply need the checksums for the new version, run the following while in the port's directory:
    208 {{{
    209 $ port -v checksum
    210 ...
    211 The correct checksum line may be:
    212 checksums           md5     1ca0cf40350913fa620f73cbd906378a \
    213                     sha1    2921531ece0eacb303b0c9a4978d0d050dcfd5d2 \
    214                     rmd160  6cacbcf37581b5e19fe9fe674dd7b0722f1a19de
    215 
    216 }}}
    217 You can then copy/paste the result into the Portfile.