Sync with portage [Tue Jul 9 09:50:21 MSK 2013].

mhiretskiy
root 11 years ago
parent 2c948a2d97
commit 51e1652603

@ -2,3 +2,4 @@ DIST emacspeak-30.0-patches.tar.bz2 1609 SHA256 771c894533f60a2d4fe352255c7d50a2
DIST emacspeak-30.0.tar.bz2 1662093 SHA256 1b7d28beaf8cd5b5b5a4d63e813896b51e907dd125e992fbfc85df05feb03e3c SHA512 65c2e26dd935e98d2e01deaec23ffdd6bbbe51df2df44401ef443789d9f32141a93631d5456c0863b20712a688faed247086ddb56ea2c8aafebfb4e21d6077d0 WHIRLPOOL 58373b1bdb7a1b0f72b63ee2f61ed3ae64db9ed5706dcd99e8e42990d8a148c2b534ad0d0a371dd2dbce4f825d09bdf4cb2a42f4ba514cdf339f928ca6d7320b
DIST emacspeak-31.0.tar.bz2 1668085 SHA256 2b759ced3fa509ae8773c832f01b1000ea0b726c3fbe40ac1e72ad3f603049af SHA512 56e179c5e64242b2e8c7cc5690ed7592e78b91a3246fc9a23f33172b25a1e972383a59d4b833b95dcf962346beed3d86d49676558366d2eef3a6e479b01239a8 WHIRLPOOL 4895918deb0609c36c8b49603c510366503f248ec2f00b528ce61ea56e23cd09377c793345685ffbf221811f7b890a4f472f7ee27cfedca5edb8399d549d414a
DIST emacspeak-33.0.tar.bz2 6996664 SHA256 27810e45d29942bf4af23178db6a8947b5f38162445a5b99e6fa9c2eca3f0e9c SHA512 6eafc788ad472c425d26301dd6948222c52c2b2b49bb6b14b19c0c4620cef5de87fdee2a531be3a963c883562461744458aed9e123a9512c2a2945dab73ef4a2 WHIRLPOOL cb9b11c475498137844ef47e502f76f83d1e9b8b63de2f8bfd6b8711b14d759468a967347613dac168fe0acf45bf5df11ac53dcb192b9455188cd1940f1d822f
DIST emacspeak-38.0.tar.bz2 4957271 SHA256 e06223b1d85b988bb641d99e07557a9d8cfc3f53ec8b5b4e29a5d72a7cf6eecb SHA512 f6cdb8f8e105e3d0fffeebe1be6791d554c042bd46d57a0a80decf4eb632aca8e00a65d4d328644907b4141ac2850ca56175fa54967ea463185417d233a621d2 WHIRLPOOL a385f39bf4bd4cdf2b8aa0927316c7ed71500a27d61b32700c12eeeecae32f8ea7ba3994e861ed252bd4e059a248d9b2226abf09330f5015b0afdc786045fbcb

@ -0,0 +1,62 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-38.0.ebuild,v 1.1 2013/07/09 02:25:08 williamh Exp $
EAPI=5
inherit eutils
if [[ ${PV} == "9999" ]] ; then
ESVN_REPO_URI="http://${PN}.googlecode.com/svn/trunk"
inherit subversion
else
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
KEYWORDS="~amd64 ~ppc ~x86"
fi
DESCRIPTION="the emacspeak audio desktop"
HOMEPAGE="http://emacspeak.sourceforge.net/"
LICENSE="BSD GPL-2"
SLOT="0"
IUSE="+espeak"
DEPEND=">=virtual/emacs-22
espeak? ( app-accessibility/espeak )"
RDEPEND="${DEPEND}
>=dev-tcltk/tclx-8.4"
src_prepare() {
# Allow user patches to be applied without modifying the ebuild
epatch_user
}
src_configure() {
emake config
}
src_compile() {
emake emacspeak
if use espeak; then
local tcl_version="$(echo 'puts $tcl_version;exit 0' |tclsh)"
if [[ -z $tcl_version ]]; then
die 'Unable to detect the installed version of dev-lang/tcl.'
fi
cd servers/linux-espeak
emake TCL_VERSION="${tcl_version}"
fi
}
src_install() {
emake DESTDIR="${D}" install
if use espeak; then
pushd servers/linux-espeak > /dev/null || die
emake DESTDIR="${D}" install
popd > /dev/null || die
fi
dodoc README etc/NEWS* etc/FAQ etc/COPYRIGHT
dohtml -r install-guide user-guide
cd "${D}/usr/share/emacs/site-lisp/${PN}"
rm -rf README etc/NEWS* etc/FAQ etc/COPYRIGHT install-guide \
user-guide || die
}

