Re: [pacman-dev] [PATCH v2] doc: Add a man page describing PKGINFO

2019-06-29 Thread Eli Schwartz
On 6/28/19 2:55 PM, Jelle van der Waa wrote: > From: Jelle van der Waa > > Describe the PKGINFO format which resides in a package produced makepkg. As mentioned on IRC, there's a lot of duplication with the PKGBUILD fields, so I'd feel better if we could somehow document just a list of fields and

Re: [pacman-dev] [PATCH] src/pacman/po/de.po: Missing whitespace

2019-06-29 Thread Eli Schwartz
> src/pacman/po/de.po: Missing whitespace > > German translation for "installing x breaks dependency y required by z" > is missing a whitespace character. > > Signed-off-by: Florian Knodt This is not a git-formatted patch and therefore cannot be applied. Note, however, that translations are cu

[pacman-dev] [PATCH] src/pacman/po/de.po: Missing whitespace

2019-06-29 Thread Florian Knodt via pacman-dev
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 src/pacman/po/de.po: Missing whitespace German translation for "installing x breaks dependency y required by z" is missing a whitespace character. Signed-off-by: Florian Knodt - --- src/pacman/po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 de

Re: [pacman-dev] [PATCH v2] doc: Add a man page describing PKGINFO

2019-06-29 Thread Andrew Gregory
On 06/28/19 at 08:55pm, Jelle van der Waa wrote: > From: Jelle van der Waa > > Describe the PKGINFO format which resides in a package produced makepkg. > --- > doc/Makefile.am| 4 +- > doc/PKGINFO.5.asciidoc | 87 ++ > doc/meson.build| 1

[pacman-dev] [PATCH 2/4] meson: port over checks for types used from sys/types.h

2019-06-29 Thread Dave Reisner
These are defined by a POSIX standard, and we should assert that we have them, or define sane fallbacks (as per sys_types.h(0P)). --- meson.build | 15 +++ 1 file changed, 15 insertions(+) diff --git a/meson.build b/meson.build index c2ed707a..ec94a44a 100644 --- a/meson.build +++ b/m

[pacman-dev] [PATCH 3/4] meson: remove tap-driver.py, use meson's TAP protocol

2019-06-29 Thread Dave Reisner
This includes a patch from Andrew to fix pactest's TAP output for subtests. Original TAP support in meson was added in 0.50, but 0.51 contains a bugfix that ensures the test still work with the --verbose flag passed to meson test, so let's depend on that. --- I'm aware this has a merge conflict wit

[pacman-dev] [PATCH 4/4] build-aux: detect build dir based on build.ninja

2019-06-29 Thread Dave Reisner
.ninja.log is only present after building (successful or otherwise) the project, but build.ninja is output as soon as the build dir is setup. --- build-aux/update-po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/update-po b/build-aux/update-po index ce1ad4be..bf8d7c

[pacman-dev] [PATCH 1/4] meson: drop checks for things we don't use

2019-06-29 Thread Dave Reisner
This was ported over from the AC_CHECK_{FUNCS,HEADERS} lists in configure.ac, but I never actually checked if the resulting CPP defines are used. Turns out, lots of symbols, not a lot of define usage. --- meson.build | 25 - 1 file changed, 25 deletions(-) diff --git a/mes