diff options
author | mharo <mharo@FreeBSD.org> | 2000-05-01 20:00:10 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2000-05-01 20:00:10 +0000 |
commit | dcc7b69579406ff167d11817fd83e72b7737e7b4 (patch) | |
tree | 46ac808d2c4d30a9086be4bc5f187933b7e87535 | |
parent | bf18bec4c5c302d3eee45f39f8a73ea89b5f7c40 (diff) | |
download | FreeBSD-ports-dcc7b69579406ff167d11817fd83e72b7737e7b4.zip FreeBSD-ports-dcc7b69579406ff167d11817fd83e72b7737e7b4.tar.gz |
Readme describing all the scripts in this directory. Somebody good at
writing docs should probably fix this file.
-rw-r--r-- | Tools/scripts/README | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/Tools/scripts/README b/Tools/scripts/README new file mode 100644 index 0000000..c051234 --- /dev/null +++ b/Tools/scripts/README @@ -0,0 +1,47 @@ +$FreeBSD$ + +addport - future replacement for easy-import + +consistency-check - check whether all your ports are installed properly, + what files have changed, and what new files there are + +getpr - downloads a problem report from GNATS and attempts to extract + the patch, shar, uuencoded file from it. + this probably needs to be checked for potential security problems. +prpatch - just does `patch $1 < pr-patch' (pr-patch is created by getpr) +prdone - checks in the port, attempting to fill out the commit message using + information from the problem report and then takes you into edit-pr + so you don't forget to close the PR. + +---------------------------------------------------------------------- + +consistency-check gives output like: + +Not on filesystem - jade from jade-1.2.1 +Only on filesystem - jadefoo +No package md5 available for lessecho +File nsgmls owned by multiple packages sp-1.3.4,jade-1.2.1 +No filesystem md5 available for setuser, but it exists +For sgmlnorm, package md5 312d7b63d591e07629e0da4ae4a0ac07 is DIFFERENT from fs md5 of 19f1f901911b90d8e04c6ea69e1b0541! + +change $do_md5 to 0 to not check md5, and $do_fs to 0 to not check for +files above those installed by packages. + +---------------------------------------------------------------------- + +getpr, prpatch and prdone are used as so: + % cd /usr/ports/CATEGORY/PORT + % getpr PRNUMBER + <read diff presented to you> + <check that there are no followups to the PR as getpr wont' split + them out of the PR> + % prpatch + <test port> + % prdone PRNUMBER ci + <this will attempt to fill out the cvs log message, check in the + port and edit-pr the problem report so you can close it> + +NOTE: These scripts need work and are *NOT* safe to use unless you know + what they do. Use at your own risk. Patches would be great, but + I'd prefer they pass through me. + |