From 9ba866d08ba85d7fa6fa74dee3ff4d01caa4178d Mon Sep 17 00:00:00 2001 From: ostree Date: Fri, 25 Sep 2015 17:32:59 +0100 Subject: [PATCH 1/2] dotty ebuild --- dev-python/dotty/dotty-9999.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 dev-python/dotty/dotty-9999.ebuild diff --git a/dev-python/dotty/dotty-9999.ebuild b/dev-python/dotty/dotty-9999.ebuild new file mode 100644 index 000000000..2076311e3 --- /dev/null +++ b/dev-python/dotty/dotty-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 git-r3 + +DESCRIPTION="EFILTER Query Language" +HOMEPAGE="https://github.com/google/dotty" +SRC_URI="" +EGIT_REPO_URI="https://github.com/google/dotty.git" +EGIT_CHECKOUT_DIR="${WORKDIR}/dotty" +S="${WORKDIR}/${PN}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND}" From 9999c459b19af53b62080643197b02d002114f54 Mon Sep 17 00:00:00 2001 From: ostree Date: Fri, 25 Sep 2015 20:07:08 +0100 Subject: [PATCH 2/2] pyaff4,acora,sortedcontainers,interaltree init --- dev-python/acora/acora-9999.ebuild | 25 +++++++++++++++++++ .../intervaltree/intervaltree-9999.ebuild | 25 +++++++++++++++++++ dev-python/pyaff4/pyaff4-9999.ebuild | 25 +++++++++++++++++++ .../sortedcontainers-9999.ebuild | 25 +++++++++++++++++++ 4 files changed, 100 insertions(+) create mode 100644 dev-python/acora/acora-9999.ebuild create mode 100644 dev-python/intervaltree/intervaltree-9999.ebuild create mode 100644 dev-python/pyaff4/pyaff4-9999.ebuild create mode 100644 dev-python/sortedcontainers/sortedcontainers-9999.ebuild diff --git a/dev-python/acora/acora-9999.ebuild b/dev-python/acora/acora-9999.ebuild new file mode 100644 index 000000000..7cf0c904f --- /dev/null +++ b/dev-python/acora/acora-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 git-r3 + +DESCRIPTION="Fast multi-keyword search engine for text strings" +HOMEPAGE="https://github.com/scoder/acora" +SRC_URI="" +EGIT_REPO_URI="https://github.com/scoder/acora.git" +EGIT_CHECKOUT_DIR="${WORKDIR}/acora" +S="${WORKDIR}/${PN}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND}" diff --git a/dev-python/intervaltree/intervaltree-9999.ebuild b/dev-python/intervaltree/intervaltree-9999.ebuild new file mode 100644 index 000000000..55c82b55a --- /dev/null +++ b/dev-python/intervaltree/intervaltree-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 git-r3 + +DESCRIPTION="Editable interval tree data structure for Python 2 and 3" +HOMEPAGE="https://github.com/chaimleib/intervaltree" +SRC_URI="" +EGIT_REPO_URI="https://github.com/chaimleib/intervaltree.git" +EGIT_CHECKOUT_DIR="${WORKDIR}/intervaltree" +S="${WORKDIR}/${PN}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND}" diff --git a/dev-python/pyaff4/pyaff4-9999.ebuild b/dev-python/pyaff4/pyaff4-9999.ebuild new file mode 100644 index 000000000..b572b9649 --- /dev/null +++ b/dev-python/pyaff4/pyaff4-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 git-r3 + +DESCRIPTION="Python Advanced Forensic Format Version 4 library." +HOMEPAGE="https://github.com/google/aff4" +SRC_URI="" +EGIT_REPO_URI="https://github.com/google/aff4.git" +EGIT_CHECKOUT_DIR="${WORKDIR}/pyaff4" +S="${WORKDIR}/pyaff4/${PN}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND}" diff --git a/dev-python/sortedcontainers/sortedcontainers-9999.ebuild b/dev-python/sortedcontainers/sortedcontainers-9999.ebuild new file mode 100644 index 000000000..b0d3bcb52 --- /dev/null +++ b/dev-python/sortedcontainers/sortedcontainers-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 git-r3 + +DESCRIPTION="Python Sorted Container Types: SortedList, SortedDict, and SortedSet" +HOMEPAGE="https://github.com/grantjenks/sorted_containers" +SRC_URI="" +EGIT_REPO_URI="https://github.com/grantjenks/sorted_containers.git" +EGIT_CHECKOUT_DIR="${WORKDIR}/sortedcontainers" +S="${WORKDIR}/${PN}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND}"