@ -1,15 +1,14 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-9999.ebuild,v 1.5 2010/12/03 18:35:56 williamh Exp $
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-9999.ebuild,v 1.6 2013/07/09 02:25:08 williamh Exp $
EAPI="2"
EAPI=5
inherit eutils
if [[ ${PV} == "9999" ]] ; then
ESVN_REPO_URI="http://${PN}.googlecode.com/svn/trunk"
inherit subversion
KEYWORDS=""
else
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
KEYWORDS="~amd64 ~ppc ~x86"
@ -33,23 +32,31 @@ src_prepare() {
}
src_configure() {
make config || die
emake config
}
src_compile() {
make emacspeak || die
emake emacspeak
if use espeak; then
local tcl_version="$(echo 'puts $tcl_version;exit 0' |tclsh)"
if [[ -z $tcl_version ]]; then
die 'Unable to detect the installed version of dev-lang/tcl.'
fi
cd servers/linux-espeak
make TCL_VERSION=8.5 || die
emake TCL_VERSION="${tcl_version}"
fi
}
src_install() {
make DESTDIR="${D}" install || die
dodoc README etc/NEWS* etc/FAQ etc/COPYRIGHT
dohtml -r install-guide user-guide
emake DESTDIR="${D}" install
if use espeak; then
cd servers/linux-espeak
make DESTDIR="${D}" install
pushd servers/linux-espeak > /dev/null || die
emake DESTDIR="${D}" install
popd > /dev/null || die
fi
dodoc README etc/NEWS* etc/FAQ etc/COPYRIGHT
dohtml -r install-guide user-guide
cd "${D}/usr/share/emacs/site-lisp/${PN}"
rm -rf README etc/NEWS* etc/FAQ etc/COPYRIGHT install-guide \
user-guide || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r22.ebuild,v 1.3 2013/07/06 19:48:55 aidecoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r22.ebuild,v 1.4 2013/07/08 21:05:57 aidecoe Exp $
EAPI=4
@ -16,7 +16,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/hddtemp/${MY_P}.tar.bz2 mirro
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
IUSE="network-cron"
IUSE="network-cron nls"
DEPEND=""
RDEPEND="${DEPEND}"
@ -39,6 +39,8 @@ src_configure() {
local myconf
myconf="--with-db-path=/usr/share/hddtemp/hddtemp.db"
# disabling nls breaks compiling
use nls || myconf="--disable-nls ${myconf}"
econf ${myconf}
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r23.ebuild,v 1.1 2013/07/06 19:48:55 aidecoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r23.ebuild,v 1.2 2013/07/08 21:05:57 aidecoe Exp $
EAPI=4
@ -16,7 +16,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/hddtemp/${MY_P}.tar.bz2 mirro
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
IUSE="network-cron"
IUSE="network-cron nls"
DEPEND=""
RDEPEND="${DEPEND}"
@ -39,6 +39,8 @@ src_configure() {
local myconf
myconf="--with-db-path=/usr/share/hddtemp/hddtemp.db"
# disabling nls breaks compiling
use nls || myconf="--disable-nls ${myconf}"
econf ${myconf}
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r3.ebuild,v 1.13 2013/07/06 19:48:55 aidecoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r3.ebuild,v 1.14 2013/07/08 21:05:57 aidecoe Exp $
inherit eutils autotools
@ -14,7 +14,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/hddtemp/${MY_P}.tar.bz2 mirro
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc sparc x86"
IUSE=""
IUSE="nls"
DEPEND=""
RDEPEND="${DEPEND}"
@ -36,6 +36,8 @@ src_compile() {
local myconf
myconf="--with-db-path=/usr/share/hddtemp/hddtemp.db"
# disabling nls breaks compiling
use nls || myconf="--disable-nls ${myconf}"
econf ${myconf} || die
emake || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r5.ebuild,v 1.3 2013/07/06 19:48:55 aidecoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r5.ebuild,v 1.4 2013/07/08 21:05:57 aidecoe Exp $
inherit eutils autotools
@ -14,7 +14,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/hddtemp/${MY_P}.tar.bz2 mirro
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
IUSE=""
IUSE="nls"
DEPEND=""
RDEPEND="${DEPEND}"
@ -37,6 +37,8 @@ src_compile() {
local myconf
myconf="--with-db-path=/usr/share/hddtemp/hddtemp.db"
# disabling nls breaks compiling
use nls || myconf="--disable-nls ${myconf}"
econf ${myconf} || die
emake || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r6.ebuild,v 1.1 2013/07/06 19:48:55 aidecoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/hddtemp/hddtemp-0.3_beta15-r6.ebuild,v 1.2 2013/07/08 21:05:57 aidecoe Exp $
inherit eutils autotools systemd
@ -14,7 +14,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/hddtemp/${MY_P}.tar.bz2 mirro
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
IUSE=""
IUSE="nls"
DEPEND=""
RDEPEND="${DEPEND}"
@ -37,6 +37,8 @@ src_compile() {
local myconf
myconf="--with-db-path=/usr/share/hddtemp/hddtemp.db"
# disabling nls breaks compiling
use nls || myconf="--disable-nls ${myconf}"
econf ${myconf} || die
emake || die
}

@ -3,3 +3,4 @@ DIST ddskk-14.1.tar.gz 775861 SHA256 f33ef2bf39cef1c1876ce20737b19952f67b93de948
DIST ddskk-14.2.tar.gz 794060 SHA256 ddf1f892b0b41e163b29cbbc00eae1ca3eef512dc3b5217ede329d414252fdf1 SHA512 acc34566fb2517778c641faac3a299f454063d632e73622205ab90d4ab9c24311c0f5cfe497995d6750a155884e8c4a3282690f6199485daa09cd3fc7c550b00 WHIRLPOOL 565e46b612d43889ae6398da7433055ad890b4eb04a4c97d2eaf59bb173152c4b7591d38616f40d5441bb8f6dfb72f73a9bbd7e13f63a33e67efcac45c854a82
DIST ddskk-14.3.tar.gz 805289 SHA256 478e2c824cfcd4e956a2e30e0f3967c3e385b3941f13fdd6c8c270d89367d0ef SHA512 6b29c78999a677162de3f86a9a53d363885443022852137665b29fa1a053272f2a50647ec94283cb58cd83d0172cbe85c53a8515d22116bbbd3a0efce408ed62 WHIRLPOOL 1bfa43975976cb487c49d7673f0f0da3c3a9c1c2c4bc95c1a72c3c208ee4070e7321568e5d739fca4d50083037af0c7616fa190cc89425f2117681f923da1ba3
DIST ddskk-14.4.tar.gz 847188 SHA256 a538c641f3302432aca07ae748bc0e4a7fcc91ff01c3d96b3169d1fbaa5a7d4a SHA512 d44d0afd2557c087549f337acf2778988128e06a82d1f15d080efcad4034cedfbe52fee7bad102d8dee4159ba4f5c89008055a51ce5a564d220fed98e61ef4c9 WHIRLPOOL 4f16a3f82f3c863e6f9df38ff9012507d69d8b16072c94ca953c185a588510aa8c35efc01cd5cc20bd38b2b674cee199e689c3a3572d8020815d8b1ce53a0584
DIST ddskk-15.1.tar.gz 837942 SHA256 099e087cc92b5ccf62e6cedc81541c5991afdf5c311f391d02630ce87a5abdcf SHA512 8927cde6d55e5d32b5207f03f8385622996818ac279b054ddf2e461364743cd44b658fef388ce9a271af145ebe784b21b4a7dd4f0b063858fb1ffccdf796f777 WHIRLPOOL 875319515ef4d3acb8bca6a96af18c7231ecdb5f101f923df4245244027d9377ccfa40d4bc669b5e93a00e9ee13868890c4e84310248126597714dc8698e820a

@ -0,0 +1,61 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ddskk/ddskk-15.1.ebuild,v 1.1 2013/07/09 03:42:35 naota Exp $
EAPI=3
inherit elisp eutils
DESCRIPTION="One Japanese input methods on Emacs"
HOMEPAGE="http://openlab.ring.gr.jp/skk/"
SRC_URI="http://openlab.ring.gr.jp/skk/maintrunk/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE=""
DEPEND="|| ( ( =virtual/emacs-21 >=app-emacs/apel-10.7 )
>=virtual/emacs-22 )"
RDEPEND="${DEPEND}
|| ( app-i18n/skk-jisyo virtual/skkserv )"
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
find . -type f | xargs sed -i -e "s:/usr/local:${EPREFIX}/usr:g" || die
epatch "${FILESDIR}"/${P}-skk-mk.patch
}
src_compile() {
emake < /dev/null || die "emake failed"
emake info < /dev/null || die "emake info failed"
#cd nicola
#emake < /dev/null || die
BYTECOMPFLAGS="${BYTECOMPFLAGS} -L .."
cd "${S}/tut-code"
elisp-compile *.el || die "elisp-compile tut-code/*.el failed"
cd "${S}/bayesian"
elisp-compile *.el || die "elisp-compile bayesian/*.el failed"
}
src_install () {
elisp-install ${PN} *.{el,elc} nicola/*.el tut-code/*.{el,elc} bayesian/*.{el,elc} || die
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
insinto /usr/share/skk
doins etc/*SKK.tut* etc/skk.xpm || die
dodoc READMEs/* ChangeLog*
doinfo doc/skk.info* || die
#docinto nicola
#dodoc nicola/ChangeLog* nicola/README* || die
docinto tut-code
dodoc tut-code/README.tut || die
#dobin bayesian/bskk || die
docinto bayesian
dodoc bayesian/README.ja bayesian/bskk || die
}

@ -0,0 +1,12 @@
# Generate skk-autoloads.el with coding cookie.
--- a/SKK-MK
+++ b/SKK-MK
@@ -884,7 +884,7 @@ SKK tutorials:
(set-buffer buf)
(erase-buffer)
(insert "\
-;;; skk-autoloads.el --- autoload settings for SKK.
+;;; skk-autoloads.el --- autoload settings for SKK. -*- coding: iso-2022-jp -*-
;; This file was generated automatically by SKK-MK at "
(current-time-string)

@ -1,2 +1,3 @@
DIST ganeti-instance-image-0.5.1.tar.gz 75216 SHA256 ece17b683140d11816f2cdf0ebe1f10ac285433b93d1f7623433a3d9fd6350d0 SHA512 febe00379ec106a895734a4ab480f178d71bd46a5a4622477770993c741a43020ef11bd0e96e3e1e7f02a202ddfaad3f26d64d89c425a46c07649173df1d13ee WHIRLPOOL 03d0feee8d571de1fd9aff01d1bc8d9f63e8af78fb545b9abd3f9be70de94a6becd50c33ec56c1e57793c7b29517f1aafa5e3f03458353a4be01daae81558356
DIST ganeti-instance-image-0.5.tar.gz 74988 SHA256 14b16a2185242cdcc06057912b783a4db47133b6dbaf87d6e8faa7a74d13bc14 SHA512 4f2b817a3449c2130830b0f41c7c7a8816697a6954a4a4d8be5b9c6c6b1c3bd9deac8b702bad11a4f678734cf39db63251660908650c13f179861e234486e2c7 WHIRLPOOL 66d50b38d9f10edeb69d6bfe3a75958c147b2f83df76f4907cda2383320dcb4fd986daca81cf1f389d167d9d61c8f084505758c50a200d91c39c9252552c221b
DIST ganeti-instance-image-0.6.tar.gz 82534 SHA256 eb8cd0a26acc5b2bd651a1e014688a9f395cef35b4f6393df6a53aeadae1d2fc SHA512 92b5048fe8c40692e8e7c4cb73b21e764660d7cb5f585a8489fc4338eef7df8aae1147d38a849103585a884a0216a0bfb42473d5c1922130e5aada31f5d580c3 WHIRLPOOL d4b04066ad3d11ff995710a7f8932a203a8bc5acb22abe2b202b0e5a84c1075f4f0c7a9d8a18111915abc04a7f67630590edf9f1c520ea6f5960c9e920aa294a

@ -0,0 +1,51 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti-instance-image/ganeti-instance-image-0.6.ebuild,v 1.1 2013/07/08 20:37:52 ramereth Exp $
EAPI=4
inherit eutils
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="git://git.osuosl.org/${PN}.git"
EGIT_BRANCH="master"
inherit git-2 autotools
else
SRC_URI="http://ftp.osuosl.org/pub/osl/ganeti-instance-image/${P}.tar.gz"
fi
DESCRIPTION="Scripts to build out CD or image based VMs using Ganeti"
HOMEPAGE="http://code.osuosl.org/projects/ganeti-image"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="app-arch/dump
>=app-emulation/ganeti-2.0.3
|| ( >=sys-apps/coreutils-6.10-r1 sys-apps/mktemp )
app-emulation/qemu
sys-apps/util-linux
sys-fs/multipath-tools
sys-fs/e2fsprogs"
src_prepare() {
if [[ ${PV} == "9999" ]]; then
eautoreconf
fi
}
src_configure() {
econf --with-default-dir=/etc/ganeti
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
rm -rf "${D}"/usr/share/doc/${PN}
dodoc README.markdown NEWS ChangeLog
insinto /etc/ganeti
newins defaults ${PN}
}

@ -1,2 +1,3 @@
DIST libvirt-glib-0.1.5.tar.gz 709647 SHA256 b3a4fea273cb52890812a5d4033556c5221112c7fe47da2838de72641e547cbb SHA512 1bbb69348f80a8560e6eaffe396e8087fc01fa7a022b009b95a776b34db69a6ee5438e496d2a57cb2cb7273b702962f76d4fe6abc0a721f22bab74438943735d WHIRLPOOL 75d5d232fddcdf0b8d8db78cf5e4b9f160c5a74d932f29adcf5c6bfb1fa012084fd736bb6a2b60ee7d8d2b05ae9dc93a5fa5f62099162e5c7b211627b57417c9
DIST libvirt-glib-0.1.6.tar.gz 710452 SHA256 274b88584db94bb5d404e5398d6b5ef184afad49a2e4b3f4f6c47ba940bf55bf SHA512 485f6ee7f3bab4f2348bb47cb435ca85c0f12fb21f435cbc0b024560a4b68217914d0492d76e9f2d2bc7c8a9ae7d43d52338c0a081dd9fe779f36551dce60f80 WHIRLPOOL 16d16f4ecb2b1d6711bc913728b8e53299718d17ac7ef00f779caab892be3ff101451aebf06104190797d7998f26dc1bbc7e24d65c544bedb75cbe48b4586c74
DIST libvirt-glib-0.1.7.tar.gz 746318 SHA256 39652c07d95f980ff30b39e0fd072e768fb85d778d65432da24b17dee9d36429 SHA512 a6e296afbee64424009119036637fe96bbd703c9209e832fbf9fe1ad82054ce39017ce4e2e0b4d59559193dee2de50d72d171701eacfebd3baccb61ff3216662 WHIRLPOOL 76dd9b033981da1034ac7e4f706dcc5c97b361a2f37a6a6d36850f0035e0dd5a1d7e0ff60ed42d4b6e8737a12e25c47866b22054eb41dad85ff5b39d85b58a4c

@ -0,0 +1,40 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt-glib/libvirt-glib-0.1.7.ebuild,v 1.1 2013/07/09 00:18:41 cardoe Exp $
EAPI=5
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
VALA_MIN_API_VERSION="0.14"
PYTHON_COMPAT=( python{2_6,2_7} )
inherit gnome2 python-single-r1 vala
DESCRIPTION="GLib and GObject mappings for libvirt"
HOMEPAGE="http://libvirt.org/git/?p=libvirt-glib.git"
SRC_URI="ftp://libvirt.org/libvirt/glib/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+introspection python +vala"
REQUIRED_USE="vala? ( introspection )"
RDEPEND="dev-libs/libxml2:2
>=app-emulation/libvirt-0.9.10:=
>=dev-libs/glib-2.10:2
introspection? ( >=dev-libs/gobject-introspection-0.10.8:= )
python? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}
dev-util/gtk-doc-am
virtual/pkgconfig
vala? ( $(vala_depend) )"
pkg_setup() {
G2CONF+="--disable-test-coverage
--disable-static
$(use_enable introspection)
$(use_enable vala)
$(use_with python)"
use python && python-single-r1_pkg_setup
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-20130629.ebuild,v 1.1 2013/06/30 02:29:59 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-20130629.ebuild,v 1.2 2013/07/09 02:29:18 tetromino Exp $
EAPI=5
@ -27,14 +27,21 @@ IUSE="gtk kde"
DEPEND=""
RDEPEND="app-arch/cabextract
app-arch/p7zip
app-arch/unrar
app-arch/unzip
app-emulation/wine
net-misc/wget
x11-misc/xdg-utils
gtk? ( gnome-extra/zenity )
kde? ( kde-base/kdialog )"
# Uses non-standard "Wine" category, which is provided by app-emulation/wine; #451552
QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
# Tests require network access and run wine, which is unreliable from a portage environment
RESTRICT="test"
S="${WORKDIR}"
src_unpack() {

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-99999999.ebuild,v 1.9 2013/06/30 02:29:59 tetromino Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-99999999.ebuild,v 1.10 2013/07/09 02:29:18 tetromino Exp $
EAPI=5
@ -27,14 +27,21 @@ IUSE="gtk kde"
DEPEND=""
RDEPEND="app-arch/cabextract
app-arch/p7zip
app-arch/unrar
app-arch/unzip
app-emulation/wine
net-misc/wget
x11-misc/xdg-utils
gtk? ( gnome-extra/zenity )
kde? ( kde-base/kdialog )"
# Uses non-standard "Wine" category, which is provided by app-emulation/wine; #451552
QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop"
# Tests require network access and run wine, which is unreliable from a portage environment
RESTRICT="test"
S="${WORKDIR}"
src_unpack() {

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>proxy-maintainers</herd>
<maintainer>
<email>patrick@gentoo.org</email>
<name>Patrick Lauer</name>

@ -1,4 +1,5 @@
https://bugs.gentoo.org/show_bug.cgi?id=449916#c1
reported upstream as http://code.google.com/p/goobook/issues/detail?id=39
diff -uNr goobook-1.4.old/goobook/goobook.py goobook-1.4/goobook/goobook.py
--- goobook-1.4.old/goobook/goobook.py 2012-11-10 08:00:44.000000000 -0500

@ -1,11 +1,11 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/goobook/goobook-1.4-r1.ebuild,v 1.1 2013/07/08 15:49:08 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/goobook/goobook-1.4-r1.ebuild,v 1.3 2013/07/09 01:58:00 floppym Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_6,2_7} )
inherit distutils-r1
inherit distutils-r1 eutils
DESCRIPTION="Google Contacts wrapper for mutt"
HOMEPAGE="http://code.google.com/p/goobook/"
@ -25,13 +25,11 @@ RDEPEND="${PYTHON_DEPS}
>=dev-python/simplejson-2.1.0[${PYTHON_USEDEP}]
virtual/python-argparse"
# bug 476186, http://code.google.com/p/goobook/issues/detail?id=40
DEPEND="${PYTHON_DEPS}
dev-python/setuptools"
ESTRICT_PYTHON_ABIS="3.*"
<dev-python/setuptools-0.7"
python_prepare_all() {
epatch "${FILESDIR}"/${P}-hcs-utils-1.3.patch
}
PATCHES=( "${FILESDIR}"/${P}-hcs-utils-1.3.patch )
pkg_postinst() {
einfo "If you want to use goobook from mutt"

@ -1 +1,2 @@
DIST fish-1.23.1.tar.bz2 876148 SHA256 1ea3d6532226c315993fabd6096ec865fdcde4d43df9e26f9ed020e11e631f93 SHA512 2f51cf10d4d03ddd776a616c9ac6ff9c4dd4af9ffcfc41a0db38fc67a45f661c24cd163762091cea7e42f952b9fc621a5e7434302f1d1043b7d01057fee44a80 WHIRLPOOL 9d635ef1674753812da37d287c2827ac6b841e6fb9aef25fbe3c84ee881c57bea31d27dd80c8a5ff4fbbceea177241f80461eba77bae41713b1b0b260ae38cf2
DIST fish-2.0.0.tar.gz 1540652 SHA256 7e4c4a0b3c518769a3d31b235e743de7a8d52f851ad19d2df9d53534e6238303 SHA512 a41e1b3737d5b556e08728312f486c55d1405492dd0be8a97694dabc0974b90ecbacfc74d3e427d63e9b3a639a03844b98ecded68cb3060522eee68879c28ce1 WHIRLPOOL f4e0013ceffcc04be6e9a2187da621db5e1e0592c5c9707bda114d2c9162758a83371392bedbecb5c8ff6eb9d065c2c356581fc21309527986ac2bc3fb0866cf

@ -0,0 +1,54 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/fish/fish-2.0.0.ebuild,v 1.1 2013/07/08 20:29:07 polynomial-c Exp $
EAPI=5
inherit base autotools
DESCRIPTION="fish is the Friendly Interactive SHell"
HOMEPAGE="http://fishshell.com/"
SRC_URI="http://fishshell.com/files/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE="X"
DEPEND="sys-libs/ncurses
sys-devel/bc
sys-devel/gettext
www-client/htmlview
X? ( x11-misc/xsel )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
src_prepare() {
eautoreconf
}
src_configure() {
# Set things up for fish to be a default shell.
# It has to be in /bin in case /usr is unavailable.
# Also, all of its utilities have to be in /bin.
econf \
docdir="${EPREFIX}"/usr/share/doc/${PF} \
--bindir="${EPREFIX}"/bin
}
pkg_postinst() {
elog "fish is now installed on your system."
elog "To run fish, type 'fish' in your terminal."
elog
elog "To use fish as your login shell:"
elog "* add the line '${EPREFIX}/bin/${PN}'"
elog "* to the file '${EPREFIX}/etc/shells'."
elog "* use the command 'chsh -s ${EPREFIX}/bin/${PN}'."
elog
elog "To set your colors, run 'fish_config'"
elog "To scan your man pages for completions, run 'fish_update_completions'"
elog "To autocomplete command suggestions press Ctrl + F or right arrow key."
elog
elog "Have fun!"
}

@ -1 +1,2 @@
DIST referencer-1.2.0.tar.gz 675680 SHA256 68731beb242ed2e20c01e7be0e68ce64260dbd3af930c96f8f0eb8e47e88a81d SHA512 4a8a848298c563c775d1fe912b02a82f98a1db92e13865e79c57dda15a6bbc545996080b26f71609cf8965c6c58e827a3ce6f071b3896246e00a6bb073869d9d WHIRLPOOL ffb808616c249266c31191d3c3a88cd20281bf043c7de350599ad5867e406fd08c4418695685291ca8c193cae9cd316ab6cd443719f08850c4e4de2ef5d1ab2c
DIST referencer-1.2.1.tar.gz 678290 SHA256 449c7ccd6c07770b9a1ff3db4d34eb0ec5a47f6790a80ad1f0f66ea55e5cb4f3 SHA512 16a0af053c7a494f954da373397bf9a5736e1d6c79d041bfeab8f3f2a69952f13fcccd1fcbf49d83afa1521d4f245ee4ac55a1249d6fd7a21394f4926a3bd06e WHIRLPOOL 96975c37a7dc0ae558bfc3954ced2f29e08793259d6443b701af95ba0d58ad58da22e8a81bf90671bcf40ce78dc2fee764095cd4bdde34ad3ea3489b89765409

@ -0,0 +1,53 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/referencer/referencer-1.2.1.ebuild,v 1.1 2013/07/08 22:09:11 xmw Exp $
EAPI="5"
PYTHON_DEPEND="2:2.7"
inherit fdo-mime eutils python
DESCRIPTION="Gnome application to organise documents or references, and to generate BibTeX bibliography files"
HOMEPAGE="https://launchpad.net/referencer"
SRC_URI="https://launchpad.net/${PN}/1./${PV}/+download/$P.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~x86"
RDEPEND=">=app-text/poppler-0.12.3-r3:=[cairo]
>=dev-cpp/gtkmm-2.8
>=dev-cpp/libglademm-2.6.0
>=dev-cpp/gconfmm-2.14.0
>=dev-libs/boost-1.52.0-r4"
DEPEND="${RDEPEND}
>=app-text/gnome-doc-utils-0.3.2
virtual/pkgconfig
>=dev-lang/perl-5.8.1
dev-perl/libxml-perl
dev-util/intltool
app-text/rarian"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare () {
python_convert_shebangs -r 2.7 plugins
}
src_configure() {
econf --disable-update-mime-database --enable-python
}
pkg_postinst() {
fdo-mime_mime_database_update
}
pkg_postrm() {
fdo-mime_mime_database_update
}

@ -6,4 +6,5 @@ DIST apache-tomcat-6.0.37-src.tar.gz 3430692 SHA256 665d72f375a9bf9ec5b8f9300c0a
DIST apache-tomcat-7.0.32-src.tar.gz 4236930 SHA256 ab4a752a9f833340dc3ceea85edff84a4b0cd697cf6fb2a5348a14096b348dcb SHA512 ac6141713f05437834617df4113aad629e61d3d28e603f63d8ccd50f9a463c4bc0679cd853dc332660396bc84c9a437ec323767edba20cb4ed0650510d653577 WHIRLPOOL 9182666e580368e54d864271c407a8c2d21e024f156d33f823bbde0b9382a78e89dcecae01d691725c5a09e2a66cff590f8f3e75d427c26caf0526e3b1946ca6
DIST apache-tomcat-7.0.39-src.tar.gz 4295207 SHA256 d9b4daceb2040bff84dbc37ea07d442cf6b0a608b2d161f15740147fac76101d SHA512 f3c054e66f65ea2721c53280e69b069c035f0a870d57c898a4fec716f23bf66be833d2898ae36da44cd13201a3d43984e3b2266927aad5fe3e2245d7f499323d WHIRLPOOL b2b3572bb6c15147bd4c25f90d0b8e1cafe1151bd2736ce3d60828818f87481e1c94448684c825816c6741cda1d5e1c091440245c2ae48cde23779ad55d683e7
DIST apache-tomcat-7.0.41-src.tar.gz 4407748 SHA256 283a80c5be1a1eda9fc8864b11dcd026ba3bf2433b0d8377a4da4c2536a07ea6 SHA512 dadff0f20e5e7b5c4b46ee7ba4c3bc8776568b6fff182cfd3764abd5eba6e7bb4239a3700969c6065b8991ba8a04061042a917e7bfe29de2afbcce788554fd9e WHIRLPOOL 2bd6dc37704709f0ce1096df1bd96faaf63aa1796d664777ad4f4280e22bbcd0acc06cc48eae852481ef60a16efdf8ae6a1ca2dd4c5dc06ea6ed684103dbfa65
DIST apache-tomcat-7.0.42-src.tar.gz 4422120 SHA256 5dbc2194b894de0b620752f18f5dc69901627f49b87d9dfb5951750bb9c20c72 SHA512 02703483ceeb218fdbb9c57cd45af3572d0c482ff0914e29862646bf395d03f81efd94271ffa6a59412df1b6cbecc7380e7bfb9e83da8db6a8f63355b722bcd0 WHIRLPOOL 21ba3934169ef9672f0f160e45dad4cdf04827e64bb3fcce1eac6fa7a9d4cf5b699bb96dd07a900bbea1099d35a91fe0df3dbcbdeeef44ef3e969af78aaafcd2
DIST jakarta-servletapi-src.tar.gz 65342 SHA256 404e2c55423c609122921a91e03f2b67d371fedc0af8996e005862d83d626697 SHA512 7dad5a52ab6bfca4b052d60a48fc89ce22a5eb790584671f24d8d22b163f2dffe93bea58caebc6b4ecb0bd8434a074c88f640aa57daa1cefbf47d74df758c084 WHIRLPOOL beb0e14920a8623d276c8823e6291aacb4b4d5d0539f5de431ce6f94582df9b260d4e04e0d0b650c59f7ca168f4af9352fffbfc0506b2530464a3bcdcf6ac0d1

@ -0,0 +1,36 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-servlet-api/tomcat-servlet-api-7.0.42.ebuild,v 1.1 2013/07/08 16:55:36 fordfrog Exp $
EAPI="5"
JAVA_PKG_IUSE="source"
inherit eutils java-pkg-2 java-ant-2
MY_A="apache-${P}-src"
MY_P="${MY_A/-servlet-api/}"
DESCRIPTION="Tomcat's Servlet API 3.0/JSP API 2.2 implementation"
HOMEPAGE="http://tomcat.apache.org/"
SRC_URI="mirror://apache/tomcat/tomcat-7/v${PV}/src/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="3.0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=">=virtual/jdk-1.6"
RDEPEND=">=virtual/jre-1.6"
S="${WORKDIR}/${MY_P}/"
java_prepare() {
cp "${FILESDIR}/${SLOT}-build.xml" build.xml || die "Could not replace build.xml"
rm -fR */*/build.xml
einfo "Removing bundled jars and classes"
find "${S}" '(' -name '*.class' -o -name '*.jar' ')' -delete
}
src_install() {
java-pkg_dojar "${S}"/output/build/lib/*.jar
use source && java-pkg_dosrc java/javax/servlet/
}

@ -1,3 +1,4 @@
DIST bsddb3-5.1.2.tar.gz 380258 SHA256 98f3401f910a0002a09cd6e947023f8eb266f10d1dac468c65d6e191b5f25a17 SHA512 6deb214efe6b477e82a6c2f3c142958e4748ff0f01686817c4a57d66954a26733513a57eeb7f94c8b39737f976df8d4d76fa1513069f8f778a66cda1dd91a92c WHIRLPOOL 4f2870ec124204ac88a87281379fd7421b7d6dd7489f5015617d498c2037684f330fb85a824d661e48a602b65f608dc00877725a7b2a11f5e237fee03c2ebc06
DIST bsddb3-5.2.0.tar.gz 377968 SHA256 6e1522c4b826d06bef4cb7ae13eadde29c5f2c65916c894c11118b8b866ed6cb SHA512 b650da5e7690dfe3250e91be429170c94f71e6f5924277303940e130a4fd95b4195214012e7712e5ae71071bc8ee7a0096d625039832680a06cb08df1a99d655 WHIRLPOOL 4db52052fa08707195a769a2b642bf9978c626bf2fbede955abff89b58803c75d25b67fd9024c773d9cff35a0bad2fea9289e8739a387aeabbb8a86752a9e673
DIST bsddb3-5.3.0.tar.gz 385113 SHA256 4619f6189e5f94e337c62ae398ccb9c25568f3c3cab39970a4ea7625d38f8b3e SHA512 e12f3795d67154b799f63e11a58a4cc8839b01f90745f0bb19047ccfb74315ad8f0db9a8c60f423d1b9da2982d6bd1b469b74e25bcd5824239a333b6721e1e8f WHIRLPOOL fd130a128ae7e6414b27c7f85cef9e7a7bd33e915db878d7a41d88aeaddbc782539ce02a227664b85f18ba802dcec9e2d122622b5948d22afcec4c540816373d
DIST bsddb3-6.0.0.tar.gz 342086 SHA256 158fad482c42e0e3ace712ebf474a250fb221c06c570da578a1632b80fe3d84c SHA512 dade5c6b996f92845bcae05a9b6966ee7c3f515c3d1ae70f6ab8bda56232b3a8022cd2abdb81f099cdc125af702d923d2cd65bcda45919ad8bb9482fe8bc1d71 WHIRLPOOL d867a7ea13b5b5a752c98d3f7ecef07838e1b19d57165ff990f1a9f281dcbbdfd6fc6427e64304c29b17e94620b679cdcfefa1bb9dbbf5b0355079aadd8d62eb

@ -0,0 +1,71 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-6.0.0.ebuild,v 1.1 2013/07/09 02:07:29 patrick Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_2,3_3} )
inherit db-use distutils-r1 multilib
DESCRIPTION="Python bindings for Berkeley DB"
HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm http://pypi.python.org/pypi/bsddb3"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND=">=sys-libs/db-4.8.30"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
DOCS=( ChangeLog TODO.txt )
DISTUTILS_IN_SOURCE_BUILD=1
src_configure() {
local DB_VER
if has_version sys-libs/db:5.1; then
DB_VER="5.1"
elif has_version sys-libs/db:5.0; then
DB_VER="5.0"
else
DB_VER="4.8"
fi
sed -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" -i setup2.py setup3.py || die "sed failed"
}
src_compile() {
distutils-r1_src_compile \
--berkeley-db="${EPREFIX}/usr" \
--berkeley-db-incdir="${EPREFIX}$(db_includedir ${DB_VER})" \
--berkeley-db-libdir="${EPREFIX}/usr/$(get_libdir)"
}
python_test() {
# https://sourceforge.net/p/pybsddb/bugs/72/
pushd "${BUILD_DIR}"/../ > /dev/null
if [[ "${EPYTHON}" == python2* ]]; then
"${PYTHON}" build/lib/bsddb3/tests/test_all.py
elif [[ "${EPYTHON}" == python3* ]]; then
"${PYTHON}" setup.py build
einfo "all 500 tests are run silently and may take a number of minutes to complete"
"${PYTHON}" ./test3.py
fi
}
python_install() {
rm -fr "${ED}$(python_get_sitedir)/bsddb3/tests"
if use doc; then
dohtml -r docs/html/* || die "dohtml failed"
fi
distutils-r1_python_install
}
python_install_all() {
local HTML_DOCS=( docs/html/. )
distutils-r1_python_install_all
}

@ -0,0 +1,28 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/libnatpmp/libnatpmp-20120821-r1.ebuild,v 1.1 2013/07/09 01:03:56 blueness Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy2_0 )
inherit distutils-r1
DESCRIPTION="Python module for libnatpmp, an alternative protocol to UPnP IGD."
HOMEPAGE="http://miniupnp.free.fr/libnatpmp.html"
SRC_URI="http://miniupnp.free.fr/files/download.php?file=${P}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="=net-libs/${P}"
RDEPEND="${DEPEND}"
python_prepare_all() {
epatch "${FILESDIR}"/link-against-system-lib.patch
#These are installed by net-libs/libnatpmp
rm -f Changelog.txt README || die
distutils-r1_python_prepare_all
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/libnatpmp/libnatpmp-20120821.ebuild,v 1.1 2012/08/27 00:50:36 blueness Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/libnatpmp/libnatpmp-20120821.ebuild,v 1.3 2013/07/09 01:03:56 blueness Exp $
EAPI=3
PYTHON_DEPEND=2

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pydns/pydns-2.3.6-r1.ebuild,v 1.1 2013/06/21 15:50:30 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pydns/pydns-2.3.6-r1.ebuild,v 1.2 2013/07/09 00:09:23 jer Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy2_0 )
@ -13,7 +13,7 @@ SRC_URI="http://downloads.sourceforge.net/project/pydns/pydns/${P}/${P}.tar.gz"
LICENSE="CNRI"
SLOT="2"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~hppa ~x86"
IUSE="examples"
DEPEND="!dev-python/pydns:0

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-irclib/python-irclib-0.4.8-r1.ebuild,v 1.1 2013/07/08 17:28:03 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy2_0 )
inherit distutils-r1
DESCRIPTION="IRC client framework written in Python."
HOMEPAGE="http://python-irclib.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
python_install_all() {
if use doc; then
# Examples are treated like real documentation
insinto "/usr/share/doc/${PF}/examples"
doins dccreceive dccsend irccat irccat2 servermap testbot.py
fi
distutils-r1_python_install_all
}

@ -1,3 +1,2 @@
DIST activeldap-1.2.2.gem 1084928 SHA256 85b7ebad03239d10dd4f0412eec9a2bfe830144e1b2625fefd33494ac7296954 SHA512 940fa566fdb3f7a9571b82a46227ee8436e156ad8299cf6081ea5690cc1b98418656ddfa11e022039a85f045af858d71b428de0df001bdc69ded604e1b3de430 WHIRLPOOL 2596512d24d261df40e6849690e2a3c540878eb198a1e56e8a87698dd8455b9715219cab074b085c9c20f53ae73552771103975c155daa8dc1aff851e15ca6bf
DIST activeldap-3.1.1.gem 190464 SHA256 404d16f3b7cdb3a67b94b0da32090a402be031c1f86ce127b0689d921df988f1 SHA512 cd50492c348068925ef503755410fe60a1ada3f9b42a8a9dbeea41f12a29ce2465c3dd2990284505d487bb1e8d2f7fda421cba3e558ed51d8f87f3ca3d0d1148 WHIRLPOOL 74882d3fb6065811bbf9e3dbddd1dd8a378d7e65922e2bfee1759860bb4dd4bc7aefd7aa819ab07fb047663289f84b902f9895143512bf21917687a63a615ad5
DIST activeldap-3.2.2.gem 218624 SHA256 2c8f1c5ca5d32ef6c98cc9ad00933a10b3ed9fc0d77eaea504a5615e6e37ece0 SHA512 f3a802fa1e05b2140fc0c14035ce4ec7037496a2de50908a1143bf3a2c89cf9de6a339ead075b38e7f8b8f7f78314cfd9fe414b64e71e89bdd8dce6b9ab7a1ad WHIRLPOOL a07beca35e89738cc1fa39c5cfd193a63240708ab857812795fe02c148e73ef2e9e1865e286d82608c8fbbf78e4f87c6afc66f8a506b0de51550a0dd006bff6a

@ -1,54 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeldap/activeldap-3.1.1-r1.ebuild,v 1.2 2012/08/16 15:20:40 flameeyes Exp $
EAPI=4
USE_RUBY="ruby18 ruby19"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README.textile TODO"
RUBY_FAKEGEM_EXTRAINSTALL="po"
inherit ruby-fakegem
MY_P="${P/ruby-/}"
DESCRIPTION="Ruby/ActiveLDAP provides an activerecord inspired object oriented interface to LDAP"
HOMEPAGE="https://github.com/activeldap/activeldap"
LICENSE="GPL-2"
SLOT="3"
KEYWORDS="~amd64"
IUSE=""
# Most tests require a live LDAP server to run.
RESTRICT="test"
ruby_add_bdepend "dev-ruby/hoe"
ruby_add_rdepend "
>=dev-ruby/activemodel-3.1.0
dev-ruby/locale
dev-ruby/fast_gettext
dev-ruby/gettext_i18n_rails
|| ( >=dev-ruby/ruby-ldap-0.8.2 dev-ruby/ruby-net-ldap )"
all_ruby_prepare() {
# Comment out Gettext setup because it does not work with fast_gettext. This
# patch probably breaks ruby_gettext usage. See
# https://github.com/activeldap/activeldap/issues/33
sed -i -e '/GetText\./ s:^:#:' lib/active_ldap/get_text_support.rb || die
# Also allow Rails 3.2. Upstream has not released a version yet that is
# 100% compatible, but it works for the most part and it is better than no
# activeldap at all.
sed -i -e '31d' -e 's/version: 3.1.0/version: "3.1"/' ../metadata || die
}
all_ruby_install() {
all_fakegem_install
dodoc doc/text/*
insinto /usr/share/doc/${PF}
doins -r examples
}

@ -1,2 +1 @@
DIST autotest-rails-4.1.0.gem 9216 SHA256 56e960a63755d21876a05361b8c893f81385908d7560c9a6e7e564c074567f1f SHA512 024cbb6e7bd417d82dac28a3d47059ccfafa4492daef23735363ec29d647fef3072221c537ff0288a5fc3f3aa1761481ea8971ca803135b13d0b6761c395b2f4 WHIRLPOOL c125e8151ff498d9efbbc25c8b8eec98fa0d206130111d30dc406d9791ee0505188114b4720749c5a70c57dcbbe40ed4db5fb2d20cc06cefd4879fadb1611090
DIST autotest-rails-4.1.2.gem 9216 SHA256 64830316fd6584fa70f8e24922f860c925f7fc8afa788a22e83e8de5952c6bf2 SHA512 b71234dd384dc847946dc25b164de70cfe6bd6d03a28b260771310c3a2002672b9ecf466dfe9df1ed93d69d3aa71a4659b80f289d94af82f6165563ca07326ff WHIRLPOOL 7f6591dbcfa7fafdafcf69ca168382b2f0f5b1a2b8cae7bed8d08ba16f608c67cd993a3ee9dbc50adf0592748336e17d0efdbd456e518055a2e39c4b9030386c

@ -1,24 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/autotest-rails/autotest-rails-4.1.0-r1.ebuild,v 1.4 2012/05/01 18:24:12 armin76 Exp $
EAPI=2
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="History.txt README.txt"
inherit ruby-fakegem
DESCRIPTION="This is an autotest plugin to provide rails support."
HOMEPAGE="http://rubyforge.org/projects/zentest/"
LICENSE="MIT"
KEYWORDS="amd64 ppc ppc64 x86 ~x86-macos"
SLOT="0"
IUSE=""
ruby_add_bdepend "doc? ( dev-ruby/hoe )"
ruby_add_rdepend ">=dev-ruby/zentest-4.1.1"

@ -1,2 +1 @@
DIST bluecloth-2.0.7.gem 120832 SHA256 05003d1843cc120d948fe00023533914fdbd46fe9ca0f5edf971dd20d936687f SHA512 395ddbfa35d6d1c7e64253b75d057bd73edb96ed089d453923e0afab9dbb13dbb22eaef20c4230528496a7472c24ebab06710f82ae069992104ed0765935223a WHIRLPOOL 198df5457398d11db54883c10d2f25bdef26c74db22887544fe9c26d095fe0ff32a036ccd7232cc83a9858bd6a31f3b155c8a90046cd5168699cf950c06fd9ef
DIST bluecloth-2.2.0.gem 94208 SHA256 b30128433f6a83909b0cb52c3e001ee002ca8760d9b433ecc5ced308f7e703f9 SHA512 498ffc9eddd47ded1df5c60e8ae8647de1e0376c7787c42dad2450c15a237b01a734bd0a2742c56cb59831cddc5b35c88e954abc0a087fc803ce4890c07c2852 WHIRLPOOL d953b32ce79ef2d39bfba162bef30bd304c744f20a9d7cc81979b656d769624c33ae3b30141f1affc3729c11904e300ce1d9037e97cb6dbac7470c61da32b721

@ -1,54 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bluecloth/bluecloth-2.0.7.ebuild,v 1.15 2012/10/28 17:17:04 armin76 Exp $
EAPI=2
USE_RUBY="ruby18"
RUBY_FAKEGEM_VERSION="${PV/_pre/.pre}"
RUBY_FAKEGEM_EXTRADOC="ChangeLog README"
RUBY_FAKEGEM_DOCDIR="docs/api"
inherit ruby-fakegem eutils
DESCRIPTION="A Ruby implementation of Markdown"
HOMEPAGE="http://www.deveiate.org/projects/BlueCloth"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
ruby_add_bdepend "
>=dev-ruby/rdoc-2.4.1
dev-ruby/rake-compiler
test? (
dev-ruby/rspec:0
dev-ruby/diff-lcs
)"
all_ruby_prepare() {
# for Ruby 1.9.2 compatibility
sed -i -e '1i $: << "."' Rakefile || die
# The Rakefile uses the rubygems' package_task unconditionally,
# but this breaks when we don't install rubygems proper (like for
# Ruby 1.9 or JRuby). For this reason, patch it away. It should
# really be submitted upstream so that, if missing, only the
# packaging tasks will be ignored.
sed -i \
-e '/^\(Gem\|Rake\)::PackageTask/, /^end/ s:^:#:' \
-e '/package_task/s:^:#:' \
-e '/task :package/s:^:#:' \
rake/packaging.rb || die
# Remove gem requirement. The require below it will pick up the
# correct rspec implementation and we'll handle the proper version
# here.
sed -i -e "/gem 'rspec'/d" rake/testing.rb || die
}
each_ruby_compile() {
${RUBY} -S rake compile || die "extension build failed"
}

@ -1,5 +1,2 @@
DIST capistrano-2.13.4.gem 123904 SHA256 cfcd3ab3cda510830b9d5784e2aa82bf04265815cbad6349a7e1035085533e23 SHA512 d6a95cc4159ea9cf050459b46d53a09a35e3cb3d66f05e55bf90fe35e4dd1bf4989cf9b0dd125fd86337b27888dea371b17d20f0fc6d36592e38d0b041584531 WHIRLPOOL 5df2fcfe6caaa0dca59bbcb4f95aea9eb2d3f088063ece699e92b9a00b0d2d41ab1c65251d6097696e1d7b4b364a365bdfa6a5c22cba8d1f6e1bf551cd991096
DIST capistrano-2.13.5.gem 124928 SHA256 f741be06ece7bc234809a1df293668248a75271b18d358fa7bb50c90b790be7d SHA512 6dc2fbc9d9c2a538f2d3e70cee5b8f63a09075e7019eeb2ad33a838d5457d6d5128fce2a6f5bcccc76c95898cfc693f5440dd5e25c0f12610db9a8ab68e84d62 WHIRLPOOL 6bb25c36b780a9c24e50f97662ac2510397f1a5d193d80582755f6cc3ea2822b2c13cbd0fb7f3c529871ef72016f33831e10fd00468d4016e79950a66efbbe1a
DIST capistrano-2.14.1.gem 126464 SHA256 88edb7bd92f6c92a90fcb64d44f700c4e045ed0f60cda4868752434d123c6ac1 SHA512 bad305d175c41284c124254bc6dae42adc1a968a3766a5fbc7d5ca7238c2c5a0eb0a8af400abefc56cc0e49a4581d603c0e8d2b6657b350e62754e9b4354fc1a WHIRLPOOL 704c876dba4ecd346a3e3c6db7e3dbf4440802c15fd6f5771ae6a4f1870556cd663363a24870eda168c4a20f1b8e28058b47f2300a9e125ff286bf2592cc631f
DIST capistrano-2.14.2.gem 126464 SHA256 b821c1530cd2b2fbf16f239551ac1491256dfc39ffe28833c31666a85ec661d4 SHA512 7742b2e3be33aa7b9a513648e59a498ab42ac402c0015f3ae56f4d10522720326f3ec2868eae36a4affa658a7574967f85a42f5085d800ecbd07605124d3a396 WHIRLPOOL f09ff12e347cf34cdcfc1d58bcf96aee6bc99e0e92284636e183a47b659ab2da8e2f2396dcde362e3e87fc3704caee68f7eb85c177f4d7813af18c465845fe52
DIST capistrano-2.15.4.gem 131584 SHA256 36be1cff6c8c4e8c569a83cf5e8a058833919d2bd25b8d9928ae33b7fb9da7a7 SHA512 22919352bff0ed06f8b0c149c144d1e09a8a62eb5e9cf8890bc94f5b4471ed4e1680490d7957aa28d8c0d51a95c0f738a475822682ad98eb9470d151197f7e4b WHIRLPOOL eb406e0f86e07462f41d8bb9946d5b6ce917f7dd113903315d71fdd8f3e7d7fb9bd70a459418d16042cfe4eea136b64e0b7ba03440f940a7a672d3c6f4de973b

@ -1,40 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/capistrano/capistrano-2.13.4.ebuild,v 1.5 2013/01/04 13:09:59 ago Exp $
EAPI=4
# ruby19 → pending on net/sftp
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.mdown"
inherit ruby-fakegem
DESCRIPTION="A distributed application deployment system"
HOMEPAGE="http://capify.org/"
LICENSE="MIT"
SLOT="2"
KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_rdepend "
>=dev-ruby/net-ssh-2.0.14
>=dev-ruby/net-sftp-2.0.2
>=dev-ruby/net-scp-1.0.2
>=dev-ruby/net-ssh-gateway-1.1.0
>=dev-ruby/highline-1.2.7"
ruby_add_bdepend "
test? ( dev-ruby/mocha )"
all_ruby_prepare() {
rm Gemfile || die
sed -i -e '/[Bb]undler/d' Rakefile test/utils.rb || die
# sed -i -e '/ruby-debug/ s:^:#:' test/utils.rb || die
# Avoid copy strategy tests since these fail in some cases due to
# complicated (aka unknown) interactions with other parts of the
# test suite.
rm test/deploy/strategy/copy_test.rb || die
}

@ -1,40 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/capistrano/capistrano-2.13.5.ebuild,v 1.1 2012/12/16 08:43:39 graaff Exp $
EAPI=5
# ruby19 → pending on net/sftp
USE_RUBY="ruby18 ruby19"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.mdown"
inherit ruby-fakegem
DESCRIPTION="A distributed application deployment system"
HOMEPAGE="http://capify.org/"
LICENSE="MIT"
SLOT="2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_rdepend "
>=dev-ruby/net-ssh-2.0.14
>=dev-ruby/net-sftp-2.0.2
>=dev-ruby/net-scp-1.0.2
>=dev-ruby/net-ssh-gateway-1.1.0
>=dev-ruby/highline-1.2.7"
ruby_add_bdepend "
test? ( dev-ruby/mocha )"
all_ruby_prepare() {
rm Gemfile || die
sed -i -e '/[Bb]undler/d' Rakefile test/utils.rb || die
# sed -i -e '/ruby-debug/ s:^:#:' test/utils.rb || die
# Avoid copy strategy tests since these fail in some cases due to
# complicated (aka unknown) interactions with other parts of the
# test suite.
rm test/deploy/strategy/copy_test.rb || die
}

@ -1,40 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/capistrano/capistrano-2.14.1.ebuild,v 1.1 2013/01/12 06:11:33 graaff Exp $
EAPI=5
# ruby19 → pending on net/sftp
USE_RUBY="ruby18 ruby19"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.mdown"
inherit ruby-fakegem
DESCRIPTION="A distributed application deployment system"
HOMEPAGE="http://capify.org/"
LICENSE="MIT"
SLOT="2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_rdepend "
>=dev-ruby/net-ssh-2.0.14
>=dev-ruby/net-sftp-2.0.2
>=dev-ruby/net-scp-1.0.2
>=dev-ruby/net-ssh-gateway-1.1.0
>=dev-ruby/highline-1.2.7"
ruby_add_bdepend "
test? ( dev-ruby/mocha )"
all_ruby_prepare() {
rm Gemfile || die
sed -i -e '/[Bb]undler/d' Rakefile test/utils.rb || die
# sed -i -e '/ruby-debug/ s:^:#:' test/utils.rb || die
# Avoid copy strategy tests since these fail in some cases due to
# complicated (aka unknown) interactions with other parts of the
# test suite.
rm test/deploy/strategy/copy_test.rb || die
}

@ -1,2 +1 @@
DIST cerberus-0.7.6.gem 254464 SHA256 6ff85294921a8e0ec3665dcbb91169ea3d810d272551c299643270ea50b80568 SHA512 570c0e97ac3bac2b8ff75181fde622c18b953dba28dcb27e31b3038be5d5b029efa322fef59f98fc83da1502504584f3819a577e43857cd8fee28a34eaa2269f WHIRLPOOL ac13ee46e10528af62ad1016c4597264e3b461b1099bcafba2f3ef46872a1f1a62354bd5a2647f2386f2e72bf54ba7efb22433754c2bcfffc9dd45380c30a59b
DIST cerberus-0.8.0.gem 387584 SHA256 f3461dfd421ff17df2dd195c5271ae2afe582b7ee16217bec769a7ce9670828b SHA512 2947ad1d26da0987ac7e47c1f557d1a8d73bb597d5a40f6c9bccbb495d2fefa1ea9e4ce4fdc14ee303e5362ea74b7a8bca38c8eb55cc0d8d802671fd688ff2be WHIRLPOOL ca93515c22967b702f93e14cf16b7809a2fa113ba02d038b20cd32c4783f496141bc874a2bf2925ffa482b7924177430e66036ba7d49014f2c5748499552b3d8

@ -1,32 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/cerberus/cerberus-0.7.6.ebuild,v 1.2 2010/05/22 15:05:15 flameeyes Exp $
EAPI="2"
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="Authors.txt Changelog.txt Readme.markdown"
inherit ruby-fakegem
DESCRIPTION="Continuous Integration tool for ruby projects"
HOMEPAGE="http://rubyforge.org/projects/cerberus"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
# Tests depend on rubyzip which we currently do not have packages.
RESTRICT="test"
ruby_add_rdepend ">=dev-ruby/actionmailer-1.3.3
>=dev-ruby/activesupport-1.4.2
>=dev-ruby/rake-0.7.3"
ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
# TODO: cerberus bundles xmpp4r-0.4, twitter-0.3.1, and irc (unknown
# version). We only have newer versions available, so it's not clear
# how easy this is to unbundle.

@ -1,36 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbd-odbc/dbd-odbc-0.2.5.ebuild,v 1.10 2012/09/02 09:04:51 flameeyes Exp $
inherit "ruby"
DESCRIPTION="The ODBC database driver (DBD) for Ruby/DBI"
HOMEPAGE="http://ruby-dbi.rubyforge.org"
SRC_URI="mirror://rubyforge/ruby-dbi/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="test"
RDEPEND="
>=dev-ruby/dbi-0.4.2
dev-ruby/ruby-odbc"
USE_RUBY="ruby18"
src_test() {
elog "The tests require additional configuration."
elog "You will find them in /usr/share/${PN}/test/"
elog "Be sure to read the file called DBD_TESTS."
}
src_install() {
ruby setup.rb install \
--prefix="${D}" || die "setup.rb install failed"
if use test; then
dodir /usr/share/${PN}
cp -pPR test "${D}/usr/share/${PN}" || die "couldn't copy tests"
fi
}

@ -1,2 +1 @@
DIST dbd-pg-0.3.8.tar.gz 64753 SHA256 720fc92be3191059de3eef85321c80b5d0978c97167ed7612aacebefed02b171 SHA512 ee6ef6bd73aa692d75efa48ba058ebfdfe8b12374c49e41a79521fe30e836e53a6e146845e9a4aecb69b3b7d1ac305d1c280ef87a981a05b7f39b9e8b7ff11e7 WHIRLPOOL 8d66e590188f10fb217fb42c14edbc37b2ac87e2470e73b30cdf6b851016e7daafa1ee91a3d2f7067f4adc16ba6ed7c292109855a49c2ae0b0344684761d3376
DIST dbd-pg-0.3.9.tar.gz 65198 SHA256 8d1ca3c70cc4a98ef569c90a27b36f80e784af55d0f295195f1df7699a87623b SHA512 f7d8be4ba4cf6838f9168206e477cfe4ce0dd8416afcef9d415b700d0f1f85333557f835672bb36c7d8ad3be6375ff0041e5b00e7b6e09ac2b2a9d084eecb490 WHIRLPOOL 3cd79e8e2739802707922d755adec4a485689733a4a80c6f8c5521b9a54510e4b8b13dd4270e8d4d037c32bfbcf23a4052d3a060491a725284f3b8a15d01768f

@ -1,37 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbd-pg/dbd-pg-0.3.8.ebuild,v 1.11 2012/09/02 09:05:30 flameeyes Exp $
inherit "ruby"
DESCRIPTION="The PostgreSQL database driver (DBD) for Ruby/DBI"
HOMEPAGE="http://ruby-dbi.rubyforge.org"
SRC_URI="mirror://rubyforge/ruby-dbi/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="test"
RDEPEND="
>=dev-ruby/dbi-0.4.2
>=dev-ruby/postgres-0.7.9.20080128"
# ruby-postgres is not yet ruby19
USE_RUBY="ruby18"
src_test() {
elog "The tests require additional configuration."
elog "You will find them in /usr/share/${PN}/test/"
elog "Be sure to read the file called DBD_TESTS."
}
src_install() {
ruby setup.rb install \
--prefix="${D}" || die "setup.rb install failed"
if use test; then
dodir /usr/share/${PN}
cp -pPR test "${D}/usr/share/${PN}" || die "couldn't copy tests"
fi
}

@ -1,36 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbd-sqlite/dbd-sqlite-0.1.2.ebuild,v 1.10 2012/09/02 09:06:26 flameeyes Exp $
inherit "ruby"
DESCRIPTION="The SQLite database driver (DBD) for Ruby/DBI"
HOMEPAGE="http://ruby-dbi.rubyforge.org"
SRC_URI="mirror://rubyforge/ruby-dbi/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="test"
RDEPEND="
>=dev-ruby/dbi-0.4.2
dev-ruby/sqlite-ruby"
USE_RUBY="ruby18"
src_test() {
elog "The tests require additional configuration."
elog "You will find them in /usr/share/${PN}/test/"
elog "Be sure to read the file called DBD_TESTS."
}
src_install() {
ruby setup.rb install \
--prefix="${D}" || die "setup.rb install failed"
if use test; then
dodir /usr/share/${PN}
cp -pPR test "${D}/usr/share/${PN}" || die "couldn't copy tests"
fi
}

@ -1,36 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbd-sqlite3/dbd-sqlite3-1.2.5.ebuild,v 1.11 2012/09/02 09:07:20 flameeyes Exp $
inherit "ruby"
DESCRIPTION="The SQLite 3 database driver (DBD) for Ruby/DBI"
HOMEPAGE="http://ruby-dbi.rubyforge.org"
SRC_URI="mirror://rubyforge/ruby-dbi/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="test"
RDEPEND="
>=dev-ruby/dbi-0.4.2
>=dev-ruby/sqlite3-1.2.4"
USE_RUBY="ruby18"
src_test() {
elog "The tests require additional configuration."
elog "You will find them in /usr/share/${PN}/test/"
elog "Be sure to read the file called DBD_TESTS."
}
src_install() {
ruby setup.rb install \
--prefix="${D}" || die "setup.rb install failed"
if use test; then
dodir /usr/share/${PN}
cp -pPR test "${D}/usr/share/${PN}" || die "couldn't copy tests"
fi
}

@ -1,2 +1 @@
DIST dbi-0.4.3.tar.gz 81851 SHA256 5f4d0c92c43ccfc4d0075dfe17e3315a2d2d8aaeaee207a81985dd7be75f45fa SHA512 4f45eccb93e1826232f6f9260dbe81420c6239c64e24f55cd1777404a5869d27a1f4c9b8dd5b8382b0c08904565a8f3cdba60ad60198087111cdcff7635389c0 WHIRLPOOL 52e64b4dbf04e1824bda938fe3dac870ff3c5b01a2e70f25032b1e256c89268ad043ac2d92ff217ea8b535f6ecf59544874cee49fa445d18246fd5a42f9c48dd
DIST dbi-0.4.5.gem 73728 SHA256 892b34709c872db130053b2b9238a43b28a71b8a5851193ef236a59541195916 SHA512 b7b6dfb22ab2430275868b8b4801b3a3c296c879b2a21394b161541734f4818ba51dc74a0c3906b9879fbbc1f4b4be4b43a98108cf855aae5dd7a5fdfe7632cd WHIRLPOOL 7a68dafd0242b4fcfeba8508f21d0848165c3188b96f61b20540b44a74e4ae4ce01e16c7951bc687b6977d442410f9fec9189791adb7e1ca74f83eda81066868

@ -1,64 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbi/dbi-0.4.3.ebuild,v 1.3 2012/09/09 08:23:03 graaff Exp $
EAPI=4
USE_RUBY="ruby18"
inherit ruby-ng
DESCRIPTION="Ruby/DBI - a database independent interface for accessing databases - similar to Perl's DBI"
HOMEPAGE="http://ruby-dbi.rubyforge.org"
SRC_URI="mirror://rubyforge/ruby-dbi/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="examples odbc postgres mysql sqlite sqlite3 test"
ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
ruby_add_rdepend "dev-ruby/deprecated:2"
PDEPEND="
mysql? ( dev-ruby/dbd-mysql )
postgres? ( dev-ruby/dbd-pg )
odbc? ( dev-ruby/dbd-odbc )
sqlite? ( dev-ruby/dbd-sqlite )
sqlite3? ( dev-ruby/dbd-sqlite3 )"
S="${WORKDIR}/${MY_P}"
all_ruby_prepare() {
sed -i -e '/test_available_drivers/,/^ end/ s:^:#:' test/dbi/tc_dbi.rb || die
sed -i -e "s/gem 'deprecated'/gem 'deprecated', '~>2.0'/" lib/dbi/columninfo.rb lib/dbi.rb || die
}
each_ruby_configure() {
${RUBY} setup.rb config --prefix=/usr
}
each_ruby_test() {
${RUBY} test/ts_dbi.rb || die "Tests failed."
}
each_ruby_install() {
${RUBY} setup.rb install \
--prefix="${D}" || die "setup.rb install failed"
}
all_ruby_install() {
dodoc ChangeLog README
if use examples ; then
cp -pPR examples "${D}/usr/share/doc/${PF}" || die "cp examples failed"
fi
}
pkg_postinst() {
if ! (use mysql || use postgres || use odbc || use sqlite || use sqlite3)
then
elog "${P} now comes with external database drivers."
elog "Be sure to set the right USE flags for ${PN} or emerge the drivers manually:"
elog "They are called dev-ruby/dbd-{mysql,odbc,pg,sqlite,sqlite3}"
fi
}

@ -1,2 +1 @@
DIST dust-0.1.6.gem 6656 SHA256 99aafcb8dc7fcabc526b777f17109163630ff82b5f522141759a1b626da890d5 SHA512 dc1a7e5edbbbd6bd621bc621cc5fd40c305f033f7ccc469ce8954786a71607ec9f234645b5cc0577aeb7aff05e88ff25faf84dd124515cb3c4186dc54331d4e9 WHIRLPOOL 2aa7138934e2351f2c00dcb3a3f030c4b6e5637bcf10589e8043349f54b7229acaf01c80888be8809e3e2587c40255add29de0e6064ccb36887ce334e5b66950
DIST dust-0.1.7.gem 6656 SHA256 f4542f0cd17739a95b28ce5fcdf6ed7277e4fcce30d359f44fe95eed10289969 SHA512 f5b6d46dc4316a5c8aa49ba6122284f9ca08a491768cb5f89c6a5bfde4ff8b95df7b0234c67a27334af236801e474f27cd7cfdb0f5aaf4c65cc324977926ae1f WHIRLPOOL 49c7497eb78c086ff6831bbbf6132fda48b70a9e8879fef5a8781e4ae951aa1e2d5ed5825c6cf0793ea71d978ebb4605691a437c4a540db02a835ad51439fa5b

@ -1,27 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dust/dust-0.1.6-r1.ebuild,v 1.3 2010/07/21 12:55:08 fauli Exp $
EAPI="2"
USE_RUBY="ruby18"
RUBY_FAKEGEM_EXTRADOC="README"
inherit ruby-fakegem
DESCRIPTION="Descriptive block syntax definition for Test::Unit."
HOMEPAGE="http://dust.rubyforge.org/"
LICENSE="MIT"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE=""
# Remove a long-obsolete rubygems method.
all_ruby_prepare() {
sed -i '/manage_gems/d' rakefile.rb || die "Unable to update rakefile.rb"
}
each_ruby_prepare() {
sed -i '/manage_gems/d' rakefile.rb || die "Unable to update rakefile.rb"
}

@ -1,2 +1 @@
DIST fast_xs-0.7.3.gem 20480 SHA256 108e4e4099d1468970c4fe57f2deca31ad1ef923877352ee1c7394d31ab0538b SHA512 5700b0fd7194de7f16022d9c1b585166e0fdc21deb69eac5949a1eec9c7cc98a9ef0f3ec490370f5cdb5079f57cd5752f228e563e258dbce4e821fb6cee04fdb WHIRLPOOL 4e7348d1d4dca42badf88bba360785707de12f381d5c72429ba0c268eb980983ebbabbcbaa4c3a61aef634949436d4340f95439cbc2b3381d6832e61eb825a62
DIST fast_xs-0.8.0.gem 22016 SHA256 5ff2e1b088bdad3d4eae2a71b118b8aa9b39975702853c3bb307e35db1facdc7 SHA512 55fc2704fab020f03b1ce138d1631dd5ad73a8601dcd95989a59c7cccb490c70b4e1af59fb8b009bfa0899f2c23feb42cc3068e243cd539ba1cb01a9f7bc573b WHIRLPOOL e29bd2abf334e85809abb830968d9850439a5c50767aee0718ad5967c26b6ca9c9d7a9661a0bfc78a85e425634e69d6cac859eb59e8f57e29c481c8ca6969e3d

@ -1,35 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fast_xs/fast_xs-0.7.3-r1.ebuild,v 1.2 2012/08/11 12:22:40 hollow Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18"
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOCDIR="doc"
inherit ruby-fakegem
DESCRIPTION="fast_xs text escaping library ruby bindings."
HOMEPAGE="http://fast-xs.rubyforge.org/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
ruby_add_bdepend "doc? ( >=dev-ruby/hoe-2.3.2 )"
ruby_add_bdepend "test? ( >=dev-ruby/hoe-2.3.2 virtual/ruby-test-unit )"
each_ruby_configure() {
${RUBY} -Cext/fast_xs extconf.rb || die "extconf.rb failed"
${RUBY} -Cext/fast_xs_extra extconf.rb || die "extconf.rb failed"
}
each_ruby_compile() {
emake -Cext/fast_xs CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}" || die "make extension failed"
cp ext/fast_xs/fast_xs$(get_modname) lib/ || die
emake -Cext/fast_xs_extra CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}" || die "make extension failed"
cp ext/fast_xs_extra/fast_xs_extra$(get_modname) lib/ || die
}

@ -1,2 +1 @@
DIST fastercsv-1.5.3.gem 124928 SHA256 0342c1d22c161cc749985c55d5988fab727ca69d6d83ab21176369ec675fb26d SHA512 9e85e85aad6c55834a6247dea11a4998178bdac59c30d4be1f46a1a332b36f09e7b31ffc3806becde8be3838287310815a78b16fdd959e0415780631b8b3fa3f WHIRLPOOL 3677861cace1480ca4df9c7f6eff50acd1ef1fa976f9e480478d5f43bc042f83f132e8c02f49ba37a9d5b570006507da34745d59f091e5cf437613bcbbdeec64
DIST fastercsv-1.5.5.gem 117248 SHA256 d098199e62e4e10eec436a9ea9b8c189dacd5c06f2825f00d1e0f1c29fdbc3b5 SHA512 f86bd11befd07b0b53226a643a22091a6a207a6f26ac9c93491fe30f820b90137a237b313040daeb9d1e3d72c0e81c0f1f5cfcfd9e893c2d8fc32899bd795def WHIRLPOOL c2d8fd3a51b939c8365bbdc144932b810a8e1b51e7aef2b559f0ec9c019991d60487a52e9b39e7cf49a984b4718dfe5e9af9131fd82018252174fc2dbd3438ef

@ -1,34 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fastercsv/fastercsv-1.5.3.ebuild,v 1.5 2010/11/03 21:44:58 maekke Exp $
EAPI=2
# ruby19 → not needed, it's bundled as part of the main package
# jruby → tests fail (badly?) for encoding and zlib support (latter
# fixed in 1.4)
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC="rdoc"
RUBY_FAKEGEM_DOCDIR="doc/html"
RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGELOG README TODO"
inherit ruby-fakegem
DESCRIPTION="FasterCSV is a replacement for the standard CSV library"
HOMEPAGE="http://fastercsv.rubyforge.org/"
LICENSE="|| ( Ruby GPL-2 )"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE=""
ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
all_ruby_install() {
all_fakegem_install
docinto examples
dodoc examples/* || die
}

@ -1,45 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gruff/gruff-0.3.6-r3.ebuild,v 1.1 2012/07/22 18:08:15 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ruby19"
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.txt"
RUBY_FAKEGEM_EXTRAINSTALL="assets rails_generators"
inherit ruby-fakegem
ruby_add_rdepend '>=dev-ruby/rmagick-2'
ruby_add_bdepend "
test? (
dev-ruby/hoe
)
doc? ( dev-ruby/hoe )"
DESCRIPTION="RMagick Implementation for JRuby"
HOMEPAGE="http://rubyforge.org/projects/gruff/"
SRC_URI="mirror://rubyforge/${PN}/${P}.tgz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-macos"
IUSE=""
RUBY_PATCHES=(
${P}-sort-filenames.patch
${P}-fix-tests.patch
${P}-spider.patch
${P}-zero-division.patch
)
# imagemagick is an indirect dependency through rmagick. However, for
# gruff to work properly imagemagick needs to be compiled with
# truetype support and this cannot be expressed in the rmagick
# dependency. Test also require imagemagick to have jpeg support.
DEPEND="${DEPEND} test? ( media-gfx/imagemagick[jpeg,truetype] )"
RDEPEND="${RDEPEND} media-gfx/imagemagick[truetype]"

@ -1,2 +1 @@
DIST KirbyBase-2.6.1.gem 304128 SHA256 41713f589797e0b3a2aa38bd05d360e6f510791adeb71b5cf58a8efc20f540f9 SHA512 84a471b77ef9c91d50b61ad9993956fb25739155fe55049c1e20f1c87593f726604801ddb7968b19d8234d1d9ad9b112df53f1a2c8c85ec3559d88eedbd2314f WHIRLPOOL 8a02cab9606269a2cfe4cda022dca55bdb340a75167ba164e460afeb506d6c8374923a95c994c418bcff3e078ef263e4164927e930d3775e1f4fe42de6a0381b
DIST KirbyBase-2.6.gem 304640 SHA256 b22390ff45030d15dde033d30f2be2c3d1c9d7d5fc7ba175310ddd981b305fcd SHA512 f82db5c2703a44f8330238f954b85e3782e78f71a70f9573cf484be1fe0385525984fdc524f45096325c2188a59020cd8c159fa15fecc1dc01c83f7de6895bd5 WHIRLPOOL 4828c00b212517b6ed50ef97286bdd1872f5ffecfa71025e97373d4770862ba216f1958ed2a5fac49532cea7b72d50caf865afc15a3c1c3e4f1684fb26d87f50

@ -1,34 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/kirbybase/kirbybase-2.6-r1.ebuild,v 1.3 2011/07/24 16:32:04 armin76 Exp $
EAPI=2
USE_RUBY="ruby18"
RUBY_FAKEGEM_NAME="KirbyBase"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="changes.txt kirbybaserubymanual.html README"
inherit ruby-fakegem
DESCRIPTION="A simple Ruby DBMS that stores data in plaintext files."
HOMEPAGE="http://www.netpromi.com/kirbybase_ruby.html"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 x86"
IUSE=""
each_ruby_test() {
${RUBY} -Ctest tc_local_db.rb || die
${RUBY} -Ctest tc_local_table.rb || die
${RUBY} -Ctest ts_local.rb || die
}
all_ruby_install() {
all_fakegem_install
insinto /usr/share/doc/${PF}
doins -r examples images || die
}

@ -1,2 +1 @@
DIST log4r-1.1.10.gem 118272 SHA256 9b452928c964b7c54c09aeb25ff045b5a722b387b16c9ce37cb1baec00062966 SHA512 a3a9e6c9ef5b388106afc4d402455ec480729cb58054794e6ff6c963b4d819776bf5b57ef5ab7499ddc9a6b3c10f299a133f3f5986d94ee0a438b64ede5bc143 WHIRLPOOL b0e2b7d9bc39efe2cf5f6f5999983882f3edfe4160b1ad9fa1452d2fa115d145efc3ac49ceeb243e5f4eee1adc61096c0ab3cf00802b6e1ee9aba570ba4882b1
DIST log4r-1.1.8.gem 394752 SHA256 084b4394240a98c4c52e9c6a599fde60a2f452a4e01be11e72cef08882b6dfe4 SHA512 858e23aa5269c4e21c007ae370ebdeb956279969fb645ed6e1c46ef93817fa56cef30f8a62023c5a53244cafcb29984f5c92d13b8bc6b0a8da74ad00f0a4dfdf WHIRLPOOL 11f41f2f270829e188f3adc8a91a4882950da2deecef1af512b12a35f5517768660da8083cb6b56122711f51617b9d4d7491e46f38655bed6da6b9bd1ae16577

@ -1,32 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/log4r/log4r-1.1.8.ebuild,v 1.5 2012/05/01 18:24:19 armin76 Exp $
EAPI="2"
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC=""
# There are no working tests atm, to be checked on next version bump.
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="README TODO"
inherit ruby-fakegem
DESCRIPTION="Log4r is a comprehensive and flexible logging library written in
Ruby for use in Ruby programs."
HOMEPAGE="http://log4r.sourceforge.net/"
IUSE=""
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc64 x86"
all_ruby_install() {
all_fakegem_install
insinto /usr/share/doc/${PF}
doins -r examples || die
}

@ -1,2 +1,3 @@
DIST ninja-ide-2.1.1.tar.gz 737456 SHA256 534a891dfdaa262fd6465d2d72672eb29e494401968ba31c483f9eab31f3d5a8 SHA512 4ecc9e09ce9e68fa3a883f326a59d6c5fc2c52e2b8e936da0d3c57974b76ce11d1c171bcbce29ab676818efedab10bf282d28e2d43eed4c00d1b9d1d1807e48c WHIRLPOOL 7b42097df4725b3747e6c774c1ff206dae0344f860ffea1ac8bc2212a2042cfb66b8f33a799c395ed58bbbd8348f5045e09720f549b0974b65ba80509980d1af
DIST ninja-ide-2.2.tar.gz 763910 SHA256 2f2a46f33a81229ebc63b34cc52e76625ce62a9be0f107c4c3b91ba3c159a409 SHA512 311fd94a2595ff962cd41bc7e84dd1d9d9b8feb2ea0ffdbbbd52735661f48d0a3e97eaca50a83100f66e37043b9554ca67fdd64853111c85b3a54c085b953bcb WHIRLPOOL 735cbedae901a1ce298cde67f26288f03df621fb698660eb9e7431e314a064473f12fe3a6ac89e7bc2352e2ca2b77d5e3ac4f6b4d00fc250183cf0d552d8f559
DIST ninja-ide-2.3.tar.gz 650762 SHA256 79012ba8e526e126d54ba7b70fa6fcf61dfadb478624a74c299a0740c170d9ac SHA512 c449620c603060cb9dcc64ffa8c5a778a3993501c906b89a8ece1691ec85504521c893b03b8536c16d9a3e20c10fbc29b0fbfdf57250eb68a7284dca54dbaca9 WHIRLPOOL 79182e28bbef2592ef9ffeae301d0a48a87765121169e505fbe1364961e3286425d2a44b1d4e637bf3ccdea22f4cce3333a55ab8a855a80f1b167e3220ea84ca

@ -0,0 +1,27 @@
From: Julian Ospald <hasufell@gentoo.org>
Date: Wed Apr 24 21:05:44 UTC 2013
Subject: fix compatibility with python:2.6
--- ninja_ide/core/file_manager.py
+++ ninja_ide/core/file_manager.py
@@ -26,7 +26,7 @@
from ninja_ide.core import settings
-if sys.version_info.major == 3:
+if sys.version_info[0] == 3:
python3 = True
else:
python3 = False
--- ninja_ide/gui/editor/editor.py
+++ ninja_ide/gui/editor/editor.py
@@ -68,7 +68,7 @@
logger = NinjaLogger('ninja_ide.gui.editor.editor')
-if sys.version_info.major == 3:
+if sys.version_info[0] == 3:
python3 = True
else:
python3 = False

@ -0,0 +1,9 @@
--- ninja_tests/core/examples/file_for_tests.py
+++ ninja_tests/core/examples/file_for_tests.py
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
-print 'testing'
-print 'ñandú testing'
+print('testing')
+print('ñandú testing')

@ -0,0 +1,50 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ninja-ide/ninja-ide-2.3.ebuild,v 1.1 2013/07/08 18:10:57 hasufell Exp $
# XXX: tests
EAPI=5
PYTHON_COMPAT=( python2_6 python2_7 python3_1 python3_2 python3_3 )
inherit eutils gnome2-utils distutils-r1 vcs-snapshot
DESCRIPTION="Ninja-IDE Is Not Just Another IDE"
HOMEPAGE="http://www.ninja-ide.org"
SRC_URI="https://github.com/ninja-ide/ninja-ide/tarball/v${PV} -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
dev-python/PyQt4[X,declarative,webkit,${PYTHON_USEDEP}]
dev-python/pyinotify[${PYTHON_USEDEP}]
virtual/python-argparse[${PYTHON_USEDEP}]
virtual/python-json[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-syntax.patch
"${FILESDIR}"/${P}-python2_6.patch
)
python_install_all() {
distutils-r1_python_install_all
newicon -s 256 icon.png ${PN}.png
make_desktop_entry ${PN} "NINJA-IDE"
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}

@ -1,9 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<maintainer>
<email>idella4@gentoo.org</email>
<name>Ian Delaney</name>
</maintainer>
<maintainer>
<email>kensington@gentoo.org</email>
<name>Michael Palimaka</name>
</maintainer>
<use>
<flag name='codebase'>Enables a build of the docs/codebase folder</flag>
<flag name='codebase'>Enables a build of the docs/codebase folder</flag>
<flag name='manual'>Enables a build of the docs/manual folder</flag>
<flag name='rnotes'>Enables a doc build of the release notes</flag>
</use>

@ -0,0 +1,20 @@
--- src/main.cpp.old 2013-07-07 17:37:05.617114521 +0200
+++ src/main.cpp 2013-07-07 17:37:20.322929644 +0200
@@ -40,7 +40,6 @@
KAboutData::License_GPL,ki18n("(C) 2005-2009 Rajko Albrecht"));
about.addAuthor( ki18n("Rajko Albrecht"),ki18n("Developer"),QByteArray("ral@alwins-world.de"),QByteArray());
about.setHomepage("http://kdesvn.alwins-world.de/");
- about.setBugAddress("kdesvn-bugs@alwins-world.de");
KCmdLineArgs::init(argc, argv, &about);
KCmdLineOptions options;
--- src/kdesvn_part.cpp.old 2013-07-07 17:37:41.415664472 +0200
+++ src/kdesvn_part.cpp 2013-07-07 17:37:53.484512746 +0200
@@ -174,7 +174,6 @@
about.addAuthor(ki18n("Rajko Albrecht"), ki18n("Original author and maintainer"), "ral@alwins-world.de" );
about.setOtherText(m_Extratext);
about.setHomepage("http://kdesvn.alwins-world.de/");
- about.setBugAddress("kdesvn-bugs@alwins-world.de");
about.setProgramIconName("kdesvn");
about.setTranslator(ki18n("kdesvn: NAME OF TRANSLATORS\\nYour names"),
ki18n("kdesvn: EMAIL OF TRANSLATORS\\nYour emails"));

@ -0,0 +1,42 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/kdesvn/kdesvn-1.6.0-r1.ebuild,v 1.1 2013/07/08 20:24:36 johu Exp $
EAPI=5
KDE_HANDBOOK="optional"
KDE_LINGUAS="cs de el es fr it ja lt pt_BR ro ru"
KDE_LINGUAS_LIVE_OVERRIDE="true"
inherit flag-o-matic kde4-base
DESCRIPTION="KDESvn is a frontend to the subversion vcs."
HOMEPAGE="http://kdesvn.alwins-world.de/"
if [[ ${PV} != 9999* ]]; then
SRC_URI="http://kdesvn.alwins-world.de/downloads/${P}.tar.bz2"
fi
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="debug"
DEPEND="
dev-libs/apr:1
dev-libs/apr-util:1
>=dev-vcs/subversion-1.7
sys-devel/gettext
dev-qt/qtsql:4[sqlite]
"
RDEPEND="${DEPEND}"
add_blocker "kdesdk-kioslaves[subversion(+)]"
PATCHES=( "${FILESDIR}/${P}-bug-address.patch" )
src_configure() {
append-cppflags -DQT_THREAD_SUPPORT
[[ ${PV} = 9999* ]] && mycmakeargs=(-DDAILY_BUILD=ON)
kde4-base_src_configure
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.71 2013/05/21 01:31:02 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.72 2013/07/09 01:57:07 floppym Exp $
# @ECLASS: distutils-r1
# @MAINTAINER:
@ -308,6 +308,12 @@ distutils_install_for_testing() {
esetup.py "${add_args[@]}"
}
_disable_ez_setup() {
local stub="def use_setuptools(*args, **kwargs): pass"
[[ -f ez_setup.py ]] && echo "${stub}" > ez_setup.py
[[ -f distribute_setup.py ]] && echo "${stub}" > distribute_setup.py
}
# @FUNCTION: distutils-r1_python_prepare_all
# @DESCRIPTION:
# The default python_prepare_all(). It applies the patches from PATCHES
@ -330,6 +336,9 @@ distutils-r1_python_prepare_all() {
fi
fi
# Prevent packages from downloading their own copy of setuptools
_disable_ez_setup
if [[ ${DISTUTILS_IN_SOURCE_BUILD} && ! ${DISTUTILS_SINGLE_IMPL} ]]
then
# create source copies for each implementation

@ -1 +1 @@
DIST gnome-do-0.8.5.tar.gz 904470 RMD160 214397277dd0618050b3e99aeb3e7f98ee2fd4cd SHA1 690d4713f7b818e92717a6e5addeb36a5c9d9162 SHA256 38741b2c9757707c16db6b8d912897408cfe4bff8db728e86dccac5ca894f28b
DIST gnome-do-0.8.5.tar.gz 904470 SHA256 38741b2c9757707c16db6b8d912897408cfe4bff8db728e86dccac5ca894f28b

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-do/gnome-do-0.8.5.ebuild,v 1.4 2012/06/21 09:35:12 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-do/gnome-do-0.8.5.ebuild,v 1.5 2013/07/08 23:02:03 xmw Exp $
# TODO: GNOME Do defaults to a debug build; to disable, --enable-release must
# be passed. However, when doing this the build fails; figure out why.

@ -1,8 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>proxy-maintainers</herd>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
<email>giuse88@gmail.com</email>
<name>Giuseppe Pes</name>
</maintainer>
<longdescription>
GNOME Do allows you to quickly search for many items present in your GNOME

@ -1 +1,2 @@
DIST bombono-dvd-1.2.1.tar.bz2 4111237 SHA256 89817ce134b5ee2879285dfb30e9f8b0603b2282989ecb91793e7b928d64152f SHA512 09dcb91b16074f21606af052e3e22a842050d06a93ba41dbe9474ccacb1dad4e5903dffb1f7818fcf864df9b234fb50087d39f19dbdc2eb14268847059c30765 WHIRLPOOL 36376b1375a7cb8f8cb96c8f5adf3589b4ada0ed3f8707394da6ffdbc98b3853eb620a43636322b3e64ecbeab1c11fceebc076df83df93ee59b41f117ba2f0fc
DIST bombono-dvd-1.2.2.tar.bz2 4406764 SHA256 3ffaadc803dc2526d2805629ee928800ce150cb2e6a40b6724d898c76366f68b SHA512 66982f014b6d45a9fa5a8a748dc3ed0ad79ae2d1c9e5afdf22d8db89e0f91c29fcd5639ca27ac50e50916ad37a80e536ea186e079d07efca7547fe49ab8f7d6b WHIRLPOOL 797c495a480c7b12f112809bc73e2032e846dbb57db8f3d2989d7063aa6686c3cdc8f07813bb34f0d076c6e53188931fe4b01e461d5c76bcb95557783c21cfe4

@ -0,0 +1,75 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/bombono-dvd/bombono-dvd-1.2.2.ebuild,v 1.1 2013/07/08 23:02:38 chithanh Exp $
EAPI=4
SCONS_MIN_VERSION="0.96.1"
inherit base scons-utils toolchain-funcs flag-o-matic virtualx
DESCRIPTION="GUI DVD authoring program"
HOMEPAGE="http://www.bombono.org/"
SRC_URI="mirror://sourceforge/bombono/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnome"
COMMONDEPEND="
app-i18n/enca
app-cdr/dvd+rw-tools
dev-cpp/gtkmm:2.4
dev-cpp/libxmlpp:2.6
>=dev-libs/boost-1.51
media-libs/libdvdread
media-sound/twolame
media-video/dvdauthor
virtual/cdrtools
virtual/ffmpeg
>=media-video/mjpegtools-1.8.0
x11-libs/gtk+:2
"
RDEPEND="${COMMONDEPEND}
gnome? ( gnome-base/gvfs )
"
DEPEND="${COMMONDEPEND}
virtual/pkgconfig
"
RESTRICT=test
# bug 419655
PATCHES=(
"${FILESDIR}/${PN}-1.0.1-cflags.patch"
"${FILESDIR}/${PN}-1.2.0-cdrtools.patch"
)
src_configure() {
append-cppflags -DBOOST_SYSTEM_NO_DEPRECATED -DBOOST_FILESYSTEM_VERSION=3
myesconsargs=(
CC="$(tc-getCC)"
CXX="$(tc-getCXX)"
CFLAGS="${CFLAGS}"
CXXFLAGS="${CXXFLAGS}"
DESTDIR="${D}"
LDFLAGS="${LDFLAGS}"
USE_EXT_BOOST=1
PREFIX="${EPREFIX}/usr"
)
}
src_compile() {
nonfatal escons \
|| die "Please add ${S}/config.opts when filing bugs reports!"
}
src_test() {
VIRTUALX_COMMAND="escons TEST=1" virtualmake
}
src_install() {
nonfatal escons install || die "Please add ${S}/config.opts when filing bugs reports!"
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/mpv-9999.ebuild,v 1.9 2013/07/08 06:03:47 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/media-video/mpv/mpv-9999.ebuild,v 1.10 2013/07/08 23:42:27 tomwij Exp $
EAPI=5
@ -18,17 +18,18 @@ LICENSE="GPL-3"
SLOT="0"
[[ ${PV} == *9999* ]] || \
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
IUSE="+alsa aqua bluray bs2b +cdio debug +dts dvb +dvd +enca encode fbcon
+iconv ipv6 jack joystick jpeg kernel_linux ladspa lcms +libass libcaca
libguess lirc mng +mp3 -openal +opengl oss portaudio +postproc pulseaudio pvr
+quvi radio samba +shm v4l vcd vdpau vf-dlopen wayland +X xinerama
+xscreensaver +xv"
IUSE="+alsa aqua bluray bs2b +cdio dvb +dvd +enca encode fbcon +iconv jack
joystick jpeg ladspa lcms +libass libcaca libguess lirc mng +mp3 -openal +opengl
oss portaudio +postproc pulseaudio pvr +quvi radio samba +shm +threads v4l vcd
vdpau vf-dlopen wayland +X xinerama +xscreensaver +xv"
REQUIRED_USE="
enca? ( iconv )
lcms? ( opengl )
libass? ( iconv )
libguess? ( iconv )
opengl? ( || ( aqua wayland X ) )
radio? ( || ( dvb v4l ) )
pvr? ( v4l )
radio? ( v4l || ( alsa oss ) )
vdpau? ( X )
wayland? ( opengl )
xinerama? ( X )
@ -90,7 +91,7 @@ RDEPEND+="
media-libs/mesa[egl,wayland]
>=x11-libs/libxkbcommon-0.3.0
)
>=virtual/ffmpeg-9[encode?]
|| ( >=media-video/libav-9[encode?,threads?,vdpau?] >=media-video/ffmpeg-1.2[encode?,threads?,vdpau?] )
"
ASM_DEP="dev-lang/yasm"
DEPEND="${RDEPEND}
@ -136,9 +137,8 @@ pkg_setup() {
src_prepare() {
# fix path to bash executable in configure scripts
local bash_scripts="configure version.sh"
sed -i -e "1c\#!${EPREFIX}/bin/bash" \
${bash_scripts} || die
configure version.sh || die
base_src_prepare
}
@ -152,82 +152,55 @@ src_configure() {
# because if --enable is used, it will force the build of that option,
# regardless of whether the dependency is available or not.
###################
#Optional features#
###################
#####################
# Optional features #
#####################
# SDL output is fallback for platforms where nothing better is available
myconf+=" --disable-sdl --disable-sdl2"
use wayland || myconf+=" --disable-wayland"
use encode || myconf+=" --disable-encoding"
myconf+=" $(use_enable joystick)"
uses="bluray enca libass libguess vcd"
uses="bluray vcd"
for i in ${uses}; do
use ${i} || myconf+=" --disable-${i}"
done
use ipv6 || myconf+=" --disable-inet6"
use quvi || myconf+=" --disable-libquvi4 --disable-libquvi9"
use samba || myconf+=" --disable-smb"
if ! use lirc; then
myconf+="
--disable-lirc
--disable-lircc
"
fi
use lirc || myconf+=" --disable-lirc --disable-lircc"
########
# CDDA #
########
use cdio || myconf+=" --disable-libcdio"
################################
# DVD read #
################################
#
# dvdread - accessing a DVD
#
############
# DVD read #
############
use dvd || myconf+=" --disable-dvdread"
#############
# Subtitles #
#############
#
use iconv || myconf+=" --disable-iconv"
uses="enca iconv libass libguess"
for i in ${uses}; do
use ${i} || myconf+=" --disable-${i}"
done
#####################################
# DVB / Video4Linux / Radio support #
#####################################
if { use dvb || use v4l || use pvr || use radio; }; then
use dvb || myconf+=" --disable-dvb"
use pvr || myconf+=" --disable-pvr"
use v4l || myconf+=" --disable-tv-v4l2"
if use radio && { use dvb || use v4l; }; then
myconf+="
--enable-radio
--disable-radio-capture
"
else
myconf+="
--disable-radio-v4l2
"
fi
use dvb || myconf+=" --disable-dvb"
use pvr || myconf+=" --disable-pvr"
use v4l || myconf+=" --disable-tv --disable-tv-v4l2"
if use radio; then
myconf+=" --enable-radio --enable-radio-capture"
else
myconf+="
--disable-tv
--disable-tv-v4l2
--disable-radio
--disable-radio-v4l2
--disable-dvb
--disable-pvr"
myconf+=" --disable-radio-v4l2"
fi
##########
# Codecs #
##########
use mp3 || myconf+=" --disable-mpg123"
uses="bs2b"
for i in ${uses}; do
use ${i} || myconf+=" --disable-lib${i}"
done
uses="jpeg mng"
for i in ${uses}; do
use ${i} || myconf+=" --disable-${i}"
@ -247,18 +220,18 @@ src_configure() {
for i in ${uses}; do
use ${i} || myconf+=" --disable-${i}"
done
use bs2b || myconf+=" --disable-libbs2b"
use openal && myconf+=" --enable-openal"
use oss || myconf+=" --disable-ossaudio"
use pulseaudio || myconf+=" --disable-pulse"
if ! use radio; then
use oss || myconf+=" --disable-ossaudio"
fi
####################
# Advanced Options #
####################
use threads || myconf+=" --disable-pthreads"
# Platform specific flags, hardcoded on amd64 (see below)
use shm || myconf+=" --disable-shm"
use debug && myconf+=" --enable-debug=3"
if use x86 && gcc-specs-pie; then
filter-flags -fPIC -fPIE
@ -269,7 +242,7 @@ src_configure() {
# X enabled configuration #
###########################
use X || myconf+=" --disable-x11"
uses="vdpau xinerama xv"
uses="vdpau wayland xinerama xv"
for i in ${uses}; do
use ${i} || myconf+=" --disable-${i}"
done
@ -280,14 +253,12 @@ src_configure() {
############################
# OSX (aqua) configuration #
############################
if use aqua; then
myconf+="
--enable-macosx-bundle
"
fi
use aqua && myconf+=" --enable-macosx-bundle"
./configure \
CFLAGS= LDFLAGS= ./configure \
--cc="$(tc-getCC)" \
--extra-cflags="${CFLAGS}" \
--extra-ldflags="${LDFLAGS}" \
--pkg-config="$(tc-getPKG_CONFIG)" \
--prefix="${EPREFIX}"/usr \
--bindir="${EPREFIX}"/usr/bin \

@ -5,7 +5,6 @@
<maintainer>
<email>phobosk@fastmail.fm</email>
<name>PhobosK</name>
<description>Proxy maintainer. Assign bugs to him.</description>
</maintainer>
<longdescription>
PhotoFilmStrip creates movies out of your pictures in just three steps.

@ -1,55 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/photofilmstrip/photofilmstrip-1.9.91.ebuild,v 1.1 2013/01/26 18:00:25 hwoarang Exp $
EAPI="5"
PYTHON_DEPEND="2"
RESTRICT_PYTHON_ABIS="3.*"
PYTHON_USE_WITH="sqlite"
inherit python distutils
DESCRIPTION="Movie slideshow creator using Ken Burns effect"
HOMEPAGE="http://www.photofilmstrip.org"
SRC_URI="mirror://sourceforge/photostoryx/${PN}/${PV}-unstable/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cairo sdl"
RDEPEND="dev-python/wxpython:2.8[cairo?]
dev-python/imaging
media-video/mplayer[encode]
sdl? ( dev-python/pygame )"
DEPEND="${RDEPEND}"
DOCS="CHANGES COPYING README"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
# Remove unneeded icon resources update needing running X
sed -i \
-e '/self\._make_resources\(\)/d' \
setup.py
# Fix desktop file entry
sed -i \
-e '/^Version.*/d' \
data/photofilmstrip.desktop
python_clean_py-compile_files
distutils_src_prepare
}
src_install() {
# Do not compress the apps help files
docompress -x /usr/share/doc/${PN}
distutils_src_install
}

@ -1 +1 @@
Mon, 08 Jul 2013 16:37:02 +0000
Tue, 09 Jul 2013 04:36:55 +0000

@ -1 +1 @@
Mon, 08 Jul 2013 16:37:02 +0000
Tue, 09 Jul 2013 04:36:56 +0000

@ -20,7 +20,7 @@
always a description without a lang attribute. Also there are no overlapping
descriptions allowed (multiple description tags with the same language)
$Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1035 2013/07/08 15:39:16 tomwij Exp $
$Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1036 2013/07/08 18:34:29 mrueg Exp $
-->
<herds>
@ -980,6 +980,10 @@
<email>naota@gentoo.org</email>
<name>Naohiro Aota</name>
</maintainer>
<maintainer>
<email>mrueg@gentoo.org</email>
<name>Manuel Rüger</name>
</maintainer>
</herd>
<herd>
<name>wine</name>

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install prepare
DEPEND=>=virtual/emacs-22 espeak? ( app-accessibility/espeak )
DESCRIPTION=the emacspeak audio desktop
EAPI=5
HOMEPAGE=http://emacspeak.sourceforge.net/
IUSE=+espeak
KEYWORDS=~amd64 ~ppc ~x86
LICENSE=BSD GPL-2
RDEPEND=>=virtual/emacs-22 espeak? ( app-accessibility/espeak ) >=dev-tcltk/tclx-8.4
SLOT=0
SRC_URI=http://emacspeak.googlecode.com/files/emacspeak-38.0.tar.bz2
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=56fd86e556da57d41ded7dd5f324f1c1

@ -1,11 +1,11 @@
DEFINED_PHASES=compile configure install preinst prepare unpack
DEPEND=>=virtual/emacs-22 espeak? ( app-accessibility/espeak ) || ( dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] ) net-misc/rsync
DESCRIPTION=the emacspeak audio desktop
EAPI=2
EAPI=5
HOMEPAGE=http://emacspeak.sourceforge.net/
IUSE=+espeak
LICENSE=BSD GPL-2
RDEPEND=>=virtual/emacs-22 espeak? ( app-accessibility/espeak ) >=dev-tcltk/tclx-8.4
SLOT=0
_eclasses_=eutils 63afaaed8aa819fdcb814c7cd39495a2 multilib 892e597faee02a5b94eb02ab512e7622 subversion 869118194bbbecaa8f935e185befcdb7 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=0c6c584a4ae19d82b9c4755648e5eb45
_md5_=e64cde12a1c33cf0211de80f7858090c

@ -9,5 +9,5 @@ LICENSE=BSD-2
RDEPEND=app-accessibility/sphinxbase media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] )
SLOT=0
SRC_URI=mirror://sourceforge/cmusphinx/pocketsphinx-0.8.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=fa272912b9f6c26a9ccd40fd183c98cd

