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 /dev-python/kaa-base | |
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 'dev-python/kaa-base')
-rw-r--r-- | dev-python/kaa-base/Manifest | 1 | ||||
-rw-r--r-- | dev-python/kaa-base/kaa-base-0.6.0-r1.ebuild | 42 | ||||
-rw-r--r-- | dev-python/kaa-base/metadata.xml | 19 |
3 files changed, 62 insertions, 0 deletions
diff --git a/dev-python/kaa-base/Manifest b/dev-python/kaa-base/Manifest new file mode 100644 index 000000000000..5e12c9aea8be --- /dev/null +++ b/dev-python/kaa-base/Manifest @@ -0,0 +1 @@ +DIST kaa-base-0.6.0.tar.gz 346849 SHA256 04fb0f610ec19a1aad1698d20829fb8caa34a97fe9cd4d9acf9f4f9f918d79b0 SHA512 685bfbab9ccdfed529ce17185f50700f8b090c0ca2f5f8e937609c9f03efd19536cc8c2ae8218415eea3ccd89269c92aa4d9bfe88ca3e951d7546ea4ce91cd6f WHIRLPOOL 4887fd6af4cfbf16701a604aacf4f78aedeb96db50c6955a7fbb15d45fd5824288b76f5aa372358fd7c0983b7ca0ea55390334a301c55bcd0e219d777ebf546e diff --git a/dev-python/kaa-base/kaa-base-0.6.0-r1.ebuild b/dev-python/kaa-base/kaa-base-0.6.0-r1.ebuild new file mode 100644 index 000000000000..4a25d6f3a4bf --- /dev/null +++ b/dev-python/kaa-base/kaa-base-0.6.0-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="sqlite?,threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Basic Framework for all Kaa Python Modules" +HOMEPAGE="http://freevo.sourceforge.net/kaa/" +SRC_URI="mirror://sourceforge/freevo/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="avahi sqlite tls lirc" + +DEPEND=">=dev-libs/glib-2.4.0 + avahi? ( net-dns/avahi[python] ) + sqlite? ( dev-python/dbus-python[${PYTHON_USEDEP}] )" +RDEPEND="${DEPEND} + dev-python/pynotifier[${PYTHON_USEDEP}] + lirc? ( dev-python/pylirc[${PYTHON_USEDEP}] ) + tls? ( dev-python/tlslite[${PYTHON_USEDEP}] )" + +DISTUTILS_IN_SOURCE_BUILD=1 + +python_prepare_all() { + sed -i -e 's:from pysqlite2 import dbapi2:import sqlite3:' \ + src/db.py || die + + rm -fr src/pynotifier + distutils-r1_python_prepare_all +} + +python_compile() { + local CFLAGS="${CFLAGS} -fno-strict-aliasing" + export CFLAGS + distutils-r1_python_compile +} diff --git a/dev-python/kaa-base/metadata.xml b/dev-python/kaa-base/metadata.xml new file mode 100644 index 000000000000..4fbeabc7eaf8 --- /dev/null +++ b/dev-python/kaa-base/metadata.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> + <longdescription> + Kaa-base provides the base Kaa framework and is an implicit + dependency for all kaa modules. The kaa framework includes a + mainloop facility with an API for signals and callbacks, timers, + process and thread management, file descriptor monitoring (with + INotify support), inter-process communication, as well as a + rich, practically magical API for asynchronous programming. + </longdescription> + <use> + <flag name="tls">SSL/TLS support via <pkg>dev-python/tlslite</pkg></flag> + </use> + <upstream> + <remote-id type="sourceforge">freevo</remote-id> + </upstream> +</pkgmetadata> |