diff options
author | 2011-11-28 19:34:27 +0000 | |
---|---|---|
committer | 2011-11-28 19:34:27 +0000 | |
commit | 14313448b8e65e8808a4892f7d7e0e588f7d1035 (patch) | |
tree | 610e8aacbf9112b55a8a2f5bb69e967f2ccf6db9 /app-portage | |
parent | http://my.opera.com/desktopteam/blog/2011/11/28/glyphs-and-plugins (diff) | |
download | gentoo-2-14313448b8e65e8808a4892f7d7e0e588f7d1035.tar.gz gentoo-2-14313448b8e65e8808a4892f7d7e0e588f7d1035.tar.bz2 gentoo-2-14313448b8e65e8808a4892f7d7e0e588f7d1035.zip |
versiom bump
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/euscan/ChangeLog | 7 | ||||
-rw-r--r-- | app-portage/euscan/euscan-0.1.0.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/app-portage/euscan/ChangeLog b/app-portage/euscan/ChangeLog index 4a19e6da1b51..f4d9c62471f1 100644 --- a/app-portage/euscan/ChangeLog +++ b/app-portage/euscan/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-portage/euscan # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/euscan/ChangeLog,v 1.1 2011/09/25 17:41:38 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/euscan/ChangeLog,v 1.2 2011/11/28 19:34:27 hwoarang Exp $ + +*euscan-0.1.0 (28 Nov 2011) + + 28 Nov 2011; Markos Chandras <hwoarang@gentoo.org> +euscan-0.1.0.ebuild: + versiom bump *euscan-9999 (25 Sep 2011) diff --git a/app-portage/euscan/euscan-0.1.0.ebuild b/app-portage/euscan/euscan-0.1.0.ebuild new file mode 100644 index 000000000000..314cdb32d3ab --- /dev/null +++ b/app-portage/euscan/euscan-0.1.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/euscan/euscan-0.1.0.ebuild,v 1.1 2011/11/28 19:34:27 hwoarang Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.[45] 3.*" +PYTHON_USE_WITH="xml" +PYTHON_NONVERSIONED_EXECUTABLES=(".*") + +inherit distutils python + +DESCRIPTION="Ebuild upstream scan utility" +HOMEPAGE="http://euscan.iksaif.net" +SRC_URI="http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-apps/portage" +RDEPEND="${DEPEND} + >=app-portage/gentoolkit-0.2.8 + dev-python/argparse + dev-python/setuptools + dev-python/beautifulsoup" + +distutils_src_compile_pre_hook() { + echo VERSION="${PV}" "$(PYTHON)" setup.py set_version + VERSION="${PV}" "$(PYTHON)" setup.py set_version +} + +src_compile() { + distutils_src_compile +} |