@ -9,5 +9,5 @@ LICENSE=BSD-2 HPND MIT
RDEPEND=media-sound/pulseaudio lapack? ( virtual/lapack ) python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] )
SLOT=0
SRC_URI=mirror://sourceforge/cmusphinx/sphinxbase-0.8.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 0954dce983a8c7cfe4e2b55263cb7a05 distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b133da8fea81f2bb4eaa44d92d01cdbd

@ -10,5 +10,5 @@ RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=https://github.com/ansible/ansible/archive/v1.0.tar.gz -> ansible-1.0.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b0e338722056e6d87cae16630d086dc0

@ -10,5 +10,5 @@ RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=https://github.com/ansible/ansible/archive/v1.1.tar.gz -> ansible-1.1.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=2fbdd50c7e6346bf35795d5accd360e4

@ -8,5 +8,5 @@ LICENSE=GPL-3
RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass virtual/ssh python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 git-2 e92e09651292b1bef5656592364550f7 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 git-2 e92e09651292b1bef5656592364550f7 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=afa1c09b0df790c90103be8698b4e27a

@ -10,5 +10,5 @@ RDEPEND=dev-libs/openssl python_targets_python2_5? ( dev-lang/python:2.5[xml] )
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=https://github.com/cea-hpc/clustershell/archive/v1.6.tar.gz -> clustershell-1.6.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ea2c6f986f5f6d9f0f30c4a8e66c6cee

