View previous topic :: View next topic |
Author |
Message |
SpectreDragon Tux's lil' helper

Joined: 22 Aug 2008 Posts: 92 Location: Germany
|
Posted: Sat Feb 20, 2010 5:47 pm Post subject: any ebuilds for tortoisehg or iniparse? [Solved] |
|
|
Hi,
I recently tried out TortoiseHg (hgtk) and it seems really useful when working with mercurial. Unfortunately it seems that there are no ebuilds available, especially for iniparse.
TortoiseHg can be used just by cloning the repo but it is not really usable without iniparser as the configuration dialogs are not working. Are there any ebuilds around or is there an easy way of installing iniparse so that it is found by TortoiseHg?
Thanks in advance
Last edited by SpectreDragon on Sat Feb 20, 2010 11:43 pm; edited 1 time in total |
|
Back to top |
|
 |
SpectreDragon Tux's lil' helper

Joined: 22 Aug 2008 Posts: 92 Location: Germany
|
Posted: Sat Feb 20, 2010 11:43 pm Post subject: |
|
|
just noticed that it is really simple to write working ebuilds
iniparse-0.3.1.ebuild
Code: | # Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit distutils
DESCRIPTION="Better INI parser for Python"
SRC_URI="http://iniparse.googlecode.com/files/iniparse-${PV}.tar.gz"
HOMEPAGE="http://code.google.com/p/iniparse/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND=">=dev-lang/python-2.6"
RDEPEND="${DEPEND}"
S=${WORKDIR}/iniparse-${PV} |
also found:
https://bugs.gentoo.org/show_bug.cgi?id=277383 |
|
Back to top |
|
 |
|