Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyinsane: metadata.xml ChangeLog pyinsane-1.3.8.ebuild
Date: Tue, 30 Sep 2014 11:28:22
Message-Id: 20140930112817.5ED87695A@oystercatcher.gentoo.org
1 voyageur 14/09/30 11:28:17
2
3 Added: metadata.xml ChangeLog pyinsane-1.3.8.ebuild
4 Log:
5 Initial commit, based on lorelei overlay version
6
7 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
8
9 Revision Changes Path
10 1.1 dev-python/pyinsane/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>voyageur@g.o</email>
22 <name>Bernard Cafarelli</name>
23 </maintainer>
24 <longdescription lang="en">
25 Python implementation of the Sane API (using ctypes) and abstration layer.
26
27 The code is divided in 3 layers:
28
29 * rawapi : Ctypes binding to the raw Sane API
30 * abstract : An Object-Oriented layer that simplifies the use of the Sane API and try to avoid possible misuse of the Sane API. When scanning, it also takes care of returning a Pillow image.
31 * abstract_th : The Sane API is not thread-safe and cannot be used in a multi-threaded environment easily. This layer solves this problem by using a fully dedicated thread.
32 </longdescription>
33 </pkgmetadata>
34
35
36
37 1.1 dev-python/pyinsane/ChangeLog
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/ChangeLog?rev=1.1&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/ChangeLog?rev=1.1&content-type=text/plain
41
42 Index: ChangeLog
43 ===================================================================
44 # ChangeLog for dev-python/pyinsane
45 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
46 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyinsane/ChangeLog,v 1.1 2014/09/30 11:28:17 voyageur Exp $
47
48 *pyinsane-1.3.8 (30 Sep 2014)
49
50 30 Sep 2014; Bernard Cafarelli <voyageur@g.o> +pyinsane-1.3.8.ebuild,
51 +metadata.xml:
52 Initial commit, based on lorelei overlay version
53
54
55
56
57 1.1 dev-python/pyinsane/pyinsane-1.3.8.ebuild
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/pyinsane-1.3.8.ebuild?rev=1.1&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/pyinsane-1.3.8.ebuild?rev=1.1&content-type=text/plain
61
62 Index: pyinsane-1.3.8.ebuild
63 ===================================================================
64 # Copyright 1999-2014 Gentoo Foundation
65 # Distributed under the terms of the GNU General Public License v2
66 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyinsane/pyinsane-1.3.8.ebuild,v 1.1 2014/09/30 11:28:17 voyageur Exp $
67
68 EAPI=5
69 PYTHON_COMPAT=( python{2_7,3_3} )
70
71 inherit distutils-r1
72
73 DESCRIPTION="Python implementation of the Sane API and abstration layer"
74 HOMEPAGE="https://github.com/jflesch/pyinsane"
75 SRC_URI="https://github.com/jflesch/pyinsane/archive/v${PV}.tar.gz -> ${P}.tar.gz"
76
77 LICENSE="GPL-3"
78 SLOT="0"
79 KEYWORDS="~amd64 ~x86"
80
81 RDEPEND="media-gfx/sane-backends
82 virtual/python-imaging"
83 DEPEND="${RDEPEND}"