non port: devel/kyua/Makefile |
SVNWeb
|
Number of commits found XX: 26 |
Sat, 27 Feb 2021
|
[ 07:05 tobik ] 
566671 devel/kyua/Makefile
566671 devel/kyua/files/patch-utils_datetime.cpp
566671 devel/kyua/files/patch-utils_datetime__test.cpp
devel/kyua: Pet portlint
Also while here replace MAKE_FLAGS with MAKE_ARGS and since the
submission was almost there also pet portclippy.
PR: 231843
Submitted by: takefu@airport.fm
Approved by: jmmv (maintainer timeout, >2 years)
|
Thu, 23 Apr 2020
|
[ 08:14 bapt ] 
532653 devel/kyua/Makefile
Add a message to inform binary package user about the procedure
to perform to move the tests users into the right default group
|
Wed, 22 Apr 2020
|
[ 18:01 brooks ] 
532493 GIDs
532493 UIDs
532493 UPDATING
532493 devel/kyua/Makefile
Create and use a tests group for the tests user.
Nobody but nobody should be a member of the nobody group.
PR: 245107
Approved by: maintainer timeout
Sponsored by: DARPA
|
Wed, 24 May 2017
|
[ 14:34 asomers ] 
441600 devel/kyua/Makefile
441600 devel/kyua/pkg-plist
devel/kyua: Install kyua.conf as a sample file
Previously, kyua upgrades would override users' changes to
/usr/local/etc/kyua/kyua.conf. Now the upgrade will only affect
/usr/local/etc/kyua/kyua.conf.sample.
PR: 217990
Reported by: ngie
Reviewed by: jmmv, ngie
Approved by: jmmv (maintainer)
Approved by: brd (ports)
Sponsored by: Spectra Logic Corp
|
Fri, 19 May 2017
|
[ 19:26 bdrewery ] 
441265 devel/kyua/Makefile
WITH_CCACHE_BUILD: Don't leak ccache in as a runtime-dependency.
fmake and bmake's := feature does not evaluate a variable immediately
if it does not yet exist (bmake's manpage notes this). In this case
BUILD_DEPENDS is empty but later gets ccache added to it. So when
RUN_DEPENDS is finally evaluated it actually gets ccache in it.
This line was not useful anyhow since there were not BUILD_DEPENDS to add
in; LIB_DEPENDS is its own unique thing that works as a BUILD and RUN
dependency but not directly related to the other variables.
Sponsored by: Dell EMC Isilon
|
Fri, 21 Apr 2017
|
[ 07:38 ngie ] 
439018 devel/kyua/Makefile
439018 devel/kyua/files/patch-utils_datetime__test.cpp
Fix utils/datetime_test:timestamp__subtraction
Don't expect a negative time delta to throw an exception--instead, expect
1 microsecond to be returned per the behavior change made in r436312.
Approved by: brooks (as part of a larger diff), (maintainer timeout)
Differential Revision: D10316
PR: 217973
Reported by: Jenkins
Reviewed by: asomers
Sponsored by: Dell EMC Isilon
|
Thu, 16 Mar 2017
|
[ 23:12 brooks ] 
436312 devel/kyua/Makefile
436312 devel/kyua/files/patch-utils_datetime.cpp
Hack around wall clock time going backwards.
As reported in https://github.com/jmmv/kyua/issues/155, the wall clock
time can go backwards resulting in an apparent negative delta. As
a workaround, convert such deltas to 1us. This allows tests to run
successfully in MIPS64 qemu.
Approved by: jmmv (maintainer)
Sponsored by: DARPA, AFRL
|
Fri, 26 Aug 2016
|
[ 14:58 jmmv ] 
420923 devel/kyua/Makefile
420923 devel/kyua/distinfo
420923 devel/kyua/files/patch-issue136
420923 devel/kyua/pkg-plist
Update devel/kyua to 0.13 from 0.11:
**Released on August 26th, 2016.**
* Fixed execution of test cases as an unprivileged user, at least under
NetBSD 7.0. Kyua-level failures were probably a regression introduced
in Kyua 0.12, but the underlying may have existed for much longer:
test cases might have previously failed for mysterious reasons when
running under an unprivileged user.
* Issue #134: Fixed metadata test broken on 32-bit platforms.
* Issue #139: Added per-test case start/end timestamps to all reports.
* Issue #156: Fixed crashes due to the invalid handling of cleanup (Only the first 15 lines of the commit message are shown above )
|
Fri, 8 Apr 2016
|
[ 15:58 lwhsu ] 
412750 devel/kyua/Makefile
412750 devel/kyua/files/patch-issue136
- Fix printing out binary/UTF-8 characters by backporting fix from 0.12
Submitted by: ngie
Reviewed by: rodrigc
Approved by: jmmv (maintainer)
Differential Revision: https://reviews.freebsd.org/D5851
|
Fri, 1 Apr 2016
|
[ 14:00 mat ] 
412346 databases/R-cran-RMySQL/Makefile
412346 databases/R-cran-RSQLite.extfuns/Makefile
412346 databases/R-cran-RSQLite/Makefile
412346 databases/R-cran-sqldf/Makefile
412346 databases/akonadi-googledata/Makefile
412346 databases/akonadi/Makefile
412346 databases/apq-mysql/Makefile
412346 databases/apq-odbc/Makefile
412346 databases/apq-pgsql/Makefile
412346 databases/apq/Makefile
(Only the first 10 of 5103 ports in this commit are shown above. )
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight
|
Wed, 30 Mar 2016
|
[ 16:47 brd ] 
412176 devel/kyua/Makefile
412176 devel/kyua/distinfo
412176 devel/kyua/pkg-plist
Revert devel/kyua due to random segfaults during longer runs.
See: https://github.com/jmmv/kyua/issues/156
Approved by: jmmv (maintainer), bdrewery (mentor)
|
Mon, 23 Nov 2015
|
[ 03:03 jmmv ] 
402256 devel/kyua/Makefile
402256 devel/kyua/distinfo
402256 devel/kyua/pkg-plist
Update devel/kyua to 0.12.
**Released on November 22nd, 2015.**
This is a huge release and marks a major milestone for Kyua as it finally
implements a long-standing feature request: the ability to execute test
cases in parallel. This is a big deal because test cases are rarely
CPU-bound: running them in parallel yields much faster execution times for
large test suites, allowing faster iteration of changes during development.
As an example: the FreeBSD test suite as of this date contains 3285 test
cases. With sequential execution, a full test suite run takes around 12
minutes to complete, whereas on a 4-core machine with a high level of
parallelism it takes a little over 1 minute.
(Only the first 15 lines of the commit message are shown above )
|
Fri, 30 Oct 2015
|
[ 22:43 bapt ] 
400556 databases/gnats4/Makefile
400556 devel/kyua/Makefile
400556 dns/dnscrypt-proxy/Makefile
400556 dns/dnscrypt-wrapper/Makefile
400556 dns/nsd3/Makefile
400556 japanese/FreeWnn-server/Makefile
400556 mail/pop3vscan/Makefile
400556 net-im/tox/Makefile
400556 net-mgmt/iog/Makefile
400556 net/mosquitto/Makefile
(Only the first 10 of 11 ports in this commit are shown above. )
Bump portrevision of ports that might have been built with a broken post-install
script due to fallouts of r399992
|
Thu, 30 Oct 2014
|
[ 16:42 jmmv ] 
371764 devel/kyua/Makefile
371764 devel/kyua/distinfo
371764 devel/kyua/files/patch-tap-parser
371764 devel/kyua/pkg-plist
Update devel/kyua to 0.11.
Released on October 23rd, 2014.
* Added support to print the details of all test cases (metadata and
their output) to 'report'. This is via a new '--verbose' flag which
replaces the previous '--show-context'.
* Added support to specify the amount of physical disk space required
by a test case. This is in the form of a new "required_disk_space"
metadata property, which can also be provided by ATF test cases as
"require.diskspace".
* Assimilated the contents of all the kyua-*-tester(1) and
kyua-*-interface(7) manual pages into more relevant places. In (Only the first 15 lines of the commit message are shown above )
|
Thu, 25 Sep 2014
|
[ 09:41 jmmv ] 
369228 devel/kyua/Makefile
369228 devel/kyua/files/patch-tap-parser
Fix TAP parsing bugs.
Pull up an upstream fix to properly deal with the TAP output of several
FreeBSD tests. Do this before a new Kyua release so that I and others can
properly test the changes before Kyua 0.11 is cut.
The FreeBSD test suite no longer reports failures caused by bad TAP parsing.
Bump PORTREVISION to 1.
Differential Revision: D832
Approved by: bapt (ports)
|
Thu, 14 Aug 2014
|
[ 20:21 jmmv ] 
364865 MOVED
364865 devel/Makefile
364865 devel/kyua-atf-compat
364865 devel/kyua-cli
364865 devel/kyua-testers
364865 devel/kyua/Makefile
364865 devel/kyua/distinfo
364865 devel/kyua/files
364865 devel/kyua/files/kyua.conf.in
364865 devel/kyua/pkg-descr
(Only the first 10 of 11 ports in this commit are shown above. )
Update kyua to 0.10:
This change merges the kyua-{atf-compat,cli,testers} packages
into a single devel/kyua package, just as upstream has done, and brings
Kyua to version 0.10.
The list of changes since kyua-cli 0.9 and kyua-testers 0.3:
Experimental version released on August 14th, 2014.
* Merged 'kyua-cli' and 'kyua-testers' into a single 'kyua' package.
* Dropped the 'kyua-atf-compat' package.
* Issue 100: Do not try to drop privileges to unprivileged_user when we (Only the first 15 lines of the commit message are shown above )
|
Sat, 15 Feb 2014
|
[ 23:45 jmmv ] 
344497 devel/Makefile
344497 devel/kyua-cli
344497 devel/kyua-cli/Makefile
344497 devel/kyua/Makefile
344497 devel/kyua/distinfo
344497 devel/kyua/files
344497 devel/kyua/pkg-plist
Turn devel/kyua into a meta-port and add devel/kyua-cli.
The existing devel/kyua package should have been named devel/kyua-cli to
match the upstream structure. Do the rename now and make devel/kyua be
a meta-port that depends on all kyua packages.
Because there is no version number to represent Kyua as a whole (that's
a problem I have to resolve upstream somehow), bump the epoch of
devel/kyua and use today's date as the version.
No entry should be necessary in MOVED because upgrading to the new
meta-port should do the right thing.
Approved by: bdrewery
|
Tue, 11 Feb 2014
|
[ 03:48 jmmv ] 
343717 devel/kyua-testers/Makefile
343717 devel/kyua-testers/pkg-plist
343717 devel/kyua/Makefile
343717 devel/kyua/pkg-plist
343717 devel/lutok/Makefile
343717 devel/lutok/pkg-plist
Install tests for lutok, kyua-testers and kyua.
This is all conditionalized on a TEST option.
Approved by: bdrewery
|
Fri, 24 Jan 2014
|
[ 19:46 jmmv (src committer) ] 
340929 devel/kyua-atf-compat/Makefile
340929 devel/kyua-atf-compat/pkg-plist
340929 devel/kyua-testers/Makefile
340929 devel/kyua-testers/pkg-plist
340929 devel/kyua/Makefile
340929 devel/kyua/pkg-plist
340929 devel/lutok/Makefile
340929 devel/lutok/pkg-plist
Add staging support to kyua* and lutok.
While doing this, consolidate file handling into pkg-plist (instead of
the previous split between the Makefile and the pkg-plist) for simplicity.
Reviewed by: asomers (ex-maintainer)
Approved by: bdrewery (ports)
|
Mon, 13 Jan 2014
|
[ 21:29 asomers (src committer) ] 
339638 devel/kyua-atf-compat/Makefile
339638 devel/kyua-testers/Makefile
339638 devel/kyua/Makefile
339638 devel/lutok/Makefile
Change maintainer of devel/{lutok,kyua-testers,kyua,kyua-atf-compat} from
Alan Somers to Julio Merino, who is also the upstream maintainer.
Approved by: bdrewery
|
Fri, 27 Dec 2013
|
[ 20:45 jmmv (src committer) ] 
337802 UIDs
337802 devel/kyua/Makefile
337802 devel/kyua/files/kyua.conf.in
Add a tests user to run unprivileged tests as; use it in devel/kyua.
This new user carries a generic 'tests' name because, even though it is
only used by devel/kyua at this point, it could conceivably be used by
other tools.
Bump PORTREVISION of devel/kyua to 1.
PR: ports/182891
Approved by: asomers (maintainer), bdrewery (ports), rpaulo (mentor)
|
Tue, 10 Dec 2013
|
[ 23:03 jmmv (src committer) ] 
336127 devel/kyua/Makefile
336127 devel/kyua/distinfo
Update to 0.8.
Approved by: rpaulo (mentor), asomers (maintainer), bdrewery (ports)
|
Mon, 21 Oct 2013
|
[ 23:12 asomers (src committer) ] 
331208 devel/kyua/Makefile
331208 devel/kyua/distinfo
Update to version 0.7. This version depends on the newly updated lutok-0.3.
PR: 183089
Submitted by: Julio Merino <julio@meroh.net>
Reviewed by: asomers
Approved by: bdrewery
|
Thu, 26 Sep 2013
|
[ 20:08 eadler ] 
328410 audio/clementine-player/Makefile
328410 audio/cuberok/Makefile
328410 devel/arm-eabi-binutils/Makefile
328410 devel/kyua-atf-compat/Makefile
328410 devel/kyua-testers/Makefile
328410 devel/kyua/Makefile
328410 devel/lutok/Makefile
328410 devel/p5-Cache-AgainstFile/Makefile
328410 games/abe/Makefile
328410 polish/libtlen/Makefile
Certain automated tools fail when @FreeBSD.org is not capitalized appropriatly.
Fix ports which don't follow convention.
|
Fri, 20 Sep 2013
|
[ 17:13 bapt ] 
327724 devel/k8048/Makefile
327724 devel/kBuild/Makefile
327724 devel/kaptain/Makefile
327724 devel/kcachegrind/Makefile
327724 devel/kdbg/Makefile
327724 devel/kdebindings4/Makefile
327724 devel/kdesdk4/Makefile
327724 devel/kdesvn-kde4/Makefile
327724 devel/kdevelop-kde4/Makefile
327724 devel/kdevelop-pg-qt/Makefile
(Only the first 10 of 2998 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3)
|
Sun, 16 Jun 2013
|
[ 14:22 bdrewery ] 
321052 devel/Makefile
321052 devel/kyua
321052 devel/kyua/Makefile
321052 devel/kyua/distinfo
321052 devel/kyua/files
321052 devel/kyua/files/patch-utils-config-nodes.cpp
321052 devel/kyua/files/patch-utils-config-nodes.ipp
321052 devel/kyua/files/patch-utils-config-tree.cpp
321052 devel/kyua/files/patch-utils-config-tree.ipp
321052 devel/kyua/pkg-descr
New port: devel/kyua:
Kyua (pronounced Q.A.) is a testing framework for both developers and
users. Kyua is different from most other testing frameworks in that it
puts the end user experience before anything else. There are multiple
reasons for users to run the tests themselves, and Kyua ensures that
they can do so in the most convenient way.
At the moment, Kyua is focused on implementing a solid foundation and a
powerful command-line tool to run tests implemented with the Automated
Testing Framework (ATF). Later on, Kyua will also provide a set of
language bindings (C, C++ and shell, at the least) to ease the
implementation of test cases in a variety of programming languages.
In effect, Kyua is intended to be a replacement for ATF.
WWW: https://code.google.com/p/kyua/
PR: ports/177641
Submitted by: asomers
Reviewed by: Garrett Cooper <yaneurabeya@gmail.com>
|
Number of commits found XX: 26 |