Sync with portage [Tue Dec 27 11:25:30 MSK 2011].

mhiretskiy
root 13 years ago
parent 5d771f9c16
commit 212a398d08

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/mscompress/mscompress-0.3-r1.ebuild,v 1.2 2011/12/16 13:11:32 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-arch/mscompress/mscompress-0.3-r1.ebuild,v 1.3 2011/12/26 12:19:35 maekke Exp $
EAPI=2
@ -12,7 +12,7 @@ SRC_URI="ftp://ftp.penguin.cz/pub/users/mhi/mscompress/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
IUSE=""
src_prepare() {

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/cpuburn/cpuburn-1.4a.ebuild,v 1.2 2011/12/16 21:02:46 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/cpuburn/cpuburn-1.4a.ebuild,v 1.3 2011/12/26 12:39:45 maekke Exp $
EAPI="2"
@ -13,7 +13,7 @@ SRC_URI="http://pages.sbcglobal.net/redelm/cpuburn_${MY_P}_tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* amd64 ~x86"
KEYWORDS="-* amd64 x86"
IUSE=""
RDEPEND="amd64? ( >=app-emulation/emul-linux-x86-baselibs-1.0 )"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/sysbench/sysbench-0.4.12.ebuild,v 1.1 2011/08/27 09:07:03 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/sysbench/sysbench-0.4.12-r1.ebuild,v 1.1 2011/12/27 05:08:40 patrick Exp $
EAPI="2"
@ -19,8 +19,13 @@ DEPEND="mysql? ( virtual/mysql )
aio? ( dev-libs/libaio )"
RDEPEND="${DEPEND}"
src_configure() {
src_prepare() {
# fix for bug #297590
sed -e 's/SUBDIRS \= doc sysbench/SUBDIRS \= sysbench/' -i Makefile.am || die "sed of makefile failed"
eautoreconf
}
src_configure() {
if ! use aio; then my_econf="--disable-aio"; fi
econf $(use_with mysql mysql /usr) $my_econf || die "econf failed"
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/bchunk/bchunk-1.2.0-r1.ebuild,v 1.2 2011/12/18 11:29:37 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-cdr/bchunk/bchunk-1.2.0-r1.ebuild,v 1.3 2011/12/26 12:38:29 maekke Exp $
inherit toolchain-funcs
@ -10,7 +10,7 @@ SRC_URI="http://he.fi/bchunk/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
KEYWORDS="amd64 ~ppc ~sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE=""
DEPEND=""

@ -0,0 +1,14 @@
diff --git a/telnet/libtelnet/encrypt.c b/telnet/libtelnet/encrypt.c
index f75317d..b8d6cdd 100644
--- a/telnet/libtelnet/encrypt.c
+++ b/telnet/libtelnet/encrypt.c
@@ -757,6 +757,9 @@ static void encrypt_keyid(kp, keyid, len)
int dir = kp->dir;
register int ret = 0;
+ if (len > MAXKEYLEN)
+ len = MAXKEYLEN;
+
if (!(ep = (*kp->getcrypt)(*kp->modep))) {
if (len == 0)
return;

@ -0,0 +1,57 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/mit-krb5-appl/mit-krb5-appl-1.0.2-r1.ebuild,v 1.1 2011/12/26 21:39:56 eras Exp $
EAPI=4
inherit flag-o-matic versionator eutils
MY_P=${P/mit-}
MAJOR_MINOR="$( get_version_component_range 1-2 )"
DESCRIPTION="Kerberized applications split from the main MIT Kerberos V distribution"
HOMEPAGE="http://web.mit.edu/kerberos/www/"
SRC_URI="http://web.mit.edu/kerberos/dist/krb5-appl/${MAJOR_MINOR}/${MY_P}-signed.tar"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
RDEPEND=">=app-crypt/mit-krb5-1.8.0"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
unpack ./"${MY_P}".tar.gz
}
src_prepare() {
epatch "${FILESDIR}"/CVE-2011-4862.patch
}
src_configure() {
append-flags "-I/usr/include/et"
append-flags -fno-strict-aliasing
append-flags -fno-strict-overflow
econf
}
src_install() {
emake DESTDIR="${D}" install
for i in {telnetd,ftpd} ; do
mv "${D}"/usr/share/man/man8/${i}.8 "${D}"/usr/share/man/man8/k${i}.8 \
|| die "mv failed (man)"
mv "${D}"/usr/sbin/${i} "${D}"/usr/sbin/k${i} || die "mv failed"
done
for i in {rcp,rlogin,rsh,telnet,ftp} ; do
mv "${D}"/usr/share/man/man1/${i}.1 "${D}"/usr/share/man/man1/k${i}.1 \
|| die "mv failed (man)"
mv "${D}"/usr/bin/${i} "${D}"/usr/bin/k${i} || die "mv failed"
done
rm "${D}"/usr/share/man/man1/tmac.doc
dodoc README
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/elisp-manual/elisp-manual-23.3.ebuild,v 1.6 2011/11/01 10:16:07 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-doc/elisp-manual/elisp-manual-23.3.ebuild,v 1.7 2011/12/26 14:22:35 ulm Exp $
EAPI=4
@ -16,6 +16,8 @@ SLOT="23"
KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
IUSE=""
DEPEND="app-arch/xz-utils"
S="${WORKDIR}/lispref"
src_prepare() {

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/graphviz-dot-mode/graphviz-dot-mode-0.3.7.ebuild,v 1.4 2011/09/05 13:55:47 naota Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emacs/graphviz-dot-mode/graphviz-dot-mode-0.3.7.ebuild,v 1.5 2011/12/26 14:12:07 ulm Exp $
EAPI=4
@ -17,4 +17,6 @@ SLOT="0"
KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
IUSE=""
DEPEND="app-arch/xz-utils"
SITEFILE="50${PN}-gentoo.el"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/markdown-mode/markdown-mode-1.8.1.ebuild,v 1.4 2011/09/26 16:43:47 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emacs/markdown-mode/markdown-mode-1.8.1.ebuild,v 1.5 2011/12/26 14:17:33 ulm Exp $
EAPI=4
@ -17,4 +17,6 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-arch/xz-utils"
SITEFILE="50${PN}-gentoo.el"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ocaml-mode/ocaml-mode-3.12.1.ebuild,v 1.1 2011/11/21 13:14:10 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emacs/ocaml-mode/ocaml-mode-3.12.1.ebuild,v 1.2 2011/12/26 12:37:18 ago Exp $
EAPI=4
@ -14,7 +14,7 @@ SRC_URI="http://caml.inria.fr/distrib/${MY_P%.*}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
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=""
S="${WORKDIR}/${MY_P}/emacs"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/rudel/rudel-0.3_pre20110721.ebuild,v 1.2 2011/08/23 17:14:37 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emacs/rudel/rudel-0.3_pre20110721.ebuild,v 1.3 2011/12/26 14:09:04 ulm Exp $
EAPI=4
NEED_EMACS=23
@ -18,8 +18,9 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/emacs-cedet"
RDEPEND="${DEPEND}"
RDEPEND="virtual/emacs-cedet"
DEPEND="${RDEPEND}
app-arch/xz-utils"
S="${WORKDIR}/${PN}"
SITEFILE="60${PN}-gentoo.el"

@ -1,4 +1,2 @@
DIST lynis-1.2.1.tar.gz 72632 RMD160 e6bd6d98ce026e10e326ccfce718447034f9d4b4 SHA1 2df1b86bb13813389eb4f878d86d59e3953dcde6 SHA256 24e256770dbc5a50c2088eda6da9ba21c2136db6233e36af38c033cea4aa347f
DIST lynis-1.2.5.tar.gz 96717 RMD160 261a154b3cf17c4515c7df58877a8d2699eb037c SHA1 265a1dea76ce583b5b1f2061c186189fc2a1723d SHA256 8ba51a7b6deb1d0097246edab6e9b6e4f76cc8b6ad720faa23866ca5550bc528
DIST lynis-1.2.6.tar.gz 100254 RMD160 d48a115318140d51dc547ee0fd08fc9d3af030f7 SHA1 bc86f91f9bac5e0f2d64af0189818b3caa7f67c1 SHA256 af94dfcc8909152ca95b233d89bbea2d65c0563b10addf2e84893f8312e82303
DIST lynis-1.2.9.tar.gz 117107 RMD160 cbb803d44e604ef35d09f5cee42f19c1e1be32d6 SHA1 89e45797eb1f88d46337a395cd13812cb33ad066 SHA256 51e69e0d45d6a879a0a22ba1144a49207dad7ed45764172769d67f21f60f5b79
DIST lynis-1.3.0.tar.gz 119797 RMD160 3445fae1523bbdcb9ca47f8dfe60819d05f7b498 SHA1 b60921420277a969cf862b0e0166fe36451057b9 SHA256 fe265965eb1ce8fac352e0bddea1d5ec6508c319bf88a5f63c2edecf2af6de54

@ -1,44 +0,0 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/lynis-1.2.1.ebuild,v 1.4 2008/10/11 11:18:27 bluebird Exp $
DESCRIPTION="Security and system auditing tool"
HOMEPAGE="http://www.rootkit.nl/projects/lynis.html"
SRC_URI="http://www.rootkit.nl/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 sparc x86"
IUSE=""
DEPEND=""
RDEPEND="app-shells/bash"
src_install() {
insinto /usr/share/lynis/db
doins db/*.db || die "failed to install lynis db files"
insinto /usr/share/lynis/include
doins include/* || die "failed to install lynis includes"
insinto /usr/share/lynis/plugins
doins plugins/* || die "failed to install lynis plugins"
dobin lynis || die "failed to install lynis script"
insinto /etc/lynis
doins default.prf || die "failed to install default.prf"
keepdir /etc/lynis
doman lynis.8 || die "doman failed"
dodoc CHANGELOG README INSTALL FAQ TODO || die "dodoc failed"
exeinto /etc/cron.daily
newexe "${FILESDIR}"/lynis.cron lynis || die "failed to install cron script"
}
pkg_postinst() {
echo
elog "A cron script has been installed to ${ROOT}etc/cron.daily/lynis."
echo
}

@ -1,38 +0,0 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/lynis-1.2.6.ebuild,v 1.2 2009/07/29 15:54:36 beandog Exp $
DESCRIPTION="Security and system auditing tool"
HOMEPAGE="http://www.rootkit.nl/projects/lynis.html"
SRC_URI="http://www.rootkit.nl/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~sparc ~x86"
IUSE=""
DEPEND=""
RDEPEND="app-shells/bash"
src_install() {
insinto /usr/share/${PN}
doins -r db/ include/ plugins/ || die "failed to install lynis base files"
dosbin lynis || die "dosbin failed"
insinto /etc/${PN}
doins default.prf || die "failed to install default.prf"
doman lynis.8 || die "doman failed"
dodoc CHANGELOG FAQ README dev/TODO || die "dodoc failed"
# Remove the old one during the next stabilize progress
exeinto /etc/cron.daily
newexe "${FILESDIR}"/lynis.cron-new lynis || die "failed to install cron script"
}
pkg_postinst() {
einfo
einfo "A cron script has been installed to ${ROOT}etc/cron.daily/lynis."
einfo
}

@ -1,6 +1,8 @@
# Copyright 1999-2009 Gentoo Foundation
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/lynis-1.2.5.ebuild,v 1.2 2009/07/29 15:54:36 beandog Exp $
# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/lynis-1.3.0.ebuild,v 1.1 2011/12/26 18:40:08 idl0r Exp $
EAPI="4"
DESCRIPTION="Security and system auditing tool"
HOMEPAGE="http://www.rootkit.nl/projects/lynis.html"
@ -8,7 +10,7 @@ SRC_URI="http://www.rootkit.nl/files/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~sparc ~x86"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE=""
DEPEND=""
@ -24,7 +26,7 @@ src_install() {
doins default.prf || die "failed to install default.prf"
doman lynis.8 || die "doman failed"
dodoc CHANGELOG FAQ README TODO || die "dodoc failed"
dodoc CHANGELOG FAQ README dev/TODO
# Remove the old one during the next stabilize progress
exeinto /etc/cron.daily

@ -1,2 +1,3 @@
DIST openscap-0.7.3.tar.gz 4264040 RMD160 fd2ba5173a23a0df09f641e0630b874d4c5a13dc SHA1 184888158542125c5d9587f375805080a8dc63e4 SHA256 7364f98182891ef6a81674c766cbdc4c53cf86543da2245450f09e43f8987793
DIST openscap-0.7.4.tar.gz 4379825 RMD160 b7fe0273a1a6eec8c1dd6f5ffa776ada36ac896a SHA1 9c9d2aa5adb4fb76b27e1de3f641ab98f94ce87d SHA256 a0fb267f02ea9426f4fe8289b85c1cb2ac0dac6e700eccde0eed3b14bdcf0038
DIST openscap-0.8.0.tar.gz 4473555 RMD160 835506335d0e422783d5fbf71b3a43a407bfdba5 SHA1 826df8826e38e0eb3d5cbed57662577101897061 SHA256 9755ad0ff58354fc50436ee88d605cc7d5e7f06816ff8c972db1272c44d2bc33

@ -0,0 +1,71 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-forensics/openscap/openscap-0.8.0.ebuild,v 1.1 2011/12/26 14:30:28 swift Exp $
EAPI=3
PYTHON_DEPEND="2"
inherit eutils multilib python bash-completion-r1
DESCRIPTION="Framework which enables integration with the Security Content Automation Protocol (SCAP)"
HOMEPAGE="http://www.open-scap.org/"
SRC_URI="http://www.open-scap.org/download/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bash-completion doc nss perl python sql"
RESTRICT="test"
RDEPEND="!nss? ( dev-libs/libgcrypt )
nss? ( dev-libs/nss )
sql? ( dev-db/opendbx )
dev-libs/libpcre
dev-libs/libxml2
dev-libs/libxslt
net-misc/curl"
DEPEND="${RDEPEND}
perl? ( dev-lang/swig )
python? ( dev-lang/swig )"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_configure() {
local myconf
if use python || use perl ; then
myconf+=" --enable-bindings"
else
myconf+=" --disable-bindings"
fi
if use nss ; then
myconf+=" --with-crypto=nss3"
else
myconf+=" --with-crypto=gcrypt"
fi
econf ${myconf}
}
src_install() {
emake install DESTDIR="${D}" || die
find "${D}" -name '*.la' -delete || die
sed -i 's/^Description/&:/' "${D}"/usr/$(get_libdir)/pkgconfig/libopenscap.pc || die
#--enable-bindings enable all bindings, clean unwanted bindings
if use python && ! use perl ; then
rm -rf "${D}"/usr/$(get_libdir)/perl5 || die
fi
if ! use python && use perl ; then
rm -rf "${D}"/$(python_get_sitedir) || die
fi
if use doc ; then
dohtml -r docs/html/* || die
dodoc docs/examples/* || die
fi
if use bash-completion ; then
dobashcomp "${D}"/etc/bash_completion.d/oscap
fi
rm -rf "${D}"/etc/bash_completion.d || die
}

@ -1,2 +1,3 @@
DIST alexandria-0.6.6.tar.gz 2990953 RMD160 a935205782caafff990a859f548eec81eba4ba63 SHA1 edcd808ab2fd7407bfbacdd8ecd7f0346e871b1d SHA256 42a9c81288b13190928166c67592426d893a8fba98293fca98e1fb9f36054ce0
DIST alexandria-0.6.7.tar.gz 3014178 RMD160 f00041ee8afc0c97fd4412d7b73786d9ba1a096a SHA1 0a31bd9bb1e626e5451f01c900ac9ad9c25f5e1c SHA256 47991fc42884187974ac600b1b9db6f57546d4ea6af3ef0c125519d95bbd710b
DIST alexandria-0.6.8.tar.gz 2888984 RMD160 a77d9eb81a2ecb6af578403a10e2b1786091ec0a SHA1 8c85085d58acd73ce2f982bc4636d949121770ee SHA256 d6bd9d6619a0bda5992a0df440404726c63cda57c49bfe0f57d5e21506866770

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/alexandria/alexandria-0.6.7.ebuild,v 1.1 2011/12/13 19:26:15 fauli Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/alexandria/alexandria-0.6.7.ebuild,v 1.2 2011/12/26 12:35:17 ago Exp $
EAPI=2
USE_RUBY="ruby18"
@ -13,7 +13,7 @@ SRC_URI="mirror://rubyforge/${PN}/${PN}-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
KEYWORDS="amd64 ~ppc ~x86"
IUSE="evo"
DOCS="ChangeLog README TODO doc/BUGS doc/cuecat_support.rdoc doc/FAQ doc/HACKING doc/NEWS"

@ -0,0 +1,73 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/alexandria/alexandria-0.6.8.ebuild,v 1.1 2011/12/26 10:56:58 fauli Exp $
EAPI=4
USE_RUBY="ruby18"
inherit gnome2 ruby-ng
DESCRIPTION="A GNOME application to help you manage your book collection"
HOMEPAGE="http://alexandria.rubyforge.org/"
SRC_URI="mirror://rubyforge/${PN}/${PN}-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="evo"
DOCS="ChangeLog README TODO doc/BUGS doc/cuecat_support.rdoc doc/FAQ doc/HACKING doc/NEWS"
ruby_add_rdepend "
>=dev-ruby/ruby-gettext-0.6.1
>=dev-ruby/ruby-gtk2-0.90
>=dev-ruby/ruby-goocanvas-0.90
>=dev-ruby/ruby-gstreamer-0.90
>=dev-ruby/ruby-pango-0.90
>=dev-ruby/imagesize-0.1.1
dev-ruby/hpricot
evo? ( >=dev-ruby/revolution-0.5 )"
ruby_add_bdepend "dev-ruby/rake"
DEPEND="${DEPEND}
gnome-base/gconf:2
app-text/scrollkeeper"
RUBY_PATCHES=(
"${FILESDIR}/${P}-set_status_label.patch"
"${FILESDIR}/${PN}-0.6.6-Rakefile.patch"
)
each_ruby_compile() {
${RUBY} -S rake || die
}
each_ruby_install() {
export DESTDIR="${D}" PREFIX=/usr RUBYLIBDIR="$(ruby_rbconfig_value 'sitelibdir')"
${RUBY} -S rake install_package_staging || die
}
all_ruby_install() {
[ -n "${DOCS}" ] && dodoc ${DOCS} || die "Failed to install documentation"
}
pkg_postinst() {
unset PREFIX
gnome2_gconf_install
# For the next line see bug #76726
"${ROOT}/usr/bin/gconftool-2" --shutdown
echo
elog "To enable some book providers you will need to emerge"
elog "additional packages:"
echo
elog " For the Deastore book provider:"
elog " dev-ruby/htmlentities"
echo
elog " For Z39.50 support and the Library of Congress and"
elog " British Library book proviers:"
elog " dev-ruby/ruby-zoom"
}

@ -0,0 +1,11 @@
--- lib/alexandria/ui/dialogs/new_book_dialog.rb.orig
+++ lib/alexandria/ui/dialogs/new_book_dialog.rb
@@ -574,7 +574,7 @@
log.debug { "update message : #{message}" }
# @parent.appbar.status = message
- MainApp.instance.appbar.status = message # HACKish
+ MainApp.instance.ui_manager.set_status_label( message )
#false
end
end

@ -1,3 +1,4 @@
DIST byobu_4.52.orig.tar.gz 403607 RMD160 bcb16bf3254562c7ef65dd9130ea2cca97a7ba59 SHA1 220e8b91e736ac501f372f5005a20f8a94cb5558 SHA256 04ab143b484a351dac1eb2ff60aee819ba0c6b119f47e7473858619c528480b2
DIST byobu_4.54.orig.tar.gz 405398 RMD160 6fcedb9755d16455d0cce9af047bda2598259fdb SHA1 3768b2078f634d56d589f8c1720afa089504981c SHA256 9f04b71f131ee471b3719efe49c7e4243623e6103864c87e0993d98516291995
DIST byobu_4.55.orig.tar.gz 444603 RMD160 0dcfe530095e3b3fdf4217d7e945a3b7ea2c3f59 SHA1 4b3ad381cfc106e3402d280009c19476359eac6d SHA256 f5c1c6c097873a0d94f88ddf94aabd79927701676b6bd5e980a9488a16f22592
DIST byobu_5.0.orig.tar.gz 445115 RMD160 e628ff16a1dc46ece54a578d172c1a108ace42eb SHA1 6673d28defbca05fda27c793e992075f9e663240 SHA256 1ae783a8250f846b41f7366feeb806ca94f1d90c3c025899ca1b0c1ac1d5ca67

@ -0,0 +1,32 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/byobu/byobu-5.0.ebuild,v 1.1 2011/12/26 22:12:02 radhermit Exp $
EAPI="4"
PYTHON_DEPEND="2"
inherit python
DESCRIPTION="A set of profiles for the GNU Screen console window manager (app-misc/screen)"
HOMEPAGE="https://launchpad.net/byobu"
SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P/-/_}.orig.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="|| ( app-misc/screen app-misc/tmux )
dev-libs/newt"
src_prepare() {
python_convert_shebangs -r 2 .
}
src_install() {
emake DESTDIR="${D}" install
# Create symlinks for backends
dosym ${PN} /usr/bin/${PN}-screen
dosym ${PN} /usr/bin/${PN}-tmux
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/ca-certificates/ca-certificates-20111025.ebuild,v 1.4 2011/12/22 12:32:31 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/ca-certificates/ca-certificates-20111025.ebuild,v 1.5 2011/12/26 11:32:31 maekke Exp $
EAPI="3"
@ -13,7 +13,7 @@ SRC_URI="mirror://debian/pool/main/c/${PN}/${PN}_${PV}${NMU_PR:++nmu}${NMU_PR}_a
LICENSE="MPL-1.1"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
IUSE=""
# platforms like AIX don't have a good ar

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/kword/kword-2.3.3-r1.ebuild,v 1.5 2011/12/11 15:38:48 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-office/kword/kword-2.3.3-r1.ebuild,v 1.6 2011/12/26 14:34:56 maekke Exp $
EAPI=3
@ -10,7 +10,7 @@ inherit kde4-meta
DESCRIPTION="KOffice word processor"
KEYWORDS="amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="wpd"
SRC_URI+=" http://dev.gentoo.org/~dilfridge/distfiles/kword-2.3.3-libwpg02.patch.bz2"

@ -1,2 +1 @@
DIST rabbit-0.6.4.tar.gz 5895707 RMD160 0243187185641923232c71fffd16d4ce22cf73bb SHA1 77b9850a2a616b45790735ec544d039503fd2327 SHA256 fa9cf8a9fb6db565b3e574086c8273afc1f4722b7cf73637b12dea06b1f65fc5
DIST rabbit-0.9.2.tar.gz 6088701 RMD160 3d078b948524f2d1a13f754b1c67582d58b7b835 SHA1 caa1492e3ffb4aa2ef5513af1cd32827280b3da0 SHA256 17f5a195ff85453733c8d67f5ad8af794f446081c1729efb2b5f76f033b3c9e7

@ -1,72 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/rabbit/rabbit-0.6.4-r1.ebuild,v 1.2 2011/03/12 11:50:03 graaff Exp $
EAPI=2
USE_RUBY="ruby18"
inherit ruby-ng elisp-common eutils
DESCRIPTION="An application to do presentation with RD document"
HOMEPAGE="http://www.cozmixng.org/~rwiki/?cmd=view;name=Rabbit"
SRC_URI="http://www.cozmixng.org/~kou/download/${P}.tar.gz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls gs migemo tgif enscript emacs"
CDEPEND="emacs? ( virtual/emacs )"
DEPEND="${DEPEND} ${CDEPEND}"
RDEPEND="${RDEPEND} ${CDEPEND}
nls? ( dev-ruby/ruby-gettext )
gs? ( app-text/ghostscript-gpl )
migemo? ( app-text/migemo )
enscript? ( app-text/enscript )
tgif? ( media-gfx/tgif )"
ruby_add_rdepend "
dev-ruby/ruby-gnome2
>=dev-ruby/ruby-gdkpixbuf2-0.15.0
dev-ruby/rdtool"
each_ruby_configure() {
${RUBY} setup.rb config --prefix=/usr || die
${RUBY} setup.rb setup || die
}
all_ruby_compile() {
if use emacs; then
cd "${S}/misc/emacs"
elisp-compile rabbit-mode.el
fi
}
each_ruby_test() {
${RUBY} test/run-test.rb || die "Tests failed."
}
each_ruby_install() {
${RUBY} setup.rb install --prefix="${D}"
}
all_ruby_install() {
dodoc NEWS.en NEWS.ja README.en README.ja TODO || die
if use emacs; then
cd "${S}/misc/emacs"
elisp-install rabbit-mode rabbit-mode.el{,c}
elisp-site-file-install "${FILESDIR}/50rabbit-mode-gentoo.el"
fi
insinto /usr/share/doc/${PF}
doins -r sample
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/cfg-update/cfg-update-1.8.7.ebuild,v 1.2 2011/12/11 15:01:39 rich0 Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/cfg-update/cfg-update-1.8.7.ebuild,v 1.3 2011/12/26 14:38:15 maekke Exp $
EAPI=2
inherit eutils
@ -11,7 +11,7 @@ SRC_URI="https://github.com/rich0/cfg-update/tarball/${PV} -> ${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc ~sparc ~x86"
KEYWORDS="amd64 ~arm ~ppc ~sparc x86"
IUSE="X"
RDEPEND="X? ( >=x11-misc/sux-1.0

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/gentoolkit-0.3.0.4-r5.ebuild,v 1.4 2011/12/20 21:55:02 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/gentoolkit/gentoolkit-0.3.0.4-r5.ebuild,v 1.5 2011/12/26 11:24:53 maekke Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -18,7 +18,7 @@ LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~x86-fbsd ~x64-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
# Note: argparse is provided in python 2.7 and 3.2 (Bug 346005)
DEPEND="sys-apps/portage"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/rhyme/rhyme-0.9-r1.ebuild,v 1.2 2011/12/16 12:19:57 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/rhyme/rhyme-0.9-r1.ebuild,v 1.3 2011/12/26 12:40:47 maekke Exp $
EAPI="2"
@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/rhyme/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~x86"
KEYWORDS="~alpha amd64 x86"
IUSE=""
DEPEND=">=sys-libs/readline-4.3

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/tree/tree-2.65-r1.ebuild,v 1.2 2011/12/14 20:57:37 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/tree/tree-2.65-r1.ebuild,v 1.3 2011/12/26 12:30:08 maekke Exp $
EAPI=2
inherit eutils toolchain-funcs
@ -11,7 +11,7 @@ SRC_URI="http://www.aei.mpg.de/~peekas/tree/${P}.tar.gz"
LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
KEYWORDS="amd64 ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc"
DEPEND=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild,v 1.3 2011/12/18 18:27:31 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-super-smack/mysql-super-smack-1.3-r2.ebuild,v 1.4 2011/12/26 12:22:47 maekke Exp $
WANT_AUTOMAKE="1.4"
EAPI=2
@ -15,7 +15,7 @@ SRC_URI="http://vegan.net/tony/supersmack/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
KEYWORDS="amd64 ~ppc x86"
IUSE="+mysql postgres"
DEPEND="mysql? ( virtual/mysql )

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.4.9.ebuild,v 1.3 2011/12/24 18:42:36 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/phpmyadmin/phpmyadmin-3.4.9.ebuild,v 1.4 2011/12/27 00:26:07 halcy0n Exp $
EAPI="2"
@ -14,7 +14,7 @@ HOMEPAGE="http://www.phpmyadmin.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~alpha amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="setup"
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.4.ebuild,v 1.1 2011/11/24 00:47:19 reavertm Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.4.ebuild,v 1.2 2011/12/26 14:36:07 maekke Exp $
EAPI=4
@ -8,7 +8,7 @@ inherit virtuoso
DESCRIPTION="ODBC driver for OpenLink Virtuoso Open-Source Edition"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/virtuoso-server/virtuoso-server-6.1.3-r2.ebuild,v 1.2 2011/12/15 16:16:13 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/virtuoso-server/virtuoso-server-6.1.3-r2.ebuild,v 1.3 2011/12/26 14:37:09 maekke Exp $
EAPI=4
@ -8,7 +8,7 @@ inherit virtuoso
DESCRIPTION="Server binaries for Virtuoso, high-performance object-relational SQL database"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="kerberos ldap readline"
# Bug 305077

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cgi/cgi-3001.1.7.1.ebuild,v 1.4 2011/12/19 16:29:47 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cgi/cgi-3001.1.7.1.ebuild,v 1.5 2011/12/26 12:18:45 maekke Exp $
CABAL_FEATURES="lib profile haddock"
inherit haskell-cabal
@ -11,7 +11,7 @@ SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86"
KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
IUSE=""
RDEPEND=">=dev-lang/ghc-6.6.1

@ -1,4 +1,5 @@
DIST parrot-2.11.0.tar.bz2 3155738 RMD160 22d1dccbbcb71788f6e9a6fe69c31a5b5e1276cc SHA1 a17aa732cdf8a76209d6521b5be6feee832c6f13 SHA256 7f3e80f76426235d104779dc7bf24c79dcd1fc419acfafbeee00c61daf210e1f
DIST parrot-3.11.0.tar.bz2 4303200 RMD160 01674c4f6d3ab0bca5761db5a33049548e2e69d4 SHA1 22d0bd277c956167eb0b8e6a41c211541ba0733e SHA256 e493df95484be7958f3e82637dbadc7ec9a632ed12bcdd0c1d8fff1e249f1f10
DIST parrot-3.3.0.tar.bz2 3251469 RMD160 c205453cc03d6cb28d68c8b1c2c4f3d27a57fa84 SHA1 29c1ecb21afde110088d52e0c472508ca3d83f82 SHA256 8f474d44a0137a3fd5296c019dbccc6ae64193ff12ce799babc362567115c1ad
DIST parrot-3.6.0.tar.bz2 3302266 RMD160 fff2ba9cc243e36f270338700cfc44e8ab622941 SHA1 82f5cc7115dc654c7452672b059355b7d3b5a78b SHA256 a6ae5c4a1af3602043d1139a12ae9d4dfe2dd000250b1a76fc339bf4a004f8c7
DIST parrot-3.9.0.tar.bz2 4305319 RMD160 ddbbac73350e314b108f4062631bc2bedbfe7ec3 SHA1 1f6328eea6e63be2d903e0bc8eb45391d77254b5 SHA256 923b5ef403c26dd94c04127940659aea94516f79243a80de65fbababff44bfad

@ -0,0 +1,78 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-3.11.0.ebuild,v 1.1 2011/12/27 05:35:33 patrick Exp $
EAPI=3
inherit eutils multilib
DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages"
HOMEPAGE="http://www.parrot.org/"
SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/devel/${PV}/${P}.tar.bz2"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre"
RDEPEND="sys-libs/readline
opengl? ( media-libs/freeglut )
nls? ( sys-devel/gettext )
unicode? ( >=dev-libs/icu-2.6 )
gdbm? ( >=sys-libs/gdbm-1.8.3-r1 )
gmp? ( >=dev-libs/gmp-4.1.4 )
ssl? ( dev-libs/openssl )
pcre? ( dev-libs/libpcre )"
DEPEND="dev-lang/perl[doc?]
${RDEPEND}"
src_configure() {
myconf="--disable-rpath"
use unicode || myconf+=" --without-icu"
use ssl || myconf+=" --without-crypto"
use gdbm || myconf+=" --without-gdbm"
use nls || myconf+=" --without-gettext"
use gmp || myconf+=" --without-gmp"
use opengl || myconf+=" --without-opengl"
use pcre || myconf+=" --without-pcre"
perl Configure.pl \
--ccflags="${CFLAGS}" \
--linkflags="${LDFLAGS}" \
--prefix="${EPREFIX}"/usr \
--libdir="${EPREFIX}"/usr/$(get_libdir) \
--mandir="${EPREFIX}"/usr/share/man \
--sysconfdir="${EPREFIX}"/etc \
--sharedstatedir="${EPREFIX}"/var/lib/parrot \
$myconf || die
}
src_compile() {
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib
# occasionally dies in parallel make
emake -j1 || die
if use doc ; then
emake -j1 html || die
fi
}
src_test() {
emake -j1 test || die
}
src_install() {
emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die
dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die
if use examples; then
insinto "/usr/share/doc/${PF}/examples"
doins -r examples/* || die
fi
if use doc; then
insinto "/usr/share/doc/${PF}/editor"
doins -r editor || die
cd docs/html
dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \
pmc.html tools.html docs src tools || die
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-5.0.2_p1.ebuild,v 1.7 2011/12/23 01:46:35 mattst88 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-5.0.2_p1.ebuild,v 1.8 2011/12/26 11:21:51 maekke Exp $
inherit flag-o-matic eutils libtool toolchain-funcs
@ -14,7 +14,7 @@ SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.bz2
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="doc cxx static-libs"
DEPEND="sys-devel/m4"

@ -1,2 +1,3 @@
DIST libassuan-2.0.1.tar.bz2 494384 RMD160 2064f7f977f7084ba4780e0a87de0c808ee6f680 SHA1 b7e9dbd41769cc20b1fb7db9f2ecdf276ffc352c SHA256 1117be532ac41b13790b4756df7fa747d3d04264f7b4544aa9d7ff468a24b457
DIST libassuan-2.0.2.tar.bz2 491172 RMD160 7ba0138d83f242da3fd2ebae6f9deef6383329a6 SHA1 dbcd96e2525d4c3a2da9e8054a06fa517f20a185 SHA256 61e0cba33dcbade2dce953b95f06b843af2a73de875303f2585227ecd475b4d8
DIST libassuan-2.0.3.tar.bz2 529149 RMD160 243d2f59e8d8ff4875acb57ff6e63a466f2b7574 SHA1 2bf4eba3b588758e349976a7eb9e8a509960c3b5 SHA256 bad5682374c76bcc0abb1a7a34c9557af6874a477500748e64a7d3def79cac1b

@ -0,0 +1,29 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libassuan/libassuan-2.0.3.ebuild,v 1.1 2011/12/26 22:03:46 radhermit Exp $
EAPI=4
DESCRIPTION="IPC library used by GnuPG and GPGME"
HOMEPAGE="http://www.gnupg.org/related_software/libassuan/index.en.html"
SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
LICENSE="GPL-3 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="static-libs"
RDEPEND=">=dev-libs/libgpg-error-1.8"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
# ppl need to use libassuan-config for --cflags and --libs
rm -f "${ED}"usr/lib*/${PN}.la
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PAR/PAR-1.5.0.ebuild,v 1.2 2011/12/17 17:30:37 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PAR/PAR-1.5.0.ebuild,v 1.3 2011/12/26 12:49:53 maekke Exp $
EAPI=4
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Perl Archive Toolkit"
SLOT="0"
KEYWORDS="amd64 ~x86 ~x86-solaris"
KEYWORDS="amd64 x86 ~x86-solaris"
IUSE=""
DEPEND="virtual/perl-AutoLoader

@ -1 +1,2 @@
DIST Beaker-1.5.4.tar.gz 46238 RMD160 a60e052a362a6fbf0d3564caaff625879fdef37f SHA1 72a696854e36e2ea92f4535209e4538baf06caa0 SHA256 a13dc6ae0e9490c85fc2c1ba035ea5b21cd684ee3b4b70b6a9e473f0550a716b
DIST Beaker-1.6.2.tar.gz 52442 RMD160 884e51529daa9281be61089e0fc5f385aa3849cd SHA1 d3256b99f57ae99e042c9385068a0a515d0ebd64 SHA256 23e42350783dc6457f5b771b195f0e47be8605a9a75786cb35e0ecb8c1d430ea

@ -0,0 +1,37 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/beaker/beaker-1.6.2.ebuild,v 1.2 2011/12/26 09:06:09 patrick Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4"
PYTHON_TESTS_RESTRICTED_ABIS="3.*"
PYTHON_TESTS_FAILURES_TOLERANT_ABIS="*-jython"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
MY_PN="Beaker"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A Session and Caching library with WSGI Middleware"
HOMEPAGE="http://beaker.groovie.org/ http://pypi.python.org/pypi/Beaker"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
IUSE="test"
DEPEND="dev-python/setuptools
test? ( dev-python/webtest )"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_prepare() {
distutils_src_prepare
# Workaround for http://bugs.python.org/issue11276.
sed -e "s/import anydbm/& as anydbm/;/import anydbm/a dbm = anydbm" -i beaker/container.py
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/cython-0.15.1.ebuild,v 1.2 2011/12/17 22:04:22 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/cython-0.15.1.ebuild,v 1.3 2011/12/26 12:01:39 patrick Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -20,7 +20,7 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE="doc examples numpy"
DEPEND="numpy? ( dev-python/numpy )"
DEPEND="numpy? ( >=dev-python/numpy-1.6.1-r1 )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_PN}-${PV%_*}"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/egenix-mx-base/egenix-mx-base-3.2.1-r1.ebuild,v 1.2 2011/12/24 12:33:33 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/egenix-mx-base/egenix-mx-base-3.2.1-r1.ebuild,v 1.3 2011/12/26 12:37:08 maekke Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -15,7 +15,7 @@ SRC_URI="http://downloads.egenix.com/python/${P}.tar.gz"
LICENSE="eGenixPublic-1.1"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE=""
DEPEND=""

@ -1,2 +1,3 @@
DIST jonpy-0.07.tar.gz 48845 RMD160 0f79754c028990add38b21107e58f37902d6e227 SHA1 1bf08b679ccb3b55cb7a60c1bc94c2e55782fff5 SHA256 bbcaef6220c392d62756fe8810b31de08f311bae5760c72cbac6376090d7979b
DIST jonpy-0.09.tar.gz 51280 RMD160 417ac9c3cf17e63b02867c94b1de3fd63958a75f SHA1 8698ba944c30548fa1c64530555c15dc99261ce4 SHA256 d14f848a6b129431a040dbb3c09aaffe817379d69823521c671a42bb129bc442
DIST jonpy-0.10.tar.gz 51672 RMD160 614aae3cf3c72095c6c81fc02eb9fdc16be7f9d4 SHA1 e1cdbaab6ccdf4dedd954f177346ce5a075faaf6 SHA256 33f43845b6403a2596d89e2210ba043d73facd39937e04eb59d0b7ef683b9456

@ -0,0 +1,37 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/jonpy/jonpy-0.10.ebuild,v 1.1 2011/12/26 08:09:26 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils
DESCRIPTION="Powerful multi-threaded object-oriented CGI/FastCGI/mod_python/html-templating facilities"
HOMEPAGE="http://jonpy.sourceforge.net/ http://pypi.python.org/pypi/jonpy"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86"
IUSE="doc examples"
DEPEND=""
RDEPEND=""
PYTHON_MODNAME="jon"
src_install() {
distutils_src_install
if use doc; then
dohtml doc/*
fi
if use examples; then
insinto /usr/share/doc/${PF}
doins -r example
fi
}

@ -1 +1,2 @@
DIST mwlib-0.12.13.tar.gz 2657430 RMD160 984008ba8b516ea0b1c3273f3e6f91788d70298b SHA1 d40a47a5c2747d3d9f62249023ed2e32c274ded8 SHA256 a0af051a131e8c170f7a97ee1ea0f63b64fb9e50dd882b39294ad8e6cd1ce33f
DIST mwlib-0.12.17.zip 1849010 RMD160 4d9915d00e6d18749695d31f957f8d57a9721876 SHA1 f1952737eea0bbbf4b92c2dc9eb644874216d3e7 SHA256 5ea76e8a696a12269dfaac984b302fbbafbfd292bb4d620915013b5b3fd8f2fc

@ -0,0 +1,38 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/mwlib/mwlib-0.12.17.ebuild,v 1.1 2011/12/26 13:22:55 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.*"
inherit distutils
DESCRIPTION="Tools for parsing Mediawiki content to other formats"
HOMEPAGE="http://code.pediapress.com/wiki/wiki http://pypi.python.org/pypi/mwlib"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-lang/perl
>=dev-python/flup-1.0
dev-python/imaging
>=dev-python/lockfile-0.8
dev-python/lxml
=dev-python/odfpy-0.9*
>=dev-python/pyPdf-1.12
>=dev-python/pyparsing-1.4.11
>=dev-python/timelib-0.2
>=dev-python/twisted-9.0.0-r1
>=dev-python/twisted-web-9.0.0
>=dev-python/webob-0.9
virtual/latex-base
|| ( dev-lang/python:2.7 dev-lang/python:2.6 >=dev-python/simplejson-1.3 )"
DEPEND="${RDEPEND}
dev-python/setuptools"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.4.2.ebuild,v 1.2 2011/12/24 12:34:33 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.4.2.ebuild,v 1.3 2011/12/26 12:35:38 maekke Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="debug doc examples mxdatetime"
RDEPEND=">=dev-db/postgresql-base-8.1

@ -1 +1,2 @@
DIST pyserial-2.5.tar.gz 106278 RMD160 026c5937d5fba67a72445b5c193a337aa3776505 SHA1 fd991f9cf9bb02dfb3bd2cb48b582c2216f90031 SHA256 eddd22280e0dac0888c6cddd8906ebd902fa42467fee151c43ecde4196bbf511
DIST pyserial-2.6.tar.gz 116289 RMD160 a544cb4ac0dad2c7f93855f1db1be102cdb1e9cc SHA1 39e6d9a37b826c48eab6959591a174135fc2873c SHA256 049dbcda0cd475d3be903e721d60889ee2cc4ec3b62892a81ecef144196413ed

@ -0,0 +1,23 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyserial/pyserial-2.6.ebuild,v 1.1 2011/12/26 07:06:36 patrick Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
inherit distutils eutils
DESCRIPTION="Python Serial Port Extension"
HOMEPAGE="http://pyserial.sourceforge.net/ http://sourceforge.net/projects/pyserial/ http://pypi.python.org/pypi/pyserial"
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 ~x86-fbsd"
IUSE=""
DEPEND=""
RDEPEND=""
DOCS="CHANGES.txt README.txt"
PYTHON_MODNAME="serial"

@ -1 +1,2 @@
DIST pySVG-0.2.0.zip 863613 RMD160 78c4beb0fd810f4cc50fa2b04fa04ba6b2e3111c SHA1 1ab0240515dc87a2093c10128cb43a3b15f3c442 SHA256 93d0ab08c6066298921362b3d0cd220c1c4f70b8cd4bb926502c19c6312ece0b
DIST pysvg-0.2.1.zip 24216 RMD160 017b57109fdac8103c373e35f6c2635c564ef8b9 SHA1 8163cd74ea8850d1f4e5db85d49ccd3ec9556a86 SHA256 f447d39d47674176d277a21616597812c662d62834e136360e86d3f914270f36

@ -0,0 +1,21 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvg/pysvg-0.2.1.ebuild,v 1.1 2011/12/26 07:14:03 patrick Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
inherit eutils distutils
DESCRIPTION="Python SVG document creation library"
HOMEPAGE="http://codeboje.de/pysvg/"
SRC_URI="http://pysvg.googlecode.com/files/${P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
RESTRICT_PYTHON_ABIS="3.*"

@ -1,2 +1,3 @@
DIST dist-python-distutils-extra-2.19.tar.gz 26859 RMD160 a83c0e79f09376facec82720f58442899e88c180 SHA1 695d5c71a232f09894190d41400637acd2eb113b SHA256 18d72b327adad6097a687a533d9e514d31a76d1fab9c1ed657fed54e9ed6c171
DIST python-distutils-extra-2.23.tar.gz 26349 RMD160 69c898516477469c4864f6160fea5f261f26ac56 SHA1 25a2b6ff3bb632dbc0adb09e5a142483716feceb SHA256 bb862f24e5b5c3a297b7b57221088dd8ca6e42fb3e92bc1a2b742aae06a84883
DIST python-distutils-extra-2.29.tar.gz 26468 RMD160 ea9fe2317f7423e47af928b856fd3fb99a37e815 SHA1 c42c16bd6d98242f98995c5011f655ae47c891b1 SHA256 34dca32443b119d7c70367cb12f705194f14c1423c650dc406ce9fd8d27588b2

@ -0,0 +1,49 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.29.ebuild,v 1.1 2011/12/26 12:11:25 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils
DESCRIPTION="You can integrate gettext support, themed icons and scrollkeeper based documentation in distutils."
HOMEPAGE="https://launchpad.net/python-distutils-extra"
SRC_URI="http://launchpad.net/python-distutils-extra/trunk/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND="${DEPEND}"
DOCS="doc/FAQ doc/README doc/setup.cfg.example doc/setup.py.example"
PYTHON_MODNAME="DistUtilsExtra"
src_prepare() {
distutils_src_prepare
# Disable broken tests.
sed \
-e "s/test_desktop/_&/" \
-e "s/test_po(/_&/" \
-e "s/test_policykit/_&/" \
-e "s/test_requires_provides/_&/" \
-i test/auto.py
}
src_test() {
# 5 tests fail with disabled byte-compilation.
python_enable_pyc
testing() {
PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/auto.py
}
python_execute_function testing
python_disable_pyc
}

@ -1 +1,2 @@
DIST python-musicbrainz2-0.7.3.tar.gz 75543 RMD160 34ac50fef5cca764f658afeae99f094d72e43f52 SHA1 f862f2ed39fd0b872adfcaf0f3ac7a1f7846d000 SHA256 3640fbdbbccb07e57c61cb25d9d17b76238ce8ad6a650bc7eff57d9693e67de7
DIST python-musicbrainz2-0.7.4.tar.gz 76939 RMD160 39ed43751190a586e40938ac9b7fb0f25bfed442 SHA1 c59872b473bd1cadff8bacbe258fed0831938c80 SHA256 728fbe415da98dad5c4d462e56cf106cf50cc28eb6a9f46b8ebabc3029f37fb9

@ -0,0 +1,56 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-musicbrainz/python-musicbrainz-0.7.4.ebuild,v 1.1 2011/12/27 05:17:16 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
# ctypes module required.
RESTRICT_PYTHON_ABIS="2.4 3.* *-jython"
inherit distutils
MY_PN="${PN}2"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python Bindings for the MusicBrainz XML Web Service"
HOMEPAGE="http://musicbrainz.org"
SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
IUSE="doc examples"
RDEPEND="media-libs/libdiscid"
DEPEND="${RDEPEND}
doc? ( dev-python/epydoc )"
S="${WORKDIR}/${MY_P}"
DOCS="AUTHORS.txt CHANGES.txt README.txt"
PYTHON_MODNAME="musicbrainz2"
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
"$(PYTHON -f)" setup.py docs || die "Generation of documentation failed"
fi
}
src_install() {
distutils_src_install
if use doc; then
dohtml html/* || die "Installation of documentation failed"
fi
if use examples; then
docinto examples
dodoc examples/*.txt || die "dodoc failed"
insinto /usr/share/doc/${PF}/examples
doins examples/*.py || die "doins failed"
fi
}

@ -1,11 +1,11 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-2.1.10.ebuild,v 1.3 2011/12/21 08:22:25 phajdan.jr Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-2.1.10.ebuild,v 1.4 2011/12/26 10:34:58 djc Exp $
EAPI="3"
PYTHON_DEPEND="*:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 *-jython"
RESTRICT_PYTHON_ABIS="2.4 *-jython *pypy*"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils eutils

@ -1,11 +1,11 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-2.1.11.ebuild,v 1.1 2011/12/19 10:25:25 djc Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyzmq/pyzmq-2.1.11.ebuild,v 1.2 2011/12/26 10:34:58 djc Exp $
EAPI="3"
PYTHON_DEPEND="*:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 *-jython"
RESTRICT_PYTHON_ABIS="2.4 *-jython *pypy*"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils eutils

@ -3,3 +3,4 @@ DIST distribute-0.6.15.tar.gz 289103 RMD160 6148fec3096d201ca1ca1fec895aa529e92b
DIST distribute-0.6.16.tar.gz 288263 RMD160 47e04a6e11665ed7face5dee98d7ee55e9100205 SHA1 d31026d1b80f6340d4a85b9b45e5a5703d443104 SHA256 1edb8f34303a9af42db419bc5cfd189572351797d57b62c03e6dc7bf61168b56
DIST distribute-0.6.19.tar.gz 399367 RMD160 7acad7c1847ed48f286fc66387941276a39fc021 SHA1 4b9569319aa8cc283030b3d996b5d88e022c684f SHA256 5fcb8463f9a5d485ff3668ed7996849df78f922592248cb0b84528a61d52e58a
DIST distribute-0.6.21.tar.gz 399934 RMD160 3a2581ed9eb338b17f27e283bb6f6050cf62ff17 SHA1 4bc3df524ba1d684ba997caab3346040551a3820 SHA256 1ed4b5895e722b06f6701f56dd227dd6aa25cbfc0c76ce0465b755ed92f52097
DIST distribute-0.6.24.tar.gz 620771 RMD160 cc4ce95fbe0ef249acb2ef2ec6a06b6b83683788 SHA1 0670bdbba2be6892f67a6f946259776fa8331525 SHA256 c61fde9f388c9600eb8ee54bd7168039c5fb74fa334138bc49cdf6a6c1341627

@ -0,0 +1,54 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/setuptools/setuptools-0.6.24.ebuild,v 1.1 2011/12/27 04:53:54 patrick Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils eutils
MY_PN="distribute"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Distribute (fork of Setuptools) is a collection of extensions to Distutils"
HOMEPAGE="http://pypi.python.org/pypi/distribute"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}/${MY_P}"
DOCS="README.txt docs/easy_install.txt docs/pkg_resources.txt docs/setuptools.txt"
PYTHON_MODNAME="easy_install.py pkg_resources.py setuptools site.py"
src_prepare() {
distutils_src_prepare
epatch "${FILESDIR}/${PN}-0.6_rc7-noexe.patch"
epatch "${FILESDIR}/distribute-0.6.16-fix_deprecation_warnings.patch"
# Disable tests requiring network connection.
rm -f setuptools/tests/test_packageindex.py
}
src_test() {
# test_install_site_py fails with disabled byte-compiling in Python 2.7 / >=3.2.
python_enable_pyc
distutils_src_test
python_disable_pyc
find "(" -name "*.pyc" -o -name "*\$py.class" ")" -print0 | xargs -0 rm -f
find -name "__pycache__" -print0 | xargs -0 rmdir
}
src_install() {
DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT="1" DONT_PATCH_SETUPTOOLS="1" distutils_src_install
}

@ -1,3 +1,3 @@
DIST simplejson-2.1.6.tar.gz 52356 RMD160 9e494c400eeae677c4a024c6b1a8b37da912eb5d SHA1 36d07a336390d47d2420fbbe9a4803c1a1fe2eac SHA256 b657d4c83a2ffd9c3bdb511eabd986900182870421dceb6b7b117c5407523927
DIST simplejson-2.2.0.tar.gz 49802 RMD160 443bbc569eed849296e468d14928a219eca5a2d5 SHA1 7bc5abb7547dcfcf6ff005e51abc08249821c98f SHA256 7c19802af7d44171836f9479f791328913bcfeb9bc193c876465dc758c9be2d5
DIST simplejson-2.2.1.tar.gz 49957 RMD160 c50cf48bf38a734dbd5905c8b4a136c7c2fa56bc SHA1 e48daf374f6131f7875e790a84c218df7a2a710b SHA256 e85c5ae24dd9827113893c1dd2c799528195057388096f0fc45ad4b32b378c26
DIST simplejson-2.3.0.tar.gz 50034 RMD160 0f1a8ccff3d034d434a8458e2f3c296624932a89 SHA1 70db51ccb0861acd34523be22a297026a61f68fc SHA256 dc026631646d32fda40be754484c67918617db37f517547462aa58ae5d159d34

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-2.2.0.ebuild,v 1.2 2011/12/18 17:29:50 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-2.3.0.ebuild,v 1.1 2011/12/26 09:57:14 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -18,7 +18,7 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE=""
DEPEND="dev-python/setuptools"
DEPEND=""
RDEPEND=""
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")

@ -1 +1,2 @@
DIST timelib-0.2.2.tar.gz 289526 RMD160 fd91db180b1f5895463441b1f3cc7caf965dca20 SHA1 495844a721e4584a35e8eab96b16d3dbd368f9aa SHA256 80fae14e86d71e375290bd460f3c4de6b6f8742e55fca089d6f04303222c7e19
DIST timelib-0.2.3.zip 318349 RMD160 77638f972c357f14b3bf8861c2b4ca4e36744525 SHA1 0353ea1b30adbc8ad60055ba6de58d71311d6dc2 SHA256 65420a98db482b011bb98a8fab953f27eca09e1b8fb60e85c59f3716e43d69cd

@ -0,0 +1,22 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/timelib/timelib-0.2.3.ebuild,v 1.1 2011/12/26 07:43:44 patrick Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="parse english textual date descriptions"
HOMEPAGE="http://pypi.python.org/pypi/timelib"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
LICENSE="ZLIB PHP-3.01"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND=""
PYTHON_CFLAGS=("* + -fno-strict-aliasing")

@ -1,3 +1,4 @@
DIST activesupport-2.3.14.gem 431104 RMD160 0ece71e15413b40f53be83ab74013a70e16a4c5b SHA1 4f7d82d8d4eaf80d9eb1638341558cf8a207cc2e SHA256 c5affddb549fa05415f0e467a17bd0fa02925b414d1a5e2835270d7064b455fe
DIST rails-3.0.10.tgz 3503921 RMD160 73788df5c1efc26cb9afab3142b7e37a7b3f1fd4 SHA1 b0f49b711cd5bada65c5450d8042dbab665fc56a SHA256 233ba73a71eaee5864e1c66d0c3803e8d1abbfab41e2a3e494dde8538b66598b
DIST rails-3.0.11.tgz 3508633 RMD160 b9669f58f0ea2b362819902eb9fbe244dbcde3a9 SHA1 5d50166da760186430a0f33440c47222cc72d1f8 SHA256 bb8da3b680d9ad5148d64567a2cea2e9b99e0a58fbe37981568633652b00c18f
DIST rails-3.1.3.tgz 3638313 RMD160 9453e35f16d2c4e7f594e62643d023c887000094 SHA1 7e0bda73ac54cff5b84f33417d1ffdab1493336b SHA256 412c8a3ae4e0d5283ace45a2ee95127418d6b70fb1a954087b09755ab3a25e99

@ -0,0 +1,45 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.0.11-r1.ebuild,v 1.1 2011/12/26 08:46:41 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 ~ia64 ~ppc ~ppc64 ~sparc ~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? ( virtual/ruby-test-unit >=dev-ruby/libxml-2.0.0 dev-ruby/nokogiri dev-ruby/mocha )"
all_ruby_prepare() {
# don't support older mocha versions as the optional codepath
# breaks JRuby
epatch "${FILESDIR}"/${PN}-3.0.3-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"
}

@ -0,0 +1,51 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activesupport/activesupport-3.1.3.ebuild,v 1.3 2011/12/26 10:32:52 grobian Exp $
EAPI=4
# jruby fails tests.
USE_RUBY="ruby18 ree18 ruby19"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec"
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.1"
KEYWORDS="~amd64 ~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
>=dev-ruby/multi_json-1.0
dev-ruby/i18n:0.6
!!<dev-ruby/activesupport-3.0.11-r1:3.0"
# libxml-ruby, nokogiri, and builder are not strictly needed, but there
# are tests using this code.
ruby_add_bdepend "test? (
virtual/ruby-test-unit
>=dev-ruby/libxml-2.0.0
dev-ruby/nokogiri
dev-ruby/builder:0
)"
all_ruby_prepare() {
# don't support older mocha versions as the optional codepath
# breaks JRuby
epatch "${FILESDIR}"/${PN}-3.0.3-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"
}

@ -1,2 +1 @@
DIST fakeweb-1.2.8.gem 61952 RMD160 eaf21991d70f8057be5e43f42aca647ff3de1f63 SHA1 738cd1f04397eb8ef6c32de4beaff62238dc2819 SHA256 f305d37bfa7644b4b2e8d3ee349131e3a1e3db49671b1f89c6570803dac8e712
DIST fakeweb-1.3.0.gem 58368 RMD160 4c373be4f1ddd86c4a294d1313f98a9cf9141f0a SHA1 9c42d138471529816fbec5dc433de38086d22d0e SHA256 1ec996be13020a00b3464560c09180b424477c698f59f82edf2b99b16cfa09a8

@ -1,35 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakeweb/fakeweb-1.2.8.ebuild,v 1.8 2010/08/31 19:55:53 a3li Exp $
EAPI=2
USE_RUBY="ruby18 ree18 ruby19 jruby"
RUBY_FAKEGEM_DOCDIR="html"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
inherit ruby-fakegem
DESCRIPTION="Helper for faking web requests in Ruby"
HOMEPAGE="http://github.com/chrisk/fakeweb"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
ruby_add_bdepend "
test? (
>=dev-ruby/mocha-0.9.5
virtual/ruby-test-unit
!dev-ruby/test-unit:2
dev-ruby/samuel
dev-ruby/right_http_connection
)"
all_ruby_prepare() {
# The package bundles samuel and right_http_connection, remove
# them and use the packages instead.
rm -r test/vendor || die "failed to remove bundled gems"
}

@ -1,3 +1 @@
DIST hashie-0.4.0.gem 15360 RMD160 58d6920414756973e46d146f9c85dae36dc783f9 SHA1 b51d7d8a3e801ee1f0e1c19bd04755d4b4cdaf9d SHA256 fe3102978c8afc71343fd457bd6bb7347e193d3f4326eab7967339b8b8af571b
DIST hashie-1.0.0.gem 15872 RMD160 1656f8017b69e8f5b5b472270df2a81500f7718b SHA1 3363eb3482959c4ebbca256b3b1744c5f8f1f7fb SHA256 fac8288383a58b175918528956fd10797d225fb7dba20c884da32bc358252471
DIST hashie-1.2.0.gem 15872 RMD160 e3ada67027f7195dc60ce06956bcc1e0d574cc32 SHA1 0c716b850926cfedf018eef0b7ad6b35c8c9af9b SHA256 7395526d7a3e2e1e65e7a0437f5ba72dc4f3b47c2ed5d12b98c6d8dfc3d1f038

@ -1,23 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hashie/hashie-0.4.0.ebuild,v 1.1 2010/10/02 07:27:18 graaff Exp $
EAPI="2"
USE_RUBY="ruby18 ruby19 jruby ree18"
RUBY_FAKEGEM_TASK_TEST="spec"
RUBY_FAKEGEM_DOCDIR="rdoc"
RUBY_FAKEGEM_EXTRADOC="README.rdoc"
inherit ruby-fakegem
DESCRIPTION="Hashie is a small collection of tools that make hashes more powerful."
HOMEPAGE="http://intridea.com/posts/hashie-the-hash-toolkit"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
ruby_add_bdepend "test? ( dev-ruby/rspec:0 dev-ruby/json )"

@ -1,28 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hashie/hashie-1.0.0.ebuild,v 1.1 2011/05/24 08:52:19 graaff Exp $
EAPI="2"
USE_RUBY="ruby18 ruby19 jruby ree18"
RUBY_FAKEGEM_TASK_TEST="spec"
RUBY_FAKEGEM_DOCDIR="rdoc"
RUBY_FAKEGEM_EXTRADOC="README.rdoc"
inherit ruby-fakegem
DESCRIPTION="Hashie is a small collection of tools that make hashes more powerful."
HOMEPAGE="http://intridea.com/posts/hashie-the-hash-toolkit"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
ruby_add_bdepend "test? ( dev-ruby/rspec:2 dev-ruby/json )"
each_ruby_prepare() {
# Remove bundler
rm Gemfile Gemfile.lock || die
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.2.1.ebuild,v 1.2 2011/12/25 12:51:03 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.2.1.ebuild,v 1.3 2011/12/26 16:49:11 ago Exp $
EAPI=2
@ -20,7 +20,7 @@ HOMEPAGE="http://libxml.rubyforge.org"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
RDEPEND="${RDEPEND} dev-libs/libxml2"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mechanize/mechanize-1.0.0.ebuild,v 1.4 2011/08/02 16:32:23 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mechanize/mechanize-1.0.0.ebuild,v 1.5 2011/12/26 14:32:09 graaff Exp $
EAPI=2
@ -22,7 +22,7 @@ KEYWORDS="amd64 ppc ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86
IUSE=""
ruby_add_bdepend ">=dev-ruby/hoe-2.3.3"
ruby_add_rdepend ">=dev-ruby/nokogiri-1.2.1"
ruby_add_rdepend ">=dev-ruby/nokogiri-1.4.4-r1"
all_ruby_install() {
all_fakegem_install

@ -1,2 +1 @@
DIST mixlib-log-1.2.0.gem 12288 RMD160 7f9c5096a12bd0ae82402ac57acc8e4bafd54f14 SHA1 7e3ce30f0b47525655e49274daa0625f8164c346 SHA256 98cfb4f1194d214c4c43e623d8b491bc26130c2874f0285ce125a83891feaec9
DIST mixlib-log-1.3.0.tgz 10190 RMD160 2556c2d8f2b1df67da3a6a9afbb8b425fc033c91 SHA1 14d45cb14c4eed7cf11021fa171cc33d39ec8521 SHA256 c0f1272bfb6785d67f21a76d4f36beb4c78091b9c28dff22e53fe224a8d1181f

@ -1,8 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mixlib-log/mixlib-log-1.2.0.ebuild,v 1.1 2010/10/24 12:57:30 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mixlib-log/mixlib-log-1.3.0-r1.ebuild,v 1.1 2011/12/26 15:39:29 graaff Exp $
EAPI="2"
EAPI=4
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_TEST="spec features"
@ -13,6 +13,8 @@ inherit ruby-fakegem
DESCRIPTION="Simple class based Log mechanism"
HOMEPAGE="http://github.com/opscode/mixlib-log"
SRC_URI="https://github.com/opscode/${PN}/tarball/${PV} -> ${P}.tgz"
RUBY_S="opscode-${PN}-*"
LICENSE="Apache-2.0"
SLOT="0"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/multi_json-1.0.4.ebuild,v 1.1 2011/12/01 14:31:19 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/multi_json-1.0.4.ebuild,v 1.2 2011/12/26 10:30:57 grobian Exp $
EAPI=2
@ -20,7 +20,7 @@ DESCRIPTION="A gem to provide swappable JSON backends"
HOMEPAGE="http://github.com/intridea/multi_json"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.0.1-r1.ebuild,v 1.10 2011/07/22 20:55:24 halcy0n Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.0.1-r1.ebuild,v 1.11 2011/12/26 10:42:44 graaff Exp $
EAPI="2"
USE_RUBY="ruby18 ree18"
@ -26,5 +26,5 @@ ruby_add_bdepend "
test? (
dev-ruby/echoe
virtual/ruby-test-unit
!dev-ruby/test-unit:2
!!dev-ruby/test-unit:2
)"

@ -1,3 +1 @@
DIST plruby-0.4.2.tar.gz 116418 RMD160 5d2b0688574376c1577e2752dde9b02e7cc6eed4 SHA1 cb73ac2730915f813e809adee01a19dae405cdd2 SHA256 63711d6461ac7d30666d9b9c252677fe9bbcacb8c5ebaa5c62294b9250618f05
DIST plruby-0.5.3.tar.gz 131323 RMD160 51897c169ba783375730983a292a01cdecf8ee35 SHA1 5c89ea18dcc07c285faae44a1bc0212ec2692e9a SHA256 3af88626078d979373ee7b169169584732310e271a1cbbe22e0d35adf2dee267
DIST plruby-0.5.4.tgz 122990 RMD160 7b1844d1f90b5a050f8d9ead8f01b6f8fa691b4e SHA1 ad4aee32166e5af61c042da07d6e98eb87d2d672 SHA256 70ac71636c694350fcde8a11b3031b7c440e1d8b6118240c91c2b9eb9dbd719e

@ -1,19 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/plruby/plruby-0.4.2.ebuild,v 1.7 2010/06/21 21:09:14 mr_bones_ Exp $
inherit ruby
DESCRIPTION="plruby language for PostgreSQL"
HOMEPAGE="http://moulon.inra.fr/ruby/plruby.html"
SRC_URI="ftp://moulon.inra.fr/pub/ruby/${P}.tar.gz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND=">=dev-lang/ruby-1.4.4
dev-db/postgresql-server"
RUBY_ECONF="--with-pgsql-include=/usr/include/postgresql --with-pgsql-lib=/usr/lib"

@ -1,19 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/plruby/plruby-0.5.3.ebuild,v 1.4 2010/06/17 19:54:41 patrick Exp $
inherit ruby
DESCRIPTION="plruby language for PostgreSQL"
HOMEPAGE="http://moulon.inra.fr/ruby/plruby.html"
SRC_URI="ftp://moulon.inra.fr/pub/ruby/${P}.tar.gz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=dev-lang/ruby-1.8
dev-db/postgresql-server"
RUBY_ECONF="--with-pgsql-include=/usr/include/postgresql --with-pgsql-lib=/usr/lib"

@ -1,2 +1 @@
DIST rdiscount-1.6.5.gem 52736 RMD160 b178d462c8115c6fbeccc1b7be647bf1aeb82bd6 SHA1 9cf0ad4d70e85fe6df8fcd86a19d1698d32da95b SHA256 6c4177bb5e08332d301e352810c337899a89849e63936fe133baff4ac877bae9
DIST rdiscount-1.6.8.gem 53760 RMD160 767848f4ea6e1fc4b1aa477a1319a70d7280c3c0 SHA1 ed72bb6cf944f8f25bba8875adb032844057deaf SHA256 a085178fc7d6372222af192bdc8aa8b6b24c8014f0c2a3c227a1c173f104d4df

@ -1,48 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/rdiscount-1.6.5.ebuild,v 1.2 2011/08/07 18:58:43 armin76 Exp $
EAPI=2
# Has a native extension without jruby support.
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_TEST="test:unit"
RUBY_FAKEGEM_TASK_DOC="doc man"
RUBY_FAKEGEM_EXTRADOC="README.markdown"
inherit multilib ruby-fakegem
DESCRIPTION="Implementation of John Gruber's Markdown"
HOMEPAGE="http://github.com/rtomayko/rdiscount"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~sparc"
IUSE=""
ruby_add_bdepend "doc? ( app-text/ronn )"
all_ruby_prepare() {
# Hanna is broken for us and therefore we don't have it in portage.
sed -i -e 's/hanna/rdoc/' Rakefile || die
# Remove rule that will force a rebuild when running tests.
sed -i -e "/task 'test:unit' => \[:build\]/d" Rakefile || die
}
each_ruby_configure() {
${RUBY} -Cext extconf.rb || die
}
each_ruby_compile() {
emake -Cext || die
cp ext/*$(get_modname) lib/ || die
}
all_ruby_install() {
all_fakegem_install
doman man/rdiscount.1
}

@ -1,11 +1,11 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/rdiscount-1.6.8.ebuild,v 1.5 2011/12/04 23:28:34 naota Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdiscount/rdiscount-1.6.8.ebuild,v 1.6 2011/12/26 15:09:05 graaff Exp $
EAPI=2
# Has a native extension without jruby support.
USE_RUBY="ruby18 ree18"
USE_RUBY="ruby18 ruby19 ree18"
RUBY_FAKEGEM_TASK_TEST="test:unit"
@ -30,6 +30,9 @@ all_ruby_prepare() {
# Remove rule that will force a rebuild when running tests.
sed -i -e "/task 'test:unit' => \[:build\]/d" Rakefile || die
# Provide RUBY variable no longer provided by rake.
sed -i -e "1 iRUBY=${RUBY}" Rakefile || die
}
each_ruby_configure() {

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdtool/rdtool-0.6.22-r1.ebuild,v 1.2 2011/12/12 17:16:30 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdtool/rdtool-0.6.22-r1.ebuild,v 1.3 2011/12/26 14:29:40 maekke Exp $
EAPI=2
USE_RUBY="ruby18"
@ -12,7 +12,7 @@ HOMEPAGE="http://raa.ruby-lang.org/project/rdtool"
SRC_URI="http://www.moonwolf.com/ruby/archive/${P}.tar.gz"
LICENSE="Ruby GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="emacs"
RDEPEND="${RDEPEND} emacs? ( virtual/emacs )"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/rspec-1.3.2.ebuild,v 1.1 2011/07/18 07:40:35 graaff Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/rspec-1.3.2.ebuild,v 1.2 2011/12/26 11:12:11 graaff Exp $
EAPI=2
USE_RUBY="ruby18 ree18 ruby19 jruby"
@ -42,6 +42,7 @@ USE_RUBY="ruby18 ree18 ruby19" \
dev-ruby/zentest
>=dev-ruby/syntax-1.0
>=dev-ruby/fakefs-0.2.1 )"
USE_RUBY="ruby19" ruby_add_bdepend "test? ( =dev-ruby/test-unit-1.2.3 )"
# the testsuite skips over heckle for Ruby 1.9 so we only request it for 1.8
USE_RUBY="ruby18 ree18" \
@ -53,6 +54,13 @@ all_ruby_prepare() {
sed -i \
-e "s:/tmp:${T}:" \
spec/spec/runner/command_line_spec.rb || die
# Avoid unneeded dependency on bundler
sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
# Support ruby 1.9.3
cp spec/spec/runner/formatter/html_formatted-1.9.2.html spec/spec/runner/formatter/html_formatted-1.9.3.html || die
cp spec/spec/runner/formatter/text_mate_formatted-1.9.2.html spec/spec/runner/formatter/text_mate_formatted-1.9.3.html || die
}
src_test() {

@ -1,2 +1 @@
DIST rubigen-1.5.5.gem 56832 RMD160 66f03b6c5b1e35a897c56fc6fdcd9dea2fb92ab6 SHA1 e72e105ab59ef84d11de58f4f38036568df52d37 SHA256 c46e7ec74b1798d8127a85bb7ae04e1b5552c31bd5ba602adb7591935ef835aa
DIST rubigen-1.5.6.gem 57344 RMD160 b37016a1ba50b780a2d3392e5089fc08d994e47e SHA1 39ff57075163727dc0ef019c0851adcb0993583d SHA256 217aba52bffb443b7f0be9e86b27ee7626e964cd0161a4b8aacc3cfae43489e8

@ -1,52 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubigen/rubigen-1.5.5.ebuild,v 1.3 2010/09/30 15:17:23 ranger Exp $
EAPI="2"
USE_RUBY="ruby18"
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc Todo.txt"
RUBY_FAKEGEM_EXTRAINSTALL="app_generators generators rubygems_generators script test_unit_generators"
inherit ruby-fakegem
DESCRIPTION="A framework to allow Ruby applications to generate file/folder stubs."
HOMEPAGE="http://drnic.github.com/rubigen"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE=""
# The presence of a self-dependency is needed as per bug #320781;
# since this is a bad situation, don't close the bug, but try working
# it around.
ruby_add_bdepend "test? (
>=dev-ruby/mocha-0.9.8
>=dev-ruby/shoulda-2.10.3
>=dev-util/cucumber-0.6.2
>=dev-ruby/hoe-2.5.0
=${CATEGORY}/${PF}
virtual/ruby-test-unit
!dev-ruby/test-unit:2
)"
ruby_add_rdepend "=dev-ruby/activesupport-2.3*"
all_ruby_prepare() {
# Remove newgem requirement from the Rakefile since it is not
# needed for our purposes and we don't have it in CVS.
sed -i '/newgem/d' Rakefile || die "Unable to remove unneeded newgem support."
rm -f test/test_generate_builtin_application.rb || die "Unable to remove broken test."
}
each_ruby_test() {
each_fakegem_test
# Run all features not related to creating and distributing the gem itself
${RUBY} -S cucumber features/help.feature features/rubigen_cli.feature
}

@ -1,31 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-ldap/ruby-ldap-0.9.9.ebuild,v 1.8 2010/05/22 15:49:25 flameeyes Exp $
inherit ruby
DESCRIPTION="A Ruby interface to some LDAP libraries"
HOMEPAGE="http://code.google.com/p/ruby-activeldap/"
SRC_URI="http://ruby-activeldap.googlecode.com/files/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ppc ~ppc64 sparc x86"
IUSE="ssl"
USE_RUBY="ruby18"
DEPEND=">=net-nds/openldap-2
ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}"
# Current test set is interactive due to certificate generation and requires
# running LDAP daemon
RESTRICT="test"
src_compile() {
ruby extconf.rb --with-openldap2 || die "extconf.rb failed"
emake || die
}
src_install() {
emake -j1 DESTDIR="${D}" install || die
dodoc ChangeLog FAQ README TODO
}

@ -1,30 +0,0 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubyfilter/rubyfilter-0.12.ebuild,v 1.5 2009/06/13 08:13:43 graaff Exp $
inherit ruby
DESCRIPTION="A mail handling library for Ruby"
HOMEPAGE="http://www.lickey.com/rubyfilter/"
SRC_URI="http://www.lickey.com/rubyfilter/download/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~ia64 ~ppc ~x86"
USE_RUBY="ruby18"
IUSE=""
RDEPEND="dev-ruby/rubymail"
src_compile() {
ruby install.rb config --prefix=/usr || die
ruby install.rb setup || die
}
src_install() {
ruby install.rb config --prefix="${D}/usr" || die
ruby install.rb install || die
dodoc NEWS README THANKS TODO
dohtml -r doc/*
}

@ -1,4 +1,3 @@
DIST sqlite3-1.3.3.gem 55808 RMD160 185b1840867de772cd33076fa1cf2990561de999 SHA1 8888ba7d755764486dd05cae7b95cf47ec2c3d0b SHA256 294f92e8eae56b45ad2416bb929046c5b8024b7f73addd80963ace5d909503be
DIST sqlite3-1.3.4.gem 55296 RMD160 3f31b1a24001decdeed7fbe1a23648e25473833d SHA1 4dceed107d42c7baca6710bfc623a58838c6bd39 SHA256 2f16a663177a53a2f5b62a6adf59f59432081316f44670edb8576c010badf3aa
DIST sqlite3-ruby-1.2.4.tar.bz2 80907 RMD160 5757d7ce79cb39a21c62daa19e8725a037bbd4c1 SHA1 1ff66fc2fc3e40af9e21f81377eb343fe19619b1 SHA256 4781bb0d4d0ef6d1078dfda2832af30332e2f28a316c17eb854bb7ff5ea6b0d6
DIST sqlite3-ruby-1.3.2.gem 55808 RMD160 7203e884de200d21ae6006f26bf1b8ac48095645 SHA1 84ee78cf223b50c9a0766bf85d3ea1e700c2ca0d SHA256 9c3d4eb7c3a92bb16bfd2c804bfcd0222539cff0d050e809ec1493959738a64c

@ -1,56 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite3-ruby/sqlite3-ruby-1.2.4.ebuild,v 1.10 2010/05/22 15:59:10 flameeyes Exp $
EAPI="1"
inherit ruby
DESCRIPTION="An extension library to access a SQLite database from Ruby"
HOMEPAGE="http://rubyforge.org/projects/sqlite-ruby/"
LICENSE="BSD"
SRC_URI="mirror://rubyforge/sqlite-ruby/${P}.tar.bz2"
KEYWORDS="amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd"
SLOT="0"
IUSE="doc +swig"
USE_RUBY="ruby18"
RDEPEND="=dev-db/sqlite-3*"
DEPEND="${RDEPEND}
swig? ( dev-lang/swig )"
pkg_setup() {
if ! use swig ; then
elog "${PN} will work a lot better with swig; it is suggested"
elog "that you install ${PN} with the swig USE flag."
ebeep
epause 5
fi
}
src_compile() {
myconf=""
if ! use swig ; then
myconf="--without-ext"
fi
${RUBY} setup.rb config --prefix=/usr ${myconf} \
|| die "setup.rb config failed"
${RUBY} setup.rb setup \
|| die "setup.rb setup failed"
}
src_install() {
${RUBY} setup.rb install --prefix="${D}" \
|| die "setup.rb install failed"
dodoc README.rdoc CHANGELOG.rdoc || die
dohtml doc/faq/faq.html || die
if use doc ; then
dohtml -r -V api || die
fi
}

@ -1,9 +1,9 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/treetop/treetop-1.4.10.ebuild,v 1.3 2011/09/09 07:46:23 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/treetop/treetop-1.4.10.ebuild,v 1.4 2011/12/26 08:50:23 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ree18"
USE_RUBY="ruby18 ree18 ruby19"
# jruby fails tests, not investigated yet.
RUBY_FAKEGEM_TASK_DOC=""

@ -1,3 +1,4 @@
DIST android-sdk_r13-linux_x86.tgz 30034328 RMD160 e530529ed2e3a4587a4f82fe5089074dc3717ba2 SHA1 f5ddb7a399e985434f516ff32b140a4a79db760d SHA256 0edd4478f9dbd882322995c161c49396ffd542daaf180ecf38f347ff8fc17d6b
DIST android-sdk_r14-linux.tgz 26075938 RMD160 b86f89a98376e913822dfe2e3084456bdb63450b SHA1 ab504aaf912fb98f13007c7600ba207535c43775 SHA256 bd38cf72f482256c3996c9611ca78269acb0fdeaf3f65b6b3d682fca69a3019e
DIST android-sdk_r15-linux.tgz 26124434 RMD160 80a57a75f41d82937e9414f853ed434585e07196 SHA1 f861b3097fac3f5facb335fe4cc7f6fdbc689f9c SHA256 5e7f56f314355ad5f8d0c4ba6dd94c2d0764ccc0d64986c878464a44129fc474
DIST android-sdk_r16-linux.tgz 22048174 RMD160 1a0bd9e1e1bd4f1f5abb3d6bee29858547fe21f9 SHA1 c12f2431f243d7f2b7f61168d2839dcd36726176 SHA256 3a3d6a3acbe92c3a31897732d4cf8b0bbb325f3ef317858deec25b47acc912db

@ -0,0 +1,101 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/android-sdk-update-manager/android-sdk-update-manager-16.ebuild,v 1.1 2011/12/26 12:28:40 rich0 Exp $
EAPI="3"
inherit eutils
MY_P="android-sdk_r${PV}-linux"
DESCRIPTION="Open Handset Alliance's Android SDK"
HOMEPAGE="http://developer.android.com"
SRC_URI="http://dl.google.com/android/${MY_P}.tgz"
IUSE=""
RESTRICT="mirror"
LICENSE="android"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="app-arch/tar
app-arch/gzip"
RDEPEND=">=virtual/jdk-1.5
>=dev-java/ant-core-1.6.5
>=dev-java/swt-3.5
amd64? ( app-emulation/emul-linux-x86-gtklibs )
x86? ( x11-libs/gtk+:2 )"
ANDROID_SDK_DIR="/opt/${PN}"
QA_DT_HASH_x86="
${ANDROID_SDK_DIR/\/}/tools/emulator
${ANDROID_SDK_DIR/\/}/tools/adb
${ANDROID_SDK_DIR/\/}/tools/mksdcard
${ANDROID_SDK_DIR/\/}/tools/sqlite3
${ANDROID_SDK_DIR/\/}/tools/hprof-conv
${ANDROID_SDK_DIR/\/}/tools/zipalign
${ANDROID_SDK_DIR/\/}/tools/dmtracedump
"
QA_DT_HASH_amd64="${QA_DT_HASH_x86}"
S="${WORKDIR}/android-sdk-linux"
pkg_setup() {
enewgroup android
}
src_prepare(){
# epatch "${FILESDIR}/${PN}-8-swt.patch"
rm -rf tools/lib/x86*
}
src_install(){
dodoc tools/NOTICE.txt "SDK Readme.txt" || die
rm -f tools/NOTICE.txt "SDK Readme.txt"
dodir "${ANDROID_SDK_DIR}/tools"
cp -pPR tools/* "${ED}${ANDROID_SDK_DIR}/tools" || die "failed to install tools"
# Maybe this is needed for the tools directory too.
#keepdir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to keepdir"
dodir "${ANDROID_SDK_DIR}"/{add-ons,docs,platforms,temp} || die "failed to dodir"
fowners root:android "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp,tools} || die
fperms 0775 "${ANDROID_SDK_DIR}"/{,add-ons,docs,platforms,temp,tools} || die
echo "PATH=\"${EPREFIX}${ANDROID_SDK_DIR}/tools:${EPREFIX}${ANDROID_SDK_DIR}/platform-tools\"" > "${T}/80${PN}" || die
SWT_PATH=
SWT_VERSIONS="3.7 3.6 3.5"
for version in $SWT_VERSIONS; do
# redirecting stderr to /dev/null
# not sure if this is best, but avoids misleading error messages
SWT_PATH="`dirname \`java-config -p swt-\$version 2>/dev/null\` 2>/dev/null`"
if [ $SWT_PATH ]; then
einfo "SWT_PATH=$SWT_PATH selecting version $version of SWT."
break
fi
done
echo "ANDROID_SWT=\"${SWT_PATH}\"" >> "${T}/80${PN}" || die
doenvd "${T}/80${PN}" || die
echo "SEARCH_DIRS_MASK=\"${EPREFIX}${ANDROID_SDK_DIR}\"" > "${T}/80${PN}" || die
insinto "/etc/revdep-rebuild" && doins "${T}/80${PN}" || die
}
pkg_postinst() {
elog "The Android SDK now uses its own manager for the development environment."
elog "Run 'android' to download the full SDK, including some of the platform tools."
elog "You must be in the android group to manage the development environment."
elog "Just run 'gpasswd -a <USER> android', then have <USER> re-login."
elog "See http://developer.android.com/sdk/adding-components.html for more"
elog "information."
elog "If you have problems downloading the SDK, see http://code.google.com/p/android/issues/detail?id=4406"
elog "You need to run env-update and source /etc/profile in any open shells"
elog "if you get an SWT error."
}

@ -1,2 +1,3 @@
DIST buildbot-slave-0.8.3.tar.gz 86438 RMD160 d556acd364e98d8677c484729211947c3087870f SHA1 f42d29ac0d3d630f277f13e39296578abb1d16ac SHA256 e0d83c5894495b82c0b702480653ea712e5288f644a0f0661099e66ba64ed56c
DIST buildbot-slave-0.8.4.tar.gz 97185 RMD160 6ec7a5ab941cf2dfa79efb7e719978a20ad316f9 SHA1 6e14268e9b5e14605cce6cf413926e8f54e74034 SHA256 392ea68373d6e3000c4948c53f3dd157fa4ac491a1ca8a54dba75aca6f361dbb
DIST buildbot-slave-0.8.5.tar.gz 98133 RMD160 f3247de750772c6e0c1137063388dd96efa1542e SHA1 b30189a5a9e773f430c2794dd73bdc74388a1627 SHA256 637c23fcdedbc282b596c2ce652b74be96aa9788c39d9b69f903bdb8c2ede217

@ -0,0 +1,56 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/buildbot-slave/buildbot-slave-0.8.5.ebuild,v 1.1 2011/12/26 10:13:55 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
DISTUTILS_SRC_TEST="trial buildslave"
DISTUTILS_DISABLE_TEST_DEPENDENCY="1"
inherit distutils eutils
DESCRIPTION="BuildBot Slave Daemon"
HOMEPAGE="http://trac.buildbot.net/ http://code.google.com/p/buildbot/ http://pypi.python.org/pypi/buildbot-slave"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-interix ~amd64-linux"
IUSE="test"
RDEPEND="dev-python/setuptools
>=dev-python/twisted-2
!!<dev-util/buildbot-0.8.1
!<dev-util/buildbot-0.8.3"
DEPEND="${RDEPEND}
test? ( dev-python/mock )"
PYTHON_MODNAME="buildslave"
pkg_setup() {
python_pkg_setup
enewuser buildbot
}
src_install() {
distutils_src_install
doman docs/buildslave.1 || die "doman failed"
newconfd "${FILESDIR}/buildslave.confd" buildslave || die "newconfd failed"
newinitd "${FILESDIR}/buildslave.initd" buildslave || die "newinitd failed"
}
pkg_postinst() {
distutils_pkg_postinst
elog "The \"buildbot\" user and the \"buildslave\" init script has been added"
elog "to support starting buildslave through Gentoo's init system. To use this,"
elog "set up your build slave following the documentation, make sure the"
elog "resulting directories are owned by the \"buildbot\" user and point"
elog "\"${ROOT}etc/conf.d/buildslave\" at the right location. The scripts can"
elog "run as a different user if desired. If you need to run more than one"
elog "build slave, just copy the scripts."
}

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

Loading…
Cancel
Save