summaryrefslogtreecommitdiff
path: root/devel/atf-libs/buildlink3.mk
AgeCommit message (Collapse)AuthorFilesLines
2014-02-08Update ATF to 0.20.jmmv1-12/+0
This change upgrades devel/atf to 0.20 and removes devel/atf-libs. The upstream atf distfile has dropped the code for the deprecated tools so it makes little sense to keep the two packages any longer. As a result of this, the devel/atf package is now much simplified as there is no need for a Makefile.common any longer and matches exactly what upstream ships. Changes in version 0.20 *********************** Experimental version released on February 7th, 2014. This is the first release without the code for the deprecated tools. If you require such code, please fetch a copy of the 0.19 release and extract the 'tools' directory for your own consumption. * Removed the deprecated tools. This includes atf-config, atf-report, atf-run and atf-version. Changes in version 0.19 *********************** Experimental version released on February 7th, 2014. This is the last release to bundle the code for the deprecated tools. The next release will drop their code and will stop worrying about backwards compatibility between the ATF libraries and what the old tools may or may not support. If you still require the old tools for some reason, grab a copy of the 'tools' directory now. The code in this directory is standalone and does not depend on any internal details of atf-c++ any longer. * Various fixes and improvements to support running as part of the FreeBSD test suite. * Project hosting moved from Google Code (as a subproject of Kyua) to GitHub (as a first-class project). The main reason for the change is the suppression of binary downloads in Google Code on Jan 15th, 2014. See https://github.com/jmmv/atf/ * Removed builtin help from atf-sh(1) and atf-check(1) for simplicity reasons. In other words, their -h option is gone. * Moved the code of the deprecated tools into a 'tools' directory and completely decoupled their code from the internals of atf-c++. The reason for this is to painlessly allow a third-party to maintain a copy of these tools after we delete them because upcoming changes to atf-c++ would break the stale tools.
2012-07-10Update to ATF 0.16:jmmv1-9/+2
Experimental version released on July 10th, 2012. * Added a --enable-tools flag to configure to request the build of the deprecated ATF tools, whose build is now disabled by default. In order to continue running tests, you should migrate to Kyua instead of enabling the build of the deprecated tools. The kyua-atf-compat package provides transitional compatibility versions of atf-run and atf-report built on top of Kyua. * Tweaked the ATF_TEST_CASE macro of atf-c++ so that the compiler can detect defined but unused test cases. * PR bin/45859: Fixed some XSLT bugs that resulted in the tc-time and tp-time XML tags leaking into the generated HTML file. Also improved the CSS file slightly to correct alignment and color issues with the timestamps column. * Optimized atf-c++/macros.hpp so that GNU G++ consumes less memory during compilation with GNU G++. * Flipped the default to building shared libraries for atf-c and atf-c++, and started versioning them. As a side-effect, this removes the --enable-unstable-shared flag from configure that appears to not work any more (under NetBSD). Additionally, some distributions require the use of shared libraries for proper dependency tracking (e.g. Fedora), so it is better if we do the right versioning upstream. * Project hosting moved from an adhoc solution (custom web site and Monotone repository) to Google Code (standard wiki and Git). ATF now lives in a subcomponent of the Kyua project.
2012-07-01Split the ATF libraries into their own devel/atf-libs package.jmmv1-0/+19
This change adds a new atf-libs package that provides the libatf-c, libatf-c++ and libatf-sh libraries by themselves, without any of the ATF runtime tools. The atf package has been modified to only install the runtime utilities (atf-run and atf-report being the major ones) and depend on atf-libs. The purpose of this change is to allow packages that install tests to depend on a lighter-weight package, and to allow the addition of the upcoming kyua-atf-compat package. The latter will be a package that provides atf-run and atf-report replacements based on kyua-cli, and therefore will conflict with the atf tools (but not the libraries). While doing this, fix the pkgconfig overrides and ensure that we use the right version of the ATF libraries given that disabling shared library building appears to have been broken, possibly for a while.