test result: FAILED. 97 passed; 7 failed; 0 ignored; 0 measured; 0 filtered out
of all the remaining failures, 6 of them are due to 'error: the option
`Z` is only accepted on the nightly compiler', the only real error
standing out is test_enum from a macro definition conflict ?
error: expected parameter declarator
static_assert(offsetof(CBINDGEN_STRUCT(P), tag) == 0,"unexpected offset for tag");
/usr/include/stddef.h:69:32: note: expanded from macro 'offsetof'
#define offsetof(type, member) __builtin_offsetof(type, member)
Drop the use of '.machine ppc' in assembly code, since it's not supported by
clang's integrated assembler and causes no ill effects to do so (hint from
bcallah@ a few monthes ago, thanks!).
"Fine with me" jasper@
- add support for managing symbolic links under version control
- new -S option for 'got commit' and 'got stage' to skip symlink safety checks
- add a 'got info' command which displays work tree meta-data
- display more context in "no such entry found in tree" error messages
- fix spurious 'got cherrypick' error with a path prefix and an empty tree
- fix committing file additions from a work tree with a path prefix
- fix build error with clang 10 due to missing for-loop block grouping (naddy@)
- make 'got log' -R and -P options work in combination
This defines G_GNUC_FALLTHROUGH to expand to __attribute__((fallthrough))
on LLVM 10, so it can silence warnings from -Wimplicit-fallthrough.
ok ajacoutot@
d0b87ee87b.patch
Subject: [PATCH] Add an explicit cast to double to squash a
-Wimplicit-int-float-conversion warning. Though we will no longer be
comparing exactly against INT64_MAX, this is ok because any value of that
magnitude stored in a double will *also* have been rounded up, so the
comparison will work appropriately.
from Matthias Pitzl; OK afresh1
Comment:
additional B helpers to check COW status
Description:
B::COW provides some naive additional B helpers to check the COW
status of one SvPV.
file into an array of lines. It is intended for relatively small
files like config files that are often produced by weird tools (and
users). OK afresh1@
arguments by target texts in a template string. The target texts
are provided to the function via a hash, where the keys correspond
to the named argument to be replaced. OK afresh1@
Originally from wen heping <wenheping2000 () hotmail ! com>
ok on that version from sthen@
tweaks from me after
No complaints from gsoares@ (MAINTAINER)
Originally from wen heping <wenheping2000 () hotmail ! com>
ok on that version from sthen@
tweaks from me after
cvs: ----------------------------------------------------------------------
- cope with directory entries returned from readdir(3) with type DT_UNKNOWN
- fix merging with files that do not contain a newline character
- heed .{cvs,git}ignore if a path is given on the 'got status' command line
- plug memory leak that occurred when files were deleted during checkout/update
- add new parse.y code for future use and restructure gotweb's parse.y
- fix an error return in gotweb (by Martin Vahlensieck)
- document how to use commit messages prepared in a file (by Scott Bennett)
- make 'got/tog tree' show symlink targets like 'ls -lF' does: link@ -> target
- allow creation of commits which carry unmodified submodule tree entries along
- some error, usage, and progress message improvements
adds support for py 3.8 per
53204208c3,
fixes runtime breakage for buildbot_worker as noticed by martingot at
protonmail (thanks!)
yes, i havent tested all the ports depending on this one, but since the
version we have in tree doesnt support python 3.8 it cant be worse..