@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://sourceforge/denyhosts/DenyHosts-2.6.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 systemd 3421a5715404244e4827acd1cf8ce654 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 systemd 3421a5715404244e4827acd1cf8ce654 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=cbecf2951b8b3eae1eedf5e3883419c9

@ -10,5 +10,5 @@ RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,pyth
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 )
SLOT=0
SRC_URI=mirror://bitbucket/mgorny/eclean-kernel/downloads/eclean-kernel-0.3.2.tar.bz2
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b07fcb1c62f73047313b29a5dc18d927

@ -10,5 +10,5 @@ RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,pyth
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy1_9 )
SLOT=0
SRC_URI=mirror://bitbucket/mgorny/eclean-kernel/downloads/eclean-kernel-0.3.3.tar.bz2
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=2b6afc97008118d6b2a8662da7f6110b

@ -10,5 +10,5 @@ RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,pyth
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy1_9 )
SLOT=0
SRC_URI=mirror://bitbucket/mgorny/eclean-kernel/downloads/eclean-kernel-0.4.tar.bz2
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=9309497296b6483bebf543dd52945ae8

@ -8,5 +8,5 @@ LICENSE=BSD
RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy1_9 )
SLOT=0
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 git-2 e92e09651292b1bef5656592364550f7 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 git-2 e92e09651292b1bef5656592364550f7 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=3c9f34d7f88c9572a6cf4c9e3a34054e

