Sync with portage [Wed Mar 27 23:20:53 MSK 2013].

mhiretskiy
root 11 years ago
parent bf80409e99
commit 966d5aabaf

@ -1 +1,2 @@
DIST speech-dispatcher-0.7.1.tar.gz 1144818 SHA256 a8a9cf299447df4645d36c649977e007a3050ccaecb7f77e2165001ec5794a51 SHA512 a2d5c68a729967b5c93e52793f1b7f5173ad5069f2970e8ea7e8df267f73b9b3930e22ef1ec91fce87d82b94aaaf1c847d19d8ccc837de843e3a3e308fb0b352 WHIRLPOOL aa39e1eca1a7e05cbe9908707d26cc5a26e85f688d0cdf0518fdc067f843f127adf5e9d0d176aed25fe0dcaa30b55c4a59d1671531d5ae7f441eb26d436aa887
DIST speech-dispatcher-0.8.tar.gz 1229312 SHA256 0a6ce544cfbac8592a8ea08e3ab24c389153904ea51c6fd68756cea52de9efa2 SHA512 57452dd7a436714fbfc75d2d78b65179213cd1032173181865f82a4bb4b33f9dc9b39bc5e39422589447613593dfb1baf058fd67350e116c28955c9627120441 WHIRLPOOL 0a40ee6d8c9e3b7a192d76bd6e968ea9293c0bf2d233dc7d6ef5a95b5491b3a3d503872663c6bba0eb97fb15abb47fec741eb5278b1d5bbdc0bfc125253abb48

@ -0,0 +1,106 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.ebuild,v 1.1 2013/03/27 15:07:53 neurogeek Exp $
EAPI=5
PYTHON_COMPAT=( python3_2 pypy{1_9,2_0} )
inherit autotools-utils python-r1
DESCRIPTION="Speech synthesis interface"
HOMEPAGE="http://www.freebsoft.org/speechd"
SRC_URI="http://www.freebsoft.org/pub/projects/speechd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="alsa ao +espeak flite nas pulseaudio python static-libs"
RDEPEND=">=dev-libs/glib-2.28:2
>=media-libs/libsndfile-1.0.2
alsa? ( media-libs/alsa-lib )
ao? ( media-libs/libao )
espeak? ( app-accessibility/espeak )
flite? ( app-accessibility/flite )
nas? ( media-libs/nas )
pulseaudio? ( media-sound/pulseaudio )"
DEPEND="${RDEPEND}
>=dev-libs/dotconf-1.3
>=dev-util/intltool-0.40.0
virtual/pkgconfig"
src_prepare() {
# Python bindings are built/installed manually.
sed -e "/SUBDIRS += python/d" -i src/Makefile.am || die
autotools-utils_src_prepare
}
src_configure() {
local myeconfargs=(
$(use_enable python)
$(use_with alsa)
$(use_with ao libao)
$(use_with espeak)
$(use_with flite)
$(use_with pulseaudio pulse)
$(use_with nas)
)
autotools-utils_src_configure
}
src_compile() {
use python && python_copy_sources
autotools-utils_src_compile all
if use python; then
building() {
cd src/api/python || die
emake \
pyexecdir="$(python_get_sitedir)" \
pythondir="$(python_get_sitedir)"
}
python_foreach_impl run_in_build_dir building
fi
}
src_install() {
autotools-utils_src_install
if use python; then
installation() {
cd src/api/python || die
emake \
DESTDIR="${D}" \
pyexecdir="$(python_get_sitedir)" \
pythondir="$(python_get_sitedir)" \
install
}
python_foreach_impl run_in_build_dir installation
python_replicate_script "${ED}"/usr/bin/spd-conf
fi
}
pkg_postinst() {
local editconfig="n"
if ! use espeak; then
ewarn "You have disabled espeak, which is speech-dispatcher's"
ewarn "default speech synthesizer."
ewarn
editconfig="y"
fi
if ! use pulseaudio; then
ewarn "You have disabled pulseaudio support."
ewarn "pulseaudio is speech-dispatcher's default audio subsystem."
ewarn
editconfig="y"
fi
if [[ "${editconfig}" == "y" ]]; then
ewarn "You must edit ${EROOT}etc/speech-dispatcher/speechd.conf"
ewarn "and make sure the settings there match your system."
ewarn
fi
elog "For festival support, you need to"
elog "install app-accessibility/festival-freebsoft-utils."
}

