Changes between Version 7 and Version 8 of archives
- Timestamp:
- Mar 22, 2012, 1:41:12 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
archives
v7 v8 1 1 = Using Your Own Archives = 2 MacPorts verifies a rchives when `archivemode` is enabled, making the signingarchives a requirement. This page will serve as a guide showing how to do this.2 MacPorts verifies any archives it uses, making the signing of archives a requirement. This page will serve as a guide showing how to do this. 3 3 4 4 = Create Keys = … … 31 31 32 32 = Configure MacPorts = 33 Now we need to add your key to MacPorts . This is done in two places:34 * save copy of public key35 * add path to this copy in pubkeys.conf33 Now we need to add your key to MacPorts and then add your repository: 34 * add path to a copy of your public key in pubkeys.conf 35 * add your archives to [browser:trunk/base/doc/archive_sites.conf archive_sites.conf] 36 36 37 I used`${prefix}/etc/macports/snc.pub` for simplicity.37 I saved a copy of my public key as `${prefix}/etc/macports/snc.pub` for simplicity. 38 38 39 39 = Try It = … … 73 73 port -q info --index --version `basename $i` | while read j 74 74 do 75 rsync -az --delete --filter "P *$j*" "$i" snc@tazamahal.com:/var/www/macports/75 rsync -az --delete --filter "P *$j*" "$i" /var/www/macports/ 76 76 done 77 77 done 78 s sh snc@tazamahal.com sign_archives.sh78 sign_archives.sh 79 79 }}}