summaryrefslogtreecommitdiff
path: root/package/evtest
AgeCommit message (Collapse)Author
2016-06-19package/evtest: add hash fileYann E. MORIN
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-07-27evtest: bump version to 1.33Peter Seiderer
Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-02-22evtest: disable documentationVicente Olivert Riera
evtest uses asciidoc to generate documentation, but /usr/bin/asciidoc will try to use buildroot's host-python which doesn't have the required unicodedata. To avoid that, define ASCIIDOC as an empty string so the Makefile can't find the executable and skips the documentation generation. This is the same solution used in the evemu package. Otherwise it will fail with this message: make[1]: Entering directory `/br/output/build/evtest-1.32' /usr/bin/make all-am make[2]: Entering directory `/br/output/build/evtest-1.32' File "/usr/bin/asciidoc", line 95 except KeyError, k: return None Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2014-08-09evetst: bump to version 1.32Peter Seiderer
Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-05-03evtest: bump version to 1.31Peter Seiderer
- update version to 1.31 - correct license to GPLv2+ - change download url to official repository - remove evtest-capture support (dropped since 1.31) - change broken project URL to official repository Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2013-12-25Config.in files: use if/endif instead of 'depends on' for main symbolThomas De Schampheleire
In the Config.in file of package foo, it often happens that there are other symbols besides BR2_PACKAGE_FOO. Typically, these symbols only make sense when foo itself is enabled. There are two ways to express this: with depends on BR2_PACKAGE_FOO in each extra symbol, or with if BR2_PACKAGE_FOO ... endif around the entire set of extra symbols. The if/endif approach avoids the repetition of 'depends on' statements on multiple symbols, so this is clearly preferred. But even when there is only one extra symbol, if/endif is a more logical choice: - it is future-proof for when extra symbols are added - it allows to have just one strategy instead of two (less confusion) This patch modifies the Config.in files accordingly. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2013-06-06Normalize separator size to 80Alexandre Belloni
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-10-29packages: switch to host-pkgconfGustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-09-28evtest: add as a seperate packagePeter Korsgaard
Evtest is nowadays maintained as a seperate package by Peter Hutterer. The project doesn't release any tarballs, so use the one of Fedora instead so we don't need to autoreconf: http://comments.gmane.org/gmane.comp.freedesktop.xorg.announce/1671 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>