mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
aceebed158
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.
11 lines
147 B
Bash
Executable File
11 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# MAINTAINER= mharo@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
patch $@ < pr-patch
|
|
find . -name '*.orig' -print -delete
|
|
find . -name '*.rej' -print
|