@ -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-editors/emacs/emacs-23.4-r5.ebuild,v 1.15 2013/03/19 21:35:54 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-23.4-r5.ebuild,v 1.16 2013/03/27 16:01:44 ulm Exp $
EAPI=4
WANT_AUTOMAKE="none"
@ -164,7 +164,7 @@ src_configure() {
myconf="${myconf} --with-x-toolkit=no"
fi
elif use aqua; then
einfo "Configuring to build with Cocoa support"
einfo "Configuring to build with Nextstep (Cocoa) support"
myconf="${myconf} --with-ns --disable-ns-self-contained"
myconf="${myconf} --without-x"
else
@ -230,25 +230,27 @@ src_install () {
# remove unused <version>/site-lisp dir
rm -rf "${ED}"/usr/share/emacs/${FULL_VERSION}/site-lisp
local c=";;"
local cdir
if use source; then
insinto /usr/share/emacs/${FULL_VERSION}/src
cdir="/usr/share/emacs/${FULL_VERSION}/src"
insinto "${cdir}"
# This is not meant to install all the source -- just the
# C source you might find via find-function
doins src/*.{c,h,m}
doins -r src/{m,s}
rm "${ED}"/usr/share/emacs/${FULL_VERSION}/src/Makefile.c
rm "${ED}"/usr/share/emacs/${FULL_VERSION}/src/{m,s}/README
c=""
elif has installsources ${FEATURES}; then
cdir="/usr/src/debug/${CATEGORY}/${PF}/${S#"${WORKDIR}/"}/src"
fi
sed 's/^X//' >"${T}/${SITEFILE}" <<-EOF
sed -e "${cdir:+#}/^Y/d" -e "s/^[XY]//" >"${T}/${SITEFILE}" <<-EOF
X
;;; ${PN}-${SLOT} site-lisp configuration
X
(when (string-match "\\\\\`${FULL_VERSION//./\\\\.}\\\\>" emacs-version)
X ${c}(setq find-function-C-source-directory
X ${c} "${EPREFIX}/usr/share/emacs/${FULL_VERSION}/src")
Y (setq find-function-C-source-directory
Y "${EPREFIX}${cdir}")
X (let ((path (getenv "INFOPATH"))
X (dir "${EPREFIX}/usr/share/info/${EMACS_SUFFIX}")
X (re "\\\\\`${EPREFIX}/usr/share/info\\\\>"))

@ -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-editors/emacs/emacs-24.3.ebuild,v 1.3 2013/03/19 21:35:54 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-24.3.ebuild,v 1.4 2013/03/27 16:01:44 ulm Exp $
EAPI=5
@ -174,7 +174,7 @@ src_configure() {
myconf+=" --with-x-toolkit=no"
fi
elif use aqua; then
einfo "Configuring to build with Cocoa support"
einfo "Configuring to build with Nextstep (Cocoa) support"
myconf+=" --with-ns --disable-ns-self-contained"
myconf+=" --without-x"
else
@ -239,22 +239,24 @@ src_install () {
# remove unused <version>/site-lisp dir
rm -rf "${ED}"/usr/share/emacs/${FULL_VERSION}/site-lisp
local c=";;"
local cdir
if use source; then
insinto /usr/share/emacs/${FULL_VERSION}/src
cdir="/usr/share/emacs/${FULL_VERSION}/src"
insinto "${cdir}"
# This is not meant to install all the source -- just the
# C source you might find via find-function
doins src/*.{c,h,m}
c=""
elif has installsources ${FEATURES}; then
cdir="/usr/src/debug/${CATEGORY}/${PF}/${S#"${WORKDIR}/"}/src"
fi
sed 's/^X//' >"${T}/${SITEFILE}" <<-EOF
sed -e "${cdir:+#}/^Y/d" -e "s/^[XY]//" >"${T}/${SITEFILE}" <<-EOF
X
;;; ${PN}-${SLOT} site-lisp configuration
X
(when (string-match "\\\\\`${FULL_VERSION//./\\\\.}\\\\>" emacs-version)
X ${c}(setq find-function-C-source-directory
X ${c} "${EPREFIX}/usr/share/emacs/${FULL_VERSION}/src")
Y (setq find-function-C-source-directory
Y "${EPREFIX}${cdir}")
X (let ((path (getenv "INFOPATH"))
X (dir "${EPREFIX}/usr/share/info/${EMACS_SUFFIX}")
X (re "\\\\\`${EPREFIX}/usr/share/info\\\\>"))

@ -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-i18n/unicode-data/unicode-data-6.1.0.ebuild,v 1.4 2013/03/27 10:09:59 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/unicode-data/unicode-data-6.1.0.ebuild,v 1.5 2013/03/27 14:15:35 ago Exp $
EAPI=5
@ -10,7 +10,7 @@ SRC_URI="mirror://debian/pool/main/u/${PN}/${PN}_${PV}.orig.tar.gz"
LICENSE="unicode"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""
DEPEND="app-arch/unzip"

@ -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-misc/tmux/tmux-1.8.ebuild,v 1.1 2013/03/26 22:16:00 wired Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/tmux/tmux-1.8.ebuild,v 1.2 2013/03/27 15:33:02 wired Exp $
EAPI=5
@ -55,6 +55,9 @@ src_prepare() {
# 1.7 segfaults when entering copy mode if compiled with -Os
replace-flags -Os -O2
# regenerate aclocal.m4 to support earlier automake versions
rm aclocal.m4
autotools-utils_src_prepare
}

@ -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-shells/dash/dash-0.5.7.3-r1.ebuild,v 1.5 2013/03/27 09:17:17 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-shells/dash/dash-0.5.7.3-r1.ebuild,v 1.6 2013/03/27 14:08:14 ago Exp $
EAPI="4"
@ -18,7 +18,7 @@ SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${PN}-${DEB_PV}.tar.gz
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86"
IUSE="libedit static"
RDEPEND="!static? ( libedit? ( dev-libs/libedit ) )"

@ -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-lang/ghc/ghc-7.4.2.ebuild,v 1.3 2013/03/26 20:19:18 slyfox Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-7.4.2.ebuild,v 1.4 2013/03/27 14:49:03 qnikst Exp $
# Brief explanation of the bootstrap logic:
#
@ -86,7 +86,7 @@ RDEPEND="
>=dev-lang/perl-5.6.1
>=dev-libs/gmp-5
virtual/libffi
!<dev-haskell/haddock-2.4.2
!<dev-haskell/haddock-2.11.0
sys-libs/ncurses[unicode]"
# earlier versions than 2.4.2 of haddock only works with older ghc releases

@ -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-libs/MicroJSON/MicroJSON-0.3.0.ebuild,v 1.1 2013/03/12 15:06:45 tomwij Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/MicroJSON/MicroJSON-0.3.0.ebuild,v 1.3 2013/03/27 15:30:16 ago Exp $
EAPI="5"
@ -11,7 +11,7 @@ HOMEPAGE="http://grigory.info/${PN}.About.html"
SRC_URI="http://grigory.info/distfiles/${P}.tar.bz2"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 x86"
SLOT="0"
RDEPEND=">=dev-libs/UTF8Strings-1.12.0"

@ -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-perl/DateTime-TimeZone/DateTime-TimeZone-1.560.0.ebuild,v 1.4 2013/03/26 10:46:20 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/DateTime-TimeZone/DateTime-TimeZone-1.560.0.ebuild,v 1.5 2013/03/27 14:14:19 ago Exp $
EAPI=4
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Time zone object base class and factory"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="test"
RDEPEND="

@ -1,6 +1,8 @@
# 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-perl/Lab-Measurement/Lab-Measurement-9999.ebuild,v 1.5 2012/07/12 16:59:05 dilfridge Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Lab-Measurement/Lab-Measurement-9999.ebuild,v 1.6 2013/03/27 12:41:51 kensington Exp $
EAPI=5
if [[ "${PV}" != "9999" ]]; then
MODULE_AUTHOR="AKHUETTEL"
@ -25,7 +27,7 @@ SLOT="0"
IUSE=""
RDEPEND="
dev-lang/perl
dev-lang/perl[ithreads]
dev-perl/Clone
dev-perl/Exception-Class
dev-perl/TermReadKey

@ -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-perl/Package-Stash-XS/Package-Stash-XS-0.260.0.ebuild,v 1.4 2013/03/26 10:36:47 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Package-Stash-XS/Package-Stash-XS-0.260.0.ebuild,v 1.5 2013/03/27 14:07:48 ago Exp $
EAPI=5
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Faster and more correct implementation of the Package::Stash API"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="test"
RDEPEND=""

@ -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-perl/Text-CSV_XS/Text-CSV_XS-0.940.0.ebuild,v 1.6 2013/03/27 09:14:09 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-CSV_XS/Text-CSV_XS-0.940.0.ebuild,v 1.7 2013/03/27 14:10:00 ago Exp $
EAPI=4
@ -12,7 +12,7 @@ inherit perl-module
DESCRIPTION="Comma-separated values manipulation routines"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
RDEPEND=""

@ -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-perl/Try-Tiny/Try-Tiny-0.120.0.ebuild,v 1.5 2013/03/27 09:34:57 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Try-Tiny/Try-Tiny-0.120.0.ebuild,v 1.6 2013/03/27 14:08:38 ago Exp $
EAPI=5
@ -12,7 +12,7 @@ DESCRIPTION="Minimal try/catch with proper localization of $@"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE=""
SRC_TEST=do

@ -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/coverage/coverage-3.6.ebuild,v 1.5 2013/03/27 09:36:13 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/coverage/coverage-3.6.ebuild,v 1.6 2013/03/27 14:15:10 ago Exp $
EAPI=5
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"

@ -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/eyeD3/eyeD3-0.6.18-r1.ebuild,v 1.4 2013/02/03 19:33:16 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/eyeD3-0.6.18-r1.ebuild,v 1.5 2013/03/27 12:05:12 pinkbyte Exp $
EAPI="4"
PYTHON_DEPEND="2:2.5"
@ -14,7 +14,7 @@ SRC_URI="http://eyed3.nicfit.net/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
IUSE=""
DEPEND=""

@ -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/eyeD3/eyeD3-0.7.1.ebuild,v 1.5 2013/03/26 23:10:08 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/eyeD3/eyeD3-0.7.1.ebuild,v 1.6 2013/03/27 12:05:12 pinkbyte Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="http://eyed3.nicfit.net/releases/${P}.tgz"
LICENSE="GPL-2"
SLOT="0.7"
KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
IUSE=""
RDEPEND="!<${CATEGORY}/${PN}-0.6.18-r1:0"

@ -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/html5lib/html5lib-0.95-r1.ebuild,v 1.1 2013/01/19 12:45:12 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/html5lib/html5lib-0.95-r1.ebuild,v 1.2 2013/03/27 13:33:07 pinkbyte Exp $
EAPI=5
@ -15,7 +15,7 @@ SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
KEYWORDS="~amd64 ~arm ~x86 ~x86-fbsd"
IUSE="test"
# unittest2 used by our python_test()

@ -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/http-parser/http-parser-0.8.1-r1.ebuild,v 1.2 2013/03/26 11:00:41 pinkbyte Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/http-parser/http-parser-0.8.1-r1.ebuild,v 1.3 2013/03/27 12:40:39 naota Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
KEYWORDS="~amd64 ~arm ~x86 ~x86-fbsd"
IUSE="examples"
RDEPEND=""

@ -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/paver/paver-1.2.0.ebuild,v 1.1 2013/03/14 03:01:47 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/paver/paver-1.2.0.ebuild,v 1.2 2013/03/27 12:04:33 pinkbyte Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_2,3_3} pypy{1_9,2_0} )
@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
IUSE="test"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"

@ -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/pyasn1/pyasn1-0.1.6.ebuild,v 1.7 2013/03/27 10:09:08 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1/pyasn1-0.1.6.ebuild,v 1.8 2013/03/27 14:13:28 ago Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2} pypy{1_9,2_0} )
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
IUSE="doc"
RDEPEND=""

@ -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/pyserial/pyserial-2.6-r1.ebuild,v 1.7 2013/03/27 10:09:34 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyserial/pyserial-2.6-r1.ebuild,v 1.8 2013/03/27 14:13:54 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_8,1_9} )
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""
DEPEND=""

@ -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/testtools/testtools-0.9.24.ebuild,v 1.5 2013/03/27 10:10:49 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/testtools-0.9.24.ebuild,v 1.6 2013/03/27 14:13:02 ago Exp $
EAPI="4"
PYTHON_DEPEND="*:2.6"
@ -17,7 +17,7 @@ SRC_URI="http://launchpad.net/${PN}/${SERIES}/${PV}/+download/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""
DEPEND=""

@ -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/webob/webob-1.2.3.ebuild,v 1.6 2013/03/27 09:34:32 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/webob/webob-1.2.3.ebuild,v 1.7 2013/03/27 14:09:05 ago Exp $
EAPI=4
@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc"
DEPEND="dev-python/setuptools

@ -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/webtest/webtest-1.4.3.ebuild,v 1.6 2013/03/27 09:18:12 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/webtest/webtest-1.4.3.ebuild,v 1.7 2013/03/27 14:09:34 ago Exp $
EAPI="3"
PYTHON_DEPEND="2:2.6 3:3.2"
@ -20,7 +20,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
IUSE="doc"
RDEPEND=">=dev-python/webob-0.9.2"

@ -1,6 +1,5 @@
DIST actionmailer-2.3.16.gem 272896 SHA256 5493fce4c6eb5c07f74312fb84af00b140d684c5b581ab4eaafb059a4a5f9ad3 SHA512 abe49066cace06b3afab0e0619561242057d86edcd15ca3431239dc93c80bf5f04777d68017c9b97824d1c8eb1faff76c68c12dce434831a9b8d26118ddaebae WHIRLPOOL f896c0cb1ae7859aa2cb68b962a286bf6048499c5a810e2261f0a9ff359e18ddda58f3b055ef1d09defae5bdeeae4f746bc953fd8e81ab9f4f05e8af75707483
DIST actionmailer-2.3.17.gem 272896 SHA256 c79f074a3e35a146e4ce3a7acc64703d9d0d0452313a255722973e4f653c9105 SHA512 5e30edd3cfe12950ca12a960fe649ecb39bfa0a2dcb49a4f124047015c07f3182c3e516ce550fdeb5300b1bb19e595591ecbac1521c1aa55f5f65299ac2a17f4 WHIRLPOOL ea8e65c8428a00448069e24a1fadd17feac2bc9cec34912e406d2ad33e26cbf6871e9f9a1f9b44221f4f685c4acf2e377813661d9c380f49b3378b69c725070a
DIST rails-3.0.20.tgz 3515055 SHA256 01e1364804bc329c8d6f3a93ed7dbc578e667c7138a5b6e3b0cd85cbc1fc4e6e SHA512 06e23aa7176640dac0f912a31177b067f0297ad2d2d3301bfe7c9a0dc6b140716fcc4b28daef75620376218e77aac3a387e5712d7cd9dab8ca8020216ed4ec89 WHIRLPOOL f5e66a55537f569d54a5ac81166be39104d209a832151c99af91ca5dd889ce12f2baaf80364f11909ac191c3fc058921d370464792db1c3e7f742f45c2a1b41c
DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123
DIST rails-3.1.11.tgz 3393987 SHA256 763719d4bdb46b6b45594985439b1f063375f4da4f0af000414267e5d4633e57 SHA512 ddd3ef1ee9a9bcdc9048958adfb45fa60cf79e961b8fd728e55bb2281dcb51e8f010d2d14de97a60c4c3ff1480b419562d8281031c8ea1c02269263e52fb8918 WHIRLPOOL 76df2b987b2291b01a1d17bba54d3836c11523309b8e30be164ee901a2e4af8f2be943dfc928b64d2e8e2477472fb4a2632b4de30b933cb89d277e3cd3df0298
DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23

@ -1,42 +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/actionmailer/actionmailer-3.0.20.ebuild,v 1.1 2013/01/28 22:23:56 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
RUBY_FAKEGEM_GEMSPEC="actionmailer.gemspec"
inherit ruby-fakegem
DESCRIPTION="Framework for designing email-service layers"
HOMEPAGE="http://rubyforge.org/projects/actionmailer/"
SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/actionmailer"
ruby_add_rdepend "~dev-ruby/actionpack-${PV}
>=dev-ruby/mail-2.2.19"
ruby_add_bdepend "test? (
>=dev-ruby/mocha-0.13.0
)"
all_ruby_prepare() {
# Set test environment to our hand.
rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
sed -i -e '/\/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths"
sed -i -e '/dependency.*mail/s:~>:>=:' "${RUBY_FAKEGEM_GEMSPEC}" || die
# Rename private method to avoid conflict with the simple_format
# TextHelper. Already fixed in Rails 3.1.
sed -i -e 's/simple_format/format_paragraph/' lib/action_mailer/mail_helper.rb || die
}

@ -1,6 +1,5 @@
DIST actionpack-2.3.16.gem 744448 SHA256 ea7b7f9e544b574ee393799e161a7b0b3e1d4dad3d5051b1055a8b95bdaeca68 SHA512 d2d3f8d90512014004c1fa3cf584c224a54e9d3ea80832a9e22c69ca3d305ef1364371a53dfcca6398ba6d0548f6993db6165c1a85d65e411246e3c3b35246c5 WHIRLPOOL 4f2675edf03e3e279d8776d89befffb388f200de516c7c2f13efc5aa4b20ac655daa2946f23f926462e3999193a6e9e97f3a930c1b7f23a30a37ec3d74fd0dc8
DIST actionpack-2.3.17.gem 744448 SHA256 f97f0e9804a0b3e8969b2ddd096d05bb6766d4cd5070b33a32fe5c7ecf701954 SHA512 43bf3104a99d0e3d95abb113ebf0f3844083efc5e77f0dd282eb7b97921f7de050f1efbe612d199558e39dac8b5245449d6470664cb2edb4d9f00144de30c942 WHIRLPOOL 4fc7e052bebc66b3437db51de9e7a0a12d84ad26ee7513ed0f3359121f8cf1e777c64520eca3bd4d8f970ce40a324090e3ae9abcd2598b413d8fa2f7569d570b
DIST rails-3.0.20.tgz 3515055 SHA256 01e1364804bc329c8d6f3a93ed7dbc578e667c7138a5b6e3b0cd85cbc1fc4e6e SHA512 06e23aa7176640dac0f912a31177b067f0297ad2d2d3301bfe7c9a0dc6b140716fcc4b28daef75620376218e77aac3a387e5712d7cd9dab8ca8020216ed4ec89 WHIRLPOOL f5e66a55537f569d54a5ac81166be39104d209a832151c99af91ca5dd889ce12f2baaf80364f11909ac191c3fc058921d370464792db1c3e7f742f45c2a1b41c
DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123
DIST rails-3.1.11.tgz 3393987 SHA256 763719d4bdb46b6b45594985439b1f063375f4da4f0af000414267e5d4633e57 SHA512 ddd3ef1ee9a9bcdc9048958adfb45fa60cf79e961b8fd728e55bb2281dcb51e8f010d2d14de97a60c4c3ff1480b419562d8281031c8ea1c02269263e52fb8918 WHIRLPOOL 76df2b987b2291b01a1d17bba54d3836c11523309b8e30be164ee901a2e4af8f2be943dfc928b64d2e8e2477472fb4a2632b4de30b933cb89d277e3cd3df0298
DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23

@ -1,65 +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/actionpack/actionpack-3.0.20.ebuild,v 1.1 2013/01/28 22:23:33 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
# The default test task tries to test activerecord with SQLite as well.
RUBY_FAKEGEM_TASK_TEST="test_action_pack"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
RUBY_FAKEGEM_GEMSPEC="actionpack.gemspec"
inherit ruby-fakegem
DESCRIPTION="Eases web-request routing, handling, and response."
HOMEPAGE="http://rubyforge.org/projects/actionpack/"
SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/actionpack"
ruby_add_rdepend "
~dev-ruby/activemodel-${PV}
~dev-ruby/activesupport-${PV}
>=dev-ruby/builder-2.1.2:0
>=dev-ruby/erubis-2.6.6
>=dev-ruby/i18n-0.5.0:0.5
>=dev-ruby/rack-1.2.5:1.2
>=dev-ruby/rack-mount-0.6.14:0.6
>=dev-ruby/rack-test-0.5.7:0.5
>=dev-ruby/tzinfo-0.3.23"
ruby_add_bdepend "
test? (
dev-ruby/bundler
>=dev-ruby/mocha-0.13.0
~dev-ruby/activerecord-${PV}
~dev-ruby/actionmailer-${PV}
)"
all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e '/\(system_timer\|horo\|faker\|rbench\|ruby-debug\|pg\|mysql2\)/d' ../Gemfile || die
sed -i -e '/thor/d' ../railties/railties.gemspec || die
sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die
# Loosen erubis dependency since this is not slotted.
sed -i -e 's/~> 2.6.6/>= 2.6.6/' actionpack.gemspec || die
# Loosen mocha version restriction
sed -i -e 's/0.10.5/>= 0.10.5/' ../Gemfile || die
# Ignore failure introduced by security measures in 3.0.17.
sed -i -e '/test_select_tag_escapes_prompt/,/end/ s:^:#:' test/template/form_tag_helper_test.rb || die
}

@ -1,4 +1,3 @@
DIST rails-3.0.20.tgz 3515055 SHA256 01e1364804bc329c8d6f3a93ed7dbc578e667c7138a5b6e3b0cd85cbc1fc4e6e SHA512 06e23aa7176640dac0f912a31177b067f0297ad2d2d3301bfe7c9a0dc6b140716fcc4b28daef75620376218e77aac3a387e5712d7cd9dab8ca8020216ed4ec89 WHIRLPOOL f5e66a55537f569d54a5ac81166be39104d209a832151c99af91ca5dd889ce12f2baaf80364f11909ac191c3fc058921d370464792db1c3e7f742f45c2a1b41c
DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123
DIST rails-3.1.11.tgz 3393987 SHA256 763719d4bdb46b6b45594985439b1f063375f4da4f0af000414267e5d4633e57 SHA512 ddd3ef1ee9a9bcdc9048958adfb45fa60cf79e961b8fd728e55bb2281dcb51e8f010d2d14de97a60c4c3ff1480b419562d8281031c8ea1c02269263e52fb8918 WHIRLPOOL 76df2b987b2291b01a1d17bba54d3836c11523309b8e30be164ee901a2e4af8f2be943dfc928b64d2e8e2477472fb4a2632b4de30b933cb89d277e3cd3df0298
DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23

@ -1,46 +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/activemodel/activemodel-3.0.20.ebuild,v 1.1 2013/01/28 22:22:52 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
RUBY_FAKEGEM_GEMSPEC="activemodel.gemspec"
inherit ruby-fakegem
DESCRIPTION="A toolkit for building modeling frameworks like Active Record and Active Resource."
HOMEPAGE="http://github.com/rails/rails"
SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/activemodel"
ruby_add_rdepend "
~dev-ruby/activesupport-${PV}
>=dev-ruby/builder-2.1.2
>=dev-ruby/i18n-0.5.0:0.5"
ruby_add_bdepend "
test? (
dev-ruby/ruby-debug
>=dev-ruby/mocha-0.13.0
)"
all_ruby_prepare() {
# Set test environment to our hand.
rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
sed -i -e '/load_paths/d' test/cases/helper.rb || die "Unable to remove load paths"
# Avoid a test failing on different-but-equal HTML semantics.
sed -i -e '/should serialize nil/,/^ end/ s:^:#:' test/cases/serializeration/xml_serialization_test.rb || die
}

@ -1,6 +1,5 @@
DIST activerecord-2.3.16.gem 537600 SHA256 dcc29890142c59de02ee08641a3c0b94d074844d16e056e0318fcab52c8164d0 SHA512 7c44ea8b314a2acd6fd66309502cb6d232e7e57daf670347ef9e78e01c7a7798d0bc902fe6dc3a3a45be10fbc02015e01bf4dd5c675d547fb518d2877ee55172 WHIRLPOOL 9876259d63928eb13dd161a01479987906c61d3f71a75fde17cfe5f38c7663f344cd7ce13b9d0ecdbd0e33535c7ba213407b46f5f3ee62bf189430ed3f35d8a0
DIST activerecord-2.3.17.gem 538112 SHA256 e9ba440fe799511acba102736ed30694a7633afeac06870b15a996f502432872 SHA512 7b6f0203870f347b3ba8b67404f96c6f1047cb38f6161c263a7ac19f5c0008f3dc59b4713d2cf7fb5531eebe192bd53aeefcef58376e277d8e5c975575f4dec3 WHIRLPOOL 8687336b4e9b83a160209303829f913c148ad46275a50408788ea92129f64411d59795ac2f02b29bdfb4c050bc1d7e8b5d9a22c899ed582457cdd2d09a4659d1
DIST rails-3.0.20.tgz 3515055 SHA256 01e1364804bc329c8d6f3a93ed7dbc578e667c7138a5b6e3b0cd85cbc1fc4e6e SHA512 06e23aa7176640dac0f912a31177b067f0297ad2d2d3301bfe7c9a0dc6b140716fcc4b28daef75620376218e77aac3a387e5712d7cd9dab8ca8020216ed4ec89 WHIRLPOOL f5e66a55537f569d54a5ac81166be39104d209a832151c99af91ca5dd889ce12f2baaf80364f11909ac191c3fc058921d370464792db1c3e7f742f45c2a1b41c
DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123
DIST rails-3.1.11.tgz 3393987 SHA256 763719d4bdb46b6b45594985439b1f063375f4da4f0af000414267e5d4633e57 SHA512 ddd3ef1ee9a9bcdc9048958adfb45fa60cf79e961b8fd728e55bb2281dcb51e8f010d2d14de97a60c4c3ff1480b419562d8281031c8ea1c02269263e52fb8918 WHIRLPOOL 76df2b987b2291b01a1d17bba54d3836c11523309b8e30be164ee901a2e4af8f2be943dfc928b64d2e8e2477472fb4a2632b4de30b933cb89d277e3cd3df0298
DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23

@ -1,74 +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/activerecord/activerecord-3.0.20.ebuild,v 1.1 2013/01/28 22:24:17 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
# this is not null so that the dependencies will actually be filled
RUBY_FAKEGEM_TASK_TEST="test"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
RUBY_FAKEGEM_GEMSPEC="activerecord.gemspec"
inherit ruby-fakegem
DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM"
HOMEPAGE="http://rubyforge.org/projects/activerecord/"
SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="mysql postgres sqlite3"
RUBY_S="rails-rails-*/activerecord"
ruby_add_rdepend "~dev-ruby/activesupport-${PV}
~dev-ruby/activemodel-${PV}
>=dev-ruby/arel-2.0.10-r1:2.0
>=dev-ruby/tzinfo-0.3.23
sqlite3? ( >=dev-ruby/sqlite3-1.3.3 )
mysql? ( dev-ruby/mysql2:0.2 )
postgres? ( dev-ruby/pg )"
ruby_add_bdepend "
test? (
dev-ruby/bundler
~dev-ruby/actionpack-${PV}
>=dev-ruby/sqlite3-1.3.3
>=dev-ruby/mocha-0.13.0
)"
all_ruby_prepare() {
# Remove items from the common Gemfile that we don't need for this
# test run. This also requires handling some gemspecs.
sed -i -e '/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|"mysql"\|mysql2\)/d' ../Gemfile || die
sed -i -e '/thor/d' ../railties/railties.gemspec || die
sed -i -e '/mail/d' ../actionmailer/actionmailer.gemspec || die
sed -i -e '/\(system_timer\|horo\|faker\|rbench\|ruby-debug\|pg\)/d' ../Gemfile || die
# Loosen erubis dependency since this is not slotted.
sed -i -e 's/~> 2.6.6/>= 2.6.6/' ../actionpack/actionpack.gemspec || die
# Loosen mocha version restriction and skip incompatible tests
sed -i -e 's/0.10.5/>= 0.10.5/' ../Gemfile || die
rm test/cases/autosave_association_test.rb || die
# Avoid test broken by security updates.
sed -i -e '/test_serialize_should_be_reversible/,/^ end/ s:^:#:' test/cases/serialization_test.rb || die
}
each_ruby_test() {
case ${RUBY} in
*jruby)
;;
*)
if use sqlite3; then
${RUBY} -S rake test_sqlite3 || die "sqlite3 tests failed"
fi
;;
esac
}

