qnikst 14/03/12 21:00:04 Added: metadata.xml tasty-rerun-1.1.1.ebuild ChangeLog Log: new package (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xEAD50D64D8D3571A!)
Revision Changes Path 1.1 dev-haskell/tasty-rerun/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/tasty-rerun/metadata.xml?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/tasty-rerun/metadata.xml?rev=1.1&content-type=text/plain Index: metadata.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>haskell</herd> <maintainer> <email>hask...@gentoo.org</email> </maintainer> <longdescription> This ingredient adds the ability to run tests by first filtering the test tree based on the result of a previous test run. For example, you can use this to run only those tests that failed in the last run, or to run only tests that have been added since tests were last ran. This ingredient is specifically an ingredient *transformer* - given a list of 'Tasty.Ingredient's, 'rerunningTests' adds the ability for all of these ingredients to run against a filtered test tree. This transformer can be applied as follows: > import Test.Tasty > import Test.Tasty.Runners > > main :: IO () > main = > defaultMainWithIngredients > [ rerunningTests [ listingTests, consoleTestReporter ] ] > tests > > tests :: TestTree > tests = undefined This ingredient adds three command line parameters: [@--rerun-update@] If specified the results of this test run will be saved to the log file at @--rerun-log-file@. If the ingredient does not execute tests (for example, @--list-tests@ is used) then the log file will not be updated. This option is not enabled by default. This option does not require a value. [@--rerun-log-file@] The path to the log file to read previous test information from, and where to write new information to (if @--rerun-update@ is specified). This option defaults to @.tasty-rerun-log@. [@--rerun-filter@] Which filters to apply to the 'Tasty.TestTree' based on previous test runs. The value of this option is a comma separated list of the following options: * @failures@: Only run tests that failed on the previous run. * @exceptions@: Only run tests that threw an exception on the previous run. * @new@: Only run tests that are new since the previous test run. * @successful@: Only run tests that were successful in the previous run. Multiple options can be combined and will be taken under disjunction - so @--rerun-filter=failures,exceptions@ will run only tests that failed *or* threw an exception on the last run. Defaults to all filters, which means all tests will be ran. </longdescription> </pkgmetadata> 1.1 dev-haskell/tasty-rerun/tasty-rerun-1.1.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/tasty-rerun/tasty-rerun-1.1.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/tasty-rerun/tasty-rerun-1.1.1.ebuild?rev=1.1&content-type=text/plain Index: tasty-rerun-1.1.1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/tasty-rerun/tasty-rerun-1.1.1.ebuild,v 1.1 2014/03/12 21:00:04 qnikst Exp $ EAPI=5 # ebuild generated by hackport 0.3.6.9999 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal DESCRIPTION="Run tests by filtering the test tree depending on the result of previous test runs" HOMEPAGE="http://github.com/ocharles/tasty-rerun" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND=">=dev-haskell/mtl-2.1.2:=[profile?] >=dev-haskell/optparse-applicative-0.6:=[profile?] >=dev-haskell/reducers-3.10.1:=[profile?] >=dev-haskell/split-0.1:=[profile?] <dev-haskell/split-0.3:=[profile?] >=dev-haskell/stm-2.4.2:=[profile?] >=dev-haskell/tagged-0.7:=[profile?] <dev-haskell/tagged-0.8:=[profile?] >=dev-haskell/tasty-0.8:=[profile?] <dev-haskell/tasty-0.9:=[profile?] >=dev-haskell/transformers-0.3.0.0:=[profile?] >=dev-lang/ghc-7.6.1:= " DEPEND="${RDEPEND} >=dev-haskell/cabal-1.16.0 " 1.1 dev-haskell/tasty-rerun/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/tasty-rerun/ChangeLog?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/tasty-rerun/ChangeLog?rev=1.1&content-type=text/plain Index: ChangeLog =================================================================== # ChangeLog for dev-haskell/tasty-rerun # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/tasty-rerun/ChangeLog,v 1.1 2014/03/12 21:00:04 qnikst Exp $ *tasty-rerun-1.1.1 (12 Mar 2014) 12 Mar 2014; Alexander Vershilov <qni...@gentoo.org> +metadata.xml, +tasty-rerun-1.1.1.ebuild: new package