Re: [pacman-dev] [PATCH] Reformatting log timestamp to include time-zone

2019-03-06 Thread Florian Wehner
> On 6. Mar 2019, at 19:35, Allan McRae wrote: > >> On 5/3/19 7:46 am, Florian Wehner wrote: >> >> Old: [2019-03-04 16:15] >> New: [2019-03-04T16:15-05:00] > > Can we switch from localtime() to gmtime() and just use UTC? Or like that. If you think this is a better fit for the project! Old:

Re: [pacman-dev] Upcoming pacman-5.3.0 release

2019-03-06 Thread Allan McRae
On 7/3/19 11:42 am, Allan McRae wrote: > Please respond to this email with any bugs or patches not on those lists > that should be considered before 5.2.0. For the record, the reproducibility issue with sizes in .PKGINFO on various filesystems (particularly tmpfs) is being handled. A

[pacman-dev] Upcoming pacman-5.3.0 release

2019-03-06 Thread Allan McRae
Hi all, I intend to release pacman-5.2.0 soon. Looking at patchwork, there is a few patches that should be handled before then, but these are mostly minor: https://patchwork.archlinux.org/project/pacman/list/?state=* Our bug tracker looks clear for 5.2.0:

[pacman-dev] [GIT] The official pacman repository branch, master, updated. v5.1.1-149-gc0e9be79

2019-03-06 Thread Allan McRae
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The official pacman repository". The branch, master has been updated via c0e9be7973be6c81b22fde91516fb8991e7bb07b (commit)

Re: [pacman-dev] [PATCH v2] doc: add man page for pacman-conf

2019-03-06 Thread Allan McRae
On 21/2/19 10:20 pm, Jelle van der Waa wrote: > Signed-off-by: Jelle van der Waa > --- > doc/Makefile.am| 3 +- > doc/meson.build| 1 + > doc/pacman-conf.8.asciidoc | 67 ++ > 3 files changed, 70 insertions(+), 1 deletion(-) > create

Re: [pacman-dev] [PATCH] doc: set rootdir correctly in man pages

2019-03-06 Thread Allan McRae
On 21/2/19 10:22 pm, Jelle van der Waa wrote: > If an alternative rootdir is specified in either meson or configure it's > not respected in the generated man pages. > > Signed-off-by: Jelle van der Waa > --- Thanks. A

Re: [pacman-dev] [PATCH 2/2] makepkg: add new checksum algorithm via coreutils b2sum

2019-03-06 Thread Allan McRae
On 16/2/19 2:38 am, Eli Schwartz wrote: > coreutils 8.26 in December 2016 added this new hashing method which is > compatible with the existing md5sum and sha*sum tool usage, while using > the blake2 hash algorithm. > > makepkg uses coreutils to provide source file integrity checks via >

Re: [pacman-dev] [PATCH] pacman: fix segfault when Usage is specified without a value

2019-03-06 Thread Allan McRae
On 7/3/19 10:53 am, Allan McRae wrote: > On 7/3/19 8:52 am, morganamilo wrote: >> And extract all the common code to a macro. >> >> Signed-off-by: morganamilo >> --- > > How can I replicate? > > I set "Usage =" in my pacman.conf and no segfault from either pacman or > pacman-conf > Got it...

Re: [pacman-dev] [PATCH] pacman: fix segfault when Usage is specified without a value

2019-03-06 Thread Allan McRae
On 7/3/19 8:52 am, morganamilo wrote: > And extract all the common code to a macro. > > Signed-off-by: morganamilo > --- How can I replicate? I set "Usage =" in my pacman.conf and no segfault from either pacman or pacman-conf Allan

Re: [pacman-dev] [PATCH] Reformatting log timestamp to include time-zone

2019-03-06 Thread Allan McRae
On 5/3/19 7:46 am, Florian Wehner wrote: > The time logged is currently given as localtime without any time-zone > information. This is confusing in various scenarios. > > Examples: > * If one is travelling across time-zones and the timestamps in the log > appear out of order. Stop updating

Re: [pacman-dev] [PATCH 0/5][RFC] Die delta, die!

2019-03-06 Thread Allan McRae
On 4/3/19 4:07 pm, Andrew Gregory wrote: > You > missed references to deltaratio in etc/pacman.conf and README. Thanks. Fixed. A

[pacman-dev] [PATCH] pacman: fix segfault when Usage is specified without a value

2019-03-06 Thread morganamilo
And extract all the common code to a macro. Signed-off-by: morganamilo --- src/pacman/conf.c | 38 -- 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/src/pacman/conf.c b/src/pacman/conf.c index 29f69052..cca3657e 100644 --- a/src/pacman/conf.c