[pacman-dev] [PATCH] [RFC] Provide source files for useful debug packages

2016-09-01 Thread Allan McRae
Debug packages are fairly useless currently because the soucre files needed for stepping through code etc are not packaged with them. This patch adds the needed source files to the debug package and adjusts the debug info to look at the /usr/src/debug/ directory for them rather than the build

Re: [pacman-dev] [PATCH v3 4/8] bacman: rewrite usage page and version information

2016-09-01 Thread Allan McRae
On 01/09/16 23:36, Gordian Edenhofer wrote: > On Thu, 2016-09-01 at 13:59 +1000, Allan McRae wrote: >> On 01/09/16 07:05, Gordian Edenhofer wrote: >>> >>> Signed-off-by: Gordian Edenhofer >>> --- >>> contrib/bacman.sh.in | 33 + >>> 1

[pacman-dev] [PATCH v4 2/8] bacman: parallel packaging

2016-09-01 Thread Gordian Edenhofer
Signed-off-by: Gordian Edenhofer --- contrib/bacman.sh.in | 23 ++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/contrib/bacman.sh.in b/contrib/bacman.sh.in index 512973a..a718a18 100644 --- a/contrib/bacman.sh.in +++

[pacman-dev] [PATCH v4 3/8] bacman: proper option handling

2016-09-01 Thread Gordian Edenhofer
Switch to parseopts instead of merely checking the first argument. Signed-off-by: Gordian Edenhofer --- Remove the leading colon in the OPT_SHORT variable. Thanks Allen for the hint. contrib/bacman.sh.in | 63 ++-- 1

[pacman-dev] [PATCH v4 4/8] bacman: rewrite usage page and version information

2016-09-01 Thread Gordian Edenhofer
Signed-off-by: Gordian Edenhofer --- Move the '-o' occurrance in the usage page to its corresponding commit. Use the old descrption instead of the new one. (Fixes typo) Thanks again Allan! contrib/bacman.sh.in | 30 +++--- 1 file changed, 19

[pacman-dev] [PATCH v4 8/8] bacman: add manual page

2016-09-01 Thread Gordian Edenhofer
Signed-off-by: Gordian Edenhofer --- contrib/doc/.gitignore | 1 + contrib/doc/Makefile.am | 5 +++- contrib/doc/bacman.8.txt | 71 3 files changed, 76 insertions(+), 1 deletion(-) create mode 100644

[pacman-dev] [PATCH v4 7/8] bacman: add option to specify the number of jobs

2016-09-01 Thread Gordian Edenhofer
Signed-off-by: Gordian Edenhofer --- contrib/bacman.sh.in | 31 ++- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/contrib/bacman.sh.in b/contrib/bacman.sh.in index fef5e78..6158a2c 100644 --- a/contrib/bacman.sh.in +++

[pacman-dev] [PATCH v4 6/8] bacman: add otpion to alter the output directory

2016-09-01 Thread Gordian Edenhofer
Signed-off-by: Gordian Edenhofer --- Switch to the build-in check for a directory existance instead of using 'readlink -e'. contrib/bacman.sh.in | 15 +++ 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/contrib/bacman.sh.in

Re: [pacman-dev] [PATCH v3 4/8] bacman: rewrite usage page and version information

2016-09-01 Thread Gordian Edenhofer
On Thu, 2016-09-01 at 13:59 +1000, Allan McRae wrote: > On 01/09/16 07:05, Gordian Edenhofer wrote: > > > > Signed-off-by: Gordian Edenhofer > > --- > >  contrib/bacman.sh.in | 33 + > >  1 file changed, 21 insertions(+), 12

[pacman-dev] [PATCH] bash-completion: fix leaking "files" array into shell environment

2016-09-01 Thread Eli Schwartz
--- contrib/bash_completion.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bash_completion.in b/contrib/bash_completion.in index 6f99681..06963c4 100644 --- a/contrib/bash_completion.in +++ b/contrib/bash_completion.in @@ -97,7 +97,7 @@ _pacman_pkg() { }

[pacman-dev] [PATCH] bash-completion: fix leaking "files" array into shell environment

2016-09-01 Thread Eli Schwartz
Signed-off-by: Eli Schwartz --- This time with a signoff... contrib/bash_completion.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bash_completion.in b/contrib/bash_completion.in index 6f99681..06963c4 100644 ---