voyageur 14/09/30 11:28:17 Added: metadata.xml ChangeLog pyinsane-1.3.8.ebuild Log: Initial commit, based on lorelei overlay version (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
Revision Changes Path 1.1 dev-python/pyinsane/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/metadata.xml?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/metadata.xml?rev=1.1&content-type=text/plain Index: metadata.xml =================================================================== <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <maintainer> <email>[email protected]</email> <name>Bernard Cafarelli</name> </maintainer> <longdescription lang="en"> Python implementation of the Sane API (using ctypes) and abstration layer. The code is divided in 3 layers: * rawapi : Ctypes binding to the raw Sane API * 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. * 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. </longdescription> </pkgmetadata> 1.1 dev-python/pyinsane/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/ChangeLog?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/ChangeLog?rev=1.1&content-type=text/plain Index: ChangeLog =================================================================== # ChangeLog for dev-python/pyinsane # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyinsane/ChangeLog,v 1.1 2014/09/30 11:28:17 voyageur Exp $ *pyinsane-1.3.8 (30 Sep 2014) 30 Sep 2014; Bernard Cafarelli <[email protected]> +pyinsane-1.3.8.ebuild, +metadata.xml: Initial commit, based on lorelei overlay version 1.1 dev-python/pyinsane/pyinsane-1.3.8.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/pyinsane-1.3.8.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyinsane/pyinsane-1.3.8.ebuild?rev=1.1&content-type=text/plain Index: pyinsane-1.3.8.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyinsane/pyinsane-1.3.8.ebuild,v 1.1 2014/09/30 11:28:17 voyageur Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3} ) inherit distutils-r1 DESCRIPTION="Python implementation of the Sane API and abstration layer" HOMEPAGE="https://github.com/jflesch/pyinsane" SRC_URI="https://github.com/jflesch/pyinsane/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND="media-gfx/sane-backends virtual/python-imaging" DEPEND="${RDEPEND}"