@ -1,6 +1,5 @@
DIST activeresource-2.3.16.gem 47616 SHA256 f04030ab7350634639022f127c4a30413b3a1113eeabef777e08a71954449d0e SHA512 55228c838c229624ef3f74ae8efc2e86e24f087a0ba27fc0489021802fb777e3a68cf797155c3b22f17d7006371abf0aa077a49df65e3f31194652eaa6df4df4 WHIRLPOOL 43ae524f2fbba0b38e94a90faf6855ed5375a801bd6c36a5e2b2a4c908737cc283092d2fe4f6ca4adbb3d2b2ab764ba09052005d76bfb0490f078c4edecd191c
DIST activeresource-2.3.17.gem 47616 SHA256 da48a4d2c91c6bf70f852e0269adfb492699fef1c0defa68000fe4c2f185aa8c SHA512 1b9df21461ce102ba93fe25110515bf5e8bbd7feddbec44f968426baffd73566218ff048a4a621e89fe608ede0a054e61aade956701cbf338ed4526b68867312 WHIRLPOOL 2fe0b2760e9b6b6abece22a43a248cd33aba20f44f6e7a5648a8672b654fa80eb6f118667d1ec830dd7c78ba57c0e8cf5a2ae1bc0ce9b092e8bf228cd2829ea0
DIST rails-3.0.20.tgz 3515055 SHA256 01e1364804bc329c8d6f3a93ed7dbc578e667c7138a5b6e3b0cd85cbc1fc4e6e SHA512 06e23aa7176640dac0f912a31177b067f0297ad2d2d3301bfe7c9a0dc6b140716fcc4b28daef75620376218e77aac3a387e5712d7cd9dab8ca8020216ed4ec89 WHIRLPOOL f5e66a55537f569d54a5ac81166be39104d209a832151c99af91ca5dd889ce12f2baaf80364f11909ac191c3fc058921d370464792db1c3e7f742f45c2a1b41c
DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123
DIST rails-3.1.11.tgz 3393987 SHA256 763719d4bdb46b6b45594985439b1f063375f4da4f0af000414267e5d4633e57 SHA512 ddd3ef1ee9a9bcdc9048958adfb45fa60cf79e961b8fd728e55bb2281dcb51e8f010d2d14de97a60c4c3ff1480b419562d8281031c8ea1c02269263e52fb8918 WHIRLPOOL 76df2b987b2291b01a1d17bba54d3836c11523309b8e30be164ee901a2e4af8f2be943dfc928b64d2e8e2477472fb4a2632b4de30b933cb89d277e3cd3df0298
DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23

@ -1,42 +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/activeresource/activeresource-3.0.20.ebuild,v 1.1 2013/01/28 22:23:11 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
RUBY_FAKEGEM_GEMSPEC="activeresource.gemspec"
inherit ruby-fakegem
DESCRIPTION="Think Active Record for web resources.."
HOMEPAGE="http://rubyforge.org/projects/activeresource/"
SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/activeresource"
ruby_add_rdepend "~dev-ruby/activesupport-${PV}
~dev-ruby/activemodel-${PV}"
ruby_add_bdepend "
test? (
>=dev-ruby/mocha-0.13.0
)"
all_ruby_prepare() {
# Set test environment to our hand.
rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths"
# Avoid test broken by security fixes.
sed -i -e '/test_load_yaml_array/,/^ end/ s:^:#:' test/cases/base_test.rb || die
}

@ -1,6 +1,5 @@
DIST activesupport-2.3.16.gem 429056 SHA256 9f79ec4160f24f875357632a71efdd0257ae5dcca31f3aef99e0d470ce0ec5af SHA512 cb469637b7897f8e4be600829ae54cf939b4d9c567e6480f21716151ad6c485eda786941170da95300c6e4495a8794a1b908348a9765fa999d2bdb61ecc265b8 WHIRLPOOL 9b5bca12b5cfe3c6835253cc87018edcf90e7ac229208410592ce3ece80e318be6d00ea32c207511d82094584dc971b7b26d2113914272b1f85025ac84899137
DIST activesupport-2.3.17.gem 429056 SHA256 8ea5d5ead4684f12e2ee35ed2b59c1b37739ea7b0e344f9d9b238801e807cb33 SHA512 0fdf4ce3e724100272fbe028b4cd0defb07ea6ce1fdf46664785f7e081f316e3412a4161cd313427dab676e833f4ce0b860b56eb7682a5df4dd6ae56007169b7 WHIRLPOOL 4a81fd493905a506531698094c0e2e9dc0fc7cb4f89cef952080d1f1e05d2a218f4f33da381ff14f83ad15a59fd3ec2277667d78e0640b657527b7e7c24cd686
DIST rails-3.0.20.tgz 3515055 SHA256 01e1364804bc329c8d6f3a93ed7dbc578e667c7138a5b6e3b0cd85cbc1fc4e6e SHA512 06e23aa7176640dac0f912a31177b067f0297ad2d2d3301bfe7c9a0dc6b140716fcc4b28daef75620376218e77aac3a387e5712d7cd9dab8ca8020216ed4ec89 WHIRLPOOL f5e66a55537f569d54a5ac81166be39104d209a832151c99af91ca5dd889ce12f2baaf80364f11909ac191c3fc058921d370464792db1c3e7f742f45c2a1b41c
DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123
DIST rails-3.1.11.tgz 3393987 SHA256 763719d4bdb46b6b45594985439b1f063375f4da4f0af000414267e5d4633e57 SHA512 ddd3ef1ee9a9bcdc9048958adfb45fa60cf79e961b8fd728e55bb2281dcb51e8f010d2d14de97a60c4c3ff1480b419562d8281031c8ea1c02269263e52fb8918 WHIRLPOOL 76df2b987b2291b01a1d17bba54d3836c11523309b8e30be164ee901a2e4af8f2be943dfc928b64d2e8e2477472fb4a2632b4de30b933cb89d277e3cd3df0298
DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23

@ -1,53 +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/activesupport/activesupport-3.0.20.ebuild,v 1.1 2013/01/28 22:22:34 graaff Exp $
EAPI=4
# jruby fails tests.
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec"
RUBY_FAKEGEM_BINWRAP=""
inherit ruby-fakegem
DESCRIPTION="Utility Classes and Extension to the Standard Library"
HOMEPAGE="http://rubyforge.org/projects/activesupport/"
SRC_URI="https://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/${PN}"
ruby_add_rdepend ">=dev-ruby/memcache-client-1.5.8"
# libxml-ruby and nokogiri are not strictly needed, but there are tests
# using this code.
ruby_add_bdepend "test? ( >=dev-ruby/libxml-2.0.0 dev-ruby/nokogiri >=dev-ruby/mocha-0.13.0 )"
all_ruby_prepare() {
# don't support older mocha versions as the optional codepath
# breaks JRuby
# epatch "${FILESDIR}"/${PN}-3.0.20-mocha-0.9.5.patch
# Set test environment to our hand.
rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to remove load paths"
# Avoid tests that do not work with newer versions of mocha.
rm test/whiny_nil_test.rb || die
# Avoid tests failing due to slightly different builder semantics.
sed -i -e '/test_one_level_with_nils/,/end/ s:^:#:' \
-e '/test_one_level_with_skipping_types/,/end/ s:^:#:' \
test/core_ext/hash_ext_test.rb || die
}

@ -1,3 +1,2 @@
DIST arel-2.0.10.gem 36864 SHA256 b6f07101cdfea70eb75bd63acecae6dfe264d256fd952a7920c151be404061cd SHA512 8c3ef7120ca4b01087a93f04910d026b238b7bccbd14e36a2de647ebec615a3b9082b71d8a90170ba23388c9efca5f2f9870d5ecfb34b4896fba4014d7208ce2 WHIRLPOOL 75bea08c5e95155e96619af734e101f91c4784ada21febf2bbd757b896412aff08df992f1c42d413f0e9ed515d73fe66dbeaa41bf1ecc635d9b3b2f49de687de
DIST arel-2.2.3.gem 46080 SHA256 ce8a0efef467948a6a3a2fa35f99bee097c52a567ea862395850dd48ee4f9438 SHA512 e094e2f56ec3b0a6b8627533240dc5c0dc8fa99eec52c4c656c6d7778a9fb23338c70a4603ff1135526a59fd0cd42f59d6c415d8aade372717771079cbda31e4 WHIRLPOOL 9250803e2cafa59cfc8217f28973c0c17c1d4fb30d4307919bd846f7f5c5ebfe8b1d5e671b429ec3c1c1551075a68e4446d79a73c2425ebad3c08f7e07764871
DIST arel-3.0.2.gem 46080 SHA256 7d5e9c081444fa4d6a0bba70d3ddf56d9592658dafa59ffca4ebd6aa60de0b95 SHA512 be4b4109a17681c928ae3134f632a0c3e8a4180a2340ae272b989d163eb82e9aab3e8bba9ab78f117113091920f1b749370df8469b6e3d2941dff826dcda6625 WHIRLPOOL 40d156966c8d9dc52741a9088e3e0aa75a8b595ccc87ddf89a0bffb7663f1d92c4d4c297e02101b8914b6942f1deafb9ad60ab0eb5d7213b4decfe720f805d31

@ -1,35 +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/arel/arel-2.0.10-r1.ebuild,v 1.7 2013/01/15 02:39:40 zerochaos Exp $
EAPI="2"
USE_RUBY="ruby18 ree18 jruby ruby19"
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="History.txt README.markdown"
# Use the ruby specifications since parsing the yaml metadata causes
# jruby to crash.
RUBY_FAKEGEM_GEMSPEC="arel.gemspec"
inherit ruby-fakegem
DESCRIPTION="Arel is a Relational Algebra for Ruby."
HOMEPAGE="http://github.com/rails/arel"
LICENSE="MIT"
SLOT="2.0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-solaris"
IUSE=""
ruby_add_bdepend "
doc? ( >=dev-ruby/hoe-2.6.2 )
test? (
>=dev-ruby/hoe-2.6.2
virtual/ruby-minitest
)"
all_ruby_prepare() {
# Fix the version number in the gemspec.
sed -i -e 's/2.0.9.20110222133018/2.0.10/' arel.gemspec || die
}

@ -1,5 +1,4 @@
DIST i18n-0.6.1.gem 61440 SHA256 d4ad6826f785a07b343f003886fc297fcacb3a84234dd3b16b6406bac3857474 SHA512 1a8bd5e7ef50c8174db5c278c82682d833e4eb157ade6578e662eff09c7fe8ad3e2dca12f045d95517ae0ae47f9c213ca0004657a9a62f66af19d68ba2da3a4b WHIRLPOOL a2ea73b8e1083cd1991ad6db7dd72a534d7cd86618f6b84201bca57442486eb639856da0bfcddeff47f22ca94d7f85f47e89612be7edaa1622551acb3ffada03
DIST i18n-0.6.4.gem 61952 SHA256 0e5cd2abe1118c5947c4aa6f1fee8c6b3677850422a8c473904158a2b3cde173 SHA512 4ece098aaff6235d2f97b2b2ec957ef94f7263191f608d5f447e69afed302b107962fcc4ce6c5711ecf0e3300b79351911b9d51a40c06ed6ae8b92bba6615b36 WHIRLPOOL 7e7c9b1c392e8a3c4eb8a893571a2b1200c649b8b04c21fbc47fa8aba7ff0702ca5ba4df58f25ebb0f266697d9a81318a698c0afdbab00463031fc5695cd07f5
DIST i18n-git-0.4.2.tgz 65874 SHA256 a006e77e0d2c21c0c048c03521178df1b04276feed118145962181f6e5bb888d SHA512 b4e1e6c0c9d26a705931c89fc0fa7cf70f5b414d0a96bb556f20e89a422a4f9fa7236ac0b10c831b493db843f2dc69b8a56496dc50389ac18ade81b978b657d0 WHIRLPOOL f43011f91ec1b678388ddab8c53994fdc0cc477f6589d91bc0a86bf9dc3e522e90ec68ece75c559b9c40c7048e1517916a4006c8b1aff108111dfd4be62b02ce
DIST i18n-git-0.5.0.tgz 59685 SHA256 1893ee4ab2a1d63bcee095a574975b624062b5474dd98662eeccc245941f07be SHA512 38a8fd0dce04d639dad34d958fa229ca365f79a9f1c968576caa131ab45c4b61bf5cfef3e7810ad164a82a482ffd09e90f785423289b94dd42699832ce5063e1 WHIRLPOOL 2d51f991307b7baea5fef6367d045f791564c029508f974d65c82f4789d02aeb5cb922d4ba504a1d837e0879defc67ea75c4b7b60ada9313d464b2af0653e9b4
DIST i18n-git-0.6.0.tgz 60143 SHA256 ed6251b9c20b8af268cfe7ad30112c504ed54fda5d7846ec8e042c78d3910ca5 SHA512 e264178c70d6b2ef813da3897939ec817543c0527a0075d21af5fbc777cb385f241efd8b33fd5255bd876cf04ee25264fefc34b0a1bbc06b81e22e977bb1f284 WHIRLPOOL 538fc10533c26149860e1e312336e7c83cb46e99a4a49252a87a8679f9f3dba6c624eb921bd79b3143b3b9b92ca7b9dac5d893b314cf36828eb00d77a15fbcfa

