svn commit: r267577 - in head: . usr.bin usr.bin/send-pr
Gavin Atkinson
gavin at FreeBSD.org
Tue Jun 17 12:59:05 UTC 2014
Author: gavin
Date: Tue Jun 17 12:59:03 2014
New Revision: 267577
URL: http://svnweb.freebsd.org/changeset/base/267577
Log:
Add a stub send-pr that simply points people towards the online support
pages, to give people used to send-pr a bit of guidance.
MFC after: 3 days
Added:
head/usr.bin/send-pr/
head/usr.bin/send-pr/Makefile (contents, props changed)
head/usr.bin/send-pr/send-pr.sh (contents, props changed)
Modified:
head/ObsoleteFiles.inc
head/usr.bin/Makefile
Modified: head/ObsoleteFiles.inc
==============================================================================
--- head/ObsoleteFiles.inc Tue Jun 17 11:58:37 2014 (r267576)
+++ head/ObsoleteFiles.inc Tue Jun 17 12:59:03 2014 (r267577)
@@ -39,7 +39,6 @@
# done
# 20140614: send-pr removal
-OLD_FILES+=usr/bin/send-pr
OLD_FILES+=usr/share/man/man1/send-pr.1.gz
OLD_FILES+=etc/gnats/freefall
OLD_DIRS+=etc/gnats
Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile Tue Jun 17 11:58:37 2014 (r267576)
+++ head/usr.bin/Makefile Tue Jun 17 12:59:03 2014 (r267577)
@@ -143,6 +143,7 @@ SUBDIR= alias \
rwall \
script \
sed \
+ send-pr \
seq \
shar \
showmount \
Added: head/usr.bin/send-pr/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/usr.bin/send-pr/Makefile Tue Jun 17 12:59:03 2014 (r267577)
@@ -0,0 +1,5 @@
+# $FreeBSD$
+
+SCRIPTS= send-pr.sh
+
+.include <bsd.prog.mk>
Added: head/usr.bin/send-pr/send-pr.sh
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/usr.bin/send-pr/send-pr.sh Tue Jun 17 12:59:03 2014 (r267577)
@@ -0,0 +1,11 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+echo
+echo "FreeBSD has migrated away from GNATS for tracking bugs, and so send-pr"
+echo "is no longer used for submitting bug reports."
+echo "Please see https://www.freebsd.org/support.html for more information."
+echo
+exit 1
More information about the svn-src-head
mailing list