@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target
REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 )
SLOT=0
SRC_URI=http://launchpad.net/glance/folsom/2012.2.4/+download/glance-2012.2.4.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=e95b8e9286ebe2b04ee80439f51baf80

@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target
REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 )
SLOT=0
SRC_URI=http://launchpad.net/glance/grizzly/2013.1.2/+download/glance-2013.1.2.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=bffd392839ce5248684bf9619c3478e1

@ -8,5 +8,5 @@ LICENSE=Apache-2.0
RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/jsonschema[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7 >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <dev-python/python-swiftclient-2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sqlite? ( >=dev-python/sqlalchemy-0.7[sqlite] <=dev-python/sqlalchemy-0.7.9[sqlite] ) mysql? ( >=dev-python/sqlalchemy-0.7[mysql] <=dev-python/sqlalchemy-0.7.9[mysql] ) postgres? ( >=dev-python/sqlalchemy-0.7[postgres] <=dev-python/sqlalchemy-0.7.9[postgres] ) ldap? ( dev-python/python-ldap ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 )
SLOT=0
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils 63afaaed8aa819fdcb814c7cd39495a2 git-2 e92e09651292b1bef5656592364550f7 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_eclasses_=distutils-r1 23c50381cb8eba8d1e7d233e14a967f8 eutils 63afaaed8aa819fdcb814c7cd39495a2 git-2 e92e09651292b1bef5656592364550f7 multibuild c2f33b0eedd7bcfd5bc226baa8da7837 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9aa9cecaaf78644be7c0b8b8dc814dce toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=ac5b244bd0a73fd50d47c99e36d6f52a

@ -3,10 +3,10 @@ DEPEND=|| ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sy
DESCRIPTION=A simple utility to read the temperature of SMART capable hard drives
EAPI=4
HOMEPAGE=http://savannah.nongnu.org/projects/hddtemp/
IUSE=network-cron
IUSE=network-cron nls
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86
LICENSE=GPL-2
SLOT=0
SRC_URI=http://download.savannah.gnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2 mirror://gentoo/hddtemp-20080531.db.bz2
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 63afaaed8aa819fdcb814c7cd39495a2 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=b546e85dc5fa21d5709726265d6c095b
_md5_=b2cc296539f4a3471ef3481da6a09fb1

@ -3,10 +3,10 @@ DEPEND=|| ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sy
DESCRIPTION=A simple utility to read the temperature of SMART capable hard drives
EAPI=4
HOMEPAGE=http://savannah.nongnu.org/projects/hddtemp/
IUSE=network-cron
IUSE=network-cron nls
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86
LICENSE=GPL-2
SLOT=0
SRC_URI=http://download.savannah.gnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2 mirror://gentoo/hddtemp-20080531.db.bz2
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 63afaaed8aa819fdcb814c7cd39495a2 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 systemd 3421a5715404244e4827acd1cf8ce654 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=8730b8a0994356decb5a2e871693d2f2
_md5_=8360c25a1180a42ca2cb51111c49b0f9

@ -2,9 +2,10 @@ DEFINED_PHASES=compile config install postinst unpack
DEPEND=|| ( >=sys-devel/automake-1.12 >=sys-devel/automake-1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DESCRIPTION=A simple utility to read the temperature of SMART capable hard drives
HOMEPAGE=http://savannah.nongnu.org/projects/hddtemp/
IUSE=nls
KEYWORDS=alpha amd64 arm hppa ia64 ppc sparc x86
LICENSE=GPL-2
SLOT=0
SRC_URI=http://download.savannah.gnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2 mirror://gentoo/hddtemp-20080531.db.bz2
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 63afaaed8aa819fdcb814c7cd39495a2 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5affbce260c65b4fef1afc7ce84fc5ef
_md5_=e9df8fb8f48f5aeee46d9aa0a0033c0f

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save