[pacman-dev] [PATCH] contrib: adding checkupdates

2013-03-17 Thread keenerd
Signed-off-by: Kyle Keen --- contrib/Makefile.am| 3 +++ contrib/checkupdates.sh.in | 44 2 files changed, 47 insertions(+) create mode 100644 contrib/checkupdates.sh.in diff --git a/contrib/Makefile.am b/contrib/Makefile.am index 64f476c..9

Re: [pacman-dev] [PATCH] contrib: adding checkupdates

2013-03-17 Thread Allan McRae
On 17/03/13 22:56, keenerd wrote: > Signed-off-by: Kyle Keen > --- > contrib/Makefile.am| 3 +++ > contrib/checkupdates.sh.in | 44 > > 2 files changed, 47 insertions(+) > create mode 100644 contrib/checkupdates.sh.in > > diff --git a/contri

Re: [pacman-dev] [PATCH] contrib: adding checkupdates

2013-03-17 Thread Dave Reisner
On Sun, Mar 17, 2013 at 08:56:27AM -0400, keenerd wrote: > Signed-off-by: Kyle Keen > --- > contrib/Makefile.am| 3 +++ > contrib/checkupdates.sh.in | 44 > > 2 files changed, 47 insertions(+) > create mode 100644 contrib/checkupdates.sh.in >

Re: [pacman-dev] [PATCH v3] Treat packages to be printed as non-ignored

2013-03-17 Thread Connor Behan
On 16/03/13 06:58 AM, Andrew Gregory wrote: > --print already implies --noconfirm, no need to do anything there. > You'll still have to check for --print somewhere in the callback > process to avoid showing the questions. It just needs to be more > selective so that only the output is skipped, not

[pacman-dev] [PATCH] zsh completion: make $tmp local

2013-03-17 Thread Daniel Wallace
The tmp variable is conflicting with the $tmp variable in ${^fpath}/_main_complete(N) and which is used to complete all the functions, and causing an error: command not found: for whatever was in $tmp (which in this case is the last value in $words[@]) making it local fixes this. Signed-off-by: D