<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test/usr.bin/bmake/Makefile, branch main</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test/atom?h=main</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/'/>
<updated>2020-11-20T06:02:31Z</updated>
<entry>
<title>Merge bmake-20201117</title>
<updated>2020-11-20T06:02:31Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2020-11-20T06:02:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=e2eeea75eb8b6dd50c1298067a0655880d186734'/>
<id>urn:sha1:e2eeea75eb8b6dd50c1298067a0655880d186734</id>
<content type='text'>
o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable
  checks in InitObjdir.  Explicit .OBJDIR target always allows
  read-only directory.

o More code cleanup and refactoring.

o More unit tests

MFC after:	1 week
</content>
</entry>
<entry>
<title>Update to bmake-20201101</title>
<updated>2020-11-07T21:46:27Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2020-11-07T21:46:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=956e45f6fb3e18b8e89b1341708db60c30bb9f27'/>
<id>urn:sha1:956e45f6fb3e18b8e89b1341708db60c30bb9f27</id>
<content type='text'>
Lots of new unit-tests increase code coverage.

Lots of refactoring, cleanup and simlpification to reduce
code size.

Fixes for Bug 223564 and 245807

Updates to dirdeps.mk and meta2deps.py
</content>
</entry>
<entry>
<title>Update to bmake-20200902</title>
<updated>2020-09-05T19:29:42Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2020-09-05T19:29:42Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=2c3632d14fe37fa35c262ee9fb66835be0a52621'/>
<id>urn:sha1:2c3632d14fe37fa35c262ee9fb66835be0a52621</id>
<content type='text'>
Lots of code refactoring, simplification and cleanup.
Lots of new unit-tests providing much higher code coverage.
All courtesy of rillig at netbsd.

Other significant changes:

o new read-only variable .SHELL which provides the path of the shell
  used to run scripts (as defined by  the .SHELL target).

o variable parsing detects more errors.

o new debug option -dl: LINT mode, does the equivalent of := for all
  variable assignments so that file and line number are reported for
  variable parse errors.
</content>
</entry>
<entry>
<title>Merge bmake-20200606</title>
<updated>2020-06-09T20:52:35Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2020-06-09T20:52:35Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=ef0b253881c9546ff88d3ed8480df7c791b3ddff'/>
<id>urn:sha1:ef0b253881c9546ff88d3ed8480df7c791b3ddff</id>
<content type='text'>
Relevant items from ChangeLog:

	o dir.c: cached_stats - don't confuse stat and lstat results.
	o var.c: add :Or for reverse sort.
</content>
</entry>
<entry>
<title>Merge bmake-20200517</title>
<updated>2020-05-20T22:25:46Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2020-05-20T22:25:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=49caa483b3fafffd9cf5197eb30e8bb235aa7410'/>
<id>urn:sha1:49caa483b3fafffd9cf5197eb30e8bb235aa7410</id>
<content type='text'>
Changes since 20181221 are mostly portability related
hence the large gap in versions imported.

There are however some bug fixes, and a rework of filemon handling.
In NetBSD make/filemon/filemon_ktrace.c allows use of fktrace
and elimination of filemon(4) which has not had the TLC it needs.

FreeBSD filemon(4) is in much better shape, so bmake/filemon/filemon_dev.c
allows use of that, with a bit less overhead than the ktrace model.

Summary of changes from ChangeLog

	o str.c: empty string does not match % pattern
	  plus unit-test changes
	o var.c: import handling of old sysV style modifier using '%'
	o str.c: refactor brk_string
	o meta.c: meta_oodate, CHECK_VALID_META is too aggressive for CMD
	  a blank command is perfectly valid.
	o meta.c: meta_oodate, check for corrupted meta file
	  earlier and more often.
	* meta.c: meta_compat_parent check for USE_FILEMON
	  patch from Soeren Tempel
	o meta.c: fix compat mode, need to call meta_job_output()
	o job.c: extra fds for meta mode not needed if using filemon_dev
	o meta.c: avoid passing NULL to filemon_*() when meta_needed()
	  returns FALSE.
	o filemon/filemon_{dev,ktrace}.c: allow selection of
	  filemon implementation.  filemon_dev.c uses the kernel module
	  while filemon_ktrace.c leverages the fktrace api available in
	  NetBSD.  filemon_ktrace.c can hopefully form the basis for
	  adding support for other tracing mechanisms such as strace on
	  Linux.
	o meta.c: when target is out-of-date per normal make rules
	  record value of .OODATE in meta file.
	o parse.c: don't pass NULL to realpath(3)
	  some versions cannot handle it.
	o parse.c: ParseDoDependency: free paths rather than assert

plus more unit-tests
</content>
</entry>
<entry>
<title>Update to bmake-20171028</title>
<updated>2017-11-02T20:08:00Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2017-11-02T20:08:00Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=e22fef7dc1daad9b476ecdba180445fd1af6ca1c'/>
<id>urn:sha1:e22fef7dc1daad9b476ecdba180445fd1af6ca1c</id>
<content type='text'>
Ignore empty MAKEOBJDIR[PREFIX]

Reported by:	bdrewery
</content>
</entry>
<entry>
<title>Import bmake-20170720</title>
<updated>2017-07-24T04:38:05Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2017-07-24T04:38:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=c7019bf79d85f8a192baa662499c52c3dbf2484e'/>
<id>urn:sha1:c7019bf79d85f8a192baa662499c52c3dbf2484e</id>
<content type='text'>
Includes fix for compat handling of interrupts.
</content>
</entry>
<entry>
<title>Import bmake-20170711</title>
<updated>2017-07-15T21:19:27Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2017-07-15T21:19:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=8695518c44cc402325c83231111ad4ea423e2fbf'/>
<id>urn:sha1:8695518c44cc402325c83231111ad4ea423e2fbf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge bmake-20170510</title>
<updated>2017-05-10T22:45:05Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2017-05-10T22:45:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=cac6fd1154811b24f3899a8f9e07c0140542a90d'/>
<id>urn:sha1:cac6fd1154811b24f3899a8f9e07c0140542a90d</id>
<content type='text'>
No-op change other than version update.
</content>
</entry>
<entry>
<title>Merge bmake-20170420</title>
<updated>2017-04-21T00:45:44Z</updated>
<author>
<name>Simon J. Gerraty</name>
<email>sjg@FreeBSD.org</email>
</author>
<published>2017-04-21T00:45:44Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=e1cee40d8b83eb8acf956d323b899f5c7ce318f0'/>
<id>urn:sha1:e1cee40d8b83eb8acf956d323b899f5c7ce318f0</id>
<content type='text'>
</content>
</entry>
</feed>
