This commit is contained in:
Mario Fetka
2011-11-19 19:06:34 +01:00
parent 01b3757c0f
commit 0aaff784eb
22 changed files with 144 additions and 408 deletions

View File

@@ -1,16 +0,0 @@
# ChangeLog for dev-python/skimpy
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
03 Mar 2010; Mario Fetka <mario.fetka@gmail.com> skimpy-1.4.ebuild:
add arm keyword
17 Apr 2009; Mario Fetka <mario.fetka@gmail.com> skimpy-1.4.ebuild:
repoman cleanup
16 Apr 2009; Mario Fetka <mario.fetka@gmail.com> skimpy-1.4.ebuild:
correct header
18 Feb 2009; Mario Fetka <mario.fetka@gmail.com> +metadata.xml:
Initial Package

View File

@@ -1,4 +0,0 @@
DIST skimpy_1_4.tar.gz 2192519 RMD160 eaa3fe1b470e193ed60d4c429fd36c1cf098a136 SHA1 6aa4e4904ca72747914f4230d1829b7631f1fda6 SHA256 bc6a19e3673a508121be354236176d3d1cb80c67c754b58973392e415a345d56
EBUILD skimpy-1.4.ebuild 637 RMD160 c0997b197efe3c17fefc21af5fc853252edbe1d4 SHA1 1ca5df899da1ff9e9581b8e41d3785dbc12b446a SHA256 d4b90f4faeea8a16b20af9212360ccb3da3330e88890de86f579bb1c304e97fb
MISC ChangeLog 469 RMD160 9e07dc1abb47ab1868207fd628adfdd0e62cd7f8 SHA1 1c9949c0bc5f92a620d74d9e6802e8fc4e4e3980 SHA256 7a1d138019082fccaf1216e9a6d9840eb42395799219bdeb9f998151c228f6ec
MISC metadata.xml 1238 RMD160 c82938e77f387291d6a1c3bf9b0d802f2878dd12 SHA1 b5738f14922c69e78cfb867acdc65eeea25977bf SHA256 2c13f98be5fa8bdaf21ac86bcd00bbeb8944df5615de0cfce35ae4c00ef4b4d5

View File

@@ -1,34 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<!--
$Header: /var/cvsroot/gentoo-x86/skel.metadata.xml,v 1.18 2008/07/28 19:27:05 cardoe Exp $
This is the example metadata file.
The root element of this file is <pkgmetadata>. Within this element a
number of subelements are allowed: herd, maintainer, and
longdescription. herd is a required subelement.
For a full description look at:
http://www.gentoo.org/proj/en/devrel/handbook/handbook.xml?part=2&chap=4
Before committing, please remove the comments from this file. They are
not relevant for general metadata.xml files.
-->
<pkgmetadata>
<herd>no-herd</herd>
<maintainer>
<email>@gentoo.org</email>
<!-- <description>Description of the maintainership</description> -->
</maintainer>
<!-- <longdescription>Long description of the package</longdescription> -->
<!--
<use>
<flag name='flag'>Description of how USE='flag' affects this package</flag>
<flag name='userland_GNU'>Description of how USERLAND='GNU' affects this
package</flag>
<flag name='aspell'>Uses <pkg>app-text/aspell</pkg> for spell checking.
Requires an installed dictionary from <cat>app-dicts</cat></flag>
</use>
-->
</pkgmetadata>

View File

@@ -1,28 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
NEED_PYTHON=2.4
inherit distutils versionator
MY_PN="skimpyGimpy"
MY_PV=$(replace_version_separator 1 '_' )
DESCRIPTION="Skimpy is an example of a Captcha"
HOMEPAGE="http://skimpygimpy.sourceforge.net/"
SRC_URI="mirror://sourceforge/skimpygimpy/${PN}_${MY_PV}.tar.gz"
LICENSE="BSD"
KEYWORDS="~amd64 ~arm ~x86"
SLOT="0"
IUSE="test"
S="${WORKDIR}/${MY_PN}_${MY_PV}"
DEPEND="dev-python/setuptools
test? ( dev-python/nose )"
RDEPEND=""
src_test() {
PYTHONPATH=. "${python}" setup.py test || die "tests failed"
}