Sync with portage [Wed May 29 09:44:04 MSK 2013].

mhiretskiy
root 11 years ago
parent e03ad6c77a
commit 455504f02c

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/system-config-printer-gnome/system-config-printer-gnome-1.3.12.ebuild,v 1.11 2013/05/27 23:08:44 reavertm Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/system-config-printer-gnome/system-config-printer-gnome-1.3.12.ebuild,v 1.12 2013/05/28 19:13:30 reavertm Exp $
EAPI="3"
@ -49,7 +49,7 @@ done
S="${WORKDIR}/${MY_P}"
# Bug 471472
MAKEOPTS=-j1
MAKEOPTS+=" -j1"
pkg_setup() {
python_set_active_version 2

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.11.0.1.ebuild,v 1.2 2013/05/28 07:50:51 scarabeus Exp $
# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.11.0.1.ebuild,v 1.3 2013/05/28 17:18:46 jer Exp $
EAPI=5
@ -14,7 +14,7 @@ SRC_URI="http://rpm.org/releases/rpm-$(get_version_component_range 1-2).x/${P}.t
LICENSE="GPL-2 LGPL-2"
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="nls python doc caps lua acl selinux"

@ -0,0 +1,94 @@
From b4541a2f3d7ed9e1522065195b4f31529228e493 Mon Sep 17 00:00:00 2001
From: Eric Blake <eblake@redhat.com>
Date: Mon, 20 May 2013 20:30:30 -0600
Subject: [PATCH 1/2] cgroup: be robust against cgroup movement races
https://bugzilla.redhat.com/show_bug.cgi?id=965169 documents a
problem starting domains when cgroups are enabled; I was able
to reliably reproduce the race about 5% of the time when I added
hooks to domain startup by 3 seconds (as that seemed to be about
the length of time that qemu created and then closed a temporary
thread, probably related to aio handling of initially opening
a disk image). The problem has existed since we introduced
virCgroupMoveTask in commit 9102829 (v0.10.0).
There are some inherent TOCTTOU races when moving tasks between
kernel cgroups, precisely because threads can be created or
completed in the window between when we read a thread id from the
source and when we write to the destination. As the goal of
virCgroupMoveTask is merely to move ALL tasks into the new
cgroup, it is sufficient to iterate until no more threads are
being created in the old group, and ignoring any threads that
die before we can move them.
It would be nicer to start the threads in the right cgroup to
begin with, but by default, all child threads are created in
the same cgroup as their parent, and we don't want vcpu child
threads in the emulator cgroup, so I don't see any good way
of avoiding the move. It would also be nice if the kernel were
to implement something like rename() as a way to atomically move
a group of threads from one cgroup to another, instead of forcing
a window where we have to read and parse the source, then format
and write back into the destination.
* src/util/vircgroup.c (virCgroupAddTaskStrController): Ignore
ESRCH, because a thread ended between read and write attempts.
(virCgroupMoveTask): Loop until all threads have moved.
Signed-off-by: Eric Blake <eblake@redhat.com>
(cherry picked from commit 83e4c77547f5b721afad19a452f41c31daeee8c5)
---
src/util/vircgroup.c | 28 ++++++++++++++++++++--------
1 file changed, 20 insertions(+), 8 deletions(-)
diff --git a/src/util/vircgroup.c b/src/util/vircgroup.c
index b05fc45..92b185e 100644
--- a/src/util/vircgroup.c
+++ b/src/util/vircgroup.c
@@ -1037,7 +1037,11 @@ static int virCgroupAddTaskStrController(virCgroupPtr group,
goto cleanup;
rc = virCgroupAddTaskController(group, p, controller);
- if (rc != 0)
+ /* A thread that exits between when we first read the source
+ * tasks and now is not fatal. */
+ if (rc == -ESRCH)
+ rc = 0;
+ else if (rc != 0)
goto cleanup;
next = strchr(cur, '\n');
@@ -1074,15 +1078,23 @@ int virCgroupMoveTask(virCgroupPtr src_group, virCgroupPtr dest_group)
!dest_group->controllers[i].mountPoint)
continue;
- rc = virCgroupGetValueStr(src_group, i, "tasks", &content);
- if (rc != 0)
- return rc;
+ /* New threads are created in the same group as their parent;
+ * but if a thread is created after we first read we aren't
+ * aware that it needs to move. Therefore, we must iterate
+ * until content is empty. */
+ while (1) {
+ rc = virCgroupGetValueStr(src_group, i, "tasks", &content);
+ if (rc != 0)
+ return rc;
+ if (!*content)
+ break;
- rc = virCgroupAddTaskStrController(dest_group, content, i);
- if (rc != 0)
- goto cleanup;
+ rc = virCgroupAddTaskStrController(dest_group, content, i);
+ if (rc != 0)
+ goto cleanup;
- VIR_FREE(content);
+ VIR_FREE(content);
+ }
}
cleanup:
--
1.8.1.5

