diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-misc/evemu | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-misc/evemu')
-rw-r--r-- | app-misc/evemu/Manifest | 3 | ||||
-rw-r--r-- | app-misc/evemu/evemu-1.2.0-r1.ebuild | 43 | ||||
-rw-r--r-- | app-misc/evemu/evemu-2.0.0.ebuild | 44 | ||||
-rw-r--r-- | app-misc/evemu/evemu-2.1.0.ebuild | 44 | ||||
-rw-r--r-- | app-misc/evemu/files/evemu-1.2.0-install-man.patch | 43 | ||||
-rw-r--r-- | app-misc/evemu/metadata.xml | 8 |
6 files changed, 185 insertions, 0 deletions
diff --git a/app-misc/evemu/Manifest b/app-misc/evemu/Manifest new file mode 100644 index 000000000000..20dd2d0db8f2 --- /dev/null +++ b/app-misc/evemu/Manifest @@ -0,0 +1,3 @@ +DIST evemu-1.2.0.tar.xz 498400 SHA256 bcc2a97a8e10048ff6b9122180d27ccada63d4f8ca89e61e962201a13551f475 SHA512 41bef7b2e0f0769e4affb5633f41e5352224f5acfb5a001a27548f2236a1dc23d444bbfc3e93ea8eb518a7f4e628185eef9ca5ecefa4d87b201224bfeee28044 WHIRLPOOL 31879f637959265f7c8067c8dedd2b57fa82aeaac94af53fd42270715579163165f7a3d4fb460f2d15080c42d467c4a872c1dbc964018b684f32db49613ef97b +DIST evemu-2.0.0.tar.xz 508212 SHA256 2734e980c2bd7450270aec49a14e04d0042a6d39d3946c23ed99a3f86c9af061 SHA512 4853c36dda5e5e015561cffe0cbfbe8e17c10562c7842dd0d9a969cd1b26a1513be49f4310733be862c847828b6dae1cb77b0ae6c98463fcd7cf8619f6502053 WHIRLPOOL a222ebd92c146e3a787b6a51ea5edb2aa373ce2be1b2b82988786e575f744ac206febce0af5c0e2be3c2e43b1155f387e6db5f1dcde5e0aa739ca09ab0f8d111 +DIST evemu-2.1.0.tar.xz 502240 SHA256 0c87360882751356e9f977ebf7438c00fe97deb232ac725dd86e5ba78203ee97 SHA512 16ed613aa465d85f617a5dd6b958b0480c55477836effc86c293facdb500152d5b387a79f14802f2db6a3c721cc754cac2e8fc605f5e689962742b8fc361c81b WHIRLPOOL bc4e9631eebe6329d726adf853e8ef716246d70cf4f3ee50497bec6d654c8483c9291a40f532d488813d0c2568cd106e03a131cfa6aab86f037ad3ee1f0a8d18 diff --git a/app-misc/evemu/evemu-1.2.0-r1.ebuild b/app-misc/evemu/evemu-1.2.0-r1.ebuild new file mode 100644 index 000000000000..6d4a292f3902 --- /dev/null +++ b/app-misc/evemu/evemu-1.2.0-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) +AUTOTOOLS_AUTORECONF=1 +AUTOTOOLS_IN_SOURCE_BUILD=1 + +inherit autotools-utils python-single-r1 + +DESCRIPTION="Tools and bindings for kernel input event device emulation, data capture, and replay" +HOMEPAGE="http://www.freedesktop.org/wiki/Evemu/" +SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz" + +LICENSE="LGPL-3 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="python static-libs" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND="python? ( ${PYTHON_DEPS} )" +DEPEND="app-arch/xz-utils + ${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-install-man.patch ) + +src_prepare() { + if ! use python ; then + sed '/SUBDIRS/s/python//' -i Makefile.am || die + fi + autotools-utils_src_prepare +} + +src_test() { + if use python ; then + if [[ ! ${EUID} -eq 0 ]] || has sandbox $FEATURES || has usersandbox $FEATURES ; then + ewarn "Tests require userpriv, sandbox, and usersandbox to be disabled in FEATURES." + else + emake check + fi + fi +} diff --git a/app-misc/evemu/evemu-2.0.0.ebuild b/app-misc/evemu/evemu-2.0.0.ebuild new file mode 100644 index 000000000000..941084061028 --- /dev/null +++ b/app-misc/evemu/evemu-2.0.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) +AUTOTOOLS_AUTORECONF=1 +AUTOTOOLS_IN_SOURCE_BUILD=1 + +inherit autotools-utils python-single-r1 + +DESCRIPTION="Tools and bindings for kernel input event device emulation, data capture, and replay" +HOMEPAGE="http://www.freedesktop.org/wiki/Evemu/" +SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz" + +LICENSE="LGPL-3 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="python static-libs" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND="python? ( ${PYTHON_DEPS} ) + >=dev-libs/libevdev-0.5" +DEPEND="app-arch/xz-utils + ${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-1.2.0-install-man.patch ) + +src_prepare() { + if ! use python ; then + sed '/SUBDIRS/s/python//' -i Makefile.am || die + fi + autotools-utils_src_prepare +} + +src_test() { + if use python ; then + if [[ ! ${EUID} -eq 0 ]] || has sandbox $FEATURES || has usersandbox $FEATURES ; then + ewarn "Tests require userpriv, sandbox, and usersandbox to be disabled in FEATURES." + else + emake check + fi + fi +} diff --git a/app-misc/evemu/evemu-2.1.0.ebuild b/app-misc/evemu/evemu-2.1.0.ebuild new file mode 100644 index 000000000000..73a7de9a8fea --- /dev/null +++ b/app-misc/evemu/evemu-2.1.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) +AUTOTOOLS_AUTORECONF=1 +AUTOTOOLS_IN_SOURCE_BUILD=1 + +inherit autotools-utils python-single-r1 + +DESCRIPTION="Tools and bindings for kernel input event device emulation, data capture, and replay" +HOMEPAGE="http://www.freedesktop.org/wiki/Evemu/" +SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz" + +LICENSE="LGPL-3 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="python static-libs" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND="python? ( ${PYTHON_DEPS} ) + >=dev-libs/libevdev-1.2.99.902" +DEPEND="app-arch/xz-utils + ${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-1.2.0-install-man.patch ) + +src_prepare() { + if ! use python ; then + sed '/SUBDIRS/s/python//' -i Makefile.am || die + fi + autotools-utils_src_prepare +} + +src_test() { + if use python ; then + if [[ ! ${EUID} -eq 0 ]] || has sandbox $FEATURES || has usersandbox $FEATURES ; then + ewarn "Tests require userpriv, sandbox, and usersandbox to be disabled in FEATURES." + else + emake check + fi + fi +} diff --git a/app-misc/evemu/files/evemu-1.2.0-install-man.patch b/app-misc/evemu/files/evemu-1.2.0-install-man.patch new file mode 100644 index 000000000000..73d18d7c7e0f --- /dev/null +++ b/app-misc/evemu/files/evemu-1.2.0-install-man.patch @@ -0,0 +1,43 @@ +--- evemu-1.2.0/configure.ac ++++ evemu-1.2.0/configure.ac +@@ -39,9 +39,6 @@ + AC_ARG_VAR([ASCIIDOC], [Path to asciidoc command]) + AC_PATH_PROG([ASCIIDOC], [asciidoc]) + AM_CONDITIONAL([HAVE_DOCTOOLS], [test "x$XMLTO" != "x" && test "x$ASCIIDOC" != "x"]) +-if test "x$XMLTO" = "x" || test "x$ASCIIDOC" = "x"; then +- AC_MSG_WARN([xmlto or asciidoc not found - cannot create man pages without it]) +-fi + + AC_SUBST(AM_CFLAGS, + "-Wall -Wextra -pedantic") +--- evemu-1.2.0/tools/Makefile.am ++++ evemu-1.2.0/tools/Makefile.am +@@ -15,8 +15,6 @@ + evemu_describe_SOURCES = evemu-record.c find_event_devices.c find_event_devices.h + evemu_record_SOURCES = evemu-record.c find_event_devices.c find_event_devices.h + +-# man page generation +-if HAVE_DOCTOOLS + # actual man pages + man_pages_sources = evemu-describe.txt evemu-device.txt + # shadow man pages +@@ -24,6 +22,8 @@ + + man_pages = $(man_pages_sources:.txt=.1) $(man_pages_shadows) + ++# man page generation ++if HAVE_DOCTOOLS + $(man_pages_shadows): $(man_pages_sources:.txt=.1) + + SUFFIXES = .1 .txt .xml +@@ -33,9 +33,9 @@ + + .txt.xml: + $(AM_V_GEN)$(ASCIIDOC) -b docbook -d manpage -o $@ $< ++endif + + EXTRA_DIST = $(man_pages_sources) + dist_man_MANS = $(man_pages) + CLEANFILES = $(dist_man_MANS) + MAINTAINERCLEANFILES = $(man_pages) *.xml +-endif diff --git a/app-misc/evemu/metadata.xml b/app-misc/evemu/metadata.xml new file mode 100644 index 000000000000..efa5eb0078f3 --- /dev/null +++ b/app-misc/evemu/metadata.xml @@ -0,0 +1,8 @@ +<?xml version = '1.0' encoding = 'UTF-8'?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>radhermit@gentoo.org</email> + <name>Tim Harder</name> + </maintainer> +</pkgmetadata> |