diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2016-12-02 17:04:25 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2016-12-02 17:04:25 +0000 |
commit | 03258122d24058eaacf3da5e5335fc5da5c64b65 (patch) | |
tree | e88638981ccd31e320d2e9ba37bc55e8480d3a0e /shells/bash-completion/files/patch-reptyr | |
parent | - Update to 3.35 (diff) |
Update to 2.4, and switch from the alioth sources to the Github project
that the old WWW redirects to.
Among other changes, this port now optionally installs some cmake modules,
which I hope I'm installing into the correct place.
Notes
Notes:
svn path=/head/; revision=427580
Diffstat (limited to 'shells/bash-completion/files/patch-reptyr')
-rw-r--r-- | shells/bash-completion/files/patch-reptyr | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/shells/bash-completion/files/patch-reptyr b/shells/bash-completion/files/patch-reptyr deleted file mode 100644 index eacb1f8e4c4c..000000000000 --- a/shells/bash-completion/files/patch-reptyr +++ /dev/null @@ -1,84 +0,0 @@ -From 6a4ad49fa53cc92d3bd23b5b4db0b3318f2ef136 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Ville=20Skytt=C3=A4?= <ville.skytta@iki.fi> -Date: Tue, 3 Feb 2015 07:55:22 +0200 -Subject: reptyr: Rename file to _reptyr to avoid conflict with upstreamed - completion - -https://github.com/nelhage/reptyr/pull/53 ---- - completions/Makefile.am | 2 +- - completions/_reptyr | 26 ++++++++++++++++++++++++++ - completions/reptyr | 23 ----------------------- - 3 files changed, 27 insertions(+), 24 deletions(-) - create mode 100644 completions/_reptyr - delete mode 100644 completions/reptyr - ---- completions/Makefile.am -+++ completions/Makefile.am -@@ -303,7 +303,7 @@ bashcomp_DATA = 2to3 \ - _renice \ - _repomanage \ - reportbug \ -- reptyr \ -+ _reptyr \ - resolvconf \ - rfkill \ - ri \ ---- /dev/null -+++ completions/_reptyr -@@ -0,0 +1,26 @@ -+# bash completion for reptyr(1) -*- shell-script -*- -+ -+# Use of this file is deprecated. Upstream completion is available in -+# reptyr > 0.6.2, use that instead. -+ -+_reptyr() -+{ -+ local cur prev words cword -+ _init_completion || return -+ -+ case $prev in -+ -l) -+ return 0 -+ ;; -+ esac -+ -+ if [[ $cur == -* ]]; then -+ COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) ) -+ return 0 -+ fi -+ -+ [[ $prev != +([0-9]) ]] && _pids -+} && -+complete -F _reptyr reptyr -+ -+# ex: ts=4 sw=4 et filetype=sh ---- completions/reptyr -+++ /dev/null -@@ -1,23 +0,0 @@ --# bash completion for reptyr(1) -*- shell-script -*- -- --_reptyr() --{ -- local cur prev words cword -- _init_completion || return -- -- case $prev in -- -l) -- return 0 -- ;; -- esac -- -- if [[ $cur == -* ]]; then -- COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) ) -- return 0 -- fi -- -- [[ $prev != +([0-9]) ]] && _pids --} && --complete -F _reptyr reptyr -- --# ex: ts=4 sw=4 et filetype=sh --- -cgit v0.11.2 - |