@ -0,0 +1,42 @@
From 3accd7eb25f3646e15511af4cb0d09c3bf2ce143 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A1n=20Tomko?= <jtomko@redhat.com>
Date: Thu, 23 May 2013 15:51:05 +0200
Subject: [PATCH 2/2] qemu: fix NBD migration to hosts with IPv6 enabled
Since f03dcc5 we use [::] as the listening address both on qemu
command line in -incoming and in nbd-server-start QMP command.
However the latter requires just :: without the braces.
(cherry picked from commit 2326006410a921bba38c0ce67a367cd1ea88cc33)
---
src/qemu/qemu_migration.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/qemu/qemu_migration.c b/src/qemu/qemu_migration.c
index 6ad1c30..adc967a 100644
--- a/src/qemu/qemu_migration.c
+++ b/src/qemu/qemu_migration.c
@@ -1114,6 +1114,12 @@ qemuMigrationStartNBDServer(virQEMUDriverPtr driver,
unsigned short port = 0;
char *diskAlias = NULL;
size_t i;
+ const char *host;
+
+ if (STREQ(listenAddr, "[::]"))
+ host = "::";
+ else
+ host = listenAddr;
for (i = 0; i < vm->def->ndisks; i++) {
virDomainDiskDefPtr disk = vm->def->disks[i];
@@ -1135,7 +1141,7 @@ qemuMigrationStartNBDServer(virQEMUDriverPtr driver,
if (!port &&
((virPortAllocatorAcquire(driver->remotePorts, &port) < 0) ||
- (qemuMonitorNBDServerStart(priv->mon, listenAddr, port) < 0))) {
+ (qemuMonitorNBDServerStart(priv->mon, host, port) < 0))) {
qemuDomainObjExitMonitor(driver, vm);
goto cleanup;
}
--
1.8.1.5

@ -0,0 +1,435 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.0.5.1-r1.ebuild,v 1.1 2013/05/28 17:07:00 cardoe Exp $
EAPI=5
#BACKPORTS=9bf6bec4
AUTOTOOLIZE=yes
MY_P="${P/_rc/-rc}"
PYTHON_DEPEND="python? 2:2.5"
#RESTRICT_PYTHON_ABIS="3.*"
#SUPPORT_PYTHON_ABIS="1"
inherit eutils python user autotools linux-info systemd
if [[ ${PV} = *9999* ]]; then
inherit git-2
EGIT_REPO_URI="git://libvirt.org/libvirt.git"
AUTOTOOLIZE=yes
SRC_URI=""
KEYWORDS=""
else
SRC_URI="http://libvirt.org/sources/stable_updates/${MY_P}.tar.gz
ftp://libvirt.org/libvirt/stable_updates/${MY_P}.tar.gz
${BACKPORTS:+
http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-${BACKPORTS}.tar.xz}"
KEYWORDS="~amd64 ~x86"
fi
S="${WORKDIR}/${P%_rc*}"
DESCRIPTION="C toolkit to manipulate virtual machines"
HOMEPAGE="http://www.libvirt.org/"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="audit avahi +caps firewalld fuse iscsi +libvirtd lvm lxc +macvtap nfs \
nls numa openvz parted pcap phyp policykit python +qemu rbd sasl \
selinux +udev uml +vepa virtualbox virt-network xen elibc_glibc \
systemd"
REQUIRED_USE="libvirtd? ( || ( lxc openvz qemu uml virtualbox xen ) )
lxc? ( caps libvirtd )
openvz? ( libvirtd )
qemu? ( libvirtd )
uml? ( libvirtd )
vepa? ( macvtap )
virtualbox? ( libvirtd )
xen? ( libvirtd )
virt-network? ( libvirtd )
firewalld? ( virt-network )"
# gettext.sh command is used by the libvirt command wrappers, and it's
# non-optional, so put it into RDEPEND.
# We can use both libnl:1.1 and libnl:3, but if you have both installed, the
# package will use 3 by default. Since we don't have slot pinning in an API,
# we must go with the most recent
RDEPEND="sys-libs/readline
sys-libs/ncurses
>=net-misc/curl-7.18.0
dev-libs/libgcrypt
>=dev-libs/libxml2-2.7.6
dev-libs/libnl:3
>=net-libs/gnutls-1.0.25
net-libs/libssh2
sys-apps/dmidecode
>=sys-apps/util-linux-2.17
sys-devel/gettext
>=net-analyzer/netcat6-1.0-r2
app-misc/scrub
audit? ( sys-process/audit )
avahi? ( >=net-dns/avahi-0.6[dbus] )
caps? ( sys-libs/libcap-ng )
fuse? ( >=sys-fs/fuse-2.8.6 )
iscsi? ( sys-block/open-iscsi )
lxc? ( sys-power/pm-utils )
lvm? ( >=sys-fs/lvm2-2.02.48-r2 )
nfs? ( net-fs/nfs-utils )
numa? (
>sys-process/numactl-2.0.2
sys-process/numad
)
openvz? ( sys-kernel/openvz-sources )
parted? (
>=sys-block/parted-1.8[device-mapper]
sys-fs/lvm2
)
pcap? ( >=net-libs/libpcap-1.0.0 )
policykit? ( >=sys-auth/polkit-0.9 )
qemu? (
>=app-emulation/qemu-0.13.0
dev-libs/yajl
sys-power/pm-utils
)
rbd? ( sys-cluster/ceph )
sasl? ( dev-libs/cyrus-sasl )
selinux? ( >=sys-libs/libselinux-2.0.85 )
virtualbox? ( || ( app-emulation/virtualbox >=app-emulation/virtualbox-bin-2.2.0 ) )
xen? ( app-emulation/xen-tools app-emulation/xen )
udev? ( virtual/udev >=x11-libs/libpciaccess-0.10.9 )
virt-network? ( net-dns/dnsmasq
>=net-firewall/iptables-1.4.10
net-misc/radvd
net-firewall/ebtables
sys-apps/iproute2[-minimal]
firewalld? ( net-firewall/firewalld )
)
elibc_glibc? ( || ( >=net-libs/libtirpc-0.2.2-r1 <sys-libs/glibc-2.14 ) )"
# one? ( dev-libs/xmlrpc-c )
DEPEND="${RDEPEND}
virtual/pkgconfig
app-text/xhtml1
dev-libs/libxslt
=dev-lang/python-2*"
LXC_CONFIG_CHECK="
~CGROUPS
~CGROUP_FREEZER
~CGROUP_DEVICE
~CGROUP_CPUACCT
~CGROUP_SCHED
~CGROUP_PERF
~BLK_CGROUP
~NET_CLS_CGROUP
~NETPRIO_CGROUP
~CPUSETS
~RESOURCE_COUNTERS
~NAMESPACES
~UTS_NS
~IPC_NS
~PID_NS
~NET_NS
~DEVPTS_MULTIPLE_INSTANCES
~VETH
~MACVLAN
~POSIX_MQUEUE
~!GRKERNSEC_CHROOT_MOUNT
~!GRKERNSEC_CHROOT_DOUBLE
~!GRKERNSEC_CHROOT_PIVOT
~!GRKERNSEC_CHROOT_CHMOD
~!GRKERNSEC_CHROOT_CAPS
"
VIRTNET_CONFIG_CHECK="
~BRIDGE_NF_EBTABLES
~BRIDGE_EBT_MARK_T
~NETFILTER_ADVANCED
~NETFILTER_XT_TARGET_CHECKSUM
~NETFILTER_XT_CONNMARK
~NETFILTER_XT_MARK
"
MACVTAP_CONFIG_CHECK="~MACVTAP"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
enewgroup qemu 77
enewuser qemu 77 -1 -1 qemu kvm
# Some people used the masked ebuild which was not adding the qemu
# user to the kvm group originally. This results in VMs failing to
# start for some users. bug #430808
egetent group kvm | grep -q qemu
if [[ $? -ne 0 ]]; then
gpasswd -a qemu kvm
fi
# Handle specific kernel versions for different features
kernel_is lt 3 6 && LXC_CONFIG_CHECK+=" ~CGROUP_MEM_RES_CTLR"
kernel_is ge 3 6 && LXC_CONFIG_CHECK+=" ~MEMCG ~MEMCG_SWAP ~MEMCG_KMEM"
CONFIG_CHECK=""
use fuse && CONFIG_CHECK+=" ~FUSE_FS"
use lxc && CONFIG_CHECK+="${LXC_CONFIG_CHECK}"
use macvtap && CONFIG_CHECK+="${MACVTAP}"
use virt-network && CONFIG_CHECK+="${VIRTNET_CONFIG_CHECK}"
if [[ -n ${CONFIG_CHECK} ]]; then
linux-info_pkg_setup
fi
}
src_prepare() {
touch "${S}/.mailmap"
[[ -n ${BACKPORTS} ]] && \
EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \
epatch
if [[ ${PV} = *9999* ]]; then
# git checkouts require bootstrapping to create the configure script.
# Additionally the submodules must be cloned to the right locations
# bug #377279
./bootstrap || die "bootstrap failed"
(
git submodule status | sed 's/^[ +-]//;s/ .*//'
git hash-object bootstrap.conf
) >.git-module-status
fi
epatch "${FILESDIR}"/${P}-0001*.patch
epatch "${FILESDIR}"/${P}-0002*.patch
epatch_user
[[ -n ${AUTOTOOLIZE} ]] && eautoreconf
# Tweak the init script
local avahi_init=
local iscsi_init=
local rbd_init=
local firewalld_init=
cp "${FILESDIR}/libvirtd.init-r11" "${S}/libvirtd.init"
use avahi && avahi_init='avahi-daemon'
use iscsi && iscsi_init='iscsid'
use rbd && rbd_init='ceph'
use firewalld && firewalld_init='need firewalld'
sed -e "s/USE_FLAG_FIREWALLD/${firewalld_init}/" -i "${S}/libvirtd.init"
sed -e "s/USE_FLAG_AVAHI/${avahi_init}/" -i "${S}/libvirtd.init"
sed -e "s/USE_FLAG_ISCSI/${iscsi_init}/" -i "${S}/libvirtd.init"
sed -e "s/USE_FLAG_RBD/${rbd_init}/" -i "${S}/libvirtd.init"
}
src_configure() {
local myconf=""
## enable/disable daemon, otherwise client only utils
myconf="${myconf} $(use_with libvirtd)"
## enable/disable the daemon using avahi to find VMs
myconf="${myconf} $(use_with avahi)"
## hypervisors on the local host
myconf="${myconf} $(use_with xen) $(use_with xen xen-inotify)"
myconf+=" --without-xenapi"
if use xen && has_version ">=app-emulation/xen-tools-4.2.0"; then
myconf+=" --with-libxl"
else
myconf+=" --without-libxl"
fi
myconf="${myconf} $(use_with openvz)"
myconf="${myconf} $(use_with lxc)"
if use virtualbox && has_version app-emulation/virtualbox-ose; then
myconf="${myconf} --with-vbox=/usr/lib/virtualbox-ose/"
else
myconf="${myconf} $(use_with virtualbox vbox)"
fi
myconf="${myconf} $(use_with uml)"
myconf="${myconf} $(use_with qemu)"
myconf="${myconf} $(use_with qemu yajl)" # Use QMP over HMP
myconf="${myconf} $(use_with phyp)"
myconf="${myconf} --with-esx"
myconf="${myconf} --with-vmware"
## additional host drivers
myconf="${myconf} $(use_with virt-network network)"
myconf="${myconf} --with-storage-fs"
myconf="${myconf} $(use_with lvm storage-lvm)"
myconf="${myconf} $(use_with iscsi storage-iscsi)"
myconf="${myconf} $(use_with parted storage-disk)"
myconf="${myconf} $(use_with lvm storage-mpath)"
myconf="${myconf} $(use_with rbd storage-rbd)"
myconf="${myconf} $(use_with numa numactl)"
myconf="${myconf} $(use_with numa numad)"
myconf="${myconf} $(use_with selinux)"
myconf="${myconf} $(use_with fuse)"
# udev for device support details
myconf="${myconf} $(use_with udev)"
# linux capability support so we don't need privileged accounts
myconf="${myconf} $(use_with caps capng)"
## auth stuff
myconf="${myconf} $(use_with policykit polkit)"
myconf="${myconf} $(use_with sasl)"
# network bits
myconf="${myconf} $(use_with macvtap)"
myconf="${myconf} $(use_with pcap libpcap)"
myconf="${myconf} $(use_with vepa virtualport)"
myconf="${myconf} $(use_with firewalld)"
## other
myconf="${myconf} $(use_enable nls)"
myconf="${myconf} $(use_with python)"
# user privilege bits fir qemu/kvm
if use caps; then
myconf="${myconf} --with-qemu-user=qemu"
myconf="${myconf} --with-qemu-group=qemu"
else
myconf="${myconf} --with-qemu-user=root"
myconf="${myconf} --with-qemu-group=root"
fi
# audit support
myconf="${myconf} $(use_with audit)"
## stuff we don't yet support
myconf="${myconf} --without-netcf"
# we use udev over hal
myconf="${myconf} --without-hal"
# locking support
myconf="${myconf} --without-sanlock"
# systemd unit files
use systemd && myconf="${myconf} --with-init-script=systemd"
# this is a nasty trick to work around the problem in bug
# #275073. The reason why we don't solve this properly is that
# it'll require us to rebuild autotools (and we don't really want
# to do that right now). The proper solution has been sent
# upstream and should hopefully land in 0.7.7, in the mean time,
# mime the same functionality with this.
case ${CHOST} in
*cygwin* | *mingw* )
;;
*)
ac_cv_prog_WINDRES=no
;;
esac
econf \
${myconf} \
--disable-static \
--docdir=/usr/share/doc/${PF} \
--with-remote \
--localstatedir=/var
if [[ ${PV} = *9999* ]]; then
# Restore gnulib's config.sub and config.guess
# bug #377279
(cd .gnulib && git reset --hard > /dev/null)
fi
}
src_test() {
# Explicitly allow parallel build of tests
export VIR_TEST_DEBUG=1
HOME="${T}" emake check || die "tests failed"
}
src_install() {
emake install \
DESTDIR="${D}" \
HTML_DIR=/usr/share/doc/${PF}/html \
DOCS_DIR=/usr/share/doc/${PF}/python \
EXAMPLE_DIR=/usr/share/doc/${PF}/python/examples \
SYSTEMD_UNIT_DIR="$(systemd_get_unitdir)" \
|| die "emake install failed"
find "${D}" -name '*.la' -delete || die
use libvirtd || return 0
# From here, only libvirtd-related instructions, be warned!
newinitd "${S}/libvirtd.init" libvirtd || die
newconfd "${FILESDIR}/libvirtd.confd-r4" libvirtd || die
keepdir /var/lib/libvirt/images
}
pkg_preinst() {
# we only ever want to generate this once
if [[ -e "${ROOT}"/etc/libvirt/qemu/networks/default.xml ]]; then
rm -rf "${D}"/etc/libvirt/qemu/networks/default.xml
fi
# We really don't want to use or support old PolicyKit cause it
# screws with the new polkit integration
if has_version sys-auth/policykit; then
rm -rf "${D}"/usr/share/PolicyKit/policy/org.libvirt.unix.policy
fi
# Only sysctl files ending in .conf work
mv "${D}"/usr/lib/sysctl.d/libvirtd.conf "${D}"/etc/sysctl.d/libvirtd.conf
}
pkg_postinst() {
use python && python_mod_optimize libvirt.py
if [[ -e "${ROOT}"/etc/libvirt/qemu/networks/default.xml ]]; then
touch "${ROOT}"/etc/libvirt/qemu/networks/default.xml
fi
# support for dropped privileges
if use qemu; then
fperms 0750 "${EROOT}/var/lib/libvirt/qemu"
fperms 0750 "${EROOT}/var/cache/libvirt/qemu"
fi
if use caps && use qemu; then
fowners -R qemu:qemu "${EROOT}/var/lib/libvirt/qemu"
fowners -R qemu:qemu "${EROOT}/var/cache/libvirt/qemu"
elif use qemu; then
fowners -R root:root "${EROOT}/var/lib/libvirt/qemu"
fowners -R root:root "${EROOT}/var/cache/libvirt/qemu"
fi
if ! use policykit; then
elog "To allow normal users to connect to libvirtd you must change the"
elog "unix sock group and/or perms in /etc/libvirt/libvirtd.conf"
fi
use libvirtd || return 0
# From here, only libvirtd-related instructions, be warned!
elog
elog "For the basic networking support (bridged and routed networks)"
elog "you don't need any extra software. For more complex network modes"
elog "including but not limited to NATed network, you can enable the"
elog "'virt-network' USE flag."
elog
if has_version net-dns/dnsmasq; then
ewarn "If you have a DNS server setup on your machine, you will have"
ewarn "to configure /etc/dnsmasq.conf to enable the following settings: "
ewarn " bind-interfaces"
ewarn " interface or except-interface"
ewarn
ewarn "Otherwise you might have issues with your existing DNS server."
fi
if use caps && use qemu; then
elog "libvirt will now start qemu/kvm VMs with non-root privileges."
elog "Ensure any resources your VMs use are accessible by qemu:qemu"
fi
}
pkg_postrm() {
use python && python_mod_cleanup libvirt.py
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.0.5.1.ebuild,v 1.4 2013/05/22 15:56:22 cardoe Exp $
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-1.0.5.1.ebuild,v 1.6 2013/05/28 15:25:57 cardoe Exp $
EAPI=5
@ -34,8 +34,8 @@ DESCRIPTION="C toolkit to manipulate virtual machines"
HOMEPAGE="http://www.libvirt.org/"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="audit avahi +caps firewalld fuse iscsi +libvirtd lvm +lxc +macvtap nfs \
nls numa openvz parted pcap phyp policykit python qemu rbd sasl \
IUSE="audit avahi +caps firewalld fuse iscsi +libvirtd lvm lxc +macvtap nfs \
nls numa openvz parted pcap phyp policykit python +qemu rbd sasl \
selinux +udev uml +vepa virtualbox virt-network xen elibc_glibc \
systemd"
REQUIRED_USE="libvirtd? ( || ( lxc openvz qemu uml virtualbox xen ) )
@ -374,7 +374,7 @@ pkg_preinst() {
fi
# Only sysctl files ending in .conf work
mv "${D}"/usr/lib/sysctl.d/libvirtd "${D}"/etc/sysctl.d/libvirtd.conf
mv "${D}"/usr/lib/sysctl.d/libvirtd.conf "${D}"/etc/sysctl.d/libvirtd.conf
}
pkg_postinst() {

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/reptyr/reptyr-0.4.ebuild,v 1.3 2012/12/04 11:30:29 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/reptyr/reptyr-0.4.ebuild,v 1.4 2013/05/29 02:01:47 radhermit Exp $
EAPI=4
@ -15,8 +15,13 @@ SLOT="0"
KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
IUSE=""
src_prepare() {
# respect CFLAGS
sed -i '/^override/d' Makefile || die
}
src_compile() {
append-cflags -D_GNU_SOURCE
append-cppflags -D_GNU_SOURCE
emake CC=$(tc-getCC) CFLAGS="${CFLAGS}"
}

@ -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-text/wgetpaste/wgetpaste-2.22.ebuild,v 1.4 2013/05/28 11:00:23 vincent Exp $
# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.22.ebuild,v 1.5 2013/05/28 16:33:10 vincent Exp $
EAPI="4"
@ -10,7 +10,7 @@ SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="zsh-completion +lodgeit-default"
DEPEND=""

@ -1,2 +1 @@
DIST bufexplorer-7.2.8.zip 18603 SHA256 d53e41dec50bca90a9a4aca2ed2d3ab4f9eee5ced9a0984ea6fe697455ca2c2d SHA512 915c58e9f23cf0447e8df294455f0c5f0e07c9b9ad78c91f2012fa50148b2a00c2d761ce868e39d8a4ee019f9fdc80cf75f34b5ad8e9df9809d74e3cd4055568 WHIRLPOOL c1042fe059cd1ac15031b5c89cd4da6b13e694e9b197d4733af1a7dcc930ab2fb99a851c3447d26502bbb39b5c50b3c523d4ae0241404960d1d5fa5f9e72fe0d
DIST bufexplorer-7.3.5.zip 20128 SHA256 1952057fb1a65c69efdd69b01bab0eef7dc1c1605f0dc764b7801069ae5c6397 SHA512 db67eb5c9e48250326fc589fc09568668bae5b6c46fec8b4e3c860f463e6d2e430df9105379cd8d8925bf789b9ce084d7a0320110538e75eebadc70ff4aac8fe WHIRLPOOL 10661bf87be97db22d65695d1668ba67cbd5879b8b7a8cdc1073591952eb7081a0283aa94a4a4b99244900f8d077c1ea35a8683668d51b9f8c3f9cf420ac2430

@ -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/app-vim/bufexplorer/bufexplorer-7.2.8.ebuild,v 1.1 2013/02/12 11:08:01 radhermit Exp $
EAPI="2"
VIM_PLUGIN_VIM_VERSION="7.0"
inherit vim-plugin
DESCRIPTION="vim plugin: easily browse vim buffers"
HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=42"
SRC_URI="http://www.vim.org/scripts/download_script.php?src_id=14208 -> ${P}.zip"
LICENSE="bufexplorer.vim"
KEYWORDS="~amd64 ~x86"
IUSE=""
S="${WORKDIR}"
VIM_PLUGIN_HELPFILES="bufexplorer"
DEPEND="app-arch/unzip"
RDEPEND=""

@ -1 +1,2 @@
DIST python-mode-0.6.10.tar.gz 474266 SHA256 ed97b9c260cafa38e01d1bc988e611df8a4681922e3ba4022e5ccac692b8f583 SHA512 562d91a377e783b2cf2583910f4c6b0e8530be9533b513198f5ac97e7581672f95f69e752d391d2a6ad9ac0621c967bc46c02f79fdc38d25172f14267fe27f7e WHIRLPOOL 404458e298ab3c093c031ac00cf43e66652a8054fecfb4d2c481d73a2efbb6949409545f5269bcb43f519b19a27dd8b68fb75a166dce1e78d49e1899bfe17901
DIST python-mode-0.6.18.tar.gz 386846 SHA256 d46ff14b7ee639b698d1b0ae0e7ca0dcfa95a315ffb25e523ae720461f399c1d SHA512 0e3159a055304443c8b15590c424ac0f4a4303e343882ff91f01f5b959274931dea83969ab1dcd19ce95894c7da5be60699d51b852dc73165a99a271feec4e64 WHIRLPOOL 1a6114999c1b832335268dd7dd3e9ebfd48ce9e35cdc7058e4a1011d3ac0aeb36df85ab52599460e449c0ee645303aca17a8ecb44533a5d137a9b904c426b1da

@ -0,0 +1,49 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/python-mode/python-mode-0.6.18.ebuild,v 1.1 2013/05/28 19:17:48 radhermit Exp $
EAPI=5
VIM_PLUGIN_MESSAGES="filetype"
VIM_PLUGIN_HELPFILES="PythonModeCommands"
VIM_PLUGIN_HELPURI="https://github.com/klen/python-mode"
inherit vim-plugin
DESCRIPTION="Provide python code looking for bugs, refactoring and other useful things"
HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3770 https://github.com/klen/python-mode"
SRC_URI="https://github.com/klen/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-3"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-python/astng
dev-python/autopep8
dev-python/pyflakes
dev-python/pylint
dev-python/rope
dev-python/ropemode
"
src_prepare() {
rm -rf pylibs/{logilab,*pep8.py,pyflakes,pylint,rope,ropemode} .gitignore
mv pylint.ini "${T}" || die
sed -e "s|expand(\"<sfile>:p:h:h\")|\"${EPREFIX}/usr/share/${PN}\"|" \
-i autoload/pymode.vim || die # use custom path
sed -e "s/pylibs.autopep8/autopep8/g" -i pylibs/pymode/auto.py || die
sed -e "s/pylibs.ropemode/ropemode/g" -i pylibs/ropevim.py || die
}
src_install() {
vim-plugin_src_install
insinto usr/share/${PN}
doins "${T}"/pylint.ini
}
pkg_postinst() {
vim-plugin_pkg_postinst
einfo "If you use custom pylintrc make sure you append the contents of"
einfo " ${EPREFIX}/usr/share/${PN}/pylint.ini"
einfo "to it. Otherwise PyLint command will not work properly."
}

@ -1,2 +1 @@
DIST surround-1.90.zip 9550 SHA256 bd3e48e4688136e4fd09bdbe88702e335d5ae508661d5ddeee146e479c68996e SHA512 03d492fe81c0f3c7a345727f48d3e718bd12825c4b95d15737ce4d8c2cd515de6b80c21e4dc34cae30097e18766d1f49053ac127f614986c520d948aa23e023b WHIRLPOOL 99b35c92e934390bf69b9a2b31195301488dddefdb59ed6f0e188047e04c821243adea62400d407e9782e0e722a40ae067cf9b37690f7e80a03daedbc27cd33b
DIST surround-2.0.tar.bz2 8285 SHA256 4203e827030ebcb782eb2c166b05888036ed060e1a2f2415878a1230041a495c SHA512 0e9eb05865300ef089217edac474908d0e73a2343069b9806523164a98506cff02a8f2b09425edf9c574f7b6173f57e66cc1017195e1d5aba57e25ac5afe087a WHIRLPOOL 5ba9a1ff43c5578289d2021ef1456d00db2b4c7a37371cf9da640d00fe82b254ff39cfe5763d05f757d67df343fd12c30a6da621dac00595fbafe6283b745de5

@ -1,23 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/surround/surround-1.90.ebuild,v 1.4 2012/11/27 22:38:56 ulm Exp $
EAPI="2"
VIM_PLUGIN_VIM_VERSION="7.0"
inherit vim-plugin
DESCRIPTION="vim plugin: Delete/change/add parentheses/quotes/XML-tags/much more"
HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1697"
SRC_URI="http://www.vim.org/scripts/download_script.php?src_id=8283 -> ${P}.zip"
LICENSE="vim"
KEYWORDS="amd64 x86"
IUSE=""
S="${WORKDIR}"
VIM_PLUGIN_HELPFILES="${PN}"
VIM_PLUGIN_MESSAGES=""
DEPEND="app-arch/unzip"
RDEPEND=""

@ -1,3 +1 @@
DIST vim-latex-1.8.23-20110214.1049-git089726a.tar.gz 277250 SHA256 991c31f4e8eadd61aa0f17c8bfa77761e1b76afcaa0e9c483b8e453172607cf8 SHA512 09c8073f59a09aef846925615395a028f1934e4ab88e44ca696a31840c5105d4c4db5df82533a746e00ef7c30b196a9ca432d541553f694419d082f140dc8357 WHIRLPOOL b26f4d1d7b1a1fb9a95aee9b637a28b6b073aef4cb4432cc7d53b89da6bc04a7901178a077a2fe94e07d38afcb087a56bc97b76cb715f309ecdbd48273171596
DIST vim-latex-1.8.23-20121116.784-git1c17b37.tar.gz 287744 SHA256 fde239e394348dc639b27bcdb493523e356fbfed09b556269d8d2b85ceb1e86f SHA512 fff4188102ce3b2e21529dca416ba54a522867e4f4e1bf8b388ddb610e587762e98095f09abd50cac7977a33c2c7bf09e1a39c95ab1da75aa0e75184ed64353b WHIRLPOOL 5066828ecfae8c3bb407059b2ed022bdb6c128a8415138d5c739c7837c47efd23b9a7137971465aed3e556db38b3a1edfb782987a8839e467b93535b62fb2e8f
DIST vim-latex-1.8.23-20130116.788-git2ef9956.tar.gz 287749 SHA256 99f47151d5108901f85c793496a301341fe6be66b39bd5b42ea7db2e0afd426c SHA512 27cbea24ef5cf8c5ef6c2a9790bd1745d7d907640dd47dd199e579b8e04c33e30b1907f89e9898f8197e46f002ce4145e5c63635801ca8729d4ad988aaa7b590 WHIRLPOOL 74d11d665568ff4afaa40e3208764919e32c9f899ba3e993ed4e4d0049c9f067c2446e2abdecdf3b598ec89c9d4187f24f9ca04a654ecbaa4dc2cfdcc0e06975

@ -1,58 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/vim-latex/vim-latex-1.8.23.20110214.ebuild,v 1.4 2011/07/23 18:04:26 armin76 Exp $
EAPI=3
inherit vim-plugin versionator
MY_REV="1049-git089726a"
MY_P="${PN}-$( replace_version_separator 3 - ).${MY_REV}"
DESCRIPTION="vim plugin: a comprehensive set of tools to view, edit and compile LaTeX documents"
HOMEPAGE="http://vim-latex.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="vim"
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
IUSE="html"
RDEPEND="virtual/latex-base"
S="${WORKDIR}/${MY_P}"
VIM_PLUGIN_HELPFILES="latex-suite.txt latex-suite-quickstart.txt latexhelp.txt imaps.txt"
src_prepare() {
# The makefiles do weird stuff, including running the svn command
rm Makefile Makefile.in || die "rm Makefile Makefile.in failed"
}
src_install() {
use html && dohtml -r doc/
# Don't mess up vim's doc dir with random files
mv doc mydoc || die
mkdir doc || die
mv mydoc/*.txt doc/ || die
rm -rf mydoc || die
# Don't install buggy tags scripts, use ctags instead
rm latextags ltags || die
vim-plugin_src_install
# Use executable permissions (bug #352403)
fperms a+x /usr/share/vim/vimfiles/ftplugin/latex-suite/outline.py
}
pkg_postinst() {
vim-plugin_pkg_postinst
elog
elog "To use the vim-latex plugin add:"
elog " filetype plugin on"
elog ' set grepprg=grep\ -nH\ $*'
elog " let g:tex_flavor='latex'"
elog "to your ~/.vimrc-file"
elog
}

@ -1,61 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/vim-latex/vim-latex-1.8.23.20121116.ebuild,v 1.8 2013/02/21 13:23:20 ago Exp $
EAPI=5
inherit vim-plugin versionator python
MY_REV="784-git1c17b37"
MY_P="${PN}-$( replace_version_separator 3 - ).${MY_REV}"
DESCRIPTION="vim plugin: a comprehensive set of tools to view, edit and compile LaTeX documents"
HOMEPAGE="http://vim-latex.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="vim"
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
IUSE="html"
RDEPEND="|| ( app-editors/vim[python] app-editors/gvim[python] )
virtual/latex-base"
S="${WORKDIR}/${MY_P}"
VIM_PLUGIN_HELPFILES="latex-suite.txt latex-suite-quickstart.txt latexhelp.txt imaps.txt"
src_prepare() {
# The makefiles do weird stuff, including running the svn command
rm Makefile Makefile.in || die "rm Makefile Makefile.in failed"
}
src_install() {
use html && dohtml -r doc/
# Don't mess up vim's doc dir with random files
mv doc mydoc || die
mkdir doc || die
mv mydoc/*.txt doc/ || die
rm -rf mydoc || die
# Don't install buggy tags scripts, use ctags instead
rm latextags ltags || die
vim-plugin_src_install
# Use executable permissions (bug #352403)
fperms a+x /usr/share/vim/vimfiles/ftplugin/latex-suite/outline.py
python_convert_shebangs -r 2 "${ED}"
}
pkg_postinst() {
vim-plugin_pkg_postinst
elog
elog "To use the vim-latex plugin add:"
elog " filetype plugin on"
elog ' set grepprg=grep\ -nH\ $*'
elog " let g:tex_flavor='latex'"
elog "to your ~/.vimrc-file"
elog
}

@ -1,42 +1,44 @@
DIST icedtea-bin-core-6.1.12.2-amd64.tar.bz2 38338494 SHA256 149975fd7de997a5cf95c0e78ae56573ed2bf341285899112fce85242e92107a SHA512 298172cfb859e39d9f00c757c9aa9a8423c23cf87f2adf5ce3f0837244089cfaa32c1146087f96fac64c0a4a7bc6eb89bf4c6e07e73e5bd273c54720762593bd WHIRLPOOL 8ca4033763b339fd357ede0a2b0c7cb205c67fdba489cb966c4b93ac226da7c7df5d1833fe2690d3aa076815f86b36d7b6e1ed3fd628bbe3a4a99c3e7214f54e
DIST icedtea-bin-core-6.1.12.2-x86.tar.bz2 39106978 SHA256 9d84884320359ea733f600c10f34dd4ba6f4473867f5e17eeca2b08d33c2f176 SHA512 8280d474897f93ebb03cd1906972e7c16893c21f94f7848df4e665add97817e21d3db7072a4d922ebd7713d1c79383953c5ca43d481cc6cd3be6959fd14461e5 WHIRLPOOL 48f316f466d4ca6e2f6ec26132416bbb0cc8451a832a9eb760a99b938674fea49881f9b3bfb75e5b3f7152a134b37354459b4bde32cfd5aa7f58a70d77dd6a8a
DIST icedtea-bin-core-6.1.12.4-amd64.tar.bz2 38328989 SHA256 734e076ae38e3b8d6f33fb52b6a97a50046bc28407e85c99c6c257e2c1a6a455 SHA512 1146e5386e328ab91c352b6027f0d5e3347eab6b3975a98b218f965a656aaebf0156b66a6e1c0a220e05c2305c6fd656e00d2949365801948772ae2f3412c087 WHIRLPOOL a316e6696a141edf0a9b1a248383087b25f299702a80ce084994e23ff30ae3c83ac84220635861b1c9ce4cfcd15976d307eb1fac0a52dc3237408e0369431143
DIST icedtea-bin-core-6.1.12.4-x86.tar.bz2 39119517 SHA256 52ea87b0d5a4d3922cd84ba2cf5b44eb95afb7943af4943b6d038f8f4a923714 SHA512 f3063cd01e521acc22ef134e318f35d7e26dafd186b0d588c5bc678650f04d92a518143ca11ca4db032dc5e99954f415070b4171781fe2c7bae1a1f811b9a810 WHIRLPOOL 9e537a72266c50abce69739cd1fcde0215ee040cb3ddc06373eebfc4df5fb7bf07bb0cffb51517a57c686a07c86869180053148a18c34af57a7ff805a015d536
DIST icedtea-bin-core-6.1.12.5-amd64.tar.bz2 38373807 SHA256 f1d0eae8370da49db18174a5a2c84d12275f0fcab35f557d50a98d5db9353ea1 SHA512 0dc0462809a99b8b680c3370a79518eb5ef8b3e7b6f1bc1d21668b0fc8737943849fba9829b5783c181a5f94b957c8710e61e729978e077ac11af0bfb6034f85 WHIRLPOOL e76affd5fa8956a379413edf3b2003c3531497146daa426a83a7a3c38e04f2778efb8d47aa85158d2ec6220455c92e89502764d2fe5e5e02da61ae3fd7e6c527
DIST icedtea-bin-core-6.1.12.5-x86.tar.bz2 39215854 SHA256 cc21358aecd9c9a9129d6d02d1043394a0ef8387a26cc6c52f2c7e2f64dc762b SHA512 2c273ae3b368ef508c48e1232ccc788c76fc17d3a9af7dd504c5353966f987951496c311cf9bc74dade4d8921645d2a7b89296b9ecd24f88ce646b477f714eb3 WHIRLPOOL 9658cd2244c9d6150ea257e430a13c0749445fe1e430e9d9dc2342ffe795f5ebd27ebf7e76225c4a7054e135d6e591700c166d0e393aa70a3e037ae5a42e290e
DIST icedtea-bin-core-7.2.3.6-amd64.tar.bz2 48864185 SHA256 4eef39a8240f483bdbddd3d4b7b81af55c6d4f526336beb486526b2d5b0566a5 SHA512 ef720079aef99f547d857b986915236f0b0d35bd9812223b79892bbda953bdc185e12f8974959eda617e61d91f41ec374e174643c6764543db27075ab1e58289 WHIRLPOOL 6d2ed5ca5e3822e55baa5ac4a792c7a212fe8703e340161514bcde6c54e5dc613ae3ff959ecb3a975c54fb8541f9bc0926006f432c19a120db9e61ce8b07c7d3
DIST icedtea-bin-core-7.2.3.6-x86.tar.bz2 49977550 SHA256 c4186639f5e295c3126e4bf8812a17d84fa4a76ab86cb8f0032066e1031a4f7f SHA512 ec9b8c9685ee3673d333dd82645e90ed29dd5417f2d2c12da27a47032ad2c5fde21afffb3399889e49a604bc54a65c4a1c2f4336539bee510dd1ce2f9b424507 WHIRLPOOL 5b78b0a69f5032c185409391b0a983b30fafe9fd5e231282193c2349dcb69437e4ea2f4aedee35e60a0d41c4905d815f379492c9c958db181adf59d5f89e05bd
DIST icedtea-bin-core-7.2.3.8-amd64.tar.bz2 48875986 SHA256 049aad03f7ebabbc5bcec8f7048fa1bcbfff2aa03b2f08cc3ee6bf583c3c31b9 SHA512 7b31cb80c44501541b33d307ed579c81eb0551eeeb2c18956fd741ef44f97479ac91bf1c6fdb5a26dbf0f4f19d7b95dc1a6fc98e5e1941377c1d3a5cee6afc63 WHIRLPOOL b4f0b60a0385333fd9ce7114c91469a58297bffb77ed418f2a10375b1cb062a031190b6ba9bc176644a12a3dfd7d71dae492c331effe98e4510944a4573993be
DIST icedtea-bin-core-7.2.3.8-x86.tar.bz2 49985284 SHA256 810893988cf93e6235cf47a55bc09c62bc095c9433a20b44f8454ee35816f2df SHA512 b83be108e60a6b2ff2db6a7a8137c3832e32b9833e170d9704bd3cee53236d93a463522f28bf3b0f0e9248403cdd06b1c0f8ef5a5326f79a6f0dd9b11c561b50 WHIRLPOOL 65b632603748cfd44f61ef807fc0236fbdc60a3c99177752be79dd65684d11d292e92287c201d5303907783f426e4bd09f2c3e2155e2c82cb5f4cc39e39357a3
DIST icedtea-bin-core-7.2.3.9-amd64.tar.bz2 48908349 SHA256 c68cbee3c975dcbf6c59cb441b86dd4146f23eb29f62cd8c2bab8a11269ed4ac SHA512 fdb39fc8b2794ed69b3d40cb503ea85e82814a862ed124e511725121adceb562c8a9e8280cdc33c0e8094d9a6d7a205d9d790d16ce75956680d356f574b3d55f WHIRLPOOL fa8433e91724b6b4a93770164966e8353c46844a4a782b4bc9442f37fa667027792641fb3cb7f7df65266ab3269684c2b098c40ae412a553648b287cb441cf2a
DIST icedtea-bin-core-7.2.3.9-x86.tar.bz2 49961411 SHA256 1d29372e92d2b8c30ecfb095d02aa137483870445c173554d805c6903a19a51d SHA512 62dc6f5bbc682186698b7323d1250dc68c8981fb813641ce0f98d13a1ae2227b0664ce88104c0dccc6d325e7b7a8b000a0de5248c392ebc91e7b77aba9c3ccf3 WHIRLPOOL c03267892e27eff774444b87df9b2857ec7ceb9346d849ce498e4221b45d2fb0a9e2c2f8fc261db745ed9e3f6b9f27e5e9465b7ad7bd8489a300802b0fbf2660
DIST icedtea-bin-doc-6.1.12.2.tar.bz2 11637228 SHA256 f52d2775edecfd9a9ddfee2456185f8ee20a71f570779d2f680ce349012adb14 SHA512 e88a76d5160ca272b783bb7c52da60c89c1434f35a7bcd26eb1ea72a6bc2ccf18237e0af0c238c8b3b7db2764dcf9ebb741e82aa15084650564651320a571f3a WHIRLPOOL b8d34e5786368a908a235c8fed11e76121c630f38f0350775153c41fef356c4b7a65045c02ce00bdb7d085c380164c217ac1cdbd136dbf2dbbde30bb628efd5a
DIST icedtea-bin-doc-6.1.12.4.tar.bz2 11638477 SHA256 ff5ce6246d638907ec2fab4140aae69e849e8981696271a1d478b874c7a63675 SHA512 ef208db32e07bb43e11e2e3ddbfdb707959d4b41c0419611925ed3cc037f07045a2c15d3c013f2b54335d3bea37a9a62a2d9007ade660d7b9420dad51c7a79f8 WHIRLPOOL 8e2d854b94b64c74fed587d51518a0db4d50c0e565c33db5e8b77cc0f692fbe2332e014f0b14b562f9706a84ab7cd5eceaedbcc50f497b4cf753c9c874c5ef44
DIST icedtea-bin-doc-6.1.12.5.tar.bz2 11636972 SHA256 386bdb4ff2018335b18336f5353c78b14f0bbd5efe03e1faee64e32dfed07545 SHA512 baaf51c3b11572453e1e372c947773310c6861564e29e86f237fb8fbcb084612e2f66ba742ef593d2199b9d20f2a9cc34f010a364d5df67eff28feeaec7b1dc0 WHIRLPOOL 490a3531b13e30f81d7ba4a5da61ce84b366e3e5e1e45dba0b596833fc23b58a3493e1bd6070723997a6c9ea0bed8ac7a4028895aee8acf4bc87e39e34965b12
DIST icedtea-bin-doc-7.2.3.6.tar.bz2 12536331 SHA256 2768a8e3d051caa91804773d6efe21e95a344f8105ca672d6572e586b9c113ac SHA512 91087a1631157ef945ddb88d3f3f1fb878b507902010b358384b608040ba21a629c7769bead67301240f260043ca79c59feddbadc1f8aaba7d83afce2fd0f805 WHIRLPOOL a73261bac84e007b0b7eb0d6f420b9c5bb8ff7a3c7c0681ce0616ce335552e7a4e7b17a7021a6eff11c0a4abd8df9416dd92ef1dc9bf3f95b5c1a415c55a541f
DIST icedtea-bin-doc-7.2.3.8.tar.bz2 12533719 SHA256 451468c54141ddc498d938d0bb0da20b3ebc53084219c2458537d5a22cbd3261 SHA512 62c6ff06d65d1585693f3e7fa01d1dfc3ff61056ace745c650bec0fabc50e80db01c352bd53b3f838ce633bb2450d994f103eb1244faf027be6c6cda38ab0bc6 WHIRLPOOL 5c2330beb1091992f4fb40501b7da0ad4877b78bcba59bfd70e7a640a75221746d951c6001483858085bc7a704f4546b9d03b8d4a5ecf6627f7144f00a207faf
DIST icedtea-bin-doc-7.2.3.9.tar.bz2 12531939 SHA256 0c19ead603888b8f83f7b5f72048f83d18d3cb6f31391dcda02e2e74380e7164 SHA512 4965b6f7e0cd59dc26681933b89a302e5b9384ba26126873c9dc1f97c98a96c34caceeff2682a17fd60ef36a75f44dcf7f5ffbad9c17d98bee95cd59fb19fc0e WHIRLPOOL 03500cc4bc64bf5fef13380b6a957844c739ab1093710e0fc3c1a1313e74527a6efc6970968621d69c268e838637bbbc3cba8dc9edccb2915ad5432eb3e1ea3b
DIST icedtea-bin-examples-6.1.12.2-amd64.tar.bz2 2164728 SHA256 a4231664ede197ad64a27cf0841c261a544da25afc97de4c3f43950a019e15b1 SHA512 04f2bc75085021507fbd7034cc6d8caf6e67d66875846654fb37342e462eef3a4ea38f5876bebc126e5efbf897a6ed3de613396a3266f11af47be5e0324f000a WHIRLPOOL 5111d6692b4b4853127cee5b2062d6bd0f2aaf47883196f2e97789350ad73720341c387139c3ef4e16f3ea0ade374fcc8d2a20ef02e4aa821af970171260d081
DIST icedtea-bin-examples-6.1.12.2-x86.tar.bz2 2133662 SHA256 fd20501dac712facf6443273057e7a67a5f849183620243695b4653494ec648f SHA512 ee9376e252cafa3a6be25c38a66f56a25442d2cba24967a44bbe529be7d7c36c1e928d8bacc26d9aecd292824673084d9d5a1dbdbeaf207aaf4176223d4c7c7d WHIRLPOOL 428e8165035929e6b1a9c393114aadb49924513746317aa1e496fc762624cb7f7d4a7f64fb52c94ae1e6f9a66d096b35abe1d89e0fc69b4dcf4043aaba5034f5
DIST icedtea-bin-examples-6.1.12.4-amd64.tar.bz2 2164702 SHA256 c6961168cf00e8c8b56c5aa3de373099d8bceea1b91b482d5a36e28593947917 SHA512 c03c86acf0e3976e814a0a31adcfc3806dbf3ffb35b9a2d037a0bef98223f5e75c142e1baf80029ae7c5b9c41224c2b91893e0cf109d0b4f990d75afcb97249e WHIRLPOOL adff3d880e57856bcccb48f85df0eadea2d9173f025c6cb9d743695f0e6060780821b54ab0ad0b7e557e45d5de36c0174e1cd10eba112aa0c14a8474f04e2e11
DIST icedtea-bin-examples-6.1.12.4-x86.tar.bz2 2133737 SHA256 9e6b5098e0b05e006a71927a56ea9813235d0e5698c45fc03239b70724136735 SHA512 fb9f6d583683def59f6cc63746184345f50a51ae6c5567c014f925216cf7619571d11041e863461f36932b3c7f612bda5517749af1a09174ce39a26a9d4fc31e WHIRLPOOL 21595487e055844f21022ea803e9f6192976e1670b99019c1d2b6d7377bec479b785b755e3ea528e4984a8ad6fe340733a4b87e81f60d6048d6f16f0a0702b1a
DIST icedtea-bin-examples-6.1.12.5-amd64.tar.bz2 2164585 SHA256 1b4f33e45e20f4a3bf1d1a45fe260940fa0c0ff17627e462ee5bdf85e5438fe3 SHA512 2dc3db0e9e98c5eeb4436dcb75b52039228a0f57ed6303e1fd3116503c13083c1653c07039ac7fd24d7f95d572ac4237871080a7b70804484dc1c7222827f722 WHIRLPOOL 6070c4df104df9262758b9e7ff7108a5e32163b310cd1f3b59867de95f5b2c7dc498b4538a9e973ec396b8869d31c421b802e57efc90bd11e145321077728ea8
DIST icedtea-bin-examples-6.1.12.5-x86.tar.bz2 2133457 SHA256 dbaef31b47cc854970481a8b7cb6411d252cc4d010763c8dcb1505a7ea1f9918 SHA512 1f71fb03df90d8e15e29a5b79a31c319d364e60b29c472bc893d14e52f87b89f28bab97011c1ccc5360c16009f22f2f4d7a6c81b4c8116beb124b87d8f064606 WHIRLPOOL 108b42ee95f4e1d470a2060c0e4fb701643b5ee62bd673375d05cd903fe53d404ef72a6cc9d8b03c1a9b3b697aa0b1e94faaf82d49a9451cef3b636f0d3864b5
DIST icedtea-bin-examples-7.2.3.6-amd64.tar.bz2 2334184 SHA256 37f73707bea574e0e5623bb3ea2c796729460b4b4fb4ad3f1620a2d9d6e4cf18 SHA512 3275a1d295c516b367df6b766e93df95348afe8b3d8f18f7da9ca1cdd83fa7326f0afc8b57e1514c9ace55052de3772b392efc3938a72c39e0d8a9b6f35226ce WHIRLPOOL 503b59c4423f352c7f4a860f0da1f70dee0cd8198dd499c72f4d815fc26df96f1ac1851ac6e7b670cdace92f8b25c0b8c3bc2ef30e1d2e4aa7f5b71255b5e346
DIST icedtea-bin-examples-7.2.3.6-x86.tar.bz2 2313989 SHA256 c97b482337e05a31ac79845f15c84c338da9f17d343d0d7904560e14c5138796 SHA512 4b0043f42f9f3ee7cf884160e90c12963cafcc9f064401f8ee8687576f57dd9512b9595af58abb10ec1501dd0001ebc36827e7126c5e6361a22d547deb0af7dc WHIRLPOOL 64d0285741428787aade56e70b5afd9832b866bae15a55dcad423ae4b6ca457f5e959d70cd96f22495a39a9fb43d50dff93664fcd8c2f6e112aaf228aa664a0e
DIST icedtea-bin-examples-7.2.3.8-amd64.tar.bz2 2334168 SHA256 f67f8ca7ee887d962df8251ba715f576cdbc07d035b79778b7d610580c194256 SHA512 2d539f9c5ddd8b47d9632fd0a108cf820ba8a2e42afe2228379b7b9bb236aaa40bb151884d7674b0753e86746ce9c2484b3272a4e8a549edc9ffcc8b1c609664 WHIRLPOOL 1476fbe954ff4a3660603f4b4358d3bbdbc866464fb79be22628f982c8ec9c46a2e18ca339ad0486fd44e255c72d2edf268d115d194764bebad52b2aa2d863ec
DIST icedtea-bin-examples-7.2.3.8-x86.tar.bz2 2313715 SHA256 73b8cfe118a1bc1fbbabe1c4eecf3d2fe8c7895ca42be53f0db6597c00650e7c SHA512 10800a350f9469ae495ad6a27002230c09675eda46809048f9da090ef7cce34af62b98f668c0127057e07bbf7ed8f31632f2a9ba00c98f509f3b77dbfd27675b WHIRLPOOL 72d12aaf5fe0e8aa5c9a9977225668c9421fe2aa155f10ac81d947290ad2556e67a1f14ce993b290e8d55d5a216363a339933fc5b85398ffb8707a8997ec310f
DIST icedtea-bin-examples-7.2.3.9-amd64.tar.bz2 2334505 SHA256 eff5c9f48ebeef91d1029291daab23483be91c436e17932d6dfb9b7bec0a37e1 SHA512 929a6fb595fef4f78829bdbdf303bf76c742d0a644277479e753828ffbc1a0074828703e7b8d82ae66654cf6c04309e05443e9d364a225c8fa5ea1e1e9768c36 WHIRLPOOL b13ced4c0b10dfed3d536faa9dd38bf16eb38f1c130572ede83f7bece34d26b2f6e56f9845c3668bc727e867a3c91dae8e1195efec72303f344488063fb77051
DIST icedtea-bin-examples-7.2.3.9-x86.tar.bz2 2313247 SHA256 834c9d0fd4851a27e0c9a7a83ceb144e0414a8f49e15c2ffb11fef7f83da4f13 SHA512 cba7698fae6879c2ad0ea008b3cc069663e79faf93fb64b3f84a4ed1d97b6938ee8cf470b31f2f57e068e683000defcff89d2de95f347b2f6436ce35d757be6b WHIRLPOOL 120e6167895b70efd88aaf7146eaa58e77d868c7860ecf6e535c2db32ff3caff63e693c631c3a6cb52db6c50c3c31ef87fc3f0bb222cc992d6917b5d591f8e0d
DIST icedtea-bin-libpng15-6.1.12.5-amd64.tar.bz2 18653 SHA256 5e53f6f2909572fa344978c1e7d1bc607d13d27ce77f80de20363b505fb2e39e SHA512 3e1f3fe42bae2394681161978a16835292437749f0f8e9c0256077536fa77c39350fb1fe08c6dfdb42c2c34ca505677e5dcfb1972aba7a220c18250d7bf386f9 WHIRLPOOL 391caceb3ff017b437f2e746a2d399d29e47f88f2af6d7332ca43d11e871798e5bf1da513961bacbd34b0acbefe312649f91fc5fa44ce0bf5f1ad8b046a3e413
DIST icedtea-bin-libpng15-6.1.12.5-x86.tar.bz2 17216 SHA256 69d6efc0da4625bf89aecd9e5fcbf92ab2e5c49f38c4c035a7ea45b6be4927fd SHA512 372ce6b24a121d5f7d075ae3832eb9ae928699aba254660025a70293edc962790f02d8003ad9367adcae8190163892ba29e02a213a7497d23834af2e938c9c70 WHIRLPOOL ea08f0b69249df06362a0b24f4d156537fd1ffe12491bc190f4988ca107f94d6d35a01d43f300ec2e44405897badbe6afad1a1a9f745888b9a0145beeb16681b
DIST icedtea-bin-libpng15-7.2.3.9-amd64.tar.bz2 18791 SHA256 5e121b3f5c7ef2d549ee23b8da8817d6aab2e61bf5c8c126499a4806d767f860 SHA512 3cde8a6a138b138365e9c5d981523767532f5ae99d0ea85056f17521ba030c826b9b0b1fd60b51f41a5ab04fced5bbd8c1de1371381e9616036c38376b694e77 WHIRLPOOL b0a1ffbfa88163ab74c0c15fd7377a8a8ce07e3c12b9c8ec168a90ce62b14ebd9b0cc23b58240893874c5620d7a417f57d0e7bd6e05afbb3561df4a4dbec9f06
DIST icedtea-bin-libpng15-7.2.3.9-x86.tar.bz2 17313 SHA256 32fcd8f960d7ea8f39e33e52a1ffc2bed1552ddbe6475d5d0d81450a40c6ba87 SHA512 bc8781cd5c14150e83de9a784233ef3554764a121ce36903d342cceecdd689f2a93ec354c2891787a56fbd54b96cfb8b4d279acecebb303dc92c95eec6068bff WHIRLPOOL a14b1986857fbfa429d98cdba14408d06e2e8c6d5ea0338f31425b4ec1f804385f25c0f3b6b36cb9a06a291f9065643a8d798dcc0f8f20b8ef51ccf63af564c8
DIST icedtea-bin-nsplugin-6.1.12.2-amd64.tar.bz2 1013050 SHA256 e26d916a134f4d66dc6366964f1ff5c200b749b58297fb5ce47cb2a6b354b9bf SHA512 96c1eb4bdccd1219d64aba6741cf935f1ddb4b3ef688ca8994e16d4b0f4a6b0047426e5ccafc51ebaa04a94b6f75024d754c0b1962762378d433089075c58c3a WHIRLPOOL a61346bfabceead6ce066eba16003d4a8cb8ad6748a1123f56983df87f17742d2e3ec427a5f9150d060af8e92008037aa9f0539b6ebe616d8895fb4f011e5249
DIST icedtea-bin-nsplugin-6.1.12.2-x86.tar.bz2 1007012 SHA256 dd16240400560333ee8148d2e63e533557890ee86f1ed0d8f8eb070943aa732d SHA512 1bf98836446c5c3036658185e80e529d05caa10ea69354ce1fef3b61cd88b1d169c6cb26ad9ff401e8b176c2267f555029224d252646c2e21511077e827889c3 WHIRLPOOL 59e782dfde583a9b7c260ec89acf1252acc3abfa6a788e5f5f850d63e0fd9fb34969b445cc042f0c9614161c910c9f5f4a84a069dcac3810f0793fa017e25901
DIST icedtea-bin-nsplugin-6.1.12.4-amd64.tar.bz2 1013413 SHA256 c1ea8e5368c6ad235253c925c46b25d1f57a9b4ee11d6446ceb2d28b65f60e38 SHA512 23885c6fc7b62bb0ce49065ebfa91140c1f0ae2e0359e8d486df366496150584ac1cd589a83f563df230d70ed69e01219cf08acd8cc224927c8634184d2e5e8a WHIRLPOOL 52bdec4a22fc979668adbc25313d1ec550588755b89979203d779d83b4a536b95c33f7e54522c9fc32960ec2fc9084da74a754e1f7e28caaeded9a6357fab0d9
DIST icedtea-bin-nsplugin-6.1.12.4-x86.tar.bz2 1007668 SHA256 7846482795eeb3d0e27e28d0cc455cccaf1c1c00073c505dc43356d34ee1174d SHA512 11559b00b5cfcc46c69abebaeafd369b0af6b972354313c9d0becc184d9215cdad548ab8d0843bd375714ebb97405568db1659cd5824d967109987f326ff1728 WHIRLPOOL 6ba0d909f348a3aafd54f1036d2aaf88dd6cb4bc1324ac80958222d135fcbe7e69288acfbee8c51269690c85207fdc4d634240b35d710787ca89bfb5c19661e1
DIST icedtea-bin-nsplugin-6.1.12.5-amd64.tar.bz2 1013357 SHA256 38094f24078fd09d460fc317a990eb81ba20c24d18dbf3fea7f2d97448d1dbb0 SHA512 6f1f3e7abca8dff0d6722d39a6019a8e336b0b9611fce0a35085c89b79a86f1d4d63f5e58505b99e24c167296f316c335daea1d77cca4f5ec0bdf41a2055a67a WHIRLPOOL 4a2df3bf4362cde0ca21d5f388f252214cadf06ccafc31f2f04d9af1deef4b915181d8d12b6ce4ba9163a361b2a941a456591baa9af9ebf94d09abd708c8c19b
DIST icedtea-bin-nsplugin-6.1.12.5-x86.tar.bz2 1007318 SHA256 53acefe757e2c1983a3e9828f611331afa79de89d5ae99cd38bcda30f5a67a4f SHA512 6b2413fa0afa41525aa9d5dda44512f673f6035f82b65e78f64072cda0553f809185dd3c019e6252ab39bc532674b85a7f5094fb18409d64111e687a290a3f74 WHIRLPOOL f892a5adda33708ba350968b7910e2dc6e7cee4665fa2460157823526c588769da82c5c5ff06ef9a0f3866dd727b8d1ea94c52234db14035375dab4d8429a17e
DIST icedtea-bin-nsplugin-7.2.3.6-amd64.tar.bz2 1047827 SHA256 4f276591ddd39977719f9e6e9039b5d78c46c0ec17e62d1efe0424667721ec84 SHA512 ec0f4fb365226aaea78bffde7f7f3275c9f1466d38cf8a884142f994ae6f7eaf819f5640faff371876787599324d4ad54374790ab0787c438425c1c86bfdd43d WHIRLPOOL 653641b88c257f435d26990880159feca24ffd5c57ad88012064651562addfde05ff4d3a5e4d109edc4dd607af4d121fc6b7599cd43a415db7efaf56de20b3c6
DIST icedtea-bin-nsplugin-7.2.3.6-x86.tar.bz2 1041670 SHA256 6c2664d1e71121b8bb9fbe04d1ccd248562dec69222621ce2dafe5faaf8877ff SHA512 5ddcabb3b72771d849feb59e583167134be0432ffab9bf1ac52ab27c4bf74716fa6b8e5f6af0706b9cfe853a3953d2a710f1aaf3a609af843659d98c3fdbf257 WHIRLPOOL 51239e47da164b5d73822e851f1d8a739167a54caf226c7e2e519e2ee8906c0ef82dfff873773b2f17b361801646f9c7b38bbfd162ece3c8ad35da268589d00f
DIST icedtea-bin-nsplugin-7.2.3.8-amd64.tar.bz2 1047634 SHA256 197fe27b0a3b7d453d1d09c2b014b2754e591685f82c766270c773c7fe0a0b4c SHA512 f3a97142042ee5262a63268fdd9f5dec8c1f77c5463b5b95df79bd60375cabfa8f8c85ce49936df10727784907ed13453b017af7bc9d5197931772611470e919 WHIRLPOOL 48e05a1d5e1a7705582c51f19b71657b9bc9938b8d334a83db448a084a61807884b6611056b1adeb9985c0eede5fcef0215fd54df2e5486b3a03dd883e8b9f9d
DIST icedtea-bin-nsplugin-7.2.3.8-x86.tar.bz2 1041825 SHA256 6b67af11145c4634ef883f2ad812bc8edc1b3c08ed3e425ac4f10ed322753aad SHA512 384db30ff64f39408ae2db08a41097136067af2d256a6b1f31fd803009bf66d61644298db6c713797bcf7fe1265023aebded746eb9f40276ab8c043867015707 WHIRLPOOL 4f02fe40865f06c989b915c3c63b48128e1a4ad080a0b5f451c14a4ee6e4df3fa0cf8b19302fcd64291923d88f11fb5dd386bda4604339c52fcbfe9a776f1587
DIST icedtea-bin-nsplugin-7.2.3.9-amd64.tar.bz2 1048041 SHA256 dfd810f63c699e58f3f8ae439e787b5d2dd8e9c825e998345e81d1032d0780b6 SHA512 e5e918d27c383eeced52b9e09d51eb29b0c314e4879503e61d8124c2ddb803877f0fb1ed8ffb1a4e3dff131e7be66713be2a1212c2b2e979ed3b3406b4881b6d WHIRLPOOL 664ca17a5a78a33d54a53fbee7c86db4699312e733d265c8a1e189dd5622e3b5d14e79cbb5dece70bccc18aea4fec665f96ec2926e6c8b60b8bb5e7f0ffbd5e7
DIST icedtea-bin-nsplugin-7.2.3.9-x86.tar.bz2 1041466 SHA256 6d3a4b56fc549f1810b3f2e04996bdebaf900226e76cf290bf5fecef334b4397 SHA512 1ce630e545088a9c44b47f9539b5e4638a85d7698e9092702384e65a0c413940103d08415d6815a7fe4f309eaabb0c792e74cf87df48f8cd704f79ccf40980aa WHIRLPOOL 754aa25da149ddcb07c4c438aed718ba562ac99cd53dfaea0af650eb8156d06aaae373912c4384d7af306417c687a30b7ce1968b2dc2d638ac288d5451b16873
DIST icedtea-bin-src-6.1.12.2.tar.bz2 40875911 SHA256 137932402c4f94baa90f57af4108cc224e31c5a07c1fa4a201827e51e7c9b52b SHA512 6668a2ccffbb2090cf34df714027c5c191f6a1e31cc8d921643914153d9bb8b847791558156776a201c6e25d4166a65673234eb248afd5372204cfbc947a1081 WHIRLPOOL b105327201861f0fa00625b6a0c72551b4e56038b23ddbd0b2d428c782acba6accf7be83964da6e66ee320d8e1dc10ee291e4945d4f82363b8e1739544e3781f
DIST icedtea-bin-src-6.1.12.4.tar.bz2 40882869 SHA256 162e4415be269073a38d85ce9894ff38b2bfdf1e1c4955f6d8155e09ec2e73ea SHA512 8c2b2a8d4ce3407d8dde4ad03614ad3f00dc29b6614e4ea2379e5ebdbdac92af8aa1e18b39c80f4acb63295950f18d9df13134510571710b8de7628923dc7f62 WHIRLPOOL c871041f4226ab888095abf3f5f7a9653e8a197defec98b70eb03a4e77d00bc9bab13f2b6bf331cc598ede62c059a6c412a928bc83d6b3670e562e9380ef95d6
DIST icedtea-bin-src-6.1.12.5.tar.bz2 40881998 SHA256 030ec461fd6ac1fda36c21c3d4223217d95255956a0169f2c38ddb37574755ce SHA512 1354c12b3e194ad3e42f7b8ff0e29f0908ca316a699a2a5878128e9c59b5d14e504bf20aee15eff4758c99a5ca6b95cbfb9a711ae926ece056e12641d1cf9a1c WHIRLPOOL 882473ae360de810032ca134e45ade71193df8fc0cfb4eb6b3117969e6bc0815d2097febeb05129f7a4db630b86ebc990d4ae7abeb06c88dfbaeb7dd93465d00
DIST icedtea-bin-src-7.2.3.6.tar.bz2 41274032 SHA256 b5b2b602e288fd87a83021216d29bdd7f5b72d07034c37836c1c24c2e2ddafd7 SHA512 76d97100d3294512439c681f65c04fc1f6813f6bfd91410f846a56ec76ac2f1b4dc5bf8d2a14ca02c98f8fd29d466ff22aeff9878d7a1a2d528f9ef3d90eeb41 WHIRLPOOL dea51019a5c7326b546805bf4f8712410e5d170cdd299ce900cb4e679bfa99e846743480a43ba78d84ad6462c117543d6ce0d9c312688626d7f30aa1c6928a43
DIST icedtea-bin-src-7.2.3.8.tar.bz2 41281043 SHA256 8c4de067c5b37157442c8596e41bd5e2ecbe1f1063e1ad17fdcafd3176508ba2 SHA512 c2d2d4db98c99cc6c14aab1cfe82bf44579e9dd73e06a3ea5e395e86c2434b00414760cc4daadd537465b7b9152b78972d2c6aa3e281b365492e3d289ed60995 WHIRLPOOL cb6d31c89ed2dd5f93a363b05a6877ee17bfd309e3e8e78966f6d62b95460ee63053099554c01e59663571eb8f25cec6d8cf2b428126e8223c89341810be40d5
DIST icedtea-bin-src-7.2.3.9.tar.bz2 41269870 SHA256 4d5699da20189244312f618bdc0039b816cfaaed777bf1971084d55942880ad0 SHA512 52bb50083e997d73ab2f7bba5e097f5cbfbcc114c0c8eb20fcf81b8b24662ab3e12da3bbacdac3d92f24d0ef8a8cdcf761a6e4a191f975f43aeb8c0e391784af WHIRLPOOL b4c4f1aa5d3c2fafcbed6fa2936e6b9dfcb5a743488188c63079dc406744a260b9668a649f8bf78da04060da981d86123f575a7512c36f875674dcf93284d797

@ -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-java/icedtea-bin/icedtea-bin-6.1.12.2.ebuild,v 1.4 2013/04/09 20:26:41 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-java/icedtea-bin/icedtea-bin-6.1.12.5.ebuild,v 1.1 2013/05/28 20:17:47 caster Exp $
EAPI="4"
@ -13,8 +13,10 @@ PLUGIN_VERSION="${PVR}"
DESCRIPTION="A Gentoo-made binary build of the IcedTea JDK"
HOMEPAGE="http://icedtea.classpath.org"
SRC_URI="
amd64? ( ${dist}/${PN}-core-${TARBALL_VERSION}-amd64.tar.bz2 )
x86? ( ${dist}/${PN}-core-${TARBALL_VERSION}-x86.tar.bz2 )
amd64? ( ${dist}/${PN}-core-${TARBALL_VERSION}-amd64.tar.bz2
${dist}/${PN}-libpng15-${TARBALL_VERSION}-amd64.tar.bz2 )
x86? ( ${dist}/${PN}-core-${TARBALL_VERSION}-x86.tar.bz2
${dist}/${PN}-libpng15-${TARBALL_VERSION}-x86.tar.bz2 )
doc? ( ${dist}/${PN}-doc-${TARBALL_VERSION}.tar.bz2 )
examples? (
amd64? ( ${dist}/${PN}-examples-${TARBALL_VERSION}-amd64.tar.bz2 )
@ -28,7 +30,7 @@ SRC_URI="
LICENSE="GPL-2-with-linking-exception"
SLOT="6"
KEYWORDS="-* amd64 x86"
KEYWORDS="-* ~amd64 ~x86"
IUSE="+X +alsa cjk +cups doc examples nsplugin source"
REQUIRED_USE="nsplugin? ( X )"
@ -52,7 +54,7 @@ X_COMMON_DEP="
COMMON_DEP="
>=media-libs/giflib-4.1.6-r1
=media-libs/libpng-1.5*
>=media-libs/libpng-1.5
>=sys-devel/gcc-4.3
>=sys-libs/glibc-2.11.2
>=sys-libs/zlib-1.2.3-r1
@ -81,6 +83,21 @@ RDEPEND="${COMMON_DEP}
alsa? ( ${ALSA_COMMON_DEP} )
cups? ( ${CUPS_COMMON_DEP} )"
src_unpack() {
unpack ${A}
if has_version '=media-libs/libpng-1.5*:0'; then
elog "Installing libpng-1.5 ABI version"
elog "You will have to remerge icedtea6-bin after upgrading to libpng-1.6"
elog "Note that revdep-rebuild will not do it automatically due to the mask file."
local arch=${ARCH}
use x86 && arch=i386
mv -v ${PN}-libpng15-${PV}/jre/lib/${arch}/*.so ${P}/jre/lib/${arch} || die
else
einfo "Installing libpng-1.6 ABI version"
fi
}
src_install() {
local dest="/opt/${P}"
local ddest="${ED}/${dest}"

@ -1,6 +1,5 @@
diff -urN ../libmcal-/icap/icap.c ./icap/icap.c
--- ../libmcal/icap/icap.c 2003-01-28 18:31:33.000000000 +0100
+++ ./icap/icap.c 2005-08-12 15:04:36.000000000 +0200
--- a/icap/icap.c 2003-01-28 18:31:33.000000000 +0100
+++ b/icap/icap.c 2005-08-12 15:04:36.000000000 +0200
@@ -159,7 +159,7 @@
if (!reopen) {
if ((stream = calloc(1, sizeof(*stream))) == NULL)
@ -10,9 +9,8 @@ diff -urN ../libmcal-/icap/icap.c ./icap/icap.c
goto fail;
/* Copy host. */
diff -urN ../libmcal/mstore/mstore.c ./mstore/mstore.c
--- ../libmcal/mstore/mstore.c 2005-08-12 15:30:52.000000000 +0200
+++ ./mstore/mstore.c 2005-08-12 15:31:38.000000000 +0200
--- a/mstore/mstore.c 2005-08-12 15:30:52.000000000 +0200
+++ b/mstore/mstore.c 2005-08-12 15:31:38.000000000 +0200
@@ -308,7 +308,7 @@
if (!reopen) {
if ((stream = calloc(1, sizeof(*stream))) == NULL)

@ -7,3 +7,4 @@ DIST pcre-8.21.tar.bz2 1174037 SHA256 a4b8509d11fc2764fb4e1415b764ad2c214459edc0
DIST pcre-8.30.tar.bz2 1248556 SHA256 c1113fd7db934e97ad8b3917d432e5b642e9eb9afd127eb797804937c965f4ac SHA512 0d6fd24baaf75819e254898763ae0918a6455b822b0d72043c7c52d2b5e5880352ba1981544a5966b387bd2b242085cd4f418067e9faf8e93e809b42951c6ca8 WHIRLPOOL 22c6d5285419dc6464def133d974ecd2352aa08adae56cf16de87639edecd2d902f6604cf39dff64e7ded2da1b6c9936771dc003a872e1008db578fa6b678030
DIST pcre-8.31.tar.bz2 1257162 SHA256 5778a02535473c7ee7838ea598c19f451e63cf5eec0bf0307a688301c9078c3c SHA512 bdc369b967f1d9db36d228fb291a436611d19c2f7df64a265a5c748f797763b8d66e161fd0ecd60a8a9f28fa3bc7d22d61e619c9a16c5a26c71923e2b1802145 WHIRLPOOL b9de376002bb9bc9e76bd845b78456088a46df2f1cd703f6b1d7174e93643123a13911d7055486ca1e4de7f84f13529b687893ff71abb1bcdd2a75dc8acc8e9d
DIST pcre-8.32.tar.bz2 1361156 SHA256 a913fb9bd058ef380a2d91847c3c23fcf98e92dc3b47cd08a53c021c5cde0f55 SHA512 cd0d5b3367df242fd62e969ddbad6857aa2b65342ba7d11a7b8cb73a09a062339954ce136d8009547a9eb299b37f1461c38ff50da53cea3edaebd98482c6a33b WHIRLPOOL 882a83570303ea093c862ea2b0f632981d825b0dd4b2b771e7152edb31c527b89d8cb3a761a2a87ebb4c2f421ef84d87311d6ef519e7e46bb634ba1749864271
DIST pcre-8.33.tar.bz2 1440869 SHA256 c603957a4966811c04af5f6048c71cfb4966ec93312d7b3118116ed9f3bc0478 SHA512 12ff53127c549a37241a32ad22b6d0dd50eb3c44546c56f4ddd5dd3e23b0c71060d5b9d12583f9ad98354ff01804269a4d51b166561787014b820e4c72e2e599 WHIRLPOOL b3658c6f4ff3fd6a582268cfdc1b5f3ad1aa4737f7f0ebd4db719472a1d2bf97318d13f8ac4027fa9dce7d26fc81efca4b7886da3e24513047e986d01bf55b09

@ -0,0 +1,78 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/libpcre-8.33.ebuild,v 1.1 2013/05/29 02:24:48 radhermit Exp $
EAPI="4"
inherit eutils multilib libtool flag-o-matic toolchain-funcs
DESCRIPTION="Perl-compatible regular expression library"
HOMEPAGE="http://www.pcre.org/"
MY_P="pcre-${PV/_rc/-RC}"
if [[ ${PV} != *_rc* ]] ; then
# Only the final releases are available here.
SRC_URI="mirror://sourceforge/pcre/${MY_P}.tar.bz2
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${MY_P}.tar.bz2"
else
SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Testing/${MY_P}.tar.bz2"
fi
LICENSE="BSD"
SLOT="3"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="bzip2 +cxx +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs unicode zlib"
REQUIRED_USE="readline? ( !libedit )
libedit? ( !readline )"
RDEPEND="bzip2? ( app-arch/bzip2 )
zlib? ( sys-libs/zlib )
libedit? ( dev-libs/libedit )
readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}
virtual/pkgconfig
userland_GNU? ( >=sys-apps/findutils-4.4.0 )"
S=${WORKDIR}/${MY_P}
src_prepare() {
local pc
for pc in *.pc.in ; do
echo "Libs.private: @PTHREAD_CFLAGS@" >> ${pc} #454478
done
sed -i -e "s:-lpcre ::" libpcrecpp.pc.in || die
elibtoolize
}
src_configure() {
[[ ${CHOST} == *-mint* ]] && append-cppflags -D_GNU_SOURCE
econf \
--with-match-limit-recursion=$(usex recursion-limit 8192 MATCH_LIMIT) \
$(use_enable bzip2 pcregrep-libbz2) \
$(use_enable cxx cpp) \
$(use_enable jit) $(use_enable jit pcregrep-jit) \
$(use_enable pcre16) \
$(use_enable pcre32) \
$(use_enable libedit pcretest-libedit) \
$(use_enable readline pcretest-libreadline) \
$(use_enable static-libs static) \
$(use_enable unicode utf) $(use_enable unicode unicode-properties) \
$(use_enable zlib pcregrep-libz) \
--enable-pcre8 \
--enable-shared \
--htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
--docdir="${EPREFIX}"/usr/share/doc/${PF}
}
src_install() {
emake DESTDIR="${D}" install
gen_usr_ldscript -a pcre
prune_libtool_files
}
pkg_preinst() {
preserve_old_lib /$(get_libdir)/libpcre.so.0
}
pkg_postinst() {
preserve_old_lib_notify /$(get_libdir)/libpcre.so.0
}

@ -12,6 +12,10 @@
Build 16 bit PCRE library.
</flag>
<flag name='pcre32'>
Build 32 bit PCRE library.
</flag>
<flag name='readline'>
Add support for command line editing to pcretest, through
<pkg>sys-libs/readline</pkg>.

@ -1,2 +1,2 @@
DIST link-grammar-4.7.6.tar.gz 1247942 SHA256 4cf9959a331692b8c8d8ec0457a82457b2a8e189223c7a8f7c0968d8955c7333 SHA512 e548ea07220099816c32d3a9833badca906cd20ca4c3018a8bd7bd5c22c471b2d22f3284b75a56b6b6d5c799a416754f175b9cd9610c4eb9fc56917ea13d940f WHIRLPOOL 3fffeb83c68280117c671827420b8a01cf488059854f566f202e9adfb4698a83afbf4dd5108d0523bc6513eb7dadb69cdb3f2006c19d24f20151f7dc6a10d48e
DIST link-grammar-4.7.12.tar.gz 2815323 SHA256 77d34651df340be1f9e35c92d1a2b46e7ec60aaccca5f28b8a8e2a45ee106818 SHA512 b925e02b5e77e4b4b52543f7252e4e4c53e3e8d97033c8a7dd133f3960e8ac07a5ca3c6f38d7b56399a094c87c2566c4366eabea65c386949cdbcee842296223 WHIRLPOOL a1d995de86189dfe588041b255ebaba59fa85f44857e866ae8e40f9fdc30a7ba8a0fb1ebe8eebb9c031bc56c56f04c232e37dfcf3275d0ada5d95b4d715fac70
DIST link-grammar-4.7.8.tar.gz 1288971 SHA256 3a2758e3d8e99d10188e36694084e7e14e756250e85019c73a54d8d90fb872a4 SHA512 fc9887f68ddc01d206191fb6b9caf92ae7f6f074308127e40c661547cdab3ea447e47f90c0114ce003c47de9e935ff6db51a591755d6763cf0fcf0fb53adb174 WHIRLPOOL 9976dae4ccb657af213257b50ea924a1f483a24225799816504a46377241d43cab7c53a60661a54d3203054d7d7d2cc049657e57f39db1e0f9e1f1e15d24e7fd

@ -1,25 +1,26 @@
# 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-libs/link-grammar/link-grammar-4.7.6.ebuild,v 1.10 2012/11/30 19:28:09 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/link-grammar-4.7.12.ebuild,v 1.1 2013/05/28 19:05:31 pacho Exp $
EAPI=4
inherit java-pkg-opt-2
EAPI=5
inherit java-pkg-opt-2 eutils
DESCRIPTION="Link Grammar Parser is a syntactic English parser based on
link grammar."
DESCRIPTION="Link Grammar Parser is a syntactic English parser."
HOMEPAGE="http://www.abisource.com/projects/link-grammar/ http://www.link.cs.cmu.edu/link/"
SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
# Set the same default as used in app-text/enchant
IUSE="aspell +hunspell java static-libs threads"
DEPEND="aspell? ( app-text/aspell )
hunspell? ( app-text/hunspell )
java? ( >=virtual/jdk-1.5 )"
java? ( >=virtual/jdk-1.5
dev-java/ant-core )
"
RDEPEND="${DEPEND}"
pkg_setup() {
@ -47,5 +48,5 @@ src_configure() {
src_install() {
default
! use static-libs && find "${D}" -name '*.la' -exec rm -f {} +
prune_libtool_files
}

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

@ -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/bsddb3/bsddb3-5.3.0.ebuild,v 1.11 2013/02/02 22:28:13 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-5.3.0.ebuild,v 1.12 2013/05/28 19:00:19 idella4 Exp $
EAPI="3"
PYTHON_DEPEND="2 3:3.1"
@ -38,8 +38,8 @@ src_configure() {
sed -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" -i setup2.py setup3.py || die "sed failed"
}
src_compile() {
distutils_src_compile \
python_compile() {
distutils-r1_python_compile \
--berkeley-db="${EPREFIX}/usr" \
--berkeley-db-incdir="${EPREFIX}$(db_includedir ${DB_VER})" \
--berkeley-db-libdir="${EPREFIX}/usr/$(get_libdir)"

@ -1 +1 @@
DIST django-social-auth-0.6.8.tar.gz 54385 SHA256 efeab62b3ff25d06910094a02c91de84d4f892487aed3cabaacdb25f59e71a78 SHA512 a4e55c902d2fa40763998959c7b9ada4b99cd0d091398cf55961ad385bc1a481bd2bcb0179538b64257f712018be11a859ea63833bceb578e3a4be4cd08705b0 WHIRLPOOL ffc31af760fd66be3081b67c6dd6ce0aa72b9d8b7c84ac3320bcd3de31e7ab7e9248d45b0d0a5323fdaacb08c6b8bb5305ad33b75cda3a8423ee8aed784c4c02
DIST django-social-auth-0.7.23.tar.gz 74501 SHA256 a2b18a77f5131554e34d7a173439bba119b22b17d6fa947ec46fc0164819098a SHA512 fd55ce0c0d9a8b022ab2f87461685c774d364dfd324cf47b931821953bbe37f21d29015828a8573a00ef4677f43ea9552915df9578e1629024ec1a73b561c283 WHIRLPOOL 024227b908ca632447422bab7ff3f74cb6f6017223fcee55658e825a1747243cf79aec73938cc06ee2569bb8920b58685aeffd0028155ec267b475fd4aeea29e

@ -1,27 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-social-auth/django-social-auth-0.6.8.ebuild,v 1.1 2012/04/25 18:58:58 tampakrap Exp $
EAPI=4
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS=1
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils
DESCRIPTION="An easy to setup social authentication/authorization mechanism for Django projects"
HOMEPAGE="http://pypi.python.org/pypi/django-social-auth/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
IUSE=""
LICENSE="MIT"
SLOT="0"
PYTHON_MODNAME="social_auth"
RDEPEND=""
DEPEND="${RDEPEND}
dev-python/django
dev-python/setuptools
>=dev-python/oauth2-1.5.167
>=dev-python/python-openid-2.2"

@ -0,0 +1,40 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-social-auth/django-social-auth-0.7.23.ebuild,v 1.1 2013/05/28 15:55:52 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit distutils-r1
DESCRIPTION="An easy to setup social authentication/authorization mechanism for Django projects"
HOMEPAGE="http://pypi.python.org/pypi/django-social-auth/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
IUSE=""
LICENSE="BSD"
SLOT="0"
RDEPEND=">=dev-python/django-1.3.2[${PYTHON_USEDEP}]
>=dev-python/oauth2-1.5.170[${PYTHON_USEDEP}]
>=dev-python/python-openid-2.2[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
python_test() {
export DJANGO_SETTINGS_MODULE="django.conf"
export SECRET_KEY='green'
local test
for test in social_auth/tests/{base.py,client.py,facebook.py,google.py,odnoklassniki.py,twitter.py}
do
if ! "${PYTHON}" -c \
"from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" $test
then
die "test ${test} failed under ${EPYTHON}"
else
einfo "test ${test} passed"
fi
done
einfo "All tests passed under ${EPYTHON}"
}

@ -1,3 +1,4 @@
DIST Django-1.2.7.tar.gz 6400234 SHA256 912b6b9223e2eaa64912f01e0e3b0cddc1d16007a2a6f30b206a96a8c901298a SHA512 160d6085fc5f08455f4511f290294c911fc07e72eda2fe3acf44e05f59756342b2e98a520ef61e88c45e055e907c4eb7b8bac3ec2fd3c316a89636b027ba0248 WHIRLPOOL f0e867daf2a526806186605775e6cc44a554c1d9ebf948afad8b064ecb05271655691b377cbe1fbff856b35d35119f213f24607887696903daa329e5378055fd
DIST Django-1.3.2.tar.gz 6507042 SHA256 72c4080fe30863c4581521ef6f7bfcc12d01e7c55b9ad1935acaa43e466dd764 SHA512 8a9d78269f9a0b84d2716f0a29d83866c670c2cec50ac48e6f4455073c4bb44d8f7828c1c3e735683daf7c7f528fd00f65f457c6e34fc538d0f6a4bbb95f88e3 WHIRLPOOL f750574297620d43e74f8ec0ddaa9dc381b2bee0fcd6afe369985652acf21d7cb07a22a242aca440b17546a8a89822bc7ef5299aeb507cd2bd94f2d1669fd374
DIST Django-1.3.4.tar.gz 6507771 SHA256 2626e6b216e1bdef887bd923f00d94d94b4d4e75fc2e336c6f156d842d10a607 SHA512 4c207e184ec3f01754c9916757b0c621fa76c0e9ca0aa642c37403c23e2481ef4120b763d5f2b3853125ae39bdab5f956f64fce6bb4c0e8db3d48b8891124618 WHIRLPOOL 22660ff18f03014b77cd9ded24a3c78064a47e9e464092e6abc347d902b30e375e15cf6f242834a06d78eeef5b6786a0307240173d3928fa4af366cf38fbb9d9
DIST Django-1.3.7.tar.gz 6514846 SHA256 ee50f44744e7238cb45429e4121d643c9e9201f9a63aaf646619bad18547fb8a SHA512 e704133ac282727393e933cacf17a35373839b00fde5e8716cfb5566ba6c77b9c4c36a03be6f6f1b73b45697cf99c3ac1948ebf3a8ef8d417e5f7b76f890aeb0 WHIRLPOOL 90cca356881f473a7338fbb03dc644d81de59d772470b060fecad674c326f6100873fe05c20bb7f2d68b732344b49636e1f947a00a383b511114817b74ece43c

@ -0,0 +1,83 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.7.ebuild,v 1.1 2013/05/29 02:47:33 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
PYTHON_REQ_USE='sqlite?'
inherit bash-completion-r1 distutils-r1 versionator webapp
MY_P="Django-${PV}"
DESCRIPTION="High-level Python web framework"
HOMEPAGE="http://www.djangoproject.com/ http://pypi.python.org/pypi/Django"
SRC_URI="https://www.djangoproject.com/m/releases/$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc mysql postgres sqlite test"
RDEPEND="dev-python/imaging[${PYTHON_USEDEP}]
postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] )
mysql? ( >=dev-python/mysql-python-1.2.3[${PYTHON_USEDEP}] )"
DEPEND="${RDEPEND}
doc? ( >=dev-python/sphinx-1.0.7[${PYTHON_USEDEP}] )
test? ( ${PYTHON_DEPS//sqlite?/sqlite} )"
S="${WORKDIR}/${MY_P}"
WEBAPP_MANUAL_SLOT="yes"
python_compile_all() {
if use doc; then
emake -C docs html
fi
}
python_test() {
# Tests have non-standard assumptions about PYTHONPATH,
# and don't work with ${BUILD_DIR}/lib.
# https://code.djangoproject.com/ticket/20514
PYTHONPATH=. \
"${PYTHON}" tests/runtests.py --settings=test_sqlite -v1 \
|| die "Tests fail with ${EPYTHON}"
}
src_test() {
# Port conflict in django.test.testcases.LiveServerTestCase.
# Several other races with temp files.
DISTUTILS_NO_PARALLEL_BUILD=1 distutils-r1_src_test
}
src_install() {
distutils-r1_src_install
webapp_src_install
}
python_install_all() {
newbashcomp extras/django_bash_completion ${PN}
if use doc; then
rm -fr docs/_build/html/_sources
local HTML_DOCS=( docs/_build/html/. )
fi
insinto "${MY_HTDOCSDIR#${EPREFIX}}"
doins -r django/contrib/admin/media/.
distutils-r1_python_install_all
}
pkg_postinst() {
elog "A copy of the admin media is available to"
elog "webapp-config for installation in a webroot,"
elog "as well as the traditional location in python's"
elog "site-packages dir for easy development"
elog
ewarn "If you build Django ${PV} without USE=\"vhosts\""
# XXX: call webapp_pkg_postinst? the old ebuild didn't do that...
ewarn "webapp-config will automatically install the"
ewarn "admin media into the localhost webroot."
}

@ -0,0 +1,159 @@
From 5a0a628021357bf37cccbcc401e07dc99e9415ee Mon Sep 17 00:00:00 2001
From: Ralf Schmitt <ralf@systemexit.de>
Date: Fri, 3 May 2013 21:48:03 +0200
Subject: [PATCH] fix segfaults when using gcc 4.8 on amd64/x86 unix
I'm just porting the aarch64 stuff committed recently.
---
platform/switch_amd64_unix.h | 14 +++++++++++++-
platform/switch_x86_unix.h | 15 ++++++++++++++-
2 files changed, 27 insertions(+), 2 deletions(-)
diff --git a/platform/switch_amd64_unix.h b/platform/switch_amd64_unix.h
index 3ed0a16..05b34b6 100644
--- a/platform/switch_amd64_unix.h
+++ b/platform/switch_amd64_unix.h
@@ -2,6 +2,9 @@
* this is the internal transfer function.
*
* HISTORY
+ * 3-May-13 Ralf Schmitt <ralf@systemexit.de>
+ * Add support for strange GCC caller-save decisions
+ * (ported from switch_aarch64_gcc.h)
* 18-Aug-11 Alexey Borzenkov <snaury@gmail.com>
* Correctly save rbp, csr and cw
* 01-Apr-04 Hye-Shik Chang <perky@FreeBSD.org>
@@ -33,10 +36,18 @@
#define REGS_TO_SAVE "r12", "r13", "r14", "r15"
+/* See switch_aarch64_gcc.h for the purpose of this function */
+__attribute__((noinline, noclone)) int fancy_return_zero(void);
+__attribute__((noinline, noclone)) int
+fancy_return_zero(void)
+{
+ return 0;
+}
static int
slp_switch(void)
{
+ int err = 0;
void* rbp;
void* rbx;
unsigned int csr;
@@ -57,13 +68,14 @@ slp_switch(void)
: "r" (stsizediff)
);
SLP_RESTORE_STATE();
+ err = fancy_return_zero();
}
__asm__ volatile ("movq %0, %%rbx" : : "m" (rbx));
__asm__ volatile ("movq %0, %%rbp" : : "m" (rbp));
__asm__ volatile ("ldmxcsr %0" : : "m" (csr));
__asm__ volatile ("fldcw %0" : : "m" (cw));
__asm__ volatile ("" : : : REGS_TO_SAVE);
- return 0;
+ return err;
}
#endif
diff --git a/platform/switch_x86_unix.h b/platform/switch_x86_unix.h
index 0d42a67..e66633e 100644
--- a/platform/switch_x86_unix.h
+++ b/platform/switch_x86_unix.h
@@ -2,6 +2,9 @@
* this is the internal transfer function.
*
* HISTORY
+ * 3-May-13 Ralf Schmitt <ralf@systemexit.de>
+ * Add support for strange GCC caller-save decisions
+ * (ported from switch_aarch64_gcc.h)
* 19-Aug-11 Alexey Borzenkov <snaury@gmail.com>
* Correctly save ebp, ebx and cw
* 07-Sep-05 (py-dev mailing list discussion)
@@ -33,9 +36,18 @@
/* the above works fine with gcc 2.96, but 2.95.3 wants this */
#define STACK_MAGIC 0
+/* See below for the purpose of this function. */
+__attribute__((noinline, noclone)) int fancy_return_zero(void);
+__attribute__((noinline, noclone)) int
+fancy_return_zero(void)
+{
+ return 0;
+}
+
static int
slp_switch(void)
{
+ int err = 0;
#ifdef _WIN32
void *seh;
#endif
@@ -64,6 +76,7 @@ slp_switch(void)
: "r" (stsizediff)
);
SLP_RESTORE_STATE();
+ err = fancy_return_zero();
}
#ifdef _WIN32
__asm__ volatile (
@@ -77,7 +90,7 @@ slp_switch(void)
__asm__ volatile ("movl %0, %%ebp" : : "m" (ebp));
__asm__ volatile ("fldcw %0" : : "m" (cw));
__asm__ volatile ("" : : : "esi", "edi");
- return 0;
+ return err;
}
#endif
--
1.8.2.1
--- b/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#! /usr/bin/env python
-import sys, os, glob, platform
+import sys, os, glob, platform, tempfile, shutil
# workaround segfaults on openbsd and RHEL 3 / CentOS 3 . see
# https://bitbucket.org/ambroff/greenlet/issue/11/segfault-on-openbsd-i386
@@ -54,10 +54,33 @@
extra_objects=extra_objects,
depends=['greenlet.h', 'slp_platformselect.h'] + _find_platform_headers())]
-from my_build_ext import build_ext
-
+from my_build_ext import build_ext as _build_ext
from distutils.core import Command
+
+class build_ext(_build_ext):
+ def configure_compiler(self):
+ compiler = self.compiler
+ if compiler.__class__.__name__ != "UnixCCompiler":
+ return
+
+ compiler.compiler_so += ["-fno-tree-dominator-opts"]
+ tmpdir = tempfile.mkdtemp()
+
+ try:
+ simple_c = os.path.join(tmpdir, "simple.c")
+ open(simple_c, "w").write("void foo(){}")
+ compiler.compile([simple_c], output_dir=tmpdir)
+ except Exception:
+ del compiler.compiler_so[-1]
+
+ shutil.rmtree(tmpdir)
+
+ def build_extensions(self):
+ self.configure_compiler()
+ _build_ext.build_extensions(self)
+
+
class fixup(Command):
user_options = []
description = "prevent duplicate uploads and upload for the wrong architecture"

@ -0,0 +1,47 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r2.ebuild,v 1.1 2013/05/29 01:58:02 radhermit Exp $
EAPI=5
# Note: greenlet is built-in in pypy
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Lightweight in-process concurrent programming"
HOMEPAGE="http://pypi.python.org/pypi/greenlet/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
DEPEND="app-arch/unzip
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
PATCHES=( "${FILESDIR}"/${PN}-0.4.0-gcc48.patch )
python_compile() {
if [[ ${EPYTHON} == python2* ]]; then
local CFLAGS=${CFLAGS} CXXFLAGS=${CXXFLAGS}
append-flags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_compile_all() {
use doc && emake -C doc html
}
python_test() {
"${PYTHON}" run-tests.py -n || die "Tests fail with ${EPYTHON}"
}
python_install_all() {
use doc && local HTML_DOCS=( doc/_build/html/. )
distutils-r1_python_install_all
}

@ -1,2 +1 @@
DIST Imaging-1.1.7.tar.gz 498749 SHA256 895bc7c2498c8e1f9b99938f1a40dc86b3f149741f105cf7c7bd2e0725405211 SHA512 fec2d39b4db3cb33cd7e7895aba4c3a8a5d4cff28decb9106c88e392cb848edf5593fcd77d11994bb16321837fdb26958787dac2c86d6f7c09996f466bac11f1 WHIRLPOOL e610b4097723f77de4c495537c64741ee4bd996f89d12e2e7853fb8f09028d02fa46920a86827f263eb6324a9063d2321ff865c80b7f8482b19f8143500575e8
DIST Pillow-2.0.0.zip 1408539 SHA256 3e70c8f13675284166e4a8d8899107bf67febe676b893eb8d88785c24cca4c15 SHA512 8d87ba6b1cc60cf0c80d1a7222fa2ba309c8336fe1061aeb778562c70b2427b80e6d89fffcfe430d6da764e5f0c1ad55a3a03a8635cc305c98699b73ee10d32c WHIRLPOOL 409614ae169526db2f5beba49db362ea4f1ef73889f09e63fe8be8419a0893d6ea155b03cd0826549bb42777d1d49831fcc362a1889675e3a19e40a540fe1dd1

@ -1,24 +0,0 @@
commit cb4f0f2b3c57a76551c7dfdae6a67f4b58da4681
Author: Alex Clark <aclark@aclark.net>
Date: Wed Feb 6 09:25:03 2013 -0500
Revert "Fix saving images with added transparency"
This reverts commit cc439099c1e8c81a929ea446caa6791d7d9b6bd6.
diff --git a/PIL/GifImagePlugin.py b/PIL/GifImagePlugin.py
index 2036893..443d4db 100644
--- a/PIL/GifImagePlugin.py
+++ b/PIL/GifImagePlugin.py
@@ -364,11 +364,6 @@ def getheader(im, palette=None, info=None):
for i in range(maxcolor):
s.append(o8(i) * 3)
- if im.info.has_key('transparency'):
- transparentIndex = im.info['transparency']
- s.append('!' + o8(0xf9) + o8(4) + o8(1) + o8(0) + o8(0) +
- o8(transparentIndex) + o8(0))
-
return s
def getdata(im, offset = (0, 0), **params):

@ -1,14 +0,0 @@
--- PIL/GifImagePlugin.py
+++ PIL/GifImagePlugin.py
@@ -364,6 +364,11 @@
for i in range(maxcolor):
s.append(o8(i) * 3)
+ if im.info.has_key('transparency'):
+ transparentIndex = im.info['transparency']
+ s.append('!' + o8(0xf9) + o8(4) + o8(1) + o8(0) + o8(0) +
+ o8(transparentIndex) + o8(0))
+
return s
def getdata(im, offset = (0, 0), **params):

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/imaging/imaging-1.1.7-r1.ebuild,v 1.12 2012/12/01 02:02:19 radhermit Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/imaging/imaging-1.1.7-r1.ebuild,v 1.13 2013/05/28 22:47:40 floppym Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -28,6 +28,7 @@ DEPEND="virtual/jpeg
scanner? ( media-gfx/sane-backends )
X? ( x11-misc/xdg-utils )"
RDEPEND="${DEPEND}"
RDEPEND+=" !dev-python/pillow"
S="${WORKDIR}/${MY_P}"

@ -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/imaging/imaging-1.1.7-r2.ebuild,v 1.4 2013/02/24 12:15:03 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/imaging/imaging-1.1.7-r2.ebuild,v 1.5 2013/05/28 22:47:40 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
@ -25,6 +25,7 @@ DEPEND="virtual/jpeg
scanner? ( media-gfx/sane-backends )
X? ( x11-misc/xdg-utils )"
RDEPEND="${DEPEND}"
RDEPEND+=" !dev-python/pillow"
S="${WORKDIR}/${MY_P}"

@ -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/imaging/imaging-1.1.7-r4.ebuild,v 1.1 2013/05/07 23:27:25 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/imaging/imaging-1.1.7-r4.ebuild,v 1.2 2013/05/28 22:47:40 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
@ -28,6 +28,7 @@ RDEPEND="
zlib? ( sys-libs/zlib )
!dev-python/pillow"
DEPEND="${RDEPEND}"
RDEPEND+=" !dev-python/pillow"
# Tests don't handle missing jpeg, tiff & zlib properly.
REQUIRED_USE="test? ( jpeg tiff zlib )"

@ -1,122 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/imaging/imaging-2.0.0.ebuild,v 1.1 2013/05/27 23:27:33 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
PYTHON_REQ_USE='tk?'
inherit distutils-r1 eutils
MY_PN=Pillow
MY_P=${MY_PN}-${PV}
DESCRIPTION="Python Imaging Library (fork)"
HOMEPAGE="https://github.com/python-imaging/Pillow https://pypi.python.org/pypi/Pillow"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
LICENSE="HPND"
SLOT="0"
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="doc examples jpeg lcms scanner test tiff tk truetype webp zlib"
RDEPEND="
truetype? ( media-libs/freetype:2= )
jpeg? ( virtual/jpeg )
lcms? ( media-libs/lcms:0= )
scanner? ( media-gfx/sane-backends:0= )
tiff? ( media-libs/tiff:0= )
webp? ( media-libs/libwebp:0= )
zlib? ( sys-libs/zlib:0= )"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx )"
# Tests don't handle missing jpeg, tiff & zlib properly.
# https://github.com/python-imaging/Pillow/pull/199
REQUIRED_USE="test? ( jpeg tiff zlib )"
S="${WORKDIR}/${MY_P}"
src_prepare() {
# Tests like to write to cwd.
# https://github.com/python-imaging/Pillow/pull/200
use test && DISTUTILS_IN_SOURCE_BUILD=1
distutils-r1_src_prepare
}
python_prepare_all() {
# Apply patches before executing sed.
local patches=(
"${FILESDIR}/imaging-1.1.7-no-xv.patch"
"${FILESDIR}/imaging-2.0.0-delete_hardcoded_paths.patch"
"${FILESDIR}/imaging-2.0.0-gif_transparency.patch"
"${FILESDIR}/imaging-2.0.0-libm_linking.patch"
"${FILESDIR}/imaging-2.0.0-GifImagePlugin.patch"
)
epatch "${patches[@]}"
# Add shebangs.
# https://github.com/python-imaging/Pillow/pull/197
sed -e "1i#!/usr/bin/env python" -i Scripts/*.py || die
# Disable all the stuff we don't want.
local f
for f in jpeg lcms tiff tk webp zlib; do
if ! use ${f}; then
sed -i -e "s:feature.${f} =:& None #:" setup.py || die
fi
done
if ! use truetype; then
sed -i -e 's:feature.freetype =:& None #:' setup.py || die
fi
distutils-r1_python_prepare_all
}
# XXX: split into two ebuilds?
wrap_phase() {
"${@}"
if use scanner; then
cd Sane || die
"${@}"
fi
}
python_compile() {
wrap_phase distutils-r1_python_compile
}
python_compile_all() {
use doc && emake -C docs html
}
python_test() {
"${PYTHON}" selftest.py || die "Tests fail with ${EPYTHON}"
"${PYTHON}" Tests/run.py --installed || die "Tests fail with ${EPYTHON}"
}
python_install() {
python_doheader libImaging/{Imaging.h,ImPlatform.h}
wrap_phase distutils-r1_python_install
}
python_install_all() {
use doc && local HTML_DOCS=( docs/_build/. )
use examples && local EXAMPLES=( Scripts/. )
distutils-r1_python_install_all
if use scanner; then
docinto sane
dodoc Sane/{CHANGES,README,sanedoc.txt}
fi
if use examples && use scanner; then
docinto examples/sane
doins Sane/demo_*.py
fi
}

@ -0,0 +1,18 @@
--- PIL/ImageShow.py.old 2009-11-30 10:28:37.000000000 +0100
+++ PIL/ImageShow.py 2009-11-30 10:29:02.000000000 +0100
@@ -149,13 +149,10 @@
def get_command_ex(self, file, title=None, **options):
# note: xv is pretty outdated. most modern systems have
# imagemagick's display command instead.
- command = executable = "xv"
- if title:
- # FIXME: do full escaping
- command = command + " -name \"%s\"" % title
+ command = executable = "xdg-open"
return command, executable
- if which("xv"):
+ if which("xdg-open"):
register(XVViewer)
if __name__ == "__main__":

@ -1,37 +1,38 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.0.0.ebuild,v 1.1 2013/04/21 20:17:26 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.0.0.ebuild,v 1.2 2013/05/28 22:44:34 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
PYTHON_REQ_USE='tk?'
inherit distutils-r1
inherit distutils-r1 eutils
MY_PN=Pillow
MY_P=${MY_PN}-${PV}
DESCRIPTION="Python Imaging Library (PIL)"
HOMEPAGE="http://www.pythonware.com/products/pil/index.htm"
DESCRIPTION="Python Imaging Library (fork)"
HOMEPAGE="https://github.com/python-imaging/Pillow https://pypi.python.org/pypi/Pillow"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
LICENSE="HPND"
SLOT="0"
KEYWORDS="~amd64 ~x86"
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="doc examples jpeg lcms scanner test tiff tk truetype webp zlib"
RDEPEND="
truetype? ( media-libs/freetype:2 )
truetype? ( media-libs/freetype:2= )
jpeg? ( virtual/jpeg )
lcms? ( media-libs/lcms:0 )
scanner? ( media-gfx/sane-backends )
tiff? ( media-libs/tiff )
webp? ( media-libs/libwebp )
zlib? ( sys-libs/zlib )
!dev-python/imaging"
lcms? ( media-libs/lcms:0= )
scanner? ( media-gfx/sane-backends:0= )
tiff? ( media-libs/tiff:0= )
webp? ( media-libs/libwebp:0= )
zlib? ( sys-libs/zlib:0= )"
DEPEND="${RDEPEND}
app-arch/unzip
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx )"
RDEPEND+=" !dev-python/imaging"
# Tests don't handle missing jpeg, tiff & zlib properly.
# https://github.com/python-imaging/Pillow/pull/199
@ -48,6 +49,14 @@ src_prepare() {
}
python_prepare_all() {
# Apply patches before executing sed.
local patches=(
"${FILESDIR}/imaging-1.1.7-no-xv.patch"
"${FILESDIR}/pillow-2.0.0-delete_hardcoded_paths.patch"
"${FILESDIR}/pillow-2.0.0-libm_linking.patch"
)
epatch "${patches[@]}"
# Add shebangs.
# https://github.com/python-imaging/Pillow/pull/197
sed -e "1i#!/usr/bin/env python" -i Scripts/*.py || die

@ -0,0 +1,17 @@
https://github.com/mongodb/mongo-python-driver/commit/519733457fb456f64b49ae66ffa6a401e1e72f24
diff --git a/test/test_pooling_base.py b/test/test_pooling_base.py
index 2190f38..d396b56 100644
--- a/test/test_pooling_base.py
+++ b/test/test_pooling_base.py
@@ -700,6 +700,10 @@ def leak_request():
g.start()
g.join(1)
self.assertTrue(g.ready(), "Greenlet is hung")
+
+ # In Gevent after 0.13.8, join() returns before the Greenlet.link
+ # callback fires. Give it a moment to reclaim the socket.
+ gevent.sleep(0.1)
else:
lock = thread.allocate_lock()
lock.acquire()

@ -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/pymongo/pymongo-2.5.1.ebuild,v 1.5 2013/05/27 07:49:42 idella4 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pymongo/pymongo-2.5.1.ebuild,v 1.6 2013/05/28 18:24:32 idella4 Exp $
EAPI=5
@ -42,6 +42,8 @@ pkg_setup() {
reqcheck pkg_setup
}
PATCHES=( "${FILESDIR}"/${P}-greenlet.patch )
python_compile_all() {
if use doc; then
mkdir html || die
@ -105,9 +107,6 @@ python_test() {
pushd "${BUILD_DIR}"/../ > /dev/null
if [[ "${EPYTHON}" == python3* ]]; then
2to3 --no-diffs -w test
elif [[ "${EPYTHON}" == 'python2.7' || "${EPYTHON}" == 'python2.6' ]]; then
sed -e 's:test_socket_reclamation:_&:' \
-i test/test_pooling_base.py || die
fi
DB_PORT2=$(( DB_PORT + 1 )) DB_PORT3=$(( DB_PORT + 2 )) esetup.py test || failed=1

@ -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-util/cppcheck/cppcheck-1.59-r1.ebuild,v 1.1 2013/05/28 08:32:23 xmw Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.59-r1.ebuild,v 1.2 2013/05/28 21:49:32 xmw Exp $
EAPI=5
@ -55,5 +55,6 @@ src_install() {
pushd htmlreport
distutils-r1_src_install
popd
find "${D}" -name "*.egg-info" -delete
fi
}

@ -1,2 +1,3 @@
DIST geany-1.22.tar.bz2 3198289 SHA256 901a35a7395ef10a80fb10b3ab63bae3871693a4e82d56388e9521a27877577e SHA512 59c411dc8df9f92fd26dc1c4ba65d18c92a2a9e84ae4413153d697ccd90f00d1d437ce63700e3198869dc11dcb8c81920df57a75b5a95cebeb88a364418869cc WHIRLPOOL 8c63308feecf1abb730671c077efc97ee788ac2bed90d0400b7480946eeb9c84e16a3c7b38a46f356eb6f51d68972c8b7b4c0c62b37a3ab95ff003a712a494d0
DIST geany-1.23.1.tar.bz2 3622524 SHA256 8815b16e59d8679ec359a1a5754fee05e77f7bca53083c939654bfc77d978fad SHA512 e986c35b5fbbc23745d3acda4cddc5de6f273807ffb4da7ff7ea20f108c1f04d763b1207268f06bc45e675d0f0883b309a90dc8e27b8af2f1ec626b557faf015 WHIRLPOOL d777c915738338de7d67578527c63b9da201eefd3322c2118513082b1f109187f6a4900c6ed335e4bd6b2d6472d34ecaff6d1267f43b38827b73026c813e2108
DIST geany-1.23.tar.bz2 3622917 SHA256 cdd4a772694803c837ae59e56f7bdc2faba174509317211f522e7d25dfcbe8b0 SHA512 d8e8bc10a488bb1b727e55b710eaf01f944d6c16e5ea93d0ef521a5d9fcaecad85c497314fae8478e6912999bb4c39716f25acfb22852e0f1d813aecb16d054f WHIRLPOOL e70f0bbf70de76566137a03289524bd4521707f80610b7f52f76e969136f89bdae9e2c15795db85079e043d089903341f73fc6f028a4e24dab135ccdeb79346e

@ -0,0 +1,61 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/geany/geany-1.23.1.ebuild,v 1.1 2013/05/28 15:09:07 polynomial-c Exp $
EAPI=5
inherit eutils fdo-mime gnome2-utils
LANGS="ar ast be bg ca cs de el en_GB es et eu fa fi fr gl he hi hu id it ja kk ko lb lt mn nl nn pl pt pt_BR ro ru sk sl sr sv tr uk vi zh_CN ZH_TW"
NOSHORTLANGS="en_GB zh_CN zh_TW"
DESCRIPTION="GTK+ based fast and lightweight IDE"
HOMEPAGE="http://www.geany.org"
SRC_URI="http://download.geany.org/${P}.tar.bz2"
LICENSE="GPL-2+ HPND"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="+vte"
RDEPEND=">=x11-libs/gtk+-2.16:2
>=dev-libs/glib-2.20:2
vte? ( x11-libs/vte:0 )"
DEPEND="${RDEPEND}
virtual/pkgconfig
dev-util/intltool
sys-devel/gettext"
pkg_setup() {
strip-linguas ${LANGS}
}
src_prepare() {
# Syntax highlighting for Portage
sed -i -e "s:*.sh;:*.sh;*.ebuild;*.eclass;:" \
data/filetype_extensions.conf || die
}
src_configure() {
econf \
--disable-dependency-tracking \
--docdir="/usr/share/doc/${PF}" \
$(use_enable vte)
}
src_install() {
emake DESTDIR="${D}" DOCDIR="${ED}/usr/share/doc/${PF}" install || die
rm -f "${ED}"/usr/share/doc/${PF}/{COPYING,GPL-2,ScintillaLicense.txt}
prune_libtool_files --all
}
pkg_preinst() { gnome2_icon_savelist; }
pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}

@ -1 +0,0 @@
DIST gpupetemesagl176.tar.gz 198545 RMD160 9fee7af094e89580d95c9b103c739d9aef985ee4 SHA1 e8fddc36a81d46f8c8c45f756015a0dc2d12f4d7 SHA256 b974caf7798fdf8e8f024dea97cadcbb0d34d6f7e871517e03fc1c6d5a6b56c6

@ -1,32 +0,0 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-gpupetemesagl/psemu-gpupetemesagl-1.76.ebuild,v 1.4 2009/01/27 06:27:45 mr_bones_ Exp $
EAPI=1
inherit games
DESCRIPTION="PSEmu MesaGL GPU"
HOMEPAGE="http://www.pbernert.com/"
SRC_URI="http://www.pbernert.com/gpupetemesagl${PV//./}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RESTRICT="strip"
RDEPEND="virtual/opengl
x11-libs/gtk+:1"
S=${WORKDIR}
src_install() {
exeinto "$(games_get_libdir)"/psemu/plugins
doexe lib* || die "doexe failed"
exeinto "$(games_get_libdir)"/psemu/cfg
doexe cfgPeteMesaGL || die "doexe failed"
insinto "$(games_get_libdir)"/psemu/cfg
doins gpuPeteMesaGL.cfg || die "doins failed"
dodoc readme.txt version.txt
prepgamesdirs
}

@ -1,3 +0,0 @@
DIST gpupetexgl208.tar.gz 189449 RMD160 cb748f448de108350927d4c446490074c820f941 SHA1 4570ff834370636314d4a8d64fdb6765bf0ef453 SHA256 01486fd9c644e44abd7aa303cbdccd4139d2a133b75f53436b6b8e5fb14dc9d0
DIST pete_ogl2_shader_scale2x.zip 3072 RMD160 c21bfa1e80120521e270deb325d61ff526e5a28d SHA1 28f8fb2ffed2c2d7159887bda3b08d6b5c0263ca SHA256 435392c94f6b6ad5549a03e58c66a8fc5bca60e9ae2082c616616821cdf5974c
DIST pete_ogl2_shader_simpleblur.zip 1032 RMD160 fb0fdd45a56b716ad3f9f6a93dbecef84d8f725e SHA1 249311fab491b3ff878c42137aef5c658178b2d0 SHA256 52cbb4df75ba2ec08863a937146578bb223bab5b5dc7a2744b45fa2c338c31cc

@ -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,39 +0,0 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-gpupetexgl2/psemu-gpupetexgl2-2.0.8.ebuild,v 1.3 2009/01/27 06:25:30 mr_bones_ Exp $
EAPI=1
inherit games
DESCRIPTION="PSEmu XGL2 GPU"
HOMEPAGE="http://www.pbernert.com/"
SRC_URI="http://www.pbernert.com/gpupetexgl${PV//.}.tar.gz
http://www.pbernert.com/pete_ogl2_shader_scale2x.zip
http://www.pbernert.com/pete_ogl2_shader_simpleblur.zip"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RESTRICT="strip"
RDEPEND="virtual/opengl
x11-libs/gtk+:1"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}
src_install() {
exeinto "$(games_get_libdir)"/psemu/plugins
doexe lib* || die "doexe failed"
exeinto "$(games_get_libdir)"/psemu/cfg
doexe cfgPeteXGL2 || die "doexe failed"
insinto "$(games_get_libdir)"/psemu/cfg
doins gpuPeteXGL2.cfg || die "doins failed"
# now do our shader files!
insinto "$(games_get_libdir)"/psemu/shaders
doins *.fp *.vp *.slf *.slv || die "doins failed"
dodoc *.txt
prepgamesdirs
}

@ -1,8 +1,9 @@
DIST simulinux-112-3.zip 3071766 SHA256 2ca8375b44b433e7034dd17515d1f8319d4a04e18960d0d8c828cf7603199e92 SHA512 9e051989761d0c469b070af99b95ad04f1f96e85513664d5ff13b564404bed579217d90f92e5e80069288d0e5db0887a1f1ca9a62250895a58f63ad592d62e7c WHIRLPOOL f2a844e981ec4db115ef9e36e18e8bce8f494063d4d3d1e13e56c9837c382d6559954ef2002e26a40accf82da088aa5cd91001ac7f834134f50472840692b920
DIST simulinux-complete-102-2-2.zip 6115022 SHA256 0f7752b7625ecfe18ab29f724321249ca9cc49cc9e05e392b3d19190188a6c98 SHA512 9af231cdc7c254030b061b3f11a09bbfba6569c57757a3589036eb8ee980531877911d44626d5a663fe6cf209a913e7f66a7a480f141aa7c518dabae01e0feb1 WHIRLPOOL e3fa7745f08619c9c8944c7046d18ef539e4ecee98a63645ef93799b5722a881fa4e3f0f4e78a9e1d5ba4225894f15002fcfb0ffbac870585fabffc0f363380c
DIST simupak64-112-1.zip 3612453 SHA256 fc7acd1004215e649ec0d62ff2e1f3d7708905c9342ba71a4f9d935104cd2785 SHA512 94273ea3e6b7a4e258fc82dc4ccda3e007b5da432cab6adf4a76c2e86eca6bdf6cd264142fb209f90b9164bf2536a12d5bbe3a89b505bb5f4bdcdcdbe5d0fd70 WHIRLPOOL 1c928e04230327d1eca6f81a2b156c219a3f032418db19a9ed747aebd41c31e26ec5263683c200aa9715b830b07bd497dc7769753449dd49fc80bcab9dec024c
DIST simupak64-112-2.zip 4117721 SHA256 66ece5a993b8c9dcc22c4cf8c35589ae104a38fc29452490bb5258bad3a4783f SHA512 264dcd1effb230cea28cff1e225f3bec51fe3a196c7366caacbe63ea0982ddef6acaf8f4673083050978c6d147c34a90964bd617de80a5a77d4ff76ac4b54ba9 WHIRLPOOL 7473d40e15bc26bbf96a659e47a0998d441cf15a955bf1f4e090482ad2b375ea110fc824fe2720f70b80c21e73f54d8f541261feb44af1f50f1ac154fadb8087
DIST simupak64-112-3.zip 4117394 SHA256 dc443d9ddc1f36e10435f672a03f86d4ad83e33926045b14664f6d2580b56e8b SHA512 7e5997efb52c36a1871e25ca3f278088aa5450f6ba4abb447dd3881438bda4473571166b79719cb8b5879f878538e74c5375683b8d76ddbdd5c575de690c44a9 WHIRLPOOL aa92bd5882827e6c1cb54a99bf92ff6251c31fb37072457b802d499e47e3b3ea5ff52592e56d04d71c6e1e8b2588c57c195793233a0b5322247651a2a3b02d6a
DIST simupak64-addon-food-102-2-1.zip 113454 SHA256 7add9c3e3dc3959c6a39776043a16beb92f6f59190fcae25b29e367c17e24607 SHA512 162ee13cf56d2ec248f4cceb4083586a5029fefb08d4a848ddd73fea114671d7b88267baefd10b63e2d3e4559d1cdef7cd7203e8d931ed5cebddcac6cf23a80d WHIRLPOOL a57cca9e1210c688ce4f0e048de9f0a487b87bbfecaf06e964baeadc2ec18a5456c3f37b04b1b73ee3fca72aa880915c79e832be231a0dfd13baa8d551108aef
DIST simupak64-addon-food-112-1.zip 125229 SHA256 9f956f4071f6954ef6a6638194493580650376e9c5d32556f04b2426cafc3de3 SHA512 bc69ee995e64b0a6bec969a472240e86a9ec41b5b05825b2bd2471f25503124c9e385fc06b611618b29006d5084aee16e42ddf8fe6c707b5ef35d5668bf3a861 WHIRLPOOL 535d952302f4aa28c2ef8b58d527844e5f798e6893df31cfe8d8a773ca5529dca7174affaadccc04dc2029d2df4c55317f021580704a487f70a08e4ca7a7ed5a
DIST simutrans-src-102-2-2.zip 2498680 SHA256 b105013ba180706a4790eddf19e007e1955c4ef7daa1c90fb6aaa48c28134351 SHA512 8206c19723a5497b8f156ac9efde402eae15055d7ebf2ce0e6fb9bf2a1cb220a13f601a42583eb252cb362f0641d5c58d8d9afaab3b5ee182f7e9e180d024a4c WHIRLPOOL 1aacf2bb99c6c84d41cfac304a59e195a3cb970e4876273d4d0c9278250da803f7fec9bb92d459530e374a947753631189c553b53422799a5bc921ecc7ace45b
DIST simutrans-src-112-1.zip 3478226 SHA256 acd0141ecce63f17339f5cc2a8708832908c84745507c1d15c8935514bbb3df7 SHA512 97232c8a567d8fe5e58dbab268f5cbea01b79735ee91b0469a31894a63f6bda3fa17169733da951fdff301f6df12b7844336965ad214f6e6dd11d3e67b6f93eb WHIRLPOOL fdd2a277d337e706157108779ab47bbef20d01fb54efd0d78e2d54bfa033235d3d7d69e70b26845516ede2a10bca28d52b98c1c27c4a7bc5fd4c18120ab34171
DIST simutrans-src-112-2.zip 1674060 SHA256 0064e9183a995e85aae88f45cc3aaf6a644b12edd47ddf9ef477f213614700fe SHA512 927076481402381bf12e40410c994d04d6a9e6cb1294295790d7829e1dc08d1e2a7be988809c1fca53f5f43317c00b04130dc125e48759f16bd75f0631fd9ca9 WHIRLPOOL 949b6edf022977f3893e5caabb0c5e0daa175106647fd48ab8ce5dc440fb556c88b0257f3972a6badba909675d4dad4ec56fd8f0e1ba411506da10051f470938
DIST simutrans-src-112-3.zip 1677347 SHA256 8aa9ded7ac65587d65070b950b50f4094b7f77d33d263d1b821a0fe9f214b849 SHA512 0d63da8bed2298dd4516caea748a10c7c27eec2fb00ced9c76600ec93a975a01efa0fe7b4c8f8a5dc9e035b8c1dcf1f7772dfec54594f41efb8c4790d4da99e9 WHIRLPOOL 7ed9310d49339421fed2c4ca8098f21d367de7ad2d933d1d56d5c25542995657f1a98b34066464fbf916ffa4903338bd519fd1e15437017d7899bc2b4c4466f1

@ -1,14 +1,15 @@
--- Makefile.orig 2013-01-22 16:53:11.574351933 -0500
+++ Makefile 2013-01-22 16:57:38.801999641 -0500
@@ -90,7 +90,6 @@
--- Makefile.orig 2013-05-28 17:58:03.379228527 -0400
+++ Makefile 2013-05-28 17:58:24.768491369 -0400
@@ -88,8 +88,6 @@
endif
endif
endif
else
-else
- CFLAGS += -O
endif
ifdef DEBUG
@@ -109,6 +108,7 @@
@@ -108,6 +106,7 @@
endif
else
CFLAGS += -DNDEBUG
@ -16,7 +17,7 @@
endif
ifneq ($(PROFILE),)
@@ -121,6 +121,7 @@
@@ -120,6 +119,7 @@
ifneq ($(MULTI_THREAD),)
CFLAGS += -DMULTI_THREAD=$(MULTI_THREAD)
@ -24,7 +25,7 @@
ifneq ($(MULTI_THREAD),1)
ifeq ($(OSTYPE),mingw)
#use lpthreadGC2d for debug alternatively
@@ -135,10 +136,12 @@
@@ -134,10 +134,12 @@
REV = $(shell svnversion)
ifneq ($(REV),)
CFLAGS += -DREVISION="$(REV)"
@ -37,7 +38,7 @@
CCFLAGS += -Wstrict-prototypes
@@ -450,6 +453,7 @@
@@ -456,6 +458,7 @@
ifeq ($(BACKEND),sdl)
SOURCES += simsys_s.cc
CFLAGS += -DUSE_16BIT_DIB
@ -45,7 +46,7 @@
ifeq ($(OSTYPE),mac)
# Core Audio (Quicktime) base sound system routines
SOURCES += sound/core-audio_sound.mm
@@ -482,6 +486,7 @@
@@ -488,6 +491,7 @@
endif
endif
CFLAGS += $(SDL_CFLAGS)
@ -53,7 +54,7 @@
LIBS += $(SDL_LDFLAGS)
endif
@@ -491,6 +496,7 @@
@@ -497,6 +501,7 @@
SOURCES += sound/sdl_mixer_sound.cc
SOURCES += music/sdl_midi.cc
CFLAGS += -DUSE_16BIT_DIB
@ -61,7 +62,7 @@
ifeq ($(SDL_CONFIG),)
SDL_CFLAGS := -I$(MINGDIR)/include/SDL -Dmain=SDL_main
SDL_LDFLAGS := -lmingw32 -lSDLmain -lSDL
@@ -505,12 +511,14 @@
@@ -511,6 +516,7 @@
endif
endif
CFLAGS += $(SDL_CFLAGS)
@ -69,22 +70,15 @@
LIBS += $(SDL_LDFLAGS) -lSDL_mixer
endif
ifeq ($(BACKEND),opengl)
SOURCES += simsys_opengl.cc
CFLAGS += -DUSE_16BIT_DIB
+ CXXFLAGS += -DUSE_16BIT_DIB
ifeq ($(OSTYPE),mac)
# Core Audio (Quicktime) base sound system routines
SOURCES += sound/core-audio_sound.mm
@@ -538,6 +546,7 @@
@@ -544,6 +550,7 @@
endif
endif
CFLAGS += $(SDL_CFLAGS)
+ CXXFLAGS += $(SDL_CFLAGS)
LIBS += $(SDL_LDFLAGS)
LIBS += $(SDL_LDFLAGS) -lglew32
ifeq ($(OSTYPE),mingw)
LIBS += -lopengl32
@@ -553,6 +562,7 @@
@@ -559,6 +566,7 @@
endif
CFLAGS += -DCOLOUR_DEPTH=$(COLOUR_DEPTH)
@ -92,7 +86,7 @@
ifneq ($(findstring $(OSTYPE), cygwin mingw),)
SOURCES += simres.rc
@@ -560,7 +570,6 @@
@@ -566,7 +574,6 @@
endif
CCFLAGS += $(CFLAGS)

@ -1,18 +1,17 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/simutrans/simutrans-0.112.2.ebuild,v 1.1 2013/03/21 01:44:13 mr_bones_ Exp $
# $Header: /var/cvsroot/gentoo-x86/games-simulation/simutrans/simutrans-0.112.3.ebuild,v 1.1 2013/05/28 23:20:04 mr_bones_ Exp $
EAPI=5
inherit flag-o-matic eutils games
MY_PV=${PV/0./}
MY_PV=${MY_PV//./-}
MY_FOOD_PV=${MY_PV/%-2/-1}
DESCRIPTION="A free Transport Tycoon clone"
HOMEPAGE="http://www.simutrans.com/"
SRC_URI="mirror://sourceforge/simutrans/simutrans-src-${MY_PV}.zip
mirror://sourceforge/simutrans/simupak64-${MY_PV}.zip
mirror://sourceforge/simutrans/simupak64-addon-food-${MY_FOOD_PV}.zip"
mirror://sourceforge/simutrans/simulinux-${MY_PV}.zip
mirror://sourceforge/simutrans/simupak64-${MY_PV}.zip"
LICENSE="Artistic"
SLOT="0"
@ -47,10 +46,13 @@ VERBOSE=1" > config.default || die
epatch \
"${FILESDIR}"/${P}-Makefile.patch \
"${FILESDIR}"/${P}-overflow.patch
rm -f simutrans/{simutrans,*.txt}
mv simutrans/get_pak.sh "${T}" || die
}
src_install() {
newgamesbin build/default/sim ${PN}
dogamesbin "${T}"/get_pak.sh
insinto "${GAMES_DATADIR}"/${PN}
doins -r simutrans/*
dodoc documentation/*

@ -1,3 +1,3 @@
DIST gnome-contacts-3.6.2.tar.xz 610024 SHA256 7d1b6a8e395b15bf150062f332348549cf9deb38dfa3aad9994f70e71d8449fa SHA512 0db305697c420ac958273d24e46afa2421d43c34fd31e5d20f95d333092ce6d894abe56208cf312133e4a062d0092b1b5f3dcc2c79c1e431f3439ab9a4b81ca1 WHIRLPOOL 3659e0f0851879b5db38c822acdc000e1aa88e7b146467f70f1d1e350ef7ea93262e0ea7aee58cfcba6422afe758be70748a3439b3e300b541971f582ee68306
DIST gnome-contacts-3.8.0.tar.xz 637176 SHA256 cf4e183b0daff0b1644ea1f6043b9f3f1ce1703d74c313a5154c78fd7fd7365e SHA512 6f937592ccad0b57ec9f9f5125d1d95e12733f69517a6a4b642bf02b49dbe5e9f8e688ef37d67aafa56def6d0f04fec7fc3bce9b880864f22023453d7ce7b37e WHIRLPOOL cc33fb0ec8a180cec95c358b39dcac8f2b19ae919ea6149da4738e8d85a99a341a545764c60aed611cf0fab367877667cf98b8b9723f6cc2a0f1fb7687a9f6da
DIST gnome-contacts-3.8.1.tar.xz 711604 SHA256 c9b2ffba754f4e1e37788195c814b12dfbf79b35042cd811b8690f890572edcb SHA512 6a0394a7d5231e2f67b400e610ce77598e534b561b93ef47dcbc2e47e938e67798f8b4602da1a1eb4984700686e1480f52ce9088911f9be04cafae30a728ca95 WHIRLPOOL 4c9fc2125a060db731091d2fec59a0ea08c3700f6361cb632031ca366e16ea04426907432d60beb581bed1ee3c7925f98abd5bd96f50ff294a63dbce06f1011a
DIST gnome-contacts-3.8.2.tar.xz 711832 SHA256 6cb3fe9e7f0f2380d77494a3408893265c42ea2a70579f0c871defbab5a7b5fa SHA512 d746a5519ddf4ef5ff0d155f2f93541484ff5279d05e7f15a5943479913ec0c029cc4f35d4a1654618b1b925a677856cfdc99597773e00bce2766e185ce9a639 WHIRLPOOL 0fb00277ae462e8d4f55ba1ac1dd206adac4455bf548fac2cf67da67198d3f3187811dfb946f0c63c8b7cc79891554051926685986712a6b638997a7220a0d5e

@ -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/gnome-extra/gnome-contacts/gnome-contacts-3.8.0.ebuild,v 1.2 2013/03/30 15:01:39 pacho Exp $
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-contacts/gnome-contacts-3.8.2.ebuild,v 1.1 2013/05/28 18:55:33 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
@ -16,13 +16,14 @@ SLOT="0"
IUSE="v4l"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
VALA_DEPEND="$(vala_depend)
VALA_DEPEND="
$(vala_depend)
dev-libs/folks[vala]
gnome-base/gnome-desktop[introspection]
gnome-extra/evolution-data-server[vala]
net-libs/telepathy-glib[vala]
x11-libs/libnotify[introspection]"
x11-libs/libnotify[introspection]
"
# Configure is wrong; it needs cheese-3.5.91, not 3.3.91
RDEPEND="
>=dev-libs/folks-0.7.3:=[eds,telepathy]
@ -40,21 +41,17 @@ RDEPEND="
v4l? ( >=media-video/cheese-3.5.91:= )
"
DEPEND="${RDEPEND}
${VALA_DEPEND}
>=dev-util/intltool-0.40
>=sys-devel/gettext-0.17
virtual/pkgconfig
!v4l? ( ${VALA_DEPEND} )"
# When !v4l, we regenerate the .c sources
"
src_prepare() {
G2CONF="${G2CONF}
$(use_with v4l cheese)"
# FIXME: Fails to compile with USE=-v4l
# Regenerate the pre-generated C sources
if ! use v4l; then
touch src/*.vala
fi
gnome2_src_prepare
vala_src_prepare
}
src_configure() {
gnome2_src_configure $(use_with v4l cheese)
}

@ -0,0 +1 @@
DIST homerun-1.0.0.tar.bz2 192788 SHA256 7748fde872263dc66203d03cdcd3b71f3aae1d83718881ae7e08548d357a65a9 SHA512 bfeaa9bed75260d0ff0a739a0358832ee242e6d0698e3bacba26973911912ba5ed7bccace06f1809e58555aeb9c7c5bb12457da25fbad724ff49237e15f1a2e1 WHIRLPOOL 57b7ba6dda1b2add5181184d84dab291e7da890753e0f3377fdd6c7e2176213ce54647ace5ad406cbce2b814a345212706085a0686edf4764dd2bcfd2a6279d2

@ -0,0 +1,34 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/homerun/homerun-1.0.0.ebuild,v 1.1 2013/05/28 15:57:46 johu Exp $
EAPI=5
DECLARATIVE_REQUIRED="always"
VIRTUALX_REQUIRED="test"
VIRTUALDBUS_TEST="true"
KDE_LINGUAS="bs cs da de el es et fi fr ga gl hu lt mr nl pa pl pt pt_BR ro ru
sk sl sv tr uk zh_CN"
KDE_MINIMAL="4.10"
inherit kde4-base
DESCRIPTION="Application launcher for KDE Plasma desktop"
HOMEPAGE="https://projects.kde.org/projects/playground/base/homerun"
[[ ${PV} == *9999 ]] || SRC_URI="mirror://kde/stable/${PN}/src/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1 BSD"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="debug"
DEPEND="
$(add_kdebase_dep libkworkspace)
"
RDEPEND="
${DEPEND}
$(add_kdebase_dep plasma-workspace)
"
# Fails 2 out of 6, check later again.
# With virtualx/virtualdbus it hangs
RESTRICT="test"

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

@ -0,0 +1,52 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/cropgui/cropgui-0.1.1-r1.ebuild,v 1.1 2013/05/28 20:00:46 qnikst Exp $
EAPI="4"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit eutils python
DESCRIPTION="GUI for lossless cropping of jpeg images"
HOMEPAGE="http://emergent.unpythonic.net/01248401946"
SRC_URI="http://media.unpythonic.net/emergent-files/01248401946/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="
dev-python/imaging
dev-python/pygobject:2
dev-python/pygtk:2
"
S="${WORKDIR}/${PN}"
src_prepare() {
epatch "${FILESDIR}"/${P}-PIL.patch
sed -i -e '/Encoding/d' \
-e '/Version/d' \
-e '/MimeType/s/$/&;/' \
-e '/Categories/s/Application;//' \
cropgui.desktop || die 'sed on cropgui.desktop failed'
}
src_install() {
install_cropgui_wrapper() {
insinto "$(python_get_sitedir)/${PN}"
python_convert_shebangs -q ${PYTHON_ABI} *.py
doins cropgtk.py cropgui_common.py filechooser.py cropgui.glade
make_wrapper cropgui-${PYTHON_ABI} "$(PYTHON -a) $(python_get_sitedir)/${PN}/cropgtk.py"
}
python_execute_function -q install_cropgui_wrapper
python_generate_wrapper_scripts "${ED}/usr/bin/cropgui"
domenu cropgui.desktop
doicon cropgui.png
}

@ -0,0 +1,29 @@
Только в cropgui: cropgui-0.1.1-PIL.patch
diff -ru cropgui.orig/cropgui_common.py cropgui/cropgui_common.py
--- cropgui.orig/cropgui_common.py 2009-07-24 06:15:12.000000000 +0400
+++ cropgui/cropgui_common.py 2013-05-28 21:48:24.000000000 +0400
@@ -13,9 +13,9 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-import Image
-import ImageFilter
-import ImageDraw
+from PIL import Image
+from PIL import ImageFilter
+from PIL import ImageDraw
import subprocess
import threading
import Queue
diff -ru cropgui.orig/filechooser.py cropgui/filechooser.py
--- cropgui.orig/filechooser.py 2009-07-24 06:15:12.000000000 +0400
+++ cropgui/filechooser.py 2013-05-28 21:50:16.000000000 +0400
@@ -8,7 +8,7 @@
import gobject
import os
-import Image
+from PIL import Image
HIGH_WATER, LOW_WATER = 25, 5
image_cache = {}

@ -1,5 +1,5 @@
DIST cidmaps-20090121.tgz 314314 SHA256 1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3
DIST cidmaps-20090121.tgz 314314 SHA256 1bf9c7eb8835e6ed94e62cb49f1141bc046c562849e52e6c3c7f1d7cfc95c7b3 SHA512 a85daeb16b6650179f54ff9e35915c4c7bb5e2efca0455262a271063849484dbba08c4b493c4ca08552365205995cad5c3770ba7b3cadb2e5c386626dc46636c WHIRLPOOL 0c840cf7f4d7f432597f68620231da34cff2dac5af1ba3200b57b63566f3b81b151ddf7cbaa84665f4b7c629bb8f100c72b8bade8634687e5c11110ed91ed821
DIST fontforge_full-20100501.tar.bz2 6666386 SHA256 ee4928b0df7480c31a422645854d9f3f4f6718dd423b6885bd33e87a8a6edd79
DIST fontforge_full-20110222.tar.bz2 5126031 SHA256 8fa2818026f84bb7b8a77451d21cab7e9dea8aa904e5218afa158be6a320433e
DIST fontforge_full-20110222.tar.bz2 5126031 SHA256 8fa2818026f84bb7b8a77451d21cab7e9dea8aa904e5218afa158be6a320433e SHA512 af74ca482d8892c30e650bd377df16d44a11738c930625bcf9878d97ba8faaf67f2965dcf3c32b722120273d99dcdd042405bb6afeee1286f0cf18f916e4f12a WHIRLPOOL f6446b8b6d5d49d9bb421bf39a4a192f4622916eb68013a3317c78585d1ae05837478c5d2fa1bb2ebad9caa3455cf0db6e132f6e7ad07d3ae9f58b1b4ab7fd52
DIST fontforge_htdocs-20100429.tar.bz2 3115782 SHA256 842a5e675341578aacdd2614ec416719eba51826749d73b2044731335d1a1883
DIST fontforge_htdocs-20110221.tar.bz2 3129839 SHA256 7a81b9a30fa8f287e63abcfee568d7fcfd1a21c75c5c69effe95fe677d963fec
DIST fontforge_htdocs-20110221.tar.bz2 3129839 SHA256 7a81b9a30fa8f287e63abcfee568d7fcfd1a21c75c5c69effe95fe677d963fec SHA512 b91808cd5deb6472785f3353fe9856279ddb0887ae249eccd37cff8dbdf53065a8d6008dbf160dd6c5ba6cfecf37b9c4e63c5baa6332f4b4128d5e471d243236 WHIRLPOOL 7664b853e7dd0c9a36c50e84dbd332ff4c10232fa200e9ac42c97982993c7d23e06e235a0f88183a7e6a78f342789c0141fb396879b5e5fa0ccb9d4bd3b30d43

@ -0,0 +1,11 @@
diff -Naur fontforge-20110222.orig/gutils/gimagereadrgb.c fontforge-20110222/gutils/gimagereadrgb.c
--- fontforge-20110222.orig/gutils/gimagereadrgb.c 2013-05-05 18:03:18.884623199 +0000
+++ fontforge-20110222/gutils/gimagereadrgb.c 2013-05-05 18:03:35.452624126 +0000
@@ -86,7 +86,6 @@
static void find_scanline(FILE *fp,struct sgiheader *header,int cur,
unsigned long *starttab,unsigned char **ptrtab) {
- extern int fgetc(FILE *);
int (*getthingamy)(FILE *) = header->bpc==1?fgetc:getshort;
int ch,i,cnt,val;
unsigned char *pt;

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fontforge/fontforge-20110222-r1.ebuild,v 1.8 2012/09/05 07:52:11 jlec Exp $
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fontforge/fontforge-20110222-r1.ebuild,v 1.9 2013/05/28 15:46:22 blueness Exp $
# Some notes for maintainers this package:
# 1. README-unix: freetype headers are required to make use of truetype debugger
@ -67,6 +67,7 @@ src_unpack() {
src_prepare() {
epatch "${FILESDIR}/${P}-lxkbui.patch"
epatch "${FILESDIR}/${P}-libz.so-linkage.patch"
epatch "${FILESDIR}/${P}-remove-useless-extern.patch"
if use doc; then
chmod -x "${WORKDIR}"/html/*.html || die
fi

@ -0,0 +1,16 @@
https://bugs.gentoo.org/show_bug.cgi?id=458516
--- FreeImage/Source/FreeImage.h
+++ FreeImage/Source/FreeImage.h
@@ -141,8 +141,10 @@
typedef uint16_t WORD;
typedef uint32_t DWORD;
typedef int32_t LONG;
+#ifndef _LIBRAW_TYPES_H
typedef int64_t INT64;
typedef uint64_t UINT64;
+#endif
#else
// MS is not C99 ISO compliant
typedef long BOOL;

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/freeimage/freeimage-3.15.4.ebuild,v 1.2 2013/03/21 15:48:09 bicatali Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/freeimage/freeimage-3.15.4.ebuild,v 1.3 2013/05/28 15:32:55 hasufell Exp $
EAPI="4"
@ -66,7 +66,7 @@ src_prepare() {
-e "/LibRawLite/d" \
-e "/LibMNG/d" \
Makefile.srcs fipMakefile.srcs || die
epatch "${FILESDIR}"/${PN}-3.15.4-unbundling.patch
epatch "${FILESDIR}"/${PN}-3.15.4-{unbundling,raw}.patch
}
foreach_make() {

@ -1 +1 @@
DIST libjsw-1.5.8.tar.bz2 348121 RMD160 29024ae37a248ef8c5bc72a2542477d8bab87508 SHA1 9b13257616ede4587594fb3443b3ecc9e6afe78a SHA256 082461dbf67efbd7e682b0675b0ced36430c5b1abc152c977e41b98de68fc811
DIST libjsw-1.5.8.tar.bz2 348121 SHA256 082461dbf67efbd7e682b0675b0ced36430c5b1abc152c977e41b98de68fc811 SHA512 b858ed124366bd2df6710c07d82a447cc7227f1e442b3a3652d50734d97edef45b42b5a8bf84d4675c0130ab4da080a8409bfb6e1c80cb747930ac431dbf1226 WHIRLPOOL d85de409b805e64acf1433a4cd872e5816e95ed4e4f39825e2fa91d5e2ebb07037f78e67a27ad785fd5ecab04ceeef8f37cdfe3a11e1ea01f435838f53e896a1

@ -1,8 +1,8 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libjsw/libjsw-1.5.8.ebuild,v 1.6 2010/07/15 09:04:12 fauli Exp $
EAPI=2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libjsw/libjsw-1.5.8.ebuild,v 1.7 2013/05/28 23:37:39 mr_bones_ Exp $
EAPI=2
inherit eutils multilib
DESCRIPTION="provide a uniform API and user configuration for joysticks and game controllers"
@ -19,25 +19,27 @@ DEPEND=""
src_prepare() {
cp include/jsw.h libjsw/
epatch "${FILESDIR}"/${P}-build.patch
bunzip2 libjsw/man/* jscalibrator/jscalibrator.1.bz2 || die "bunzip failed"
bunzip2 libjsw/man/* || die
}
src_compile() {
LDFLAGS+=" -Wl,-soname,libjsw.so.1"
cd libjsw
emake || die "main build failed"
emake || die
ln -s libjsw.so.${PV} libjsw.so
}
src_install() {
insinto /usr/include
doins include/jsw.h || die "doins jsw.h failed"
doins include/jsw.h || die
dodoc README
docinto jswdemos
dodoc jswdemos/*
cd "${S}"/libjsw
dolib.so libjsw.so.${PV} || die "dolib.so"
dolib.so libjsw.so.${PV} || die
dosym libjsw.so.${PV} /usr/$(get_libdir)/libjsw.so
dosym libjsw.so.${PV} /usr/$(get_libdir)/libjsw.so.1
doman man/*
}

@ -1 +1 @@
Tue, 28 May 2013 13:36:55 +0000
Wed, 29 May 2013 04:06:54 +0000

@ -1 +1 @@
Tue, 28 May 2013 13:36:55 +0000
Wed, 29 May 2013 04:06:54 +0000

@ -11,4 +11,4 @@ RESTRICT=test
SLOT=0
SRC_URI=http://cyberelk.net/tim/data/system-config-printer/1.3/system-config-printer-1.3.12.tar.xz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils f31a0ec0d081047cbf9c0bbb4822d831 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=326a45b8212bff36d1fcecf2fe789572
_md5_=b7bd04967939229801c0ed3c659ad84c

@ -4,11 +4,11 @@ DESCRIPTION=Red Hat Package Management Utils
EAPI=5
HOMEPAGE=http://www.rpm.org
IUSE=nls python doc caps lua acl selinux python_targets_python2_6 python_targets_python2_7 python_single_target_python2_6 python_single_target_python2_7
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=GPL-2 LGPL-2
RDEPEND=!app-arch/rpm5 >=sys-libs/db-4.5 >=sys-libs/zlib-1.2.3-r1 >=app-arch/bzip2-1.0.1 >=dev-libs/popt-1.7 >=app-crypt/gnupg-1.2 dev-libs/elfutils virtual/libintl >=dev-lang/perl-5.8.8 dev-libs/nss python? ( python_single_target_python2_6? ( dev-lang/python:2.6 ) python_single_target_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) nls? ( virtual/libintl ) lua? ( >=dev-lang/lua-5.1.0[deprecated] ) acl? ( virtual/acl ) caps? ( >=sys-libs/libcap-2.0 ) selinux? ( sec-policy/selinux-rpm ) dev-lang/perl[-build]
REQUIRED_USE=python? ( python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) )
SLOT=0
SRC_URI=http://rpm.org/releases/rpm-4.11.x/rpm-4.11.0.1.tar.bz2
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module ba21eba2562fc2643deeea95fd28665d python-single-r1 7e219c03c7f3c029a5d1030f38aeafef python-utils-r1 9fc80a4f06f33ede447b5647fddca301 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=f6f9a4a00248c75e1f9e5084aff989ee
_md5_=45e801d93cf0243244f9783c44218c24

@ -3,7 +3,7 @@ DEPEND=sys-libs/readline sys-libs/ncurses >=net-misc/curl-7.18.0 dev-libs/libgcr
DESCRIPTION=C toolkit to manipulate virtual machines
EAPI=5
HOMEPAGE=http://www.libvirt.org/
IUSE=audit avahi +caps firewalld fuse iscsi +libvirtd lvm +lxc +macvtap nfs nls numa openvz parted pcap phyp policykit python qemu rbd sasl selinux +udev uml +vepa virtualbox virt-network xen elibc_glibc systemd
IUSE=audit avahi +caps firewalld fuse iscsi +libvirtd lvm lxc +macvtap nfs nls numa openvz parted pcap phyp policykit python +qemu rbd sasl selinux +udev uml +vepa virtualbox virt-network xen elibc_glibc systemd
KEYWORDS=~amd64 ~x86
LICENSE=LGPL-2.1
RDEPEND=sys-libs/readline sys-libs/ncurses >=net-misc/curl-7.18.0 dev-libs/libgcrypt >=dev-libs/libxml2-2.7.6 dev-libs/libnl:3 >=net-libs/gnutls-1.0.25 net-libs/libssh2 sys-apps/dmidecode >=sys-apps/util-linux-2.17 sys-devel/gettext >=net-analyzer/netcat6-1.0-r2 app-misc/scrub audit? ( sys-process/audit ) avahi? ( >=net-dns/avahi-0.6[dbus] ) caps? ( sys-libs/libcap-ng ) fuse? ( >=sys-fs/fuse-2.8.6 ) iscsi? ( sys-block/open-iscsi ) lxc? ( sys-power/pm-utils ) lvm? ( >=sys-fs/lvm2-2.02.48-r2 ) nfs? ( net-fs/nfs-utils ) numa? ( >sys-process/numactl-2.0.2 sys-process/numad ) openvz? ( sys-kernel/openvz-sources ) parted? ( >=sys-block/parted-1.8[device-mapper] sys-fs/lvm2 ) pcap? ( >=net-libs/libpcap-1.0.0 ) policykit? ( >=sys-auth/polkit-0.9 ) qemu? ( >=app-emulation/qemu-0.13.0 dev-libs/yajl sys-power/pm-utils ) rbd? ( sys-cluster/ceph ) sasl? ( dev-libs/cyrus-sasl ) selinux? ( >=sys-libs/libselinux-2.0.85 ) virtualbox? ( || ( app-emulation/virtualbox >=app-emulation/virtualbox-bin-2.2.0 ) ) xen? ( app-emulation/xen-tools app-emulation/xen ) udev? ( virtual/udev >=x11-libs/libpciaccess-0.10.9 ) virt-network? ( net-dns/dnsmasq >=net-firewall/iptables-1.4.10 net-misc/radvd net-firewall/ebtables sys-apps/iproute2[-minimal] firewalld? ( net-firewall/firewalld ) ) elibc_glibc? ( || ( >=net-libs/libtirpc-0.2.2-r1 <sys-libs/glibc-2.14 ) ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) )
@ -11,4 +11,4 @@ REQUIRED_USE=libvirtd? ( || ( lxc openvz qemu uml virtualbox xen ) ) lxc? ( caps
SLOT=0
SRC_URI=http://libvirt.org/sources/stable_updates/libvirt-1.0.5.1.tar.gz ftp://libvirt.org/libvirt/stable_updates/libvirt-1.0.5.1.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils f31a0ec0d081047cbf9c0bbb4822d831 libtool b1c8688e60f9580bcb9bb46e08737eb1 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 systemd 3421a5715404244e4827acd1cf8ce654 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=17858030ec143e575397d8ef7304a14d
_md5_=75ba1fd6a452e877f6b6261aec611fcc

@ -0,0 +1,14 @@
DEFINED_PHASES=configure install postinst postrm preinst prepare setup test
DEPEND=sys-libs/readline sys-libs/ncurses >=net-misc/curl-7.18.0 dev-libs/libgcrypt >=dev-libs/libxml2-2.7.6 dev-libs/libnl:3 >=net-libs/gnutls-1.0.25 net-libs/libssh2 sys-apps/dmidecode >=sys-apps/util-linux-2.17 sys-devel/gettext >=net-analyzer/netcat6-1.0-r2 app-misc/scrub audit? ( sys-process/audit ) avahi? ( >=net-dns/avahi-0.6[dbus] ) caps? ( sys-libs/libcap-ng ) fuse? ( >=sys-fs/fuse-2.8.6 ) iscsi? ( sys-block/open-iscsi ) lxc? ( sys-power/pm-utils ) lvm? ( >=sys-fs/lvm2-2.02.48-r2 ) nfs? ( net-fs/nfs-utils ) numa? ( >sys-process/numactl-2.0.2 sys-process/numad ) openvz? ( sys-kernel/openvz-sources ) parted? ( >=sys-block/parted-1.8[device-mapper] sys-fs/lvm2 ) pcap? ( >=net-libs/libpcap-1.0.0 ) policykit? ( >=sys-auth/polkit-0.9 ) qemu? ( >=app-emulation/qemu-0.13.0 dev-libs/yajl sys-power/pm-utils ) rbd? ( sys-cluster/ceph ) sasl? ( dev-libs/cyrus-sasl ) selinux? ( >=sys-libs/libselinux-2.0.85 ) virtualbox? ( || ( app-emulation/virtualbox >=app-emulation/virtualbox-bin-2.2.0 ) ) xen? ( app-emulation/xen-tools app-emulation/xen ) udev? ( virtual/udev >=x11-libs/libpciaccess-0.10.9 ) virt-network? ( net-dns/dnsmasq >=net-firewall/iptables-1.4.10 net-misc/radvd net-firewall/ebtables sys-apps/iproute2[-minimal] firewalld? ( net-firewall/firewalld ) ) elibc_glibc? ( || ( >=net-libs/libtirpc-0.2.2-r1 <sys-libs/glibc-2.14 ) ) virtual/pkgconfig app-text/xhtml1 dev-libs/libxslt =dev-lang/python-2* python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool virtual/pkgconfig
DESCRIPTION=C toolkit to manipulate virtual machines
EAPI=5
HOMEPAGE=http://www.libvirt.org/
IUSE=audit avahi +caps firewalld fuse iscsi +libvirtd lvm lxc +macvtap nfs nls numa openvz parted pcap phyp policykit python +qemu rbd sasl selinux +udev uml +vepa virtualbox virt-network xen elibc_glibc systemd
KEYWORDS=~amd64 ~x86
LICENSE=LGPL-2.1
RDEPEND=sys-libs/readline sys-libs/ncurses >=net-misc/curl-7.18.0 dev-libs/libgcrypt >=dev-libs/libxml2-2.7.6 dev-libs/libnl:3 >=net-libs/gnutls-1.0.25 net-libs/libssh2 sys-apps/dmidecode >=sys-apps/util-linux-2.17 sys-devel/gettext >=net-analyzer/netcat6-1.0-r2 app-misc/scrub audit? ( sys-process/audit ) avahi? ( >=net-dns/avahi-0.6[dbus] ) caps? ( sys-libs/libcap-ng ) fuse? ( >=sys-fs/fuse-2.8.6 ) iscsi? ( sys-block/open-iscsi ) lxc? ( sys-power/pm-utils ) lvm? ( >=sys-fs/lvm2-2.02.48-r2 ) nfs? ( net-fs/nfs-utils ) numa? ( >sys-process/numactl-2.0.2 sys-process/numad ) openvz? ( sys-kernel/openvz-sources ) parted? ( >=sys-block/parted-1.8[device-mapper] sys-fs/lvm2 ) pcap? ( >=net-libs/libpcap-1.0.0 ) policykit? ( >=sys-auth/polkit-0.9 ) qemu? ( >=app-emulation/qemu-0.13.0 dev-libs/yajl sys-power/pm-utils ) rbd? ( sys-cluster/ceph ) sasl? ( dev-libs/cyrus-sasl ) selinux? ( >=sys-libs/libselinux-2.0.85 ) virtualbox? ( || ( app-emulation/virtualbox >=app-emulation/virtualbox-bin-2.2.0 ) ) xen? ( app-emulation/xen-tools app-emulation/xen ) udev? ( virtual/udev >=x11-libs/libpciaccess-0.10.9 ) virt-network? ( net-dns/dnsmasq >=net-firewall/iptables-1.4.10 net-misc/radvd net-firewall/ebtables sys-apps/iproute2[-minimal] firewalld? ( net-firewall/firewalld ) ) elibc_glibc? ( || ( >=net-libs/libtirpc-0.2.2-r1 <sys-libs/glibc-2.14 ) ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) )
REQUIRED_USE=libvirtd? ( || ( lxc openvz qemu uml virtualbox xen ) ) lxc? ( caps libvirtd ) openvz? ( libvirtd ) qemu? ( libvirtd ) uml? ( libvirtd ) vepa? ( macvtap ) virtualbox? ( libvirtd ) xen? ( libvirtd ) virt-network? ( libvirtd ) firewalld? ( virt-network )
SLOT=0
SRC_URI=http://libvirt.org/sources/stable_updates/libvirt-1.0.5.1.tar.gz ftp://libvirt.org/libvirt/stable_updates/libvirt-1.0.5.1.tar.gz
_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils f31a0ec0d081047cbf9c0bbb4822d831 libtool b1c8688e60f9580bcb9bb46e08737eb1 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 systemd 3421a5715404244e4827acd1cf8ce654 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=833d3950a9d43b62d8292fee5cf3b6c2

@ -1,4 +1,4 @@
DEFINED_PHASES=compile install unpack
DEFINED_PHASES=compile install prepare unpack
DESCRIPTION=A utility to attach a running program to a new terminal
EAPI=4
HOMEPAGE=https://github.com/nelhage/reptyr
@ -7,4 +7,4 @@ LICENSE=MIT
SLOT=0
SRC_URI=https://github.com/nelhage/reptyr/tarball/reptyr-0.4 -> reptyr-0.4.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129
_md5_=d9c5f224f992fb60f04513b6966ce2b8
_md5_=d22fe838b16104eadabe75fb3affd2ce

@ -3,9 +3,9 @@ DESCRIPTION=Command-line interface to various pastebins
EAPI=4
HOMEPAGE=http://wgetpaste.zlin.dk/
IUSE=zsh-completion +lodgeit-default
KEYWORDS=~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
KEYWORDS=~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
LICENSE=public-domain
RDEPEND=net-misc/wget zsh-completion? ( app-shells/zsh )
SLOT=0
SRC_URI=http://wgetpaste.zlin.dk/wgetpaste-2.22.tar.bz2
_md5_=b3aeca1b618a4d5fdf54aad2e49cb244
_md5_=f9838ea456c3423e07100e90526276ba

@ -1,12 +0,0 @@
DEFINED_PHASES=install postinst postrm
DEPEND=app-arch/unzip || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
DESCRIPTION=vim plugin: easily browse vim buffers
EAPI=2
HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=42
KEYWORDS=~amd64 ~x86
LICENSE=bufexplorer.vim
RDEPEND=|| ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
SLOT=0
SRC_URI=http://www.vim.org/scripts/download_script.php?src_id=14208 -> bufexplorer-7.2.8.zip
_eclasses_=vim-doc 1c18baeec98cec3287524cbf2fee2bd2 vim-plugin 3e2b8e3b7a061cd56a91f1583248b89f
_md5_=c6c6324b5fb57ffd831888be2183d16e

@ -0,0 +1,12 @@
DEFINED_PHASES=install postinst postrm prepare
DEPEND=|| ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
DESCRIPTION=Provide python code looking for bugs, refactoring and other useful things
EAPI=5
HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=3770 https://github.com/klen/python-mode
KEYWORDS=~amd64 ~x86
LICENSE=LGPL-3
RDEPEND=dev-python/astng dev-python/autopep8 dev-python/pyflakes dev-python/pylint dev-python/rope dev-python/ropemode || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
SLOT=0
SRC_URI=https://github.com/klen/python-mode/archive/0.6.18.tar.gz -> python-mode-0.6.18.tar.gz
_eclasses_=vim-doc 1c18baeec98cec3287524cbf2fee2bd2 vim-plugin 3e2b8e3b7a061cd56a91f1583248b89f
_md5_=7334d5567819130be0265ce45720dbb5

@ -1,12 +0,0 @@
DEFINED_PHASES=install postinst postrm
DEPEND=app-arch/unzip || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
DESCRIPTION=vim plugin: Delete/change/add parentheses/quotes/XML-tags/much more
EAPI=2
HOMEPAGE=http://www.vim.org/scripts/script.php?script_id=1697
KEYWORDS=amd64 x86
LICENSE=vim
RDEPEND=|| ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
SLOT=0
SRC_URI=http://www.vim.org/scripts/download_script.php?src_id=8283 -> surround-1.90.zip
_eclasses_=vim-doc 1c18baeec98cec3287524cbf2fee2bd2 vim-plugin 3e2b8e3b7a061cd56a91f1583248b89f
_md5_=b03b437f6f005d487da3fc64bf0b4c12

@ -1,13 +0,0 @@
DEFINED_PHASES=install postinst postrm prepare
DEPEND=|| ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
DESCRIPTION=vim plugin: a comprehensive set of tools to view, edit and compile LaTeX documents
EAPI=3
HOMEPAGE=http://vim-latex.sourceforge.net/
IUSE=html
KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris
LICENSE=vim
RDEPEND=virtual/latex-base || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
SLOT=0
SRC_URI=mirror://sourceforge/vim-latex/vim-latex-1.8.23-20110214.1049-git089726a.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vim-doc 1c18baeec98cec3287524cbf2fee2bd2 vim-plugin 3e2b8e3b7a061cd56a91f1583248b89f
_md5_=67f98ee39b25600020c32df419cb485f

@ -1,13 +0,0 @@
DEFINED_PHASES=install postinst postrm prepare setup
DEPEND=|| ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
DESCRIPTION=vim plugin: a comprehensive set of tools to view, edit and compile LaTeX documents
EAPI=5
HOMEPAGE=http://vim-latex.sourceforge.net/
IUSE=html
KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris
LICENSE=vim
RDEPEND=|| ( app-editors/vim[python] app-editors/gvim[python] ) virtual/latex-base || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 )
SLOT=0
SRC_URI=mirror://sourceforge/vim-latex/vim-latex-1.8.23-20121116.784-git1c17b37.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vim-doc 1c18baeec98cec3287524cbf2fee2bd2 vim-plugin 3e2b8e3b7a061cd56a91f1583248b89f
_md5_=db90d5f258ac93ac562c5738b0d44e9e

@ -1,15 +1,15 @@
DEFINED_PHASES=install postinst postrm preinst prerm setup
DEFINED_PHASES=install postinst postrm preinst prerm setup unpack
DEPEND==dev-java/java-config-2* || ( app-admin/eselect-java <dev-java/java-config-2.2 )
DESCRIPTION=A Gentoo-made binary build of the IcedTea JDK
EAPI=4
HOMEPAGE=http://icedtea.classpath.org
IUSE=+X +alsa cjk +cups doc examples nsplugin source
KEYWORDS=-* amd64 x86
KEYWORDS=-* ~amd64 ~x86
LICENSE=GPL-2-with-linking-exception
RDEPEND=>=media-libs/giflib-4.1.6-r1 =media-libs/libpng-1.5* >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg nsplugin? ( >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=dev-libs/nspr-4.8 >=x11-libs/cairo-1.8.8 >=x11-libs/pango-1.24.5 ) X? ( dev-libs/glib >=media-libs/freetype-2.3.9:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXtst-1.1 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java <dev-java/java-config-2.2 )
RDEPEND=>=media-libs/giflib-4.1.6-r1 >=media-libs/libpng-1.5 >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg nsplugin? ( >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=dev-libs/nspr-4.8 >=x11-libs/cairo-1.8.8 >=x11-libs/pango-1.24.5 ) X? ( dev-libs/glib >=media-libs/freetype-2.3.9:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXtst-1.1 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java <dev-java/java-config-2.2 )
REQUIRED_USE=nsplugin? ( X )
RESTRICT=strip
SLOT=6
SRC_URI=amd64? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-core-6.1.12.2-amd64.tar.bz2 ) x86? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-core-6.1.12.2-x86.tar.bz2 ) doc? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-doc-6.1.12.2.tar.bz2 ) examples? ( amd64? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-examples-6.1.12.2-amd64.tar.bz2 ) x86? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-examples-6.1.12.2-x86.tar.bz2 ) ) nsplugin? ( amd64? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-nsplugin-6.1.12.2-amd64.tar.bz2 ) x86? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-nsplugin-6.1.12.2-x86.tar.bz2 ) ) source? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-src-6.1.12.2.tar.bz2 )
SRC_URI=amd64? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-core-6.1.12.5-amd64.tar.bz2 http://dev.gentoo.org/~caster/distfiles//icedtea-bin-libpng15-6.1.12.5-amd64.tar.bz2 ) x86? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-core-6.1.12.5-x86.tar.bz2 http://dev.gentoo.org/~caster/distfiles//icedtea-bin-libpng15-6.1.12.5-x86.tar.bz2 ) doc? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-doc-6.1.12.5.tar.bz2 ) examples? ( amd64? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-examples-6.1.12.5-amd64.tar.bz2 ) x86? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-examples-6.1.12.5-x86.tar.bz2 ) ) nsplugin? ( amd64? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-nsplugin-6.1.12.5-amd64.tar.bz2 ) x86? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-nsplugin-6.1.12.5-x86.tar.bz2 ) ) source? ( http://dev.gentoo.org/~caster/distfiles//icedtea-bin-src-6.1.12.5.tar.bz2 )
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib 892e597faee02a5b94eb02ab512e7622 pax-utils 2424f959506320f5196de8f79fa05297 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=9e827901352033d03b0bd14de73f1a94
_md5_=4cf0268c1baac57c6784c1ad133bae54

@ -0,0 +1,14 @@
DEFINED_PHASES=configure install postinst preinst prepare
DEPEND=bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) libedit? ( dev-libs/libedit ) readline? ( sys-libs/readline ) virtual/pkgconfig userland_GNU? ( >=sys-apps/findutils-4.4.0 )
DESCRIPTION=Perl-compatible regular expression library
EAPI=4
HOMEPAGE=http://www.pcre.org/
IUSE=bzip2 +cxx +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs unicode zlib
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
LICENSE=BSD
RDEPEND=bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) libedit? ( dev-libs/libedit ) readline? ( sys-libs/readline )
REQUIRED_USE=readline? ( !libedit ) libedit? ( !readline )
SLOT=3
SRC_URI=mirror://sourceforge/pcre/pcre-8.33.tar.bz2 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.33.tar.bz2
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=30e237638dfd949b0edfb5cd786974f6

@ -1,13 +1,13 @@
DEFINED_PHASES=configure install preinst prepare setup
DEPEND=aspell? ( app-text/aspell ) hunspell? ( app-text/hunspell ) java? ( >=virtual/jdk-1.5 ) java? ( >=dev-java/java-config-2.1.9-r1 )
DESCRIPTION=Link Grammar Parser is a syntactic English parser based on link grammar.
EAPI=4
DEPEND=aspell? ( app-text/aspell ) hunspell? ( app-text/hunspell ) java? ( >=virtual/jdk-1.5 dev-java/ant-core ) java? ( >=dev-java/java-config-2.1.9-r1 )
DESCRIPTION=Link Grammar Parser is a syntactic English parser.
EAPI=5
HOMEPAGE=http://www.abisource.com/projects/link-grammar/ http://www.link.cs.cmu.edu/link/
IUSE=aspell +hunspell java static-libs threads elibc_FreeBSD java
KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=BSD
RDEPEND=aspell? ( app-text/aspell ) hunspell? ( app-text/hunspell ) java? ( >=virtual/jdk-1.5 ) java? ( >=dev-java/java-config-2.1.9-r1 )
RDEPEND=aspell? ( app-text/aspell ) hunspell? ( app-text/hunspell ) java? ( >=virtual/jdk-1.5 dev-java/ant-core ) java? ( >=dev-java/java-config-2.1.9-r1 )
SLOT=0
SRC_URI=http://www.abisource.com/downloads/link-grammar/4.7.6/link-grammar-4.7.6.tar.gz
SRC_URI=http://www.abisource.com/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz
_eclasses_=eutils f31a0ec0d081047cbf9c0bbb4822d831 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 52b7cfbf4f7225fcea7e7f18b6d83328 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=58553f75a76a15ce10f32c8048efb9b7
_md5_=4849e383c21e7cee4c9c4b7227d51746

@ -10,4 +10,4 @@ RDEPEND=>=sys-libs/db-4.8.30 || ( =dev-lang/python-3.3* =dev-lang/python-3.2* =d
SLOT=0
SRC_URI=mirror://pypi/b/bsddb3/bsddb3-5.3.0.tar.gz
_eclasses_=db-use 2f5d6a2718559b90a51648d8ff58be83 distutils 77fc6005d2dfcc7bdb5ec363a49d9912 eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=ff290bbbddc1636865bc11bbb3592b47
_md5_=bedb1d3e0f7c58369d16839b36188b38

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=sys-libs/db-4.8.30 dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-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_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 ) 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_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
DESCRIPTION=Python bindings for Berkeley DB
EAPI=5
HOMEPAGE=http://www.jcea.es/programacion/pybsddb.htm http://pypi.python.org/pypi/bsddb3
IUSE=doc python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3
KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86
LICENSE=BSD
RDEPEND=>=sys-libs/db-4.8.30 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 ) 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_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 )
SLOT=0
SRC_URI=mirror://pypi/b/bsddb3/bsddb3-5.3.0.tar.gz
_eclasses_=db-use 2f5d6a2718559b90a51648d8ff58be83 distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9fc80a4f06f33ede447b5647fddca301 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4
_md5_=b464b9122130d838eb7573926628fdfa

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install postinst prepare prerm setup test
DEPEND=dev-python/imaging[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/mysql-python-1.2.3[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) doc? ( >=dev-python/sphinx-1.0.7[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) test? ( python_targets_python2_5? ( dev-lang/python:2.5[sqlite] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5[sqlite?] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite?] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=app-admin/webapp-config-1.50.15
DESCRIPTION=High-level Python web framework
EAPI=5
HOMEPAGE=http://www.djangoproject.com/ http://pypi.python.org/pypi/Django
IUSE=doc mysql postgres sqlite test python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 vhosts
KEYWORDS=~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
LICENSE=BSD
RDEPEND=dev-python/imaging[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/mysql-python-1.2.3[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5[sqlite?] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite?] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=app-admin/webapp-config-1.50.15
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=https://www.djangoproject.com/m/releases/1.2/Django-1.2.7.tar.gz
_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9fc80a4f06f33ede447b5647fddca301 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e
_md5_=4715cdd0134fe9408c96222d0eb5aba6

@ -1,12 +0,0 @@
DEFINED_PHASES=compile install postinst postrm prepare setup
DEPEND=dev-python/django dev-python/setuptools >=dev-python/oauth2-1.5.167 >=dev-python/python-openid-2.2 =dev-lang/python-2*
DESCRIPTION=An easy to setup social authentication/authorization mechanism for Django projects
EAPI=4
HOMEPAGE=http://pypi.python.org/pypi/django-social-auth/
KEYWORDS=~amd64 ~x86
LICENSE=MIT
RDEPEND==dev-lang/python-2*
SLOT=0
SRC_URI=mirror://pypi/d/django-social-auth/django-social-auth-0.6.8.tar.gz
_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f
_md5_=fe4093666c72df4d05c77360a0a7af16

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=>=dev-python/django-1.3.2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/oauth2-1.5.170[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/python-openid-2.2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=An easy to setup social authentication/authorization mechanism for Django projects
EAPI=5
HOMEPAGE=http://pypi.python.org/pypi/django-social-auth/
IUSE=python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
LICENSE=BSD
RDEPEND=>=dev-python/django-1.3.2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/oauth2-1.5.170[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/python-openid-2.2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=mirror://pypi/d/django-social-auth/django-social-auth-0.7.23.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9fc80a4f06f33ede447b5647fddca301 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=366ca06d635799b788b6f12515fa68e8

@ -0,0 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=app-arch/unzip 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_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(-)] doc? ( dev-python/sphinx[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_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_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 ) 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_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(-)]
DESCRIPTION=Lightweight in-process concurrent programming
EAPI=5
HOMEPAGE=http://pypi.python.org/pypi/greenlet/
IUSE=doc python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3
KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux
LICENSE=MIT
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_python3_3? ( dev-lang/python:3.3 ) 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_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(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 )
SLOT=0
SRC_URI=mirror://pypi/g/greenlet/greenlet-0.4.0.zip
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9fc80a4f06f33ede447b5647fddca301 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=4eb2ab56f2dbad01a40807967301d3d4

@ -6,8 +6,8 @@ HOMEPAGE=http://www.pythonware.com/products/pil/index.htm
IUSE=doc examples lcms scanner tk X
KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=HPND
RDEPEND=virtual/jpeg media-libs/freetype:2 lcms? ( media-libs/lcms:0 ) scanner? ( media-gfx/sane-backends ) X? ( x11-misc/xdg-utils ) =dev-lang/python-2* tk? ( =dev-lang/python-2*[tk] )
RDEPEND=virtual/jpeg media-libs/freetype:2 lcms? ( media-libs/lcms:0 ) scanner? ( media-gfx/sane-backends ) X? ( x11-misc/xdg-utils ) !dev-python/pillow =dev-lang/python-2* tk? ( =dev-lang/python-2*[tk] )
SLOT=0
SRC_URI=http://www.effbot.org/downloads/Imaging-1.1.7.tar.gz
_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 eutils f31a0ec0d081047cbf9c0bbb4822d831 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=cf1411428afdb9315f184a3124da91cd
_md5_=d78f77900fd00012d1a5edcba7ba3376

@ -6,9 +6,9 @@ HOMEPAGE=http://www.pythonware.com/products/pil/index.htm
IUSE=doc examples lcms scanner tk X python_targets_python2_5 python_targets_python2_6 python_targets_python2_7
KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=HPND
RDEPEND=virtual/jpeg media-libs/freetype:2 lcms? ( media-libs/lcms:0 ) scanner? ( media-gfx/sane-backends ) X? ( x11-misc/xdg-utils ) python_targets_python2_5? ( dev-lang/python:2.5[tk?] ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=virtual/jpeg media-libs/freetype:2 lcms? ( media-libs/lcms:0 ) scanner? ( media-gfx/sane-backends ) X? ( x11-misc/xdg-utils ) !dev-python/pillow python_targets_python2_5? ( dev-lang/python:2.5[tk?] ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=|| ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=http://www.effbot.org/downloads/Imaging-1.1.7.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9fc80a4f06f33ede447b5647fddca301 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=d31f88daea67a9b1567efb104ad23969
_md5_=fa7c1e780f357e2c566a11c72bb42e68

@ -6,9 +6,9 @@ HOMEPAGE=http://www.pythonware.com/products/pil/index.htm
IUSE=doc examples jpeg lcms scanner test tiff tk truetype zlib python_targets_python2_5 python_targets_python2_6 python_targets_python2_7
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=HPND
RDEPEND=truetype? ( media-libs/freetype:2 ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0 ) scanner? ( media-gfx/sane-backends ) tiff? ( media-libs/tiff ) zlib? ( sys-libs/zlib ) !dev-python/pillow python_targets_python2_5? ( dev-lang/python:2.5[tk?] ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
RDEPEND=truetype? ( media-libs/freetype:2 ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0 ) scanner? ( media-gfx/sane-backends ) tiff? ( media-libs/tiff ) zlib? ( sys-libs/zlib ) !dev-python/pillow !dev-python/pillow python_targets_python2_5? ( dev-lang/python:2.5[tk?] ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=test? ( jpeg tiff zlib ) || ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 )
SLOT=0
SRC_URI=http://www.effbot.org/downloads/Imaging-1.1.7.tar.gz
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9fc80a4f06f33ede447b5647fddca301 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=271396a1d84c119a9944ae104463b082
_md5_=07032c140fa7843fa71a409863573a20

@ -1,14 +0,0 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=truetype? ( media-libs/freetype:2= ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0= ) scanner? ( media-gfx/sane-backends:0= ) tiff? ( media-libs/tiff:0= ) webp? ( media-libs/libwebp:0= ) zlib? ( sys-libs/zlib:0= ) dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] doc? ( dev-python/sphinx ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) python_targets_python3_2? ( dev-lang/python:3.2[tk?] ) python_targets_python3_3? ( dev-lang/python:3.3[tk?] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
DESCRIPTION=Python Imaging Library (fork)
EAPI=5
HOMEPAGE=https://github.com/python-imaging/Pillow https://pypi.python.org/pypi/Pillow
IUSE=doc examples jpeg lcms scanner test tiff tk truetype webp zlib python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=HPND
RDEPEND=truetype? ( media-libs/freetype:2= ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0= ) scanner? ( media-gfx/sane-backends:0= ) tiff? ( media-libs/tiff:0= ) webp? ( media-libs/libwebp:0= ) zlib? ( sys-libs/zlib:0= ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) python_targets_python3_2? ( dev-lang/python:3.2[tk?] ) python_targets_python3_3? ( dev-lang/python:3.3[tk?] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
REQUIRED_USE=test? ( jpeg tiff zlib ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 )
SLOT=0
SRC_URI=mirror://pypi/P/Pillow/Pillow-2.0.0.zip
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9fc80a4f06f33ede447b5647fddca301 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=a2fdc89c00877fa6a4484e0e77fa7dbe

@ -1,14 +1,14 @@
DEFINED_PHASES=compile configure install prepare test
DEPEND=truetype? ( media-libs/freetype:2 ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0 ) scanner? ( media-gfx/sane-backends ) tiff? ( media-libs/tiff ) webp? ( media-libs/libwebp ) zlib? ( sys-libs/zlib ) !dev-python/imaging dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] doc? ( dev-python/sphinx ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
DESCRIPTION=Python Imaging Library (PIL)
DEPEND=truetype? ( media-libs/freetype:2= ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0= ) scanner? ( media-gfx/sane-backends:0= ) tiff? ( media-libs/tiff:0= ) webp? ( media-libs/libwebp:0= ) zlib? ( sys-libs/zlib:0= ) app-arch/unzip dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] doc? ( dev-python/sphinx ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) python_targets_python3_2? ( dev-lang/python:3.2[tk?] ) python_targets_python3_3? ( dev-lang/python:3.3[tk?] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
DESCRIPTION=Python Imaging Library (fork)
EAPI=5
HOMEPAGE=http://www.pythonware.com/products/pil/index.htm
IUSE=doc examples jpeg lcms scanner test tiff tk truetype webp zlib python_targets_python2_6 python_targets_python2_7
KEYWORDS=~amd64 ~x86
HOMEPAGE=https://github.com/python-imaging/Pillow https://pypi.python.org/pypi/Pillow
IUSE=doc examples jpeg lcms scanner test tiff tk truetype webp zlib python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3
KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris
LICENSE=HPND
RDEPEND=truetype? ( media-libs/freetype:2 ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0 ) scanner? ( media-gfx/sane-backends ) tiff? ( media-libs/tiff ) webp? ( media-libs/libwebp ) zlib? ( sys-libs/zlib ) !dev-python/imaging python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)]
REQUIRED_USE=test? ( jpeg tiff zlib ) || ( python_targets_python2_6 python_targets_python2_7 )
RDEPEND=truetype? ( media-libs/freetype:2= ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0= ) scanner? ( media-gfx/sane-backends:0= ) tiff? ( media-libs/tiff:0= ) webp? ( media-libs/libwebp:0= ) zlib? ( sys-libs/zlib:0= ) !dev-python/imaging python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) python_targets_python3_2? ( dev-lang/python:3.2[tk?] ) python_targets_python3_3? ( dev-lang/python:3.3[tk?] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)]
REQUIRED_USE=test? ( jpeg tiff zlib ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 )
SLOT=0
SRC_URI=mirror://pypi/P/Pillow/Pillow-2.0.0.zip
_eclasses_=distutils-r1 6950481ecc2ad548f2d9d116a0936fb8 eutils f31a0ec0d081047cbf9c0bbb4822d831 multibuild 4f797e941786b6313d84053ae3e0ec96 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 094dc7421f9aea7525b85b899f67e62a python-utils-r1 9fc80a4f06f33ede447b5647fddca301 toolchain-funcs 7ffd28a8c7eea27218865352bfd3ab2f user d0a4d0735a6c0183d707ca919bd72f28
_md5_=966ea8dad453b22e436d6cb59619e044
_md5_=167b8412e5f13f2b5dfaa2833f74e763

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

Loading…
Cancel
Save