@ -1,75 +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/i18n/i18n-0.5.0-r1.ebuild,v 1.7 2013/01/16 01:08:23 zerochaos Exp $
EAPI=2
USE_RUBY="ruby18 jruby ree18"
# doc regeneration seem to need Jeweler, which is not currently
# available
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README.textile CHANGELOG.textile"
inherit ruby-fakegem versionator
DESCRIPTION="Add Internationalization support to your Ruby application."
HOMEPAGE="http://rails-i18n.org/"
SRC_URI="http://github.com/svenfuchs/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz"
S="${WORKDIR}/svenfuchs-${PN}-*"
LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
# The testsuite uses the activerecord gem to run some tests; they
# require sqlite3-ruby, and that is not available on JRuby.
#USE_RUBY="${USE_RUBY/jruby/}" \
# ruby_add_bdepend "
# test? (
# dev-ruby/activerecord
# dev-ruby/sqlite3
# dev-ruby/ruby2ruby
# )"
# mocha is optionally used by the testsuite, try to increase coverage
# of testing by depending on it; when mocha is used, though,
# test-unit:2 cannot be merged at the same time (mocha problem?)
#
# One further test dependency would be ruby-cldr
# (http://rubygems.org/gems/ruby-cldr) but we don't have it in tree
# yet.
ruby_add_bdepend "
test? (
dev-ruby/mocha
dev-ruby/test_declarative
)"
src_compile() {
# permissions need to be stricter for Ruby-Inline to work properly.
chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
ruby-ng_src_compile
}
src_test() {
# permissions need to be stricter for Ruby-Inline to work properly.
chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
ruby-ng_src_test
}
each_ruby_test() {
# Make sure the optional activerecord tests are not run for jruby
# because we don't ship a compatible sqlite3
case ${RUBY} in
*jruby)
;;
*)
each_fakegem_test
esac
}

@ -1,2 +1 @@
DIST mysql2-0.2.18.gem 49152 SHA256 d00ecffc6fb26b971742e4a0e6541309fefc0b6c3a271f090828e961c5ed9895 SHA512 b5ce3cad91c027d37ee1f39af263c4aca4d9ea7014128a9698293df5ba1e3451a7f068c33ae3eeac43eaed6b24d0c86a5f25a753875b379fe781fe1429cc4fe5 WHIRLPOOL be6c2cf7f9592a4a9d93af216fc601868d9250c6210d17753ce7a7b74c89914f26b41b2b0e97e8d4b2abe47e0a6143ad3ae95d951211a1c2f980606e48be01e8
DIST mysql2-0.3.11.gem 41984 SHA256 134f848e91d60756083873b66fc471a029b5df51c35852ef5a3a0f9f7a496641 SHA512 9bdf81d16b58fd97d06160d050cab72183bd2c7a84f72c00428314c2039bd93f090228abc81735f6034a0b32598e1b7e499bb718c45b920d8a2636f48ff0b982 WHIRLPOOL f5fab3246c6750ce34f0a97426c169615ac03e65c3a616a382755e76d579ef40494ee1d685a4b9ed7ce02065175fa873e5fd3982663624ac0a46cbc0fb3e2bcc

@ -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/mysql2/mysql2-0.2.18.ebuild,v 1.2 2012/05/01 18:24:28 armin76 Exp $
EAPI="3"
USE_RUBY="ruby18 ruby19 ree18"
# Tests require a live MySQL database.
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
inherit multilib ruby-fakegem
DESCRIPTION="A modern, simple and very fast Mysql library for Ruby - binding to libmysql."
HOMEPAGE="https://github.com/brianmario/mysql2"
LICENSE="MIT"
SLOT="0.2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
DEPEND="${DEPEND} virtual/mysql[-static]"
RDEPEND="${RDEPEND} virtual/mysql[-static]"
each_ruby_configure() {
${RUBY} -Cext/mysql2 extconf.rb --with-mysql-config "${EPREFIX}/usr/bin/mysqlconfig" || die
}
each_ruby_compile() {
emake -Cext/mysql2 || die
cp ext/mysql2/mysql2$(get_modname) lib/mysql2/ || die
}

@ -1,2 +1 @@
DIST rack-mount-0.6.14.gem 30208 SHA256 b43c6bd5f43af583ace1d6a458f4f4a7346c0d78ea3aa6075bb80b572c74113d SHA512 bae716415f3e3a7e4a268e042a37f52e93a006d82a5f2a481454a12b28b8be9d76c21b7aaa5dc109ac737e3e9f03cd71a15b635ff7a30f9e0d06cc437360d18e WHIRLPOOL 94bae620e5217a919223142e991578445b83039be8d637b59446bd177d1534321a813dd4ed14a6a6f8d37b0c331feedf6cd1f0cff0fadef0066320aa742ad8cf
DIST rack-mount-0.8.3.tgz 33944 SHA256 a293b89958502c2804942450743ab622d7dfd17d13e4122dab11ae90545ae364 SHA512 5f1d10b951c967bc4c36a81b5c7dae5c5ec8d5253ee804fa1e1b4446c962fa0882d4c59773bca9373d5eb37a18646aff0a2dff2b1636d3d9126cae0f1e10a638 WHIRLPOOL ee40900e241edd116cf1f2a4fb726ff83c18474176fb4ba8b6b18bcfceacd6df05fde0b8d6fc877f207767bf97dc56ca6897fa2cb681aa6383c2df8fc3122ba8

@ -1,22 +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/rack-mount/rack-mount-0.6.14.ebuild,v 1.8 2012/05/12 18:02:26 flameeyes Exp $
EAPI="2"
USE_RUBY="ruby18 ree18 jruby ruby19"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README.rdoc"
inherit ruby-fakegem eutils
DESCRIPTION="A stackable dynamic tree based Rack router."
HOMEPAGE="https://github.com/rails/rack-mount"
LICENSE="MIT"
SLOT="0.6"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~sparc-solaris ~x86-solaris"
IUSE=""
ruby_add_rdepend ">=dev-ruby/rack-1.0.0"

@ -1,3 +1,2 @@
DIST rack-test-0.5.7.gem 20992 SHA256 09d0ebd4ce3def65934b48fcbbcb2703476d379ee487b5cf085696363f5e7e88 SHA512 0f0ecfb122f9ecc1d32c0d84e75c7e4cbb46ed5e3c3ff87ab5ad517d37703ce8d781130ea448f3d508db5fa122bf79952addee4518e4990c00a6ef63310e2292 WHIRLPOOL 71022a097a67db7f4cab8f536437c510ad972152e4aeb5fcd29935024ccf2b794773e3dd0f81cb810254f4eb35493c2ec32f59be49d03942d6d3ffe115d6bd04
DIST rack-test-0.6.1.gem 21504 SHA256 40731078f570c61d5fc5a57ddc3526ac08f083a0601e99ffd7672d281dc20543 SHA512 96348fc9a42c4f974038a3d7634030096bcb93faa27b8e1ad941f3b86aad71aefd77f68f6611b732a01786b33f90d30218eeb2cdae36bc07ac92c76077397224 WHIRLPOOL be2e4367c0e669c255c406e3b5c3f6ac1abf0dc81b468fb21b0d890ac0bec7f8c5af07f4e9f470fb6d82f6cff65e1587c2f037a80d68f88cffb9866fffa65c71
DIST rack-test-0.6.2.gem 22528 SHA256 7e920b6aac888e4a3846e5997fb1cbf456bdb5846322b58dc31697a54a38b306 SHA512 9c14d75eafea93afb02c4e8fc438f7c653cfe816058560a458a092591214a7fd185b2d76eed7b398e16d72f763e8c7ae0a869c3a29df075102845074568d8ef0 WHIRLPOOL b29abfc46a091aa4ded7bcdc2c68c79720aa42889246bb4df0b52bedf5415ee72f09592bf9af41477544ce34d452e4a7b3c56d9431879a99b58cda7729622865

@ -1,33 +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/rack-test/rack-test-0.5.7.ebuild,v 1.9 2013/01/16 01:03:21 zerochaos Exp $
EAPI=2
USE_RUBY="ruby18 ree18"
# no documentation is generable, it needs hanna, which is broken
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST="spec"
RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc"
inherit versionator ruby-fakegem
DESCRIPTION="Rack::Test is a small, simple testing API for Rack apps."
HOMEPAGE="http://github.com/brynary/rack-test"
LICENSE="MIT"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~sparc-solaris ~x86-solaris"
IUSE=""
ruby_add_rdepend '>=dev-ruby/rack-1.0'
ruby_add_bdepend "test? ( dev-ruby/rspec:2 >=dev-ruby/sinatra-1.2.0 )"
all_ruby_prepare() {
# Remove Bundler related code.
rm Gemfile Gemfile.lock || die "Unable to clean unneeded Bundler items."
sed -i -e 's:== "text/html":=~ /^text\\\/html/:' spec/rack/test_spec.rb || die
}

@ -1,6 +1,5 @@
DIST rails-2.3.16.gem 211456 SHA256 8228c5404bddc2dd7b99495f348b40302709da577a096619f90e8c37e824060a SHA512 55a5ab85634c4e86efac070fbc807499ae9b68adbf4a7c230479e21ff6ccb8e17b23fd79e0f8ea0990967780ed168661f7c4c605629253ff65dd8ff2a40f26f7 WHIRLPOOL 21368929faee01d2148d2523713fdfa0d1a42ddcdefb81524924283cab6ebd8d8986f0c291d1374ce1b4a4fd5200e38c34d06fe24fede2f812ffb5fc5adb9eed
DIST rails-2.3.17.gem 211456 SHA256 644c7b054638c0b7e92c12dfe0574c63c5929abfb42a1cc6b9196bfdd9e5b017 SHA512 3780c6148b87f66d7174bd41b27e6963f462cfd753760f544fabb9111d5ca794360c80ba432b06c81abf726d10900f4ded1e5d85073f5b45b37c26200c6c9bd8 WHIRLPOOL 951a79159e5303c9dd36863d3597942fca617bddc74af87456242e4e39db788220af8cb0955fc424aaeeb6fc1553730ea8eaa2fa27356e2baf59483ac7d76777
DIST rails-3.0.20.gem 4608 SHA256 e22944d88c22d206e719bee3757fbbc0d025d00419421e5609a9a52136be3190 SHA512 690bf3e4fbebb4bccd24c27e36ce3e7853e595d42278d4e3ced834c898b3e56aeca6f39e207d1f4e6ee92d105e2710b5f455338f4b82cbbf4d39fd95d1fd618e WHIRLPOOL 6ee13ca79d7708d1617bc3eae7f382a2affe1ad4e5e25bc7e4921c8dced2294fe89e11c4e2f36f1a731e7e38b8a0371a09a8eb2c5759d4f2dfecb45bbfa9e026
DIST rails-3.1.10.gem 4608 SHA256 1bdd1d8597d50e2b3bcea99491541855774182dbe0b39d07ed75c321c1e6b621 SHA512 ef2082e4951a99a8fac9f5a2690b6885fe4ee5931839f194eb4dcc005d891bf8b9840d828844cadf7b1aa08aa60b0715ae13701ff61d83af981642dc53cb8fd1 WHIRLPOOL 1d71183802182ebf91f3c21dc51f83bff7d2202e2265bea3034f10735499ba23de89e3eb0dcd7a536084511900ec8585fd8a99b61a82a5bde7ccc65cfe2cd343
DIST rails-3.1.11.gem 4608 SHA256 45f4a20aaff2ca71b6096e3a0ab6c770ccabae17203510b43bb26f862d9a35fa SHA512 155f33c1d60403f8f4852d7b1da38fc4124d35aadf88de01098bc117749a24795d7c7a2e8833042b4d185748bf28f601659030e695b81e29d218fe5bc3ed0fbb WHIRLPOOL e8c254e59ed39c4539b2ffed98d9a4f353f7a3e2cb8e597d00bc3415e97d03fab34fee8b9c0c11d18569b2ca0e250426c589739f8d90bd70ce9047cb26089641
DIST rails-3.2.11.gem 4608 SHA256 f5e02999889aa39af2c7d2c882d9e3b5c71e8adfc98236a69dadacdfbce5603e SHA512 3c0d8d88611ded1e48d76470eea91ab7f36541ed774595e102af7bac2dd2e97bba26f39838a7a8bc1e91ea5f272116073bb961a0fb9d1a310ee3c42e933871e2 WHIRLPOOL 13b4d80adc84616e39120b58ab2b612d67bff8ff63d473406aae8888166eedaa703bde48462c77c9598506dea5dd009ebe488586689fd4a2e313ba0fa1d85d81

@ -1,50 +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/rails/rails-3.0.20.ebuild,v 1.1 2013/01/28 22:24:53 graaff Exp $
EAPI=2
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_BINWRAP=""
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST=""
inherit ruby-fakegem
DESCRIPTION="ruby on rails is a web-application and persistance framework"
HOMEPAGE="http://www.rubyonrails.org"
LICENSE="MIT"
SLOT="3.0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RDEPEND=">=app-admin/eselect-rails-0.16"
ruby_add_rdepend "
~dev-ruby/actionmailer-${PV}
~dev-ruby/actionpack-${PV}
~dev-ruby/activerecord-${PV}
~dev-ruby/activeresource-${PV}
~dev-ruby/activesupport-${PV}
=dev-ruby/bundler-1.0*
~dev-ruby/railties-${PV}"
all_ruby_install() {
all_fakegem_install
ruby_fakegem_binwrapper rails rails-${PV}
}
pkg_postinst() {
elog "To select between slots of rails, use:"
elog "\teselect rails"
eselect rails update
}
pkg_postrm() {
eselect rails update
}

@ -1,4 +1,3 @@
DIST rails-3.0.20.tgz 3515055 SHA256 01e1364804bc329c8d6f3a93ed7dbc578e667c7138a5b6e3b0cd85cbc1fc4e6e SHA512 06e23aa7176640dac0f912a31177b067f0297ad2d2d3301bfe7c9a0dc6b140716fcc4b28daef75620376218e77aac3a387e5712d7cd9dab8ca8020216ed4ec89 WHIRLPOOL f5e66a55537f569d54a5ac81166be39104d209a832151c99af91ca5dd889ce12f2baaf80364f11909ac191c3fc058921d370464792db1c3e7f742f45c2a1b41c
DIST rails-3.1.10.tgz 3394031 SHA256 d0614db8c4011ed1fcb4bd0afeb8220634b1ec8b196ee40a956c77a76026ef65 SHA512 c6b3db4043345c81582ab22289c29630e3946dc1936adebff0af196f461236805ab146e74ed400fe045d980df562ae44479e36c2c8747ed8a6ba6807add23e6b WHIRLPOOL 5329cd31170ce2ee7c109c9c1152b5eed35c8ec1af48a84d03eff4bb4fe083a7a9840ceb076575961d84c6baeb725fe1c5eed1a4756d39a8bc52a26f23dc6123
DIST rails-3.1.11.tgz 3393987 SHA256 763719d4bdb46b6b45594985439b1f063375f4da4f0af000414267e5d4633e57 SHA512 ddd3ef1ee9a9bcdc9048958adfb45fa60cf79e961b8fd728e55bb2281dcb51e8f010d2d14de97a60c4c3ff1480b419562d8281031c8ea1c02269263e52fb8918 WHIRLPOOL 76df2b987b2291b01a1d17bba54d3836c11523309b8e30be164ee901a2e4af8f2be943dfc928b64d2e8e2477472fb4a2632b4de30b933cb89d277e3cd3df0298
DIST rails-3.2.11.tgz 3547068 SHA256 3f05603f84bfb7a99f999f878af247533706255e6b3baa4111439b6f5fd8ab70 SHA512 50644772186127887bd4d7537ad41cbe549c5c8496274cad2765f21859528a0f42f5b8dbe3a1627a08b1724b2e019c0ec6526cccfdff3da4ffcec285f9259558 WHIRLPOOL 70d5620fc611872b2af62351c81abbe43b3b1d41c92a1d1935cef704a4a655c9bb043599bc758c947c14378ef52e34b44c61536d5a048401cc6bfaef613eba23

