From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 61691139B2A for ; Tue, 8 Sep 2015 17:44:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18B2B141D5; Tue, 8 Sep 2015 17:44:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F32BD141F9 for ; Tue, 8 Sep 2015 17:44:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82114340666 for ; Tue, 8 Sep 2015 17:44:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D23BD17A for ; Tue, 8 Sep 2015 17:43:58 +0000 (UTC) From: "Julian Ospald" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julian Ospald" Message-ID: <1441734013.88e15ca569901bc9861797be475e96b7d7f6e147.hasufell@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-application/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-application/Manifest dev-python/python-application/metadata.xml dev-python/python-application/python-application-1.5.0.ebuild X-VCS-Directories: dev-python/python-application/ X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald X-VCS-Revision: 88e15ca569901bc9861797be475e96b7d7f6e147 X-VCS-Branch: master Date: Tue, 8 Sep 2015 17:43:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 23191929-0c79-40a2-9a32-de1a5372ea40 X-Archives-Hash: a4e74b91f46b28917e7933e8af0e3053 commit: 88e15ca569901bc9861797be475e96b7d7f6e147 Author: Julian Ospald gentoo org> AuthorDate: Tue Sep 8 00:08:53 2015 +0000 Commit: Julian Ospald gentoo org> CommitDate: Tue Sep 8 17:40:13 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88e15ca5 dev-python/python-application: initial import of version 1.5.0 Gentoo-Bug: 446026 dev-python/python-application/Manifest | 1 + dev-python/python-application/metadata.xml | 30 ++++++++++++++++++++++ .../python-application-1.5.0.ebuild | 19 ++++++++++++++ 3 files changed, 50 insertions(+) diff --git a/dev-python/python-application/Manifest b/dev-python/python-application/Manifest new file mode 100644 index 0000000..eda074b --- /dev/null +++ b/dev-python/python-application/Manifest @@ -0,0 +1 @@ +DIST python-application-1.5.0.tar.gz 43552 SHA256 9bc00c2c639bf633e2c5e08d4bf1bb5d7edaad6ccdd473692f0362df08f8aafc SHA512 9bf683a88bfb11ab5cf86b2d1ef86e22cf6fcb6004f0059b1d3cb2e1cde46827ced57a1cdd313c1d48dbd1ad610e9d36617619f79af748c55c517089720cb2b1 WHIRLPOOL 321411f6f33d29f2847accc805c78bbca3dc255e4768954d75904cea7f3843d2ff15f51bcc62706d8b6101b61d5e9d294968e607ff63f22a75982b00e8850f3a diff --git a/dev-python/python-application/metadata.xml b/dev-python/python-application/metadata.xml new file mode 100644 index 0000000..91adab3 --- /dev/null +++ b/dev-python/python-application/metadata.xml @@ -0,0 +1,30 @@ + + + + python + + hasufell@gentoo.org + Julian Ospald + + + This package is a collection of modules that are useful when + building python applications. Their purpose is to eliminate the + need to divert resources into implementing the small tasks that + every application needs to do in order to run successfully and + focus instead on the application logic itself. + + The modules that the application package provides are: + 1. process - UNIX process and signal management. + 2. python - python utility classes and functions. + 3. configuration - a simple interface to handle configuration files. + 4. log - an extensible system logger for console and syslog. + 5. debug - memory troubleshooting and execution timing. + 6. system - interaction with the underlying operating system. + 7. notification - an application wide notification system. + 8. version - manage version numbers for applications and packages. + 9. dependency - verify package dependencies at runtime. + + + python-application + + diff --git a/dev-python/python-application/python-application-1.5.0.ebuild b/dev-python/python-application/python-application-1.5.0.ebuild new file mode 100644 index 0000000..23a3e8b --- /dev/null +++ b/dev-python/python-application/python-application-1.5.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) + +inherit distutils-r1 + +DESCRIPTION="Basic building blocks for python applications" +HOMEPAGE="http://ag-projects.com/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +IUSE="" + +KEYWORDS="~amd64 ~x86"