@ -1,52 +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/railties/railties-3.0.20.ebuild,v 1.1 2013/01/28 22:24:35 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_TEST="test:regular"
RUBY_FAKEGEM_TASK_DOC="generate_guides"
RUBY_FAKEGEM_DOCDIR="guides/output"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
RUBY_FAKEGEM_GEMSPEC="railties.gemspec"
inherit ruby-fakegem
DESCRIPTION="Tools for creating, working with, and running Rails applications."
HOMEPAGE="http://github.com/rails/rails"
SRC_URI="http://github.com/rails/rails/tarball/v${PV} -> rails-${PV}.tgz"
LICENSE="MIT"
SLOT="3.0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RUBY_S="rails-rails-*/railties"
# The test suite has many failures, most likely due to a mismatch in
# exact dependencies or environment specifics. Needs further
# investigation.
RESTRICT="test"
ruby_add_rdepend "
~dev-ruby/activesupport-${PV}
~dev-ruby/actionpack-${PV}
>=dev-ruby/rdoc-3.4
>=dev-ruby/thor-0.14.4
>=dev-ruby/rake-0.8.7"
ruby_add_bdepend "
test? (
>=dev-ruby/mocha-0.9.5
virtual/ruby-test-unit
)
doc? (
>=dev-ruby/redcloth-4.1.1
)"
all_ruby_prepare() {
# allow newer thor
sed -i -e '/dependency.*thor/s:~>:>=:' ${RUBY_FAKEGEM_GEMSPEC} || 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/dev-tcltk/thread/thread-2.7.0.ebuild,v 1.5 2013/03/27 10:11:14 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/thread/thread-2.7.0.ebuild,v 1.6 2013/03/27 14:14:45 ago Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/tcl/${PN}${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
IUSE="debug gdbm"
DEPEND="

@ -1 +0,0 @@
DIST ciabot-svn-1.15.py.bz2 3055 SHA256 d7e992b512dfaaf5a8d04a6561f45607f41531d9dd7c159ce864ba1415292af0 SHA512 b8e512f8c398d39710357053d2f3f9110ec3c2e4508b5ede99edb64e65f55f46d6ff160679c12e24d6e1b2da17bcf35161b321072f39dcbde4ce6e09db975202 WHIRLPOOL 2145db08f26df8f767a0911c41d2167c08cd742f521910f65974be6fd1e2d634d73e2d2eea4df47e52276a7fc088bc40519556855bca9c6460aac2d985b96b31

@ -1,53 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ciabot-svn/ciabot-svn-1.15.ebuild,v 1.6 2012/05/06 15:50:39 pacho Exp $
EAPI="4"
PYTHON_DEPEND="2"
inherit eutils python
DESCRIPTION="CIA-bot script for Subversion repositories"
HOMEPAGE="http://cia.navi.cx/doc/clients"
SRC_URI="mirror://gentoo/${P}.py.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc64 x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S=${WORKDIR}
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_install() {
python_convert_shebangs -r 2 .
dodir /etc/${PN}
insinto /etc/${PN}
doins "${FILESDIR}"/config.py
newbin ${P}.py ${PN}
}
pkg_postinst() {
elog "This ciabot-svn script should be called from your repository's post-commit"
elog "hook with the repository and revision as arguments. For example,"
elog "you could copy this script into your repository's \"hooks\" directory"
elog "and add something like the following to the \"post-commit\" script,"
elog "also in the repository's \"hooks\" directory:"
elog ""
elog " REPOS=\"\$1\""
elog " REV=\"\$2\""
elog " /usr/bin/ciabot-svn \"\$REPOS\" \"\$REV\" &"
elog ""
elog "Or, if you have multiple project hosted, you can add each"
elog "project's name to the commandline in that project's post-commit"
elog "hook:"
elog ""
elog " /usr/bin/ciabot-svn \"\$REPOS\" \"\$REV\" \"ProjectName\" &"
}

@ -1,67 +0,0 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ciabot-svn/files/config.py,v 1.1 2005/04/11 01:18:00 trapni Exp $
# This file contains contents stripped out from upstream ciabot_svn.py
# script in order to allow convient end-user config file management.
#
# Please adapt this file to your needs.
class config:
# Replace this with your project's name, or always provide a project
# name on the commandline.
#
# NOTE: This shouldn't be a long description of your project. Ideally
# it is a short identifier with no spaces, punctuation, or
# unnecessary capitalization. This will be used in URLs related
# to your project, as an internal identifier, and in IRC messages.
# If you want a longer name shown for your project on the web
# interface, please use the "title" metadata key rather than
# putting that here.
#
project = "YOUR_PROJECT_NAME_HERE"
# Subversion's normal directory hierarchy is powerful enough that
# it doesn't have special methods of specifying modules, tags, or
# branches like CVS does. Most projects do use a naming
# convention though that works similarly to CVS's modules, tags,
# and branches.
#
# This is a list of regular expressions that are tested against
# paths in the order specified. If a regex matches, the 'branch'
# and 'module' groups are stored and the matching section of the
# path is removed.
#
# Several common directory structure styles are below as defaults.
# Uncomment the ones you're using, or add your own regexes.
# Whitespace in the each regex are ignored.
pathRegexes = [
# r"^ trunk/ (?P<module>[^/]+)/ ",
# r"^ (branches|tags)/ (?P<branch>[^/]+)/ ",
# r"^ (branches|tags)/ (?P<module>[^/]+)/ (?P<branch>[^/]+)/ ",
]
# If your repository is accessable over the web, put its base URL here
# and 'uri' attributes will be given to all <file> elements. This means
# that in CIA's online message viewer, each file in the tree will link
# directly to the file in your repository
repositoryURI = None
# This can be the http:// URI of the CIA server to deliver commits over
# XML-RPC, or it can be an email address to deliver using SMTP. The
# default here should work for most people. If you need to use e-mail
# instead, you can replace this with "cia@cia.navi.cx"
server = "http://cia.navi.cx"
# The SMTP server to use, only used if the CIA server above is an
# email address
smtpServer = "localhost"
# The 'from' address to use. If you're delivering commits via email, set
# this to the address you would normally send email from on this host.
fromAddress = "cia-user@localhost"
# When nonzero, print the message to stdout instead of delivering it to CIA
debug = 0

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
</pkgmetadata>

@ -1 +0,0 @@
DIST x2_demo.run 188272758 RMD160 2aca85cdede12bbb7a75d61c93dcf447344913cf SHA1 0ff1986b98015c1c3baea2b23feff346dfa9adab SHA256 185590eb67c56e862d57f97761276e37a5f3bb2a312c8eb7ab17c094a93a0859

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>games</herd>
</pkgmetadata>

@ -1,67 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/x2-demo/x2-demo-1.4.05.ebuild,v 1.4 2012/02/05 06:25:14 vapier Exp $
EAPI=1
inherit eutils unpacker games
MY_PN=${PN/-/_}
DESCRIPTION="Open-ended space opera with trading, building & fighting"
HOMEPAGE="http://www.linuxgamepublishing.com/info.php?id=x2"
# Patches are in http://updatefiles.linuxgamepublishing.com/x2-demo/
# Unversioned filename, grrr (is pre-patched).
SRC_URI="http://demofiles.linuxgamepublishing.com/x2/${MY_PN}.run"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT="mirror strip"
RDEPEND="media-libs/alsa-lib
sys-libs/glibc
x86? (
media-libs/libsdl
media-libs/openal
sys-libs/zlib
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp
x11-libs/libXext
x11-libs/libXi )
amd64? (
app-emulation/emul-linux-x86-gtklibs
app-emulation/emul-linux-x86-sdl )"
S=${WORKDIR}
dir=${GAMES_PREFIX_OPT}/${PN}
Ddir=${D}/${dir}
src_unpack() {
unpack_makeself ${MY_PN}.run
unpack ./data.tar.gz
rm -rf data.tar.gz lgp_* setup*
mv bin "${T}" || die "mv bin"
}
src_install() {
exeinto "${dir}"
doexe "${T}"/bin/Linux/x86/x2_demo{,.dynamic} || die "doexe x2"
insinto "${dir}"
doins -r * || die "doins -r"
keepdir "${dir}"/database
# We don't support the dynamic version, even though we install it.
games_make_wrapper ${PN} ./x2_demo "${dir}" "${dir}"
newicon icon.xpm ${PN}.xpm || die "newicon failed"
make_desktop_entry ${PN} "X2 - The Threat (Demo)" ${PN}
prepgamesdirs
}

@ -1,5 +0,0 @@
DIST x2-1.4-1.4.01-x86.run 1030707 RMD160 e11975ec3703b780aa9a5a83e6832129b7ab3868 SHA1 9820235fff55d2ea0babd587535853eee181706e SHA256 0700dee701a2c630615dac16960672a7ceb97ebf147848566383e6caefbd52cd
DIST x2-1.4.01-1.4.02-x86.run 1219653 RMD160 154550af595008c8849e75014d02e34d150b5f6c SHA1 9c89661e4b9e4d9196468f6c1c0d2366cefd9c38 SHA256 65a087b67248f05ad0fa0b513b1c5c6d2dc77d915914315758ac7549b55dd926
DIST x2-1.4.02-1.4.03-x86.run 534472 RMD160 6f921d3e8b8b4260333e385f7339f184127bfaf8 SHA1 91ca433fd7aec0c6a311392e1cb8e3dd410dc466 SHA256 04eded4d3aa5ed04d736a15f0f836fe0bfd4186bb27e2d44f11b2d73851cb316
DIST x2-1.4.03-1.4.04-x86.run 995284 RMD160 f2134383b23bdf8e0b53bcc74c1bf9f5d59af925 SHA1 5e7780b64f2c9043246bdfb92f9c8b652ee17127 SHA256 8e2c8783e13d18cc8bef555a2953061058561a2f66f74efa1e57554c29a7a9c1
DIST x2-1.4.04-1.4.05-x86.run 885752 RMD160 10c57dc8305058405a1dff0249aa2ac4e3b89e06 SHA1 ca42bdc2519848711f6e720a4c1b345e96622cbc SHA256 2b47203d0565919ebca7f023d6832525bf37e4d1e8ca13a9c92fd79d0c13b307

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>games</herd>
<use>
<flag name="bonusscripts">Add bonus scripts</flag>
<flag name="dynamic">Use dynamic binaries instead of static</flag>
<flag name="langpacks">Install additional language packs</flag>
<flag name="modkit">Install the modkit</flag>
</use>
</pkgmetadata>

@ -1,119 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/x2/x2-1.4.05.ebuild,v 1.6 2012/02/05 06:25:47 vapier Exp $
EAPI=2
inherit eutils unpacker cdrom games
MY_PV="1.4.04-${PV}"
MY_UPD="http://updatefiles.linuxgamepublishing.com/${PN}"
DESCRIPTION="Open-ended space opera with trading, building & fighting"
HOMEPAGE="http://www.linuxgamepublishing.com/info.php?id=x2"
# Patches are in http://updatefiles.linuxgamepublishing.com/x2/
SRC_URI="${MY_UPD}/${PN}-1.4-1.4.01-x86.run
${MY_UPD}/${PN}-1.4.01-1.4.02-x86.run
${MY_UPD}/${PN}-1.4.02-1.4.03-x86.run
${MY_UPD}/${PN}-1.4.03-1.4.04-x86.run
${MY_UPD}/${PN}-${MY_PV}-x86.run"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bonusscripts dynamic langpacks linguas_de modkit"
RESTRICT="strip"
RDEPEND="media-libs/alsa-lib
sys-libs/glibc
x86? (
media-libs/libsdl
media-libs/openal
sys-libs/zlib
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp
x11-libs/libXext
x11-libs/libXi )
amd64? (
app-emulation/emul-linux-x86-gtklibs
app-emulation/emul-linux-x86-sdl )"
DEPEND=""
S=${WORKDIR}
unpackit() {
unpack "./cd/${1}.tar.gz"
}
src_unpack() {
cdrom_get_cds bin/Linux/x86/${PN}
ln -sfn "${CDROM_ROOT}"/data cd
unpackit data
use bonusscripts && unpackit bonusscripts
use linguas_de && unpackit german
use langpacks && unpackit langpacks
use modkit && unpackit modkit
rm -f cd
cp -rf "${CDROM_ROOT}"/bin/Linux/x86/* . || die "cp exes"
cp -f "${CDROM_ROOT}"/{READ*,icon*} . || die "cp READ*"
# Apply the patches
local p
for p in 1.4-1.4.01 1.4.01-1.4.02 1.4.02-1.4.03 1.4.03-1.4.04 \
"${MY_PV}" ; do
einfo "Applying patch ${p}"
mkdir patch
cd patch
unpack_makeself "${PN}-${p}-x86.run"
bin/Linux/x86/loki_patch patch.dat "${S}" \
|| die "loki_patch ${p}"
cp -f README.txt "${S}/ChangeLog" || die "cp README.txt"
cd "${S}"
rm -rf patch
done
# These files do not get installed
[[ -e modkit ]] && rm -f modkit/x2*.debug
}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
# Whether to use static (default) or dynamic binaries
local dyn
use dynamic && dyn=".dynamic"
insinto "${dir}"
doins -r * || die "doins -r"
keepdir "${dir}"/Database
exeinto "${dir}"
doexe x2{,.dynamic} || die "doexe x2"
if use modkit ; then
exeinto "${dir}"/modkit
doexe modkit/x2{build,tool}{,.dynamic} || die "doexe modkit"
local f
for f in build tool ; do
games_make_wrapper "x2${f}" "${dir}/modkit/x2${f}${dyn}"
done
fi
games_make_wrapper ${PN} "./${PN}${dyn}" "${dir}"
newicon "${CDROM_ROOT}"/icon.xpm ${PN}.xpm || die "newicon"
make_desktop_entry ${PN} "X2 - The Threat" ${PN}
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if use dynamic ; then
elog "Please try without the 'dynamic' USE flag, before reporting bugs."
fi
}

@ -0,0 +1,685 @@
CrossOver Linux License Grant
YOU REALLY WANT TO READ THIS, ESPECIALLY THE PART ABOUT
THE MANDATORY CAR WASH FOR CODEWEAVERS EMPLOYEES...
If you don't like this license grant:
a. Let us know, we'd appreciate the feedback.
b. Stop right now, and ask for a refund. We'll cheerfully do so.
The main thing we want you to know:
This is a license for one user. The license is not necessarily for a
specific user, or a specific computer, but it is for one person at a
time. If you need to support more than one person, please contact us
for volume pricing and site licensing. We do offer educational
discounts.
----------------< Start of Formal License Grant >-----------------------
1. License. The software accompanying this License (hereinafter "Software"),
regardless of the media on which it is distributed, are licensed to you
by CodeWeavers ("VENDOR"). You own the medium on which the Software is
recorded, but VENDOR and VENDOR's Licensors (referred to collectively as
"VENDOR") retain title to the Software and related documentation. You
may:
a. run the Software on any computer, so long as no more than one
person per license is ever using the Software at any one time.
b. transfer all your license rights in the Software, the backup copy
of the Software, the related documentation and a copy of this
License to another party, provided the other party reads and agrees
to accept the terms and conditions of this License.
2. Free Software. The Software contained in this product includes some
components of Free Software, including software from the Wine Project,
and the MojoSetup setup software.
The Wine project is licensed under terms of the GNU Lesser General Public
License, which is included below as Appendix A. The best source for the
Wine source code is the main Wine web page at http://www.winehq.org.
Japanese fonts are included under the Wada Laboratory public domain
license found at
http://sourceforge.jp/projects/ume-font/wiki/UmeFontLicence
MojoSetup and its dependent projects are all licensed under BSD
style licenses. The best place for that code is also
www.icculus.org.
We also use or include static copies of the following projects:
xml-dom, xml-namespacesupport, - Artistic or GPL license
xml-regexp, xml-sax
We also use the htmltextview.py library by Gustavor Carneiro, which
is licensed under the LGPL. The source code was available to us at:
http://people.gnome.org/~gjc/htmltextview.py
Portions of this software are copyright © 2009. The FreeType
Project (www.freetype.org). All rights reserved.
In each case, we use them unmodified and strongly recommend that
anyone wishing source code for these projects find and visit the
respective project home page.
We are deeply grateful to the authors of all of these software projects
for allowing us to use their software.
We include source code with each CD purchase of CrossOver. Current
source code for Free Software contained within CrossOver products is also
generally available at our web site, www.codeweavers.com. However,
individuals wishing to obtain source directly from us will be cheerfully
provided with a copy of any Free Software source upon request. We reserve
the right to charge a nominal processing fee for transmission of the
source code. Send such requests to info@codeweavers.com.
CodeWeavers strongly believes in the Free Software movement. We believe
that the spirit of this movement makes it important for you to be able to
obtain these components for yourself, make changes, and then use those
changes with our Software. To that end, you are explicitly granted
license to build alternate versions of the Wine software for use in
conjunction with the Software.
IN NO WAY IS THIS LICENSE GRANT INTENDED TO SUPERSEDE THE LICENSE
AGREEMENTS OF ANY FREE SOFTWARE COMPONENTS THAT ARE DISTRIBUTED IN
CONJUNCTION WITH THE SOFTWARE.
3. Restrictions. The Software contains copyrighted material, trade secrets
and other proprietary material. In order to protect them, and except as
permitted by applicable legislation or by the Free Software licenses
detailed in Section 2, you may not:
a. decompile, reverse engineer, disassemble or otherwise reduce the
Software to a human-perceivable form
b. rent, lend, loan, distribute or create derivative works based upon
the Software in whole or in part.
4. Term. This License is granted to you immediately upon purchase of a
license from CodeWeavers, or other related third party.
This License is effective until terminated. You may terminate this
License at any time by destroying the Software, related documentation and
all copies thereof.
This License will terminate immediately without notice from VENDOR if:
a. you use the Software in a fashion that exceeds the rights granted
to you by this license, OR
b. you fail to conclude the purchase transaction, OR
c. you request a refund.
If the Software was given to you for purposes of evaluation, then this
License will terminate at the end of the specified evaluation period,
typically 30 days.
Upon termination you must destroy the Software, related documentation and
all copies thereof.
5. Export Law Assurance. You agree and certify that neither the Software nor
any other technical data received from VENDOR, nor the direct product
thereof, will be exported outside the United States except as authorized
and as permitted by the laws and regulations of the United States. If the
Software has been rightfully obtained by you outside of the United
States, you agree that you will not reexport the Software nor any other
technical data received from VENDOR, nor the direct product thereof,
except as permitted by the laws and regulations of the United States and
the laws and regulations of the jurisdiction in which you obtained the
Software.
6. Government End Users. If you are acquiring the Software on behalf of any
unit or agency of the United States Government, the following provisions
apply. The Government agrees:
a. if the Software is supplied to the Department of Defense (DoD), the
Software is classified as "Commercial Computer Software" and the
Government is acquiring only "restricted rights" in the Software
and its documentation as that term is defined in Clause 252.227-
7013(c)(1) of the DFARS; and
b. if the Software is supplied to any unit or agency of the United
States Government other than DoD, the Government's rights in the
Software and its documentation will be as defined in Clause 52.227-
19(c)(2) of the FAR or, in the case of NASA, in Clause 18-52.227-86
(d) of the NASA Supplement to the FAR.
7. Limited Warranty on Media. If you have purchased the Software in a
tangible form of media such as a CD ROM, VENDOR warrants the tangible media
on which the Software is recorded to be free from defects in materials and
workmanship under normal use for a period of ninety (90) days from the
date of purchase as evidenced by a copy of the receipt. VENDOR's entire
liability and your exclusive remedy will be replacement of the media not
meeting VENDOR's limited warranty and which is returned to VENDOR or an
VENDOR authorized representative with a copy of the receipt. VENDOR will
have no responsibility to replace any media damaged by accident, abuse or
misapplication. ANY IMPLIED WARRANTIES ON THE TANGIBLE MEDIA, INCLUDING
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE, ARE LIMITED IN DURATION TO NINETY (90) DAYS FROM THE DATE OF
DELIVERY. THIS WARRANTY GIVES YOU SPECIFIC LEGAL RIGHTS, AND YOU MAY ALSO
HAVE OTHER RIGHTS WHICH VARY BY JURISDICTION.
8. Disclaimer of Warranty on Software. You expressly acknowledge and agree
that use of the Software is at your sole risk. The Software and related
documentation are provided "AS IS" and without warranty of any kind and
VENDOR EXPRESSLY DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE. VENDOR DOES NOT WARRANT THAT THE
FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET YOUR REQUIREMENTS, OR THAT
THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR
THAT DEFECTS IN THE SOFTWARE WILL BE CORRECTED. THE ENTIRE RISK AS TO THE
RESULTS AND PERFORMANCE OF THE SOFTWARE IS ASSUMED BY YOU. FURTHERMORE,
VENDOR DOES NOT WARRANT OR MAKE ANY REPRESENTATIONS REGARDING THE USE OR
THE RESULTS OF THE USE OF THE SOFTWARE OR RELATED DOCUMENTATION IN TERMS
OF THEIR CORRECTNESS, ACCURACY, RELIABILITY, CURRENTNESS, OR OTHERWISE.
NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY VENDOR OR VENDOR'S
AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY OR IN ANY WAY INCREASE
THE SCOPE OF THIS WARRANTY. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU (AND
NOT VENDOR OR VENDOR'S AUTHORIZED REPRESENTATIVE) ASSUME THE ENTIRE COST
OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO
NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO THE ABOVE EXCLUSION MAY
NOT APPLY TO YOU.
9. Limitation of Liability. UNDER NO CIRCUMSTANCES INCLUDING NEGLIGENCE,
SHALL VENDOR, OR ITS DIRECTORS, OFFICERS, EMPLOYEES OR AGENTS, BE LIABLE
TO YOU FOR ANY INCIDENTAL, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES
(INCLUDING DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION,
LOSS OF BUSINESS INFORMATION, AND THE LIKE) ARISING OUT OF THE USE,
MISUSE OR INABILITY TO USE THE SOFTWARE OR RELATED DOCUMENTATION, EVEN IF
VENDOR OR VENDOR'S AUTHORIZED REPRESENTATIVE HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE
LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL
DAMAGES, SO THE ABOVE LIMITATION OR EXCLUSION MAY NOT APPLY TO YOU. In no
event shall VENDOR's total liability to you for all damages, losses, and
causes of action (whether in contract, tort (including negligence) or
otherwise) exceed the amount paid by you for the Software.
10. Controlling Law and Severability. This License shall be governed by and
construed in accordance with the laws of the United States and the State
of Minnesota, as applied to agreements entered into and to be performed
entirely within Minnesota between Minnesota residents. If for any reason
a court of competent jurisdiction finds any provision of this License or
portion thereof, to be unenforceable, that provision of the License shall
be enforced to the maximum extent permissible so as to effect the intent
of the parties, and the remainder of this License shall continue in full
force and effect.
Appendix A - Wine License
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard. To achieve this, non-free programs must be
allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
----------------< End of Formal License Grant >-----------------------
OKAY, WE WERE JUST KIDDING. THERE'S NOTHING IN HERE ABOUT CARWASHES. BUT YOU
REALLY SHOULD READ THESE THINGS, YOU KNOW. (It's the Green RAV4, if
you really insist).
For those of you that do really care about license agreements,
please feel free to email us at info@codeweavers.com; we are
always open to suggestions.

@ -1,2 +0,0 @@
DIST picasa-2.7.3736-15.i386.rpm 24791434 SHA256 003b5486f45229470d72937d4af880e507eb7cd024a951c9a1ecc0df1ecf426d
DIST picasa-3.0.0.57.4402.0_beta.i386.rpm 32699190 SHA256 924a37c8db47c3bbaa27548012f8e96242b104a1f77d03fc2644ed7ba71dbac1

@ -1,15 +0,0 @@
--- bin/wrapper.orig 2006-09-13 01:39:17.000000000 +0200
+++ bin/wrapper 2006-09-13 01:39:38.000000000 +0200
@@ -221,12 +221,6 @@
exec >/dev/null 2>&1
fi
-# FIXME - Only US English has been well tested to this point,
-# so we unset all LOCALE strings, causing us to default to Posix and hence US English
- for x in `locale 2>/dev/null | sed 's/=.*$//'` ; do
- unset $x
-done
-
# Apply the .inf files (reapply if they've changed)
for infcmd in wine.inf/DefaultInstall mozctl.inf/Mozctl picasa.inf/DefaultInstall ; do
inffile=`echo $infcmd | cut -d '/' -f 1`

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
</pkgmetadata>

@ -1,79 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/picasa/picasa-2.7.3736.15.ebuild,v 1.4 2011/03/29 12:24:56 angelos Exp $
EAPI=1
inherit eutils versionator rpm
MY_P="picasa-$(replace_version_separator 3 '-')"
DESCRIPTION="Google's photo organizer"
HOMEPAGE="http://picasa.google.com"
SRC_URI="http://dl.google.com/linux/rpm/stable/i386/${MY_P}.i386.rpm"
LICENSE="google-picasa"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RESTRICT="mirror strip"
QA_TEXTRELS_x86="opt/picasa/wine/lib/wine/set_lang.exe.so
opt/picasa/wine/lib/wine/browser_prompt.exe.so
opt/picasa/wine/lib/wine/license.exe.so"
#QA_EXECSTACK_x86="opt/picasa/bin/xsu
# opt/picasa/wine/bin/wine
# opt/picasa/wine/bin/wineserver
# opt/picasa/wine/bin/wine-pthread
# opt/picasa/wine/bin/wine-kthread
# opt/picasa/wine/lib/*
# opt/picasa/wine/lib/wine/*"
RDEPEND="x86? (
dev-libs/atk
dev-libs/glib:2
dev-libs/libxml2:2
sys-libs/zlib
x11-libs/gtk+:2
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXext
x11-libs/libXi
x11-libs/libXt
x11-libs/pango )
amd64? (
app-emulation/emul-linux-x86-gtklibs )"
S="${WORKDIR}"
src_unpack() {
rpm_src_unpack ${A}
}
src_install() {
cd opt/picasa
dodir /opt/picasa
mv bin wine "${D}/opt/picasa/"
dodir /usr/bin
for i in picasa picasafontcfg mediadetector showpicasascreensaver; do
dosym /opt/picasa/bin/${i} /usr/bin/${i}
done
dodoc README LICENSE.FOSS
cd desktop
mv google-picasa-mediadetector.desktop.template google-picasa-mediadetector.desktop
mv google-picasa.desktop.template google-picasa.desktop
mv google-picasa-fontcfg.desktop.template google-picasa-fontcfg.desktop
sed -i -e "s:EXEC:mediadetector:" google-picasa-mediadetector.desktop
sed -i -e "s:EXEC:picasa:" google-picasa.desktop
sed -i -e "s:ICON:picasa.xpm:" google-picasa{,-mediadetector}.desktop
sed -i -e "s:EXEC:picasafontcfg:" google-picasa-fontcfg.desktop
sed -i -e "s:ICON:picasa-fontcfg.xpm:" google-picasa-fontcfg.desktop
echo "Categories=Graphics;" >> google-picasa.desktop
echo "Categories=Graphics;" >> google-picasa-fontcfg.desktop
doicon picasa.xpm picasa-fontcfg.xpm
domenu {google-picasa{,-mediadetector,-fontcfg},picasascr}.desktop
}

@ -1,85 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/picasa/picasa-3.0.0.57.4402.0_beta.ebuild,v 1.8 2012/06/08 02:57:49 zmedico Exp $
# needs SRC_URI arrows
EAPI=2
inherit eutils multilib versionator rpm nsplugins
MY_P="${PN}-$(get_version_component_range 1-2)"
DESCRIPTION="Google's photo organizer"
HOMEPAGE="http://picasa.google.com"
SRC_URI="http://dl.google.com/linux/rpm/testing/i386/${MY_P}-current.i386.rpm
-> ${P}.i386.rpm"
LICENSE="google-picasa"
SLOT="0"
KEYWORDS="-* amd64 x86"
RESTRICT="mirror strip"
IUSE="nsplugin"
RDEPEND="x86? (
dev-libs/atk
dev-libs/glib:2
dev-libs/libxml2:2
sys-libs/zlib
x11-libs/gtk+:2
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXext
x11-libs/libXi
x11-libs/libXt
x11-libs/pango )
amd64? (
app-emulation/emul-linux-x86-gtklibs
)
nsplugin? ( >=www-client/firefox-3.0.0 )
"
DEPEND=""
QA_TEXTRELS="opt/google/picasa/3.0/wine/lib/wine/set_lang.exe.so
opt/google/picasa/3.0/wine/lib/wine/browser_prompt.exe.so
opt/google/picasa/3.0/wine/lib/wine/check_dir.exe.so
opt/google/picasa/3.0/wine/lib/wine/license.exe.so"
S="${WORKDIR}"
src_unpack() {
rpm_src_unpack ${A}
}
src_install() {
local target="opt/google/picasa/3.0"
cd ${target}
dodir /${target}
mv bin $(get_libdir) wine "${D}/${target}" || die
# bug #298496
rm -rfv "${D}/${target}/wine/lib/wine/wineesd.drv.so" || die
dodir /usr/bin
for i in picasa picasafontcfg showpicasascreensaver; do
dosym /${target}/bin/${i} /usr/bin/${i}
done
dodir /${target}/desktop
mv desktop/picasa32x32.xpm "${D}/${target}/desktop/" || die
dodoc README LICENSE.FOSS || die
cd desktop || die
sed -e "s:EXEC:picasa:" -e "s:ICON:picasa.xpm:" \
picasa.desktop.template > picasa.desktop || die
echo "Categories=Graphics;" >> picasa.desktop
sed -e "s:EXEC:picasafontcfg:" -e "s:ICON:picasa-fontcfg.xpm:" \
picasa-fontcfg.desktop.template > picasa-fontcfg.desktop || die
echo "Categories=Graphics;" >> picasa-fontcfg.desktop
doicon picasa{,-fontcfg}.xpm || die
domenu {picasa{,-fontcfg,-kdehal},picasascr}.desktop || die
use nsplugin && inst_plugin /${target}/$(get_libdir)/npPicasa3.so
}

@ -1,13 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-assrender/gst-plugins-assrender-0.10.23.ebuild,v 1.13 2013/02/07 13:10:08 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-assrender/gst-plugins-assrender-0.10.23.ebuild,v 1.14 2013/03/27 14:11:17 ago Exp $
EAPI="5"
inherit gst-plugins-bad
DESCRIPTION="GStreamer plugin for ASS/SSA rendering with effects support"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd"
IUSE=""
RDEPEND=">=media-libs/libass-0.9.4"

@ -1,12 +1,12 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdparanoia/gst-plugins-cdparanoia-0.10.36.ebuild,v 1.11 2013/02/10 22:29:31 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdparanoia/gst-plugins-cdparanoia-0.10.36.ebuild,v 1.12 2013/03/27 14:12:17 ago Exp $
EAPI="5"
inherit gst-plugins-base gst-plugins10
KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
IUSE=""
RDEPEND=">=media-sound/cdparanoia-3.10.2-r3"

@ -1,13 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-jack/gst-plugins-jack-0.10.31.ebuild,v 1.14 2013/02/07 13:31:10 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-jack/gst-plugins-jack-0.10.31.ebuild,v 1.15 2013/03/27 14:10:58 ago Exp $
EAPI="5"
inherit gst-plugins-good
DESCRIPION="GStreamer source/sink to transfer audio data with JACK ports"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd"
IUSE=""
RDEPEND=">=media-sound/jack-audio-connection-kit-0.99.10"

@ -1,13 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-mimic/gst-plugins-mimic-1.0.5.ebuild,v 1.9 2013/02/23 19:14:26 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-mimic/gst-plugins-mimic-1.0.5.ebuild,v 1.10 2013/03/27 14:12:37 ago Exp $
EAPI="5"
inherit gst-plugins-bad
DESCRIPTION="GStreamer plugin for the MIMIC codec"
KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=media-libs/libmimic-1.0.4"

@ -1,13 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-opus/gst-plugins-opus-0.10.23.ebuild,v 1.13 2013/02/07 13:25:30 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-opus/gst-plugins-opus-0.10.23.ebuild,v 1.14 2013/03/27 14:11:38 ago Exp $
EAPI="5"
inherit gst-plugins-bad
DESCRIPTION="GStreamer plugin for Opus audio codec support"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd"
IUSE=""
COMMON_DEPEND=">=media-libs/opus-0.9.4:="

@ -1,13 +1,13 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-xvid/gst-plugins-xvid-0.10.23.ebuild,v 1.12 2013/02/07 13:30:47 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-xvid/gst-plugins-xvid-0.10.23.ebuild,v 1.13 2013/03/27 14:11:57 ago Exp $
EAPI="5"
inherit gst-plugins-bad
DESCRIPTION="GStreamer plugin for XviD (MPEG-4) video encoding/decoding support"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86"
IUSE=""
RDEPEND="media-libs/xvid"

@ -1,2 +1,3 @@
DIST tomahawk-0.5.5.tar.bz2 4831653 SHA256 703fb3aff04e2d3fb1fa02fe484674032b9b9b928dec5a0befa7b024304b0c4f SHA512 748a0c6bf5e193c3063b1378c5f81e6529cf352cbbe4a54fecb7db1e88f95e86d36ba65ff050e810655c676781dbca9f2e9f4ab574525fda3fd8a5cc68e1569f WHIRLPOOL 0177023139f470cfed26f3ded51dc186346150aac3a6a5bbe0925af79be0b315980fc4695b981eb4c11df98d9d5e9cb98eb414d2ea30a08c3ddf9a2bedcea189
DIST tomahawk-0.6.0.tar.bz2 5238327 SHA256 28ea3b1424a99879bf9457f04b3ce8e63dca9ee84e6651027a1ecad9d74ae335 SHA512 21141068987855d3e7e51729d4a09d7aa7b2fea51d83645403d124d291e13b2e9365fc45bcf18a2cc0c49a28fd0e78d244e3a6707f4a4cfbb9d0fb48ba878873 WHIRLPOOL 61aadf9c01b367c0b3f0e40662137732dc9e55437193d3fb51b9b006eb46d7b99b4c95160cdb1366cabb82c3928ba29d9177d04b28339bae443909e2989cce2e
DIST tomahawk-0.6.1.tar.bz2 5185714 SHA256 c2b8da0cfb3e9e4653439ee349a2446d5d124a07afa51af6c57e743936ce29fe SHA512 a0612cb62573a22dbb8b47f4d22514cad2fa485bee83d8767fdf139c2a5ec7e380db1d7d7ee807b4632c994738e20d88f9c4875ab9e266007189c3568048f490 WHIRLPOOL f8ec753b8afad14d444bc4b3fd3d236cb90a8512895b90e0618a4cd250d750b2ef7f8b3fa9bee0505259ee94d2065b5d97804844379c419ce3088209c5a28996

@ -0,0 +1,74 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/tomahawk-0.6.1.ebuild,v 1.2 2013/03/27 17:51:21 ago Exp $
EAPI=5
QT_MINIMAL="4.7.0"
CMAKE_MIN_VERSION="2.8.6"
if [[ ${PV} != *9999* ]]; then
SRC_URI="http://download.tomahawk-player.org/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
else
GIT_ECLASS="git-2"
EGIT_REPO_URI="git://github.com/tomahawk-player/${PN}.git"
KEYWORDS=""
fi
inherit cmake-utils qt4-r2 ${GIT_ECLASS}
DESCRIPTION="Qt playdar social music player"
HOMEPAGE="http://tomahawk-player.org/"
LICENSE="GPL-3 BSD"
SLOT="0"
IUSE="debug jabber twitter"
DEPEND="
app-crypt/qca:2
>=dev-cpp/clucene-2.3.3.4
>=dev-libs/boost-1.41
>=dev-libs/libattica-0.4.0
dev-libs/qjson
dev-libs/quazip
>=dev-qt/qtcore-${QT_MINIMAL}:4
>=dev-qt/qtdbus-${QT_MINIMAL}:4
>=dev-qt/qtgui-${QT_MINIMAL}:4
>=dev-qt/qtsql-${QT_MINIMAL}:4[sqlite]
>=dev-qt/qtsvg-${QT_MINIMAL}:4
>=dev-qt/qtwebkit-${QT_MINIMAL}:4
>=media-libs/liblastfm-1.0.1
>=media-libs/libechonest-2.0.1
>=media-libs/phonon-4.5.0
>=media-libs/taglib-1.6.0
x11-libs/libX11
jabber? ( >=net-libs/jreen-1.1.1 )
twitter? ( net-libs/qtweetlib )
"
RDEPEND="${DEPEND}
app-crypt/qca-ossl
"
DOCS=( AUTHORS ChangeLog README.md )
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with jabber Jreen)
$(cmake-utils_use_with twitter QTweetLib)
)
if [[ ${PV} != *9999* ]]; then
mycmakeargs+=( -DBUILD_RELEASE=ON )
fi
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
}

@ -1,17 +1,19 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/tomahawk-9999.ebuild,v 1.11 2013/03/02 22:04:34 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/tomahawk-9999.ebuild,v 1.12 2013/03/27 17:51:21 ago Exp $
EAPI=5
QT_MINIMAL="4.7.0"
CMAKE_MIN_VERSION="2.8.6"
if [[ ${PV} != *9999* ]]; then
SRC_URI="http://download.tomahawk-player.org/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
else
GIT_ECLASS="git-2"
EGIT_REPO_URI="git://github.com/tomahawk-player/tomahawk.git"
EGIT_REPO_URI="git://github.com/tomahawk-player/${PN}.git"
KEYWORDS=""
fi
@ -25,22 +27,23 @@ SLOT="0"
IUSE="debug jabber twitter"
DEPEND="
app-crypt/qca
app-crypt/qca:2
>=dev-cpp/clucene-2.3.3.4
>=dev-libs/boost-1.41
>=dev-libs/libattica-0.4.0
dev-libs/qjson
dev-libs/quazip
>=media-libs/liblastfm-1.0.1
>=media-libs/libechonest-2.0.2
>=media-libs/phonon-4.5.0
media-libs/taglib
x11-libs/libX11
>=dev-qt/qtcore-${QT_MINIMAL}:4
>=dev-qt/qtdbus-${QT_MINIMAL}:4
>=dev-qt/qtgui-${QT_MINIMAL}:4
>=dev-qt/qtsql-${QT_MINIMAL}:4[sqlite]
>=dev-qt/qtsvg-${QT_MINIMAL}:4
>=dev-qt/qtwebkit-${QT_MINIMAL}:4
>=media-libs/liblastfm-1.0.1
>=media-libs/libechonest-2.0.2
>=media-libs/phonon-4.5.0
>=media-libs/taglib-1.6.0
x11-libs/libX11
jabber? ( >=net-libs/jreen-1.1.1 )
twitter? ( net-libs/qtweetlib )
"

@ -1 +1 @@
Wed, 27 Mar 2013 11:06:58 +0000
Wed, 27 Mar 2013 18:06:55 +0000

@ -1 +1 @@
Wed, 27 Mar 2013 11:06:58 +0000
Wed, 27 Mar 2013 18:06:55 +0000

@ -0,0 +1,13 @@
DEFINED_PHASES=compile configure install postinst prepare test
DEPEND=>=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio ) >=dev-libs/dotconf-1.3 >=dev-util/intltool-0.40.0 virtual/pkgconfig
DESCRIPTION=Speech synthesis interface
EAPI=5
HOMEPAGE=http://www.freebsoft.org/speechd
IUSE=alsa ao +espeak flite nas pulseaudio python static-libs python_targets_python3_2 python_targets_pypy1_9 python_targets_pypy2_0
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux
LICENSE=GPL-2
RDEPEND=>=dev-libs/glib-2.28:2 >=media-libs/libsndfile-1.0.2 alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) espeak? ( app-accessibility/espeak ) flite? ( app-accessibility/flite ) nas? ( media-libs/nas ) pulseaudio? ( media-sound/pulseaudio )
SLOT=0
SRC_URI=http://www.freebsoft.org/pub/projects/speechd/speech-dispatcher-0.8.tar.gz
_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils c3608254689d959486b175186734d10d eutils 50d18ebffcbd8bd63614b89c2d664d0d libtool 2b273eea1976cfaed3449345d94331ac multibuild 09ecc885e84a763742480174a993ee70 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 ec14ac1ad9c7920d5f5c20950dda44bb python-utils-r1 c5012e18184f3e0473a1f1a7b9662ab0 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=a158fd4973d79b194cfe6a6e6d45057a

@ -11,4 +11,4 @@ REQUIRED_USE=aqua? ( !X )
SLOT=23
SRC_URI=mirror://gnu/emacs/emacs-23.4.tar.bz2 mirror://gentoo/emacs-23.4-patches-8.tar.bz2
_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 50d18ebffcbd8bd63614b89c2d664d0d flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 readme.gentoo 2705553a0f031d715b57878cc0d9bf64 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5dfe150c1dd280187ba87804bd409d14
_md5_=2e2db79d72cf7e2bb815b33a66024b66

@ -11,4 +11,4 @@ REQUIRED_USE=?? ( aqua X )
SLOT=24
SRC_URI=mirror://gnu/emacs/emacs-24.3.tar.xz mirror://gentoo/emacs-24.3-patches-1.tar.xz
_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 50d18ebffcbd8bd63614b89c2d664d0d flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 readme.gentoo 2705553a0f031d715b57878cc0d9bf64 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=c041b608355fb3cefcd607a8551bb5c5
_md5_=b7c48541b3f00a4ccf794bb9a89df671

@ -3,8 +3,8 @@ DEPEND=app-arch/unzip
DESCRIPTION=Unicode data from unicode.org
EAPI=5
HOMEPAGE=http://unicode.org/
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd
LICENSE=unicode
SLOT=0
SRC_URI=mirror://debian/pool/main/u/unicode-data/unicode-data_6.1.0.orig.tar.gz
_md5_=cc8d8cad5eb08eb31756409a9bc809d5
_md5_=8d7efe01c4116949fed8f5a247cc6f92

@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/libevent-2.0.10 sys-libs/ncurses vim-syntax? ( || ( app-edito
SLOT=0
SRC_URI=mirror://sourceforge/tmux/tmux-1.8.tar.gz
_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils c3608254689d959486b175186734d10d bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 50d18ebffcbd8bd63614b89c2d664d0d flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=0d6eb474dcfa1a684f28bbe617c457b9
_md5_=2846ed55c7440d5b2af57b195144c4d9

@ -4,10 +4,10 @@ DESCRIPTION=DASH is a direct descendant of the NetBSD version of ash (the Almqui
EAPI=4
HOMEPAGE=http://gondor.apana.org.au/~herbert/dash/
IUSE=libedit static
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86
LICENSE=BSD
RDEPEND=!static? ( libedit? ( dev-libs/libedit ) )
SLOT=0
SRC_URI=http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.7.tar.gz mirror://debian/pool/main/d/dash/dash_0.5.7-3.diff.gz
_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 50d18ebffcbd8bd63614b89c2d664d0d flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=d01e9fb847514b96e6a0d308dff9fae1
_md5_=8df1c45dd259ea90896b112ccf8f93ff

@ -1,5 +1,5 @@
DEFINED_PHASES=compile configure install postinst preinst prepare prerm setup unpack
DEPEND=!kernel_Darwin? ( >=sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/binutils-2.17 ) kernel_SunOS? ( >=sys-devel/binutils-2.17 ) >=dev-lang/perl-5.6.1 >=dev-libs/gmp-5 virtual/libffi !<dev-haskell/haddock-2.4.2 sys-libs/ncurses[unicode] ghcbootstrap? ( >=dev-haskell/alex-2.3 >=dev-haskell/happy-1.18 doc? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets >=dev-libs/libxslt-1.1.2 ) ) !ghcbootstrap? ( !prefix? ( elibc_glibc? ( >=sys-libs/glibc-2.14 ) ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DEPEND=!kernel_Darwin? ( >=sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/binutils-2.17 ) kernel_SunOS? ( >=sys-devel/binutils-2.17 ) >=dev-lang/perl-5.6.1 >=dev-libs/gmp-5 virtual/libffi !<dev-haskell/haddock-2.11.0 sys-libs/ncurses[unicode] ghcbootstrap? ( >=dev-haskell/alex-2.3 >=dev-haskell/happy-1.18 doc? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets >=dev-libs/libxslt-1.1.2 ) ) !ghcbootstrap? ( !prefix? ( elibc_glibc? ( >=sys-libs/glibc-2.14 ) ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool
DESCRIPTION=The Glasgow Haskell Compiler
EAPI=5
HOMEPAGE=http://www.haskell.org/ghc/
@ -7,9 +7,9 @@ IUSE=doc ghcbootstrap ghcmakebinary +gmp llvm binary elibc_glibc
KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris
LICENSE=BSD
PDEPEND=!ghcbootstrap? ( =app-admin/haskell-updater-1.2* ) llvm? ( sys-devel/llvm )
RDEPEND=!kernel_Darwin? ( >=sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/binutils-2.17 ) kernel_SunOS? ( >=sys-devel/binutils-2.17 ) >=dev-lang/perl-5.6.1 >=dev-libs/gmp-5 virtual/libffi !<dev-haskell/haddock-2.4.2 sys-libs/ncurses[unicode]
RDEPEND=!kernel_Darwin? ( >=sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/binutils-2.17 ) kernel_SunOS? ( >=sys-devel/binutils-2.17 ) >=dev-lang/perl-5.6.1 >=dev-libs/gmp-5 virtual/libffi !<dev-haskell/haddock-2.11.0 sys-libs/ncurses[unicode]
REQUIRED_USE=ia64? ( !gmp )
SLOT=0/7.4.2
SRC_URI=!binary? ( http://www.haskell.org/ghc/dist/7.4.2/ghc-7.4.2-src.tar.bz2 ) !ghcbootstrap? ( alpha? ( http://code.haskell.org/~slyfox/ghc-alpha/ghc-bin-7.4.2-alpha.tbz2 ) amd64? ( http://code.haskell.org/~slyfox/ghc-amd64/ghc-bin-7.4.2-amd64-stable-glibc.tbz2 ) ia64? ( http://code.haskell.org/~slyfox/ghc-ia64/ghc-bin-7.4.2-ia64.tbz2 ) ppc? ( http://code.haskell.org/~slyfox/ghc-ppc/ghc-bin-7.4.2-ppc.tbz2 ) ppc64? ( http://code.haskell.org/~slyfox/ghc-ppc64/ghc-bin-7.4.2-ppc64.tbz2 ) sparc? ( http://code.haskell.org/~slyfox/ghc-sparc/ghc-bin-7.4.2-sparc.tbz2 ) x86? ( http://code.haskell.org/~slyfox/ghc-x86/ghc-bin-7.4.2-x86-stable-glibc.tbz2 ) )
_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 50d18ebffcbd8bd63614b89c2d664d0d flag-o-matic d900015de4e092f26d8c0a18b6bd60de ghc-package f8674c44668a01a8b05d66a7c140008b libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils 0ace932c4045349c7fc1af0fe7091acf toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=d779371abbf06648d3541707d6ae6e78
_md5_=1ce154d601feca92365293b3dd31b1e5

@ -3,10 +3,10 @@ DEPEND=>=dev-libs/UTF8Strings-1.12.0 sys-devel/make >=dev-util/cmake-2.8.9 userl
DESCRIPTION=Small and simple to use JSON generation and parsing library.
EAPI=5
HOMEPAGE=http://grigory.info/MicroJSON.About.html
KEYWORDS=~amd64 ~x86
KEYWORDS=amd64 x86
LICENSE=GPL-3
RDEPEND=>=dev-libs/UTF8Strings-1.12.0
SLOT=0
SRC_URI=http://grigory.info/distfiles/MicroJSON-0.3.0.tar.bz2
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 2dda478e7e4206f6fb1aa72785cb5ef7 eutils 50d18ebffcbd8bd63614b89c2d664d0d flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=d36a417956cbcc511d3bd9e80076f8d6
_md5_=99972d940ed1c5b95d48d198a0b3aa76

@ -4,10 +4,10 @@ DESCRIPTION=Time zone object base class and factory
EAPI=4
HOMEPAGE=http://search.cpan.org/dist/DateTime-TimeZone/
IUSE=test
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 )
RDEPEND=dev-perl/Class-Load >=dev-perl/Params-Validate-0.720.0 >=dev-perl/Class-Singleton-1.30.0 dev-lang/perl[-build]
SLOT=0
SRC_URI=mirror://cpan/authors/id/D/DR/DROLSKY/DateTime-TimeZone-1.56.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 50d18ebffcbd8bd63614b89c2d664d0d multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=4dd50b0b2f166b1fccd916e81e3da56e
_md5_=c72b3f548c260da468049d41bbb696f4

@ -1,9 +1,10 @@
DEFINED_PHASES=compile install postinst postrm preinst prerm setup test unpack
DEPEND=dev-lang/perl dev-perl/Clone dev-perl/Exception-Class dev-perl/TermReadKey dev-perl/TeX-Encode dev-perl/XML-Generator dev-perl/XML-DOM dev-perl/XML-Twig dev-perl/encoding-warnings perl-core/Switch sci-visualization/gnuplot virtual/perl-Data-Dumper virtual/perl-Encode virtual/perl-Switch virtual/perl-Time-HiRes !dev-perl/Lab-Instrument !dev-perl/Lab-Tools virtual/perl-Module-Build dev-vcs/git
DEFINED_PHASES=compile configure install postinst prepare test unpack
DEPEND=dev-lang/perl[ithreads] dev-perl/Clone dev-perl/Exception-Class dev-perl/TermReadKey dev-perl/TeX-Encode dev-perl/XML-Generator dev-perl/XML-DOM dev-perl/XML-Twig dev-perl/encoding-warnings perl-core/Switch sci-visualization/gnuplot virtual/perl-Data-Dumper virtual/perl-Encode virtual/perl-Switch virtual/perl-Time-HiRes !dev-perl/Lab-Instrument !dev-perl/Lab-Tools virtual/perl-Module-Build dev-lang/perl[-build] dev-vcs/git
DESCRIPTION=Measurement control and automation with Perl
EAPI=5
HOMEPAGE=http://www.labmeasurement.de/
LICENSE=|| ( Artistic GPL-2 )
RDEPEND=dev-lang/perl dev-perl/Clone dev-perl/Exception-Class dev-perl/TermReadKey dev-perl/TeX-Encode dev-perl/XML-Generator dev-perl/XML-DOM dev-perl/XML-Twig dev-perl/encoding-warnings perl-core/Switch sci-visualization/gnuplot virtual/perl-Data-Dumper virtual/perl-Encode virtual/perl-Switch virtual/perl-Time-HiRes !dev-perl/Lab-Instrument !dev-perl/Lab-Tools
RDEPEND=dev-lang/perl[ithreads] dev-perl/Clone dev-perl/Exception-Class dev-perl/TermReadKey dev-perl/TeX-Encode dev-perl/XML-Generator dev-perl/XML-DOM dev-perl/XML-Twig dev-perl/encoding-warnings perl-core/Switch sci-visualization/gnuplot virtual/perl-Data-Dumper virtual/perl-Encode virtual/perl-Switch virtual/perl-Time-HiRes !dev-perl/Lab-Instrument !dev-perl/Lab-Tools dev-lang/perl[-build]
SLOT=0
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 50d18ebffcbd8bd63614b89c2d664d0d git-2 e92e09651292b1bef5656592364550f7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=db01b2f50734c1268a25faf313a92e2e
_md5_=bfac1911a59e8343e1c8a22a97ba27d4

@ -4,10 +4,10 @@ DESCRIPTION=Faster and more correct implementation of the Package::Stash API
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/Package-Stash-XS/
IUSE=test
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 )
RDEPEND=dev-lang/perl[-build]
SLOT=0
SRC_URI=mirror://cpan/authors/id/D/DO/DOY/Package-Stash-XS-0.26.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 50d18ebffcbd8bd63614b89c2d664d0d multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=4f56a95f70d789fabb93a80fd229087d
_md5_=13bde411a164ca5ea08b28d52ee25464

@ -4,10 +4,10 @@ DESCRIPTION=Comma-separated values manipulation routines
EAPI=4
HOMEPAGE=http://search.cpan.org/dist/Text-CSV_XS/
IUSE=test
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris
LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 )
RDEPEND=dev-lang/perl[-build]
SLOT=0
SRC_URI=mirror://cpan/authors/id/H/HM/HMBRAND/Text-CSV_XS-0.94.tgz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 50d18ebffcbd8bd63614b89c2d664d0d multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=a5e789141b64dbeb68822ded483b2c8a
_md5_=f7025b60bca450ca23fd2e824a2a35ec

@ -3,10 +3,10 @@ DEPEND=dev-lang/perl[-build]
DESCRIPTION=Minimal try/catch with proper localization of
EAPI=5
HOMEPAGE=http://search.cpan.org/dist/Try-Tiny/
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=MIT
RDEPEND=dev-lang/perl[-build]
SLOT=0
SRC_URI=mirror://cpan/authors/id/D/DO/DOY/Try-Tiny-0.12.tar.gz
_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 50d18ebffcbd8bd63614b89c2d664d0d multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=5756748612d42d9849c48208c26b6218
_md5_=5337462dd8a771c1d69bad0d95c0e3fc

@ -4,10 +4,10 @@ DESCRIPTION=An easy, declarative interface for creating command line tools
EAPI=5
HOMEPAGE=http://code.google.com/p/argparse/ http://pypi.python.org/pypi/argparse
IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python3_1
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x86-solaris
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x86-solaris
LICENSE=PSF-2
RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python3_1? ( dev-lang/python:3.1 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python3_1(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python3_1(-)]
SLOT=0
SRC_URI=http://argparse.googlecode.com/files/argparse-1.2.1.tar.gz
_eclasses_=distutils-r1 ca3b0f2e4faf3dc61cddde93db59a47e eutils 50d18ebffcbd8bd63614b89c2d664d0d multibuild 09ecc885e84a763742480174a993ee70 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 ec14ac1ad9c7920d5f5c20950dda44bb python-utils-r1 c5012e18184f3e0473a1f1a7b9662ab0 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=56c9d409d19ebeca9849c3f249273433
_md5_=0f79599e3498b7e28fe37d23b6834900

@ -4,10 +4,10 @@ DESCRIPTION=Code coverage measurement for Python
EAPI=5
HOMEPAGE=http://nedbatchelder.com/code/coverage/ http://pypi.python.org/pypi/coverage
IUSE=python_targets_python2_5 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_targets_pypy2_0
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
LICENSE=BSD
RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,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_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-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_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) 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 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,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_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-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_single_target_pypy2_0(-)]
SLOT=0
SRC_URI=mirror://pypi/c/coverage/coverage-3.6.tar.gz
_eclasses_=distutils-r1 ca3b0f2e4faf3dc61cddde93db59a47e eutils 50d18ebffcbd8bd63614b89c2d664d0d multibuild 09ecc885e84a763742480174a993ee70 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 ec14ac1ad9c7920d5f5c20950dda44bb python-utils-r1 c5012e18184f3e0473a1f1a7b9662ab0 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=203279f6f17a2df3764613bb37ef1b12
_md5_=0585f8bbe8d32f391ce7d7b7c1b8aa14

@ -3,10 +3,10 @@ DEPEND=|| ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
DESCRIPTION=Module for manipulating ID3 (v1 + v2) tags in Python
EAPI=4
HOMEPAGE=http://eyed3.nicfit.net/
KEYWORDS=~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris
KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris
LICENSE=GPL-2
RDEPEND=dev-python/eyeD3:0.7 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
SLOT=0
SRC_URI=http://eyed3.nicfit.net/releases/eyeD3-0.6.18.tar.gz
_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e
_md5_=2dc56f429165da8b5bb8343d884c0f93
_md5_=c2d1cac8260e90f7c167c327d26abf73

@ -4,10 +4,10 @@ DESCRIPTION=Module for manipulating ID3 (v1 + v2) tags in Python
EAPI=5
HOMEPAGE=http://eyed3.nicfit.net/
IUSE=python_targets_python2_7
KEYWORDS=~amd64 ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris
KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris
LICENSE=GPL-2
RDEPEND=!<dev-python/eyeD3-0.6.18-r1:0 python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
SLOT=0.7
SRC_URI=http://eyed3.nicfit.net/releases/eyeD3-0.7.1.tgz
_eclasses_=distutils-r1 ca3b0f2e4faf3dc61cddde93db59a47e eutils 50d18ebffcbd8bd63614b89c2d664d0d multibuild 09ecc885e84a763742480174a993ee70 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 ec14ac1ad9c7920d5f5c20950dda44bb python-utils-r1 c5012e18184f3e0473a1f1a7b9662ab0 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=3ac0dc66cbf9e1b6136d72adb078f6ae
_md5_=11d12baeaaa3d835fe520a0a60ce5a61

@ -4,10 +4,10 @@ DESCRIPTION=HTML parser based on the HTML5 specification
EAPI=5
HOMEPAGE=http://code.google.com/p/html5lib/ http://pypi.python.org/pypi/html5lib
IUSE=test python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0
KEYWORDS=~amd64 ~x86 ~x86-fbsd
KEYWORDS=~amd64 ~arm ~x86 ~x86-fbsd
LICENSE=MIT
RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[xml(+)] ) python_targets_python2_6? ( dev-lang/python:2.6[xml(+)] ) python_targets_python2_7? ( dev-lang/python:2.7[xml(+)] ) python_targets_pypy1_9? ( dev-python/pypy:1.9[xml(+)] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[xml(+)] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)]
SLOT=0
SRC_URI=http://html5lib.googlecode.com/files/html5lib-0.95.tar.gz
_eclasses_=distutils-r1 ca3b0f2e4faf3dc61cddde93db59a47e eutils 50d18ebffcbd8bd63614b89c2d664d0d multibuild 09ecc885e84a763742480174a993ee70 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 ec14ac1ad9c7920d5f5c20950dda44bb python-utils-r1 c5012e18184f3e0473a1f1a7b9662ab0 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=fbec9137831ab279ccf2d367773988e0
_md5_=81bb6106d5e1b036cf83f7b86bf6fb78

@ -4,10 +4,10 @@ DESCRIPTION=HTTP request/response parser for python in C
EAPI=5
HOMEPAGE=http://github.com/benoitc/http-parser
IUSE=examples python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_pypy1_9 python_targets_pypy2_0
KEYWORDS=~amd64 ~arm ~x86
KEYWORDS=~amd64 ~arm ~x86 ~x86-fbsd
LICENSE=MIT
RDEPEND=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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)]
SLOT=0
SRC_URI=mirror://pypi/h/http-parser/http-parser-0.8.1.tar.gz
_eclasses_=distutils-r1 ca3b0f2e4faf3dc61cddde93db59a47e eutils 50d18ebffcbd8bd63614b89c2d664d0d flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 09ecc885e84a763742480174a993ee70 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 ec14ac1ad9c7920d5f5c20950dda44bb python-utils-r1 c5012e18184f3e0473a1f1a7b9662ab0 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=9f8752297b818e7c8eb2f2400c15e890
_md5_=a195e3d49278cd31dbb74ac726ab6ebe

@ -4,10 +4,10 @@ DESCRIPTION=Python-based software project scripting tool along the lines of Make
EAPI=5
HOMEPAGE=http://www.blueskyonmars.com/projects/paver/ http://pypi.python.org/pypi/Paver
IUSE=test python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy1_9 python_targets_pypy2_0
KEYWORDS=~amd64 ~hppa ~ppc ~x86
KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86
LICENSE=BSD
RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) 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 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)]
SLOT=0
SRC_URI=mirror://pypi/P/Paver/Paver-1.2.0.tar.gz
_eclasses_=distutils-r1 ca3b0f2e4faf3dc61cddde93db59a47e eutils 50d18ebffcbd8bd63614b89c2d664d0d multibuild 09ecc885e84a763742480174a993ee70 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 ec14ac1ad9c7920d5f5c20950dda44bb python-utils-r1 c5012e18184f3e0473a1f1a7b9662ab0 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=56675225a3b2105801f972e0c5266fb1
_md5_=6e23d203fe1a1f57b16ed1cc44e2833f

@ -4,10 +4,10 @@ DESCRIPTION=ASN.1 library for Python
EAPI=5
HOMEPAGE=http://pyasn1.sourceforge.net/ http://pypi.python.org/pypi/pyasn1
IUSE=doc python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_pypy1_9 python_targets_pypy2_0
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd
KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd
LICENSE=BSD
RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) 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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)]
SLOT=0
SRC_URI=mirror://pypi/p/pyasn1/pyasn1-0.1.6.tar.gz
_eclasses_=distutils-r1 ca3b0f2e4faf3dc61cddde93db59a47e eutils 50d18ebffcbd8bd63614b89c2d664d0d multibuild 09ecc885e84a763742480174a993ee70 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 ec14ac1ad9c7920d5f5c20950dda44bb python-utils-r1 c5012e18184f3e0473a1f1a7b9662ab0 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28
_md5_=3e0605651e5ccded59378eee76628ca0
_md5_=ddf3e56996467f8b35b652938bd5c2e9

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

Loading…
Cancel
Save