Sync with portage [Mon Jun 8 08:52:04 MSK 2015].

mhiretskiy
root 9 years ago
parent b18032311c
commit c82e2f7966

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/eclean-kernel/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/eclean-kernel/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/eclean-kernel</remote-id>
</upstream>
</pkgmetadata>

@ -1,4 +1,2 @@
DIST eselect-1.3.8.tar.xz 168040 SHA256 d0c50bfe0faaddc54fc184f698ee74a6029a21f5155c4670a2bea3ead954c138 SHA512 159bf3ddb05b1966318eaf62d09e454a024f8be7ead2300392abbcbaa54ef748a1c4db1b2f96162994bcab43071396eb96a0b47268f04cb8557f8804818da18e WHIRLPOOL 9c4da0bde2ae2b53e8949d59b13498f55ef2c849dcc8cac503a7d0dda2511311d94dfc7aa27a97432f13aa0b430fec0ab280594dc165bbb40e573dce8c8a74b0
DIST eselect-1.4.1.tar.xz 168616 SHA256 c60eb7e3b6eea36560ea16f8378de3c86926988a1eee3e6dd98c12f0340869c0 SHA512 c6754c3bb71efda36b807f2275aff0cc7bf5c3f58cbc7543b8255592940dae341e4b597ff1376b0997c37bcd0b736d813630b9fe4a4da2f85765217d8634deab WHIRLPOOL a9fb2dc6904c57878c744f70f0bd66a18b574eec04f042fa5ab60f608f31a0c90554153f3362c633742bb9918cb14f146269e0972cdf97998c60c236ae966f66
DIST eselect-1.4.3.tar.xz 169400 SHA256 eea297658235321727f174aca841fccd31ec1ec044519c6b74fd5f7f168a3faf SHA512 5c4468745cb3d8da731fcd9c0ad3897270b01b337fd33cb06f5523d71d5ceb03be01eb10dd624522700e23175462a87ebb9e84e58a250b1938981dc0d5b39595 WHIRLPOOL 3788f77082abb55bd4d07317fd08688522c059e95d7ae7c6958bc40e7ef9bbced996e909e4bb3fc367585b212d93bff950ca2072907e0a06ef8330cdbec53256
DIST eselect-1.4.4.tar.xz 177536 SHA256 120c123eae4a1d03515e94f9efd51af6ff2f09340daf1ada4dc21079df7a937f SHA512 1ed01cf00e3f13aad3e5f844c7086c3dd48398efd76e68cd91cf13b9939f4b48eef8915c5f3926954d158023115ad66ee67c0bc8fc4c9570900a37207674fc8f WHIRLPOOL e56c3ea3e54bdbcfffba3fbbe85b3c824cab796a0bae2680fac962356a2f707783571a9f73e0ea8299098838e593bea77b14edbeaadc372f186c2da2928e9ab5

@ -1,60 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-1.4.1.ebuild,v 1.12 2015/04/01 00:55:33 ulm Exp $
EAPI=4
inherit eutils bash-completion-r1
DESCRIPTION="Gentoo's multi-purpose configuration and management tool"
HOMEPAGE="http://wiki.gentoo.org/wiki/Project:Eselect"
SRC_URI="http://dev.gentoo.org/~ulm/eselect/${P}.tar.xz"
LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-2.5 )"
SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~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="doc emacs vim-syntax"
RDEPEND="sys-apps/sed
|| (
sys-apps/coreutils
sys-freebsd/freebsd-bin
app-misc/realpath
)"
DEPEND="${RDEPEND}
app-arch/xz-utils
doc? ( dev-python/docutils )"
RDEPEND="${RDEPEND}
sys-apps/file
sys-libs/ncurses"
PDEPEND="emacs? ( app-emacs/eselect-mode )
vim-syntax? ( app-vim/eselect-syntax )"
src_compile() {
emake
use doc && emake html
}
src_install() {
emake DESTDIR="${D}" install
newbashcomp misc/${PN}.bashcomp ${PN}
dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt
use doc && dohtml *.html doc/*
# needed by news module
keepdir /var/lib/gentoo/news
if ! use prefix; then
fowners root:portage /var/lib/gentoo/news
fperms g+w /var/lib/gentoo/news
fi
}
pkg_postinst() {
# fowners in src_install doesn't work for the portage group:
# merging changes the group back to root
if ! use prefix; then
chgrp portage "${EROOT}/var/lib/gentoo/news" \
&& chmod g+w "${EROOT}/var/lib/gentoo/news"
fi
}

@ -1,60 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-1.4.3.ebuild,v 1.11 2015/04/01 00:55:33 ulm Exp $
EAPI=4
inherit eutils bash-completion-r1
DESCRIPTION="Gentoo's multi-purpose configuration and management tool"
HOMEPAGE="http://wiki.gentoo.org/wiki/Project:Eselect"
SRC_URI="http://dev.gentoo.org/~ulm/eselect/${P}.tar.xz"
LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-2.5 )"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~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="doc emacs vim-syntax"
RDEPEND="sys-apps/sed
|| (
sys-apps/coreutils
sys-freebsd/freebsd-bin
app-misc/realpath
)"
DEPEND="${RDEPEND}
app-arch/xz-utils
doc? ( dev-python/docutils )"
RDEPEND="${RDEPEND}
sys-apps/file
sys-libs/ncurses"
PDEPEND="emacs? ( app-emacs/eselect-mode )
vim-syntax? ( app-vim/eselect-syntax )"
src_compile() {
emake
use doc && emake html
}
src_install() {
emake DESTDIR="${D}" install
newbashcomp misc/${PN}.bashcomp ${PN}
dodoc AUTHORS ChangeLog NEWS README TODO doc/*.txt
use doc && dohtml *.html doc/*
# needed by news module
keepdir /var/lib/gentoo/news
if ! use prefix; then
fowners root:portage /var/lib/gentoo/news
fperms g+w /var/lib/gentoo/news
fi
}
pkg_postinst() {
# fowners in src_install doesn't work for the portage group:
# merging changes the group back to root
if ! use prefix; then
chgrp portage "${EROOT}/var/lib/gentoo/news" \
&& chmod g+w "${EROOT}/var/lib/gentoo/news"
fi
}

@ -0,0 +1,38 @@
--- a/Makefile.in
+++ b/Makefile.in
@@ -368,25 +368,19 @@
$(CHOWN) $(CRON_OWNER) $(DESTDIR)$(SA_DIR)
ifdef SYSTEMD_UNIT_DIR
mkdir -p $(DESTDIR)$(SYSTEMD_UNIT_DIR)
-else
- if [ -d /etc/cron.d ]; then \
- mkdir -p $(DESTDIR)/etc/cron.d; \
- elif [ -d /etc/cron.hourly -a -d /etc/cron.daily ]; then \
- mkdir -p $(DESTDIR)/etc/cron.hourly $(DESTDIR)/etc/cron.daily; \
- fi
- if [ -d $(INIT_DIR) ]; then \
- mkdir -p $(DESTDIR)$(INIT_DIR); \
- elif [ -d $(RC_DIR) ]; then \
+endif
+ifeq ($(INSTALL_CRON),y)
+ mkdir -p $(DESTDIR)/etc/cron.d; \
+ mkdir -p $(DESTDIR)$(INIT_DIR); \
+ if [ -d $(RC_DIR) ]; then \
mkdir -p $(DESTDIR)$(RC_DIR); \
fi
endif
- if [ -z "$(SYSTEMD_UNIT_DIR)" -o ! -d "$(DESTDIR)$(SYSTEMD_UNIT_DIR)" ]; then \
- if [ -d $(DESTDIR)/etc/cron.d ]; then \
- $(INSTALL_DATA) cron/sysstat.crond $(DESTDIR)/etc/cron.d/sysstat; \
- elif [ -d $(DESTDIR)/etc/cron.hourly -a -d $(DESTDIR)/etc/cron.daily ]; then \
- $(INSTALL_BIN) cron/sysstat.cron.hourly $(DESTDIR)/etc/cron.hourly/sysstat; \
- $(INSTALL_BIN) cron/sysstat.cron.daily $(DESTDIR)/etc/cron.daily/sysstat; \
- fi \
+ if [ -d $(DESTDIR)/etc/cron.d ]; then \
+ $(INSTALL_DATA) cron/sysstat.crond $(DESTDIR)/etc/cron.d/sysstat; \
+ elif [ -d $(DESTDIR)/etc/cron.hourly -a -d $(DESTDIR)/etc/cron.daily ]; then \
+ $(INSTALL_BIN) cron/sysstat.cron.hourly $(DESTDIR)/etc/cron.hourly/sysstat; \
+ $(INSTALL_BIN) cron/sysstat.cron.daily $(DESTDIR)/etc/cron.daily/sysstat; \
fi
ifeq ($(COPY_ONLY),n)
if [ \( -z "$(SYSTEMD_UNIT_DIR)" -o ! -d "$(DESTDIR)$(SYSTEMD_UNIT_DIR)" \) -a ! -d $(DESTDIR)/etc/cron.d ]; then \

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-11.0.4.ebuild,v 1.1 2015/04/14 04:49:29 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-11.0.4-r1.ebuild,v 1.1 2015/06/08 04:45:43 jer Exp $
EAPI=5
inherit eutils multilib systemd toolchain-funcs
@ -12,12 +12,11 @@ SRC_URI="${HOMEPAGE}${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="cron debug +doc isag nls lm_sensors selinux"
IUSE="debug +doc isag nls lm_sensors selinux"
CDEPEND="
cron? ( sys-process/cronbase )
isag? (
dev-lang/tk
dev-lang/tk:*
dev-vcs/rcs
sci-visualization/gnuplot
)
@ -45,7 +44,9 @@ src_prepare() {
fi
done
fi
epatch "${FILESDIR}"/${PN}-10.0.4-flags.patch
epatch \
"${FILESDIR}"/${PN}-10.0.4-flags.patch \
"${FILESDIR}"/${PN}-11.0.4-cron.patch
}
src_configure() {
@ -56,12 +57,12 @@ src_configure() {
econf \
--enable-copy-only \
--with-systemdsystemunitdir=$(systemd_get_unitdir) \
$(use_enable cron install-cron) \
$(use_enable debug debuginfo) \
$(use_enable doc documentation ) \
$(use_enable isag install-isag) \
$(use_enable lm_sensors sensors) \
$(use_enable nls)
$(use_enable nls) \
--enable-install-cron
}
src_compile() {
@ -71,8 +72,6 @@ src_compile() {
src_install() {
keepdir /var/log/sa
use cron && dodir /etc/cron.d
emake \
DESTDIR="${D}" \
DOC_DIR=/usr/share/doc/${PF} \

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-11.1.4.ebuild,v 1.1 2015/04/14 04:49:29 jer Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/sysstat/sysstat-11.1.4-r1.ebuild,v 1.1 2015/06/08 04:45:43 jer Exp $
EAPI=5
inherit eutils multilib systemd toolchain-funcs
@ -12,12 +12,11 @@ SRC_URI="${HOMEPAGE}${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="cron debug +doc isag nls lm_sensors selinux"
IUSE="debug +doc isag nls lm_sensors selinux"
CDEPEND="
cron? ( sys-process/cronbase )
isag? (
dev-lang/tk
dev-lang/tk:*
dev-vcs/rcs
sci-visualization/gnuplot
)
@ -45,7 +44,9 @@ src_prepare() {
fi
done
fi
epatch "${FILESDIR}"/${PN}-10.0.4-flags.patch
epatch \
"${FILESDIR}"/${PN}-10.0.4-flags.patch \
"${FILESDIR}"/${PN}-11.0.4-cron.patch
}
src_configure() {
@ -56,12 +57,12 @@ src_configure() {
econf \
--enable-copy-only \
--with-systemdsystemunitdir=$(systemd_get_unitdir) \
$(use_enable cron install-cron) \
$(use_enable debug debuginfo) \
$(use_enable doc documentation ) \
$(use_enable isag install-isag) \
$(use_enable lm_sensors sensors) \
$(use_enable nls)
$(use_enable nls) \
--enable-install-cron
}
src_compile() {
@ -71,8 +72,6 @@ src_compile() {
src_install() {
keepdir /var/log/sa
use cron && dodir /etc/cron.d
emake \
DESTDIR="${D}" \
DOC_DIR=/usr/share/doc/${PF} \

@ -6,7 +6,7 @@
<name>Michał Górny</name>
</maintainer>
<use>
<flag name='pinentry'>Support <pkg>app-crypt/pinentry</pkg> password
<flag name="pinentry">Support <pkg>app-crypt/pinentry</pkg> password
input backend.</flag>
</use>
<upstream>
@ -15,5 +15,6 @@
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/mirage2iso/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/mirage2iso</remote-id>
</upstream>
</pkgmetadata>

@ -8,5 +8,6 @@
</use>
<upstream>
<remote-id type="github">equalsraf/vim-qt</remote-id>
<remote-id type="bitbucket">equalsraf/vim-qt</remote-id>
</upstream>
</pkgmetadata>

@ -0,0 +1,88 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/cloud-init/cloud-init-0.7.5-r3.ebuild,v 1.1 2015/06/08 01:11:20 prometheanfire Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
DISTUTILS_SINGLE_IMPL=TRUE
inherit distutils-r1 eutils multilib systemd
DESCRIPTION="Cloud instance initialization"
HOMEPAGE="http://launchpad.net/cloud-init"
SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
CDEPEND="
dev-python/cheetah[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
dev-python/jsonpatch[${PYTHON_USEDEP}]
dev-python/oauth[${PYTHON_USEDEP}]
>=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
dev-python/pyserial[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
"
DEPEND="
test? (
${CDEPEND}
>=dev-python/httpretty-0.7.1[${PYTHON_USEDEP}]
dev-python/mocker[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pep8[${PYTHON_USEDEP}]
dev-python/pyflakes[${PYTHON_USEDEP}]
dev-python/pylint[${PYTHON_USEDEP}]
sys-apps/iproute2
)
"
RDEPEND="
${CDEPEND}
virtual/logger
"
python_prepare_all() {
local PATCHES=(
"${FILESDIR}"/${P}-tests-exclude.patch
)
distutils-r1_python_prepare_all
# Skip SmartOS tests since they don't generally apply and don't skip based
# on environment. Documented in bug #511384.
rm tests/unittests/test_datasource/test_smartos.py
}
python_test() {
# These tests are not broken but expect to locate an installed exe file
# other than where a gentoo system installs it; (/bin/ip sought in /sbin)
# See cloudinit/sources/DataSourceOpenNebula.py for possible patching
sed \
-e 's:test_hostname:_&:' \
-e 's:test_network_interfaces:_&:' \
-i tests/unittests/test_datasource/test_opennebula.py
emake test
}
python_install_all() {
distutils-r1_python_install_all
doinitd "${S}"/sysvinit/gentoo/cloud-config
doinitd "${S}"/sysvinit/gentoo/cloud-final
doinitd "${S}"/sysvinit/gentoo/cloud-init
doinitd "${S}"/sysvinit/gentoo/cloud-init-local
systemd_dounit "${S}"/systemd/cloud-config.service
systemd_dounit "${S}"/systemd/cloud-config.target
systemd_dounit "${S}"/systemd/cloud-final.service
systemd_dounit "${S}"/systemd/cloud-init-local.service
systemd_dounit "${S}"/systemd/cloud-init.service
rm /etc/cloud/cloud.cfg
insinto /etc/cloud
doins "${FILESDIR}/cloud.cfg"
}

@ -0,0 +1,96 @@
# The top level settings are used as module
# and system configuration.
# A set of users which may be applied and/or used by various modules
# when a 'default' entry is found it will reference the 'default_user'
# from the distro configuration specified below
users:
- default
# If this is set, 'root' will not be able to ssh in and they
# will get a message to login instead as the above $user (ubuntu)
disable_root: true
# This will cause the set+update hostname module to not operate (if true)
preserve_hostname: false
# Example datasource config
# datasource:
# Ec2:
# metadata_urls: [ 'blah.com' ]
# timeout: 5 # (defaults to 50 seconds)
# max_wait: 10 # (defaults to 120 seconds)
# The modules that run in the 'init' stage
cloud_init_modules:
- migrator
- ubuntu-init-switch
- seed_random
- bootcmd
- write-files
- growpart
- resizefs
- set_hostname
- update_hostname
- update_etc_hosts
- ca-certs
- rsyslog
- users-groups
- ssh
# The modules that run in the 'config' stage
cloud_config_modules:
# Emit the cloud config ready event
# this can be used by upstart jobs for 'start on cloud-config'.
- emit_upstart
- disk_setup
- mounts
- ssh-import-id
- locale
- set-passwords
- grub-dpkg
- apt-pipelining
- apt-configure
- package-update-upgrade-install
- landscape
- timezone
- puppet
- chef
- salt-minion
- mcollective
- disable-ec2-metadata
- runcmd
- byobu
# The modules that run in the 'final' stage
cloud_final_modules:
- rightscale_userdata
- scripts-vendor
- scripts-per-once
- scripts-per-boot
- scripts-per-instance
- scripts-user
- ssh-authkey-fingerprints
- keys-to-console
- phone-home
- final-message
- power-state-change
# System and/or distro specific settings
# (not accessible to handlers/transforms)
system_info:
# This will affect which distro class gets used
distro: gentoo
# Default user name + that default users groups (if added/used)
default_user:
name: gentoo
lock_passwd: True
gecos: gentoo
groups: [adm]
sudo: ["ALL=(ALL) NOPASSWD:ALL"]
shell: /bin/bash
# Other config here will be given to the distro class and/or path classes
paths:
cloud_dir: /var/lib/cloud/
templates_dir: /etc/cloud/templates/
ssh_svcname: sshd

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/eselect-lib-bin-symlink/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/eselect-lib-bin-symlink/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/eselect-lib-bin-symlink</remote-id>
</upstream>
</pkgmetadata>

@ -1,12 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<longdescription lang="en">tool to extract metadata from multimedia files (sound, video, archives,
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<longdescription lang="en">tool to extract metadata from multimedia files (sound, video, archives,
etc.)</longdescription>
<upstream>
<remote-id type="pypi">hachoir-metadata</remote-id>
</upstream>
<upstream>
<remote-id type="pypi">hachoir-metadata</remote-id>
<remote-id type="bitbucket">haypo/hachoir</remote-id>
</upstream>
</pkgmetadata>

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<longdescription lang="en">a tool based on hachoir-parser to find subfiles in any binary stream.</longdescription>
<upstream>
<remote-id type="pypi">hachoir-subfile</remote-id>
</upstream>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<longdescription lang="en">a tool based on hachoir-parser to find subfiles in any binary stream.</longdescription>
<upstream>
<remote-id type="pypi">hachoir-subfile</remote-id>
<remote-id type="bitbucket">haypo/hachoir</remote-id>
</upstream>
</pkgmetadata>

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<longdescription lang="en">user interface based on hachoir-parser to explore a binary file.</longdescription>
<upstream>
<remote-id type="pypi">hachoir-urwid</remote-id>
</upstream>
<maintainer>
<email>maintainer-needed@gentoo.org</email>
</maintainer>
<longdescription lang="en">user interface based on hachoir-parser to explore a binary file.</longdescription>
<upstream>
<remote-id type="pypi">hachoir-urwid</remote-id>
<remote-id type="bitbucket">haypo/hachoir</remote-id>
</upstream>
</pkgmetadata>

@ -5,4 +5,7 @@
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<remote-id type="bitbucket">mgorny/cpuinfo2cpuflags</remote-id>
</upstream>
</pkgmetadata>

@ -18,5 +18,6 @@
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/diffmask/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/diffmask</remote-id>
</upstream>
</pkgmetadata>

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.30.10.ebuild,v 1.1 2015/06/07 16:19:38 sping Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.30.10.ebuild,v 1.2 2015/06/07 18:05:19 sping Exp $
EAPI=5
@ -8,7 +8,7 @@ PLOCALES="de ru"
inherit bash-completion-r1 eutils l10n
DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
HOMEPAGE="http://github.com/vaeth/eix/"
HOMEPAGE="https://github.com/vaeth/eix/"
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.bz2"
LICENSE="GPL-2"

@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.30.4.ebuild,v 1.10 2014/12/06 16:40:26 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.30.4.ebuild,v 1.11 2015/06/07 18:05:19 sping Exp $
EAPI=5
@ -8,7 +8,7 @@ PLOCALES="de ru"
inherit bash-completion-r1 eutils l10n
DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
HOMEPAGE="http://github.com/vaeth/eix/"
HOMEPAGE="https://github.com/vaeth/eix/"
SRC_URI="http://dev.gentoo.org/~axs/distfiles/${P}.tar.xz"
LICENSE="GPL-2"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.30.7.ebuild,v 1.1 2015/03/16 16:35:23 axs Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.30.7.ebuild,v 1.2 2015/06/07 18:05:19 sping Exp $
EAPI=5
@ -8,7 +8,7 @@ PLOCALES="de ru"
inherit bash-completion-r1 eutils l10n
DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
HOMEPAGE="http://github.com/vaeth/eix/"
HOMEPAGE="https://github.com/vaeth/eix/"
SRC_URI="http://dev.gentoo.org/~axs/distfiles/${P}.tar.xz"
LICENSE="GPL-2"

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.30.8.ebuild,v 1.1 2015/04/13 16:54:24 axs Exp $
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.30.8.ebuild,v 1.2 2015/06/07 18:05:19 sping Exp $
EAPI=5
@ -8,7 +8,7 @@ PLOCALES="de ru"
inherit bash-completion-r1 eutils l10n
DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
HOMEPAGE="http://github.com/vaeth/eix/"
HOMEPAGE="https://github.com/vaeth/eix/"
SRC_URI="http://dev.gentoo.org/~axs/distfiles/${P}.tar.xz"
LICENSE="GPL-2"

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/flaggie/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/flaggie/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/flaggie</remote-id>
</upstream>
</pkgmetadata>

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/gentoopm/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/gentoopm/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/gentoopm</remote-id>
</upstream>
</pkgmetadata>

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/gpyutils/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/gpyutils/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/gpyutils</remote-id>
</upstream>
</pkgmetadata>

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/install-mask/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/install-mask/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/install-mask</remote-id>
</upstream>
</pkgmetadata>

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/lightweight-cvs-toolkit/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/lightweight-cvs-toolkit/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/lightweight-cvs-toolkit</remote-id>
</upstream>
</pkgmetadata>

@ -1,14 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>proxy-maintainers</herd>
<maintainer>
<email>lk4d4math@gmail.com</email>
<name>Alexandr Morozov</name>
<description>Author and maintainer of package</description>
</maintainer>
<maintainer>
<email>maksbotan@gentoo.org</email>
<name>Maxim Koltsov</name>
</maintainer>
<herd>proxy-maintainers</herd>
<maintainer>
<email>lk4d4math@gmail.com</email>
<name>Alexandr Morozov</name>
<description>Author and maintainer of package</description>
</maintainer>
<maintainer>
<email>maksbotan@gentoo.org</email>
<name>Maxim Koltsov</name>
</maintainer>
<upstream>
<remote-id type="bitbucket">LK4D4/pqlop</remote-id>
</upstream>
</pkgmetadata>

@ -1,23 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<maintainer>
<email>binki@gentoo.org</email>
<name>Nathan Phillip Brink</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<maintainer status="active">
<email>binki@gentoo.org</email>
<name>Nathan Phillip Brink</name>
</maintainer>
<bugs-to>https://bitbucket.org/gentoo/repo-commit/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<maintainer>
<email>binki@gentoo.org</email>
<name>Nathan Phillip Brink</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<maintainer status="active">
<email>binki@gentoo.org</email>
<name>Nathan Phillip Brink</name>
</maintainer>
<bugs-to>https://bitbucket.org/gentoo/repo-commit/issues/</bugs-to>
<remote-id type="bitbucket">gentoo/repo-commit</remote-id>
</upstream>
</pkgmetadata>

@ -17,5 +17,6 @@
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/smart-live-rebuild/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/smart-live-rebuild</remote-id>
</upstream>
</pkgmetadata>

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>radhermit@gentoo.org</email>
<name>Tim Harder</name>
</maintainer>
<upstream>
<remote-id type="google-code">csvfix</remote-id>
</upstream>
<maintainer>
<email>radhermit@gentoo.org</email>
<name>Tim Harder</name>
</maintainer>
<upstream>
<remote-id type="google-code">csvfix</remote-id>
<remote-id type="bitbucket">neilb/csvfix</remote-id>
</upstream>
</pkgmetadata>

@ -1,16 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>dotnet</herd>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/pe-format2/issues/</bugs-to>
</upstream>
<herd>dotnet</herd>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/pe-format2/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/pe-format2</remote-id>
</upstream>
</pkgmetadata>

@ -3,11 +3,14 @@
<pkgmetadata>
<herd>haskell</herd>
<longdescription>
This is an implementation of Tarjan&#39;s Union-Find algorithm (Robert
E. Tarjan. &quot;Efficiency of a Good But Not Linear Set Union
Algorithm&quot;, JACM 22(2), 1975) in order to maintain an equivalence
This is an implementation of Tarjan's Union-Find algorithm (Robert
E. Tarjan. "Efficiency of a Good But Not Linear Set Union
Algorithm", JACM 22(2), 1975) in order to maintain an equivalence
relation.
This implementation is a port of the /union-find/ package using the
ST monad transformer (instead of the IO monad).
</longdescription>
<upstream>
<remote-id type="bitbucket">paba/equivalence</remote-id>
</upstream>
</pkgmetadata>

@ -12,4 +12,7 @@
only if they support BangPatterns. If you need it to
work with other compilers, send a feature request.
</longdescription>
<upstream>
<remote-id type="bitbucket">dafis/stringsearch</remote-id>
</upstream>
</pkgmetadata>

@ -1 +1,2 @@
DIST batik-src-1.7.zip 15060504 SHA256 6bea593543a797561fa83651764e40b1b0ce01c1df21ab0359ade58e967379fd SHA512 7fee3e0d2c99e95517420c8170f68b4857fec87f69c7c55719b5e9914608900fca4c9d7d9b3e1166d678a6c844fe870a3c1051e2c1f35a2e6793a17b9087893e WHIRLPOOL 7e8f4e537d5c1d14778a8c151ff469edbc25e629c0cf99009c65a99c1dfac47d58c0bf0fa6b194bc51d8fe25ba7949f264b5d055cc22563ff50ecdd95d36daab
DIST batik-src-1.7.zip 741312 SHA256 fe0f385a6d94fe23953371fa00f63d1fec42c3698829bbc13877d0264f9ae623 SHA512 31abbd6250fc722f22b02004c4bb0d13b514164860cb867fd241cba33dbad363b203b641e471a227978098ac117028a10af66f414d8a4082e68098967dee965e WHIRLPOOL ba9da93099437ca42b2282eb29ce40c8954a8ef9c4552cc5215b1b5af3f06f5ecae3b481549f39ac24508f8b4d98e67bcb4a272786d215b5ed707188c1a9a87c
DIST batik-src-1.8.tar.gz 14970684 SHA256 0f1175146d45445fc4940e214c3e1e5cfa0294ae6a9787859bda00964f97c2bd SHA512 352843fd0cec43c6d9d54426fe1c20a9bd2234798404b101f2e8d43f6089c0bf6bb5102cb5674de11d37a0d820a8bb79fe9dd854030b23fd8c68f3931eb12f1b WHIRLPOOL fa50d1f87257c6018f99076bf759066b2311f483d424ef743e45fe17c74c646a215c1211c5431b2a522913f23ff5f53934a1606d4d4a223e8298abd6ce94bb46

@ -0,0 +1,90 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/batik-1.8.ebuild,v 1.1 2015/06/07 23:38:39 monsieurp Exp $
EAPI=5
JAVA_PKG_IUSE="doc"
inherit java-pkg-2 java-ant-2 eutils
DESCRIPTION="Java based SVG toolkit"
HOMEPAGE="https://xmlgraphics.apache.org/batik/"
SRC_URI="http://apache.mirrors.ovh.net/ftp.apache.org/dist/xmlgraphics/${PN}/source/${PN}-src-${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="1.8"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="doc python tcl"
CDEPEND="dev-java/xalan:0
dev-java/rhino:1.6
dev-java/xml-commons-external:1.3
dev-java/xmlgraphics-commons:1.5
python? ( dev-java/jython:0 )
tcl? ( dev-java/jacl:0 )
dev-java/ant-core"
DEPEND=">=virtual/jdk-1.6
${CDEPEND}"
RDEPEND=">=virtual/jre-1.6
${CDEPEND}"
JAVA_ANT_REWRITE_CLASSPATH="true"
EANT_GENTOO_CLASSPATH="xml-commons-external-1.3,xmlgraphics-commons-1.5,xalan,rhino-1.6"
java_prepare() {
# bug #318323
for file in build.xml contrib/rasterizertask/build.xml; do
java-ant_xml-rewrite -f ${file} -c -e javadoc -a failonerror -v no -a maxmemory -v 512m
done
cd lib
rm -v *.jar build/*.jar || die
use python && java-pkg_jar-from jython
use tcl && java-pkg_jar-from jacl
}
src_compile() {
# Fails to build on amd64 without this
if use amd64 ; then
export ANT_OPTS="-Xmx1g"
else
export ANT_OPTS="-Xmx256m"
fi
eant jars all-jar $(use_doc)
cd contrib/rasterizertask || die
eant -Dgentoo.classpath="$(java-pkg_getjar ant-core ant.jar):../../classes" jar $(use_doc)
}
src_install() {
cd ${P}
# Unversion all jars in ${P}.
for jar in *.jar; do
newj="${jar%-*}.jar"
java-pkg_newjar ${jar} ${newj}
dosym ${newj} /usr/share/${PN}-${SLOT}/lib/lib/${jar}
done
# needed because batik expects this layout:
# batik.jar lib/*.jar
# there are hardcoded classpaths in the manifest :(
dodir /usr/share/${PN}-${SLOT}/lib/lib/
cd "${S}"
dodoc README CHANGES
use doc && java-pkg_dojavadoc ${P}/docs/javadoc
# pwd fixes bug #116976
java-pkg_dolauncher batik-${SLOT} --pwd "${EPREFIX}/usr/share/${PN}-${SLOT}/" \
--main org.apache.batik.apps.svgbrowser.Main
# To find these lsjar batik-${SLOT} | grep Main.class
for launcher in ttf2svg slideshow svgpp rasterizer; do
java-pkg_dolauncher batik-${launcher}-${SLOT} \
--main org.apache.batik.apps.${launcher}.Main
done
# Install and register the ant task.
java-pkg_dojar contrib/rasterizertask/build/lib/RasterizerTask.jar
java-pkg_register-ant-task
}

@ -1,12 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/python-exec/issues/</bugs-to>
</upstream>
<herd>python</herd>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/python-exec/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/python-exec</remote-id>
</upstream>
</pkgmetadata>

@ -1,9 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>openstack</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<herd>openstack</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<upstream>
<remote-id type="bitbucket">tsg-/liberasurecode</remote-id>
</upstream>
</pkgmetadata>

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
<herd>ml</herd>
<upstream>
<remote-id type="bitbucket">yminsky/ocaml-core</remote-id>
</upstream>
</pkgmetadata>

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
<herd>ml</herd>
<upstream>
<remote-id type="bitbucket">mmottl/ocaml-makefile</remote-id>
</upstream>
</pkgmetadata>

@ -1,11 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
<herd>ml</herd>
<longdescription lang="en">
Pa_ounit is a syntax extension that helps writing in-line test in ocaml
code. It allows user to register tests with a new `TEST` top-level expressions
and automatically collects all the tests in a module (in a function
`ounit_tests` of type `unit -> OUnit.test`).
`ounit_tests` of type `unit -&gt; OUnit.test`).
</longdescription>
<upstream>
<remote-id type="bitbucket">yminsky/ocaml-core</remote-id>
</upstream>
</pkgmetadata>

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
<herd>ml</herd>
<upstream>
<remote-id type="bitbucket">yminsky/ocaml-core</remote-id>
</upstream>
</pkgmetadata>

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
<herd>ml</herd>
<upstream>
<remote-id type="bitbucket">yminsky/ocaml-core</remote-id>
</upstream>
</pkgmetadata>

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>ml</herd>
<herd>ml</herd>
<upstream>
<remote-id type="bitbucket">yminsky/ocaml-core</remote-id>
</upstream>
</pkgmetadata>

@ -7,5 +7,6 @@
</maintainer>
<upstream>
<remote-id type="pypi">APScheduler</remote-id>
<remote-id type="bitbucket">agronholm/apscheduler</remote-id>
</upstream>
</pkgmetadata>

@ -11,5 +11,6 @@ aioeventlet implements the asyncio API (PEP 3156) on top of eventlet. It makes p
</longdescription>
<upstream>
<remote-id type="pypi">aioeventlet</remote-id>
<remote-id type="bitbucket">haypo/aioeventlet</remote-id>
</upstream>
</pkgmetadata>

@ -8,5 +8,6 @@
</maintainer>
<upstream>
<remote-id type="pypi">alembic</remote-id>
<remote-id type="bitbucket">zzzeek/alembic</remote-id>
</upstream>
</pkgmetadata>

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">aniso8601</remote-id>
</upstream>
<herd>python</herd>
<upstream>
<remote-id type="pypi">aniso8601</remote-id>
<remote-id type="bitbucket">nielsenb/aniso8601</remote-id>
</upstream>
</pkgmetadata>

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">anyjson</remote-id>
</upstream>
<herd>python</herd>
<upstream>
<remote-id type="pypi">anyjson</remote-id>
<remote-id type="bitbucket">runeh/anyjson</remote-id>
</upstream>
</pkgmetadata>

@ -15,5 +15,6 @@
trees by inspecting living objects.</longdescription>
<upstream>
<remote-id type="pypi">astroid</remote-id>
<remote-id type="bitbucket">logilab/astroid</remote-id>
</upstream>
</pkgmetadata>

@ -1,9 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<maintainer>
<email>radhermit@gentoo.org</email>
<name>Tim Harder</name>
</maintainer>
<herd>python</herd>
<maintainer>
<email>radhermit@gentoo.org</email>
<name>Tim Harder</name>
</maintainer>
<upstream>
<remote-id type="bitbucket">brandon/backports</remote-id>
</upstream>
</pkgmetadata>

@ -1,18 +1,5 @@
DIST boto-2.11.0.tar.gz 1045981 SHA256 abc0409acd323030d32b994dda8f3538c1fbfbc8c62816975c2b85eb6c3832f9 SHA512 ac42acd3c5f83f2373b1f2f551822646ac6558670c3d273dd8b40b454f6943aa27ac287e52e0e72cd2ad8ce3e006b0d296ef881a8d3de03841b3653f6d3dfef8 WHIRLPOOL 48a03ad3f3a00f2a579330fafe1849b0cf459e7413a83e7319099b0122c22ae8722368fd6ca73b04c1f7123a84cb18bbc188573d79fd7f2d1a6cd67150779e24
DIST boto-2.19.0.tar.gz 6003759 SHA256 8c461b6dac980a6ebc6794e0218c80aab084b2abdd734c0772a7bca514b17a27 SHA512 c0a5282baccec1e91a5507f5d5415c037ee2dc02d68d701e137fee5014cbf231067e30cfccdf892f0138b61f8e0ea0f8df9468862dd7b76a609f3840ae9fc965 WHIRLPOOL 35113fbbf126297e221502eebd6509092199a5678056648a976431dd7e297d50039b79ac6feddc4aea4e7b0adc467e070d0ec1f153199a822ff56fc2d8f3758b
DIST boto-2.20.0.tar.gz 6022471 SHA256 339e3205d5ac99e63847a32d829535cf1be6afe7a61406f95e187fc29d3032a3 SHA512 08b3f3a0d3b8758531cc9fa1f864dff4850fa888752fe7b18c042dc3269d8bcef206b5f5229be02020e04ca5c1ba849bfc3311c3cedf1c0f6f1dcb90ab6cb521 WHIRLPOOL 8f1b55edb5aec6dde54752e2d7422d9993615226c1f923c26d54c5802f08daee137c9706b87d2dcc65f3d2245426ae5d6b2d947dbe9c582ce2508818deb2eda9
DIST boto-2.20.1.tar.gz 6022818 SHA256 32baadcd0fd7a509ca7854cae264063841212c1504ca4c8c2847268a703ba79f SHA512 b8a2a9af402d168c1f61f340aaf192dda53d5f526fdc2dab07d23033ce273f2f20d2fb8aa57237346c1fea62633a2732f2c7f0708250cfd4b797a2409dd1eca8 WHIRLPOOL 6f3ed174f1a5be66fb1171f25683a3824c951601d85da5d153753418c70743cfc2bc2bad2ddbac0d82ca329c86f4e7b78060e07122a18c45a3be052f5e4f70c9
DIST boto-2.21.0.tar.gz 6034315 SHA256 2cf22b3472d31e454cb0916d7c324eb380a3ab7c7811a7553bb6db2e87f7d186 SHA512 97514692d1851a8323a4ac401769450672b42ca52fb6214e73a5f4c84ae4192411c1dc9f425c133fadad3d33c8a3295073aa9d3b6084356541be33d1c9d63332 WHIRLPOOL da61807824d2abc89301b1c4aa654f1d2d0d5b8cc0cac5f05468dfe9be7f73c9328b9efef690f0d519143e016b37816518d6e492b30388eee31793af19a5370d
DIST boto-2.21.1.tar.gz 5661111 SHA256 2fb137097236db482eca3556a6cdb0dd81eba50084b3f66303e7a9631b0e8136 SHA512 21256efcf2ec55f2f3908b042ebd7d2d3c72999279502bc4af80e6f17ce59f765c5799e2bd3d00ae8eb158ef1e429e477702ce755804ee8dd1c6a176bb0e1db4 WHIRLPOOL c80f2bc85966937c458f336e52e664c533405a8ed4e8b342cf04463522fbf7e2fa43d0780805e4ff13590850b0dee2af2daa9c7933d0d38beb8462565439021f
DIST boto-2.22.0.tar.gz 6106851 SHA256 dbe7458fb356787387dce8129030b43552dc4beb70be2971869f70987c3e2b3d SHA512 ba391997a47c2c7d8ebd66a76814128e86ef6d029748581f3a80cd6faa0e6e13f523fe63ffa90b9ffab1d0f5fbcb3e368bb67bc6d296649d330616da693cf46b WHIRLPOOL 316796cd38ac3966bb64caea964dc17e7ef320cc77a201d3eec4e1cdcf52cec426461dedb3d84d45532e13fc78b345be4b2a43e139e81d38a4fcbbb1eb06d63e
DIST boto-2.23.0.tar.gz 6116463 SHA256 67452818c694181d7948425308d91f44ca454a9655ec2ad62ec0076030f11b6e SHA512 45c1fa553f56723d6c2257608793d6736cb590118544efc1b1e0383dd442fd59452c88fce0cefd69eae97a8938d48482e5fa255edcb5afac50e6c3c70e7b41e5 WHIRLPOOL f72c08d14e45d7c7daa33e31f126c5080f73dafc1151c77c64687933de8d2137ab115c529c205d9c7644ed7342ddc0138ce92bcd720d307d8f47d391621bb113
DIST boto-2.24.0.tar.gz 6068609 SHA256 a3f9b02b8f39f097d55487d5ddf45eb8bedb9f0c80b1f97fe6e7f3f3885600e7 SHA512 893f2b53b74ecf42b007bba28da7e9ccabf92e6057c8728f46e41f5a576fdfd5d77264e58ed3db4b96e92a143241a5bcb8e4c274482f9c6e06e5f132e6cd1672 WHIRLPOOL 889a8019758a6f6d20398971509acd691a0a6323d893fb661a91828caaffbf22d183339c052c2fe400f9e52008b39f469f208b3876fb57bcd7f58adcad401f40
DIST boto-2.25.0.tar.gz 6243622 SHA256 1ea4fbc1b28a583ecb28010c498a134f88b56479a98dec5d371470ec9abc0d03 SHA512 b198339c9d975c3a741fc57d6183c752b927a3904dabbfb4156929257b8d6ea571d06f91520729f680e08c6b0aed17058e2e21673df0ffa01c1c8e601cb67f2f WHIRLPOOL b5aa0855de9bab7efb2da0785b3dc98b999380e0690ee3eb19b493c3a3b60d63892cd90fcecea7929ec6546054e6dbbf6b0061f4f0276a1bf535177499cfc17c
DIST boto-2.26.0.tar.gz 6523274 SHA256 e15548155e7bfd41e988d377cd3388ebe3093efa27ebf04e99cdc2b1f5218194 SHA512 59b4a0406688d3a197f8802407dd2f8caf239dd42070ed7c5ae5e019130970f785da8842b91638034048a785278d3d7263d4dbc4c8d2880c7e487be10088442d WHIRLPOOL 1fa1aee8e666834566a102b0916664ba488c917e795ac6527b200d033bfd35895e3b9f31beaaef3524d6caade89fd31d66d06c15e4cdeaa3cf9204185a3b6ebb
DIST boto-2.26.1.tar.gz 6525396 SHA256 b9c5b0a4194fbfc16604bcff83ef5f42f95b40d53fc133f392991d94f98975ff SHA512 9f614bfb9e8fc4365e39e10ff08bd0e2eeaf0d55fdba9c771e58715b5bb83a6930b0b4adbc54f409a7ba4c7fe6b374517641e1c6dfc21f74c4417a29c93740f0 WHIRLPOOL fa21a4fe4791e679ec21ae2af206df58a0012639fbdc92d7cb5e337c08bebc586764a38b7fca830eabaf2ef7e08748d53d9658b6ad82740224376f0b222bb9cf
DIST boto-2.27.0.tar.gz 6789802 SHA256 5b20c6c22177c8048b4299bed7c357b6418932abd434c277c5b6050a18dc284b SHA512 56caf13c0e9ccfe13a36f986f69f4f5630c4ced7558adb9a982bad4cad63828a958fcf7406954a3311ab0b5654c9804739655a121f82e661f1dc3db065529e54 WHIRLPOOL 9404b92a33b20d376a14a57a64df9c71382a17d1bde51a9674c526f9d3f4c988b25fc493dfdb844bf664587d18e5a749774f21f35694d1d9983ae3d18b32f3d8
DIST boto-2.28.0.tar.gz 7101691 SHA256 c1599e66174a6cab633cb6bf5ec2590cce104c23d16395c02bda5ed93ea7947c SHA512 9589a24802d903651dbda94c141a567e3077152aa8021e2a6dae23254decb805b6f2ac4fbe3ad2bc799e574e33103736276339f13fed56b763a46fc9d3d35a7c WHIRLPOOL f04ebeeaef8b27ca34c1eb049aec0604ddcae6cbc098fd4ee3106f2001e0320d9548544c92f62d5aa35d19851349fd190b7e202a605c80bf4a4ec528864ef5f8
DIST boto-2.29.1.tar.gz 7105487 SHA256 eed223541b8e7901fe848e5050b6f369603f792fd8bc1b0590960626b728fe17 SHA512 1297aaf993dfbacdd78d368cf3429044b0704486706380a5f316fc3c49a50710bc0357dcfbc78daeb88058eb243a657d96c9dac19fd50a8eedf5f54afa7c760d WHIRLPOOL 76e2e9d749c8d65aa713692ad31b00dccea45d95e3bc9ddf1e0fbc74cc4d6daf0667bab5fe917e872789d4ee464058cad0c1468b2c1ae01ce4c772014ef8a246
DIST boto-2.31.1.tar.gz 7078455 SHA256 dadccbe69a9f8d858506bb9b14ff288fa91b81dec1fefd8867792324b8cb33f3 SHA512 473f8c83dfe73ee9d5a3cb694793b99543264a7ef3b54346d11a5136e8b26b40fb8b1d7c9a23deaf34fb962ddf90923c6399f7cc3c8d6a1f5aa492d9a070393c WHIRLPOOL 6ac0cf73c4216ef18cecf591c7108651f1e1636d6863c5f31378965e9f7453dc42b36de032bcdee7956ba98694e1e706ef086df6923782b6266b5f9e09a072a9
DIST boto-2.34.0.tar.gz 7302242 SHA256 33baab022ecb803414ad0d6cf4041d010cfc2755ff8acc3bea7b32e77ba98be0 SHA512 5784ab3eb785784fa348f9f572d8e885d297d0e569f503229f0ae3aa66389699c9fe21cd1737e20a9683735dc4e7a765aa2345b013c75a3292ed5995f20699d2 WHIRLPOOL 33c42d3f012410e9f3acead7293073dfea3e97cffa93248d735a76266480ab912935d8300839ef742820f1ed1a093dbf5555c163bd8ee34cf28f09a62a01dff5
DIST boto-2.35.1.tar.gz 1367029 SHA256 62604f0fdf68a2b9a6c6bd5111c82e10281b498695152d21f56c9e4a0691d45d SHA512 4be15cbb4ccc9f984fed11213ce1e64fefe7adbc747314dc0030928f2876b55322344f325228d95209e0411ef22fe1a3bede91ffbf3e9eed1a1a2d2507bff92d WHIRLPOOL 060f3e2483a3a5be26b67a2a94df2f88a9eccb3f62cc4020e26b7ac0111d30d938638641f4c83c71095602d5b79e365de6211f884b4adbeacf6d7187bb04d071
DIST boto-2.38.0.tar.gz 1423863 SHA256 d9083f91e21df850c813b38358dc83df16d7f253180a1344ecfedce24213ecf2 SHA512 577672007348db846d041c0906806c62eb77653b1335645cc852c603f5d32991ca648aacb884676af02043914c91ab6f41666b36b5b1ae23a3a354bdf9f3f75a WHIRLPOOL de704484ed38a0d0322ef289fd0657b6d1141c0f77aa6725e338dd51d78bed39a7ef1ebdec54a659d83dae30c14196f2410507d9aeec070126bbe13565b210ba

@ -1,28 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.11.0.ebuild,v 1.7 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/m2crypto )"
RDEPEND="dev-python/m2crypto"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.19.0.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.20.0.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.20.1.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.21.0.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.21.1.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.22.0.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.23.0.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.24.0.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.25.0.ebuild,v 1.3 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.26.0.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.26.1.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.28.0.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -1,25 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.29.1.ebuild,v 1.2 2015/04/08 08:04:56 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
esetup.py test
}

@ -0,0 +1,48 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/boto/boto-2.38.0.ebuild,v 1.1 2015/06/08 01:37:31 idella4 Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit distutils-r1
DESCRIPTION="Amazon Web Services API"
HOMEPAGE="https://github.com/boto/boto http://pypi.python.org/pypi/boto"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[${PYTHON_USEDEP}] )
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
# requires Amazon Web Services keys to pass some tests
RESTRICT="test"
python_test() {
"${PYTHON}" tests/test.py -v || die "Tests fail with ${EPYTHON}"
}
python_prepare_all() {
# Prevent un-needed d'loading
sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/source/conf.py || die
distutils-r1_python_prepare_all
}
python_compile_all() {
if use doc; then
# Appease the doc build and supply a file for _static
# the usual emake -C docs doesn't work under this authorship
cd docs && mkdir source/_static || die
emake html
fi
}
python_install_all() {
use doc && local HTML_DOCS=( docs/build/html/. )
distutils-r1_python_install_all
}

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<maintainer>
<email>grozin@gentoo.org</email>
<name>Andrey Grozin</name>
</maintainer>
<longdescription>Syntax highlighting and autocompletion
<herd>python</herd>
<maintainer>
<email>grozin@gentoo.org</email>
<name>Andrey Grozin</name>
</maintainer>
<longdescription>Syntax highlighting and autocompletion
for the python interpreter
</longdescription>
<upstream>
<remote-id type="pypi">bpython</remote-id>
</upstream>
<upstream>
<remote-id type="pypi">bpython</remote-id>
<remote-id type="bitbucket">bobf/bpython</remote-id>
</upstream>
</pkgmetadata>

@ -11,5 +11,6 @@
</longdescription>
<upstream>
<remote-id type="pypi">cmd2</remote-id>
<remote-id type="bitbucket">catherinedevlin/cmd2</remote-id>
</upstream>
</pkgmetadata>

@ -7,5 +7,6 @@
</maintainer>
<upstream>
<remote-id type="pypi">cov-core</remote-id>
<remote-id type="bitbucket">memedough/cov-core</remote-id>
</upstream>
</pkgmetadata>

@ -12,5 +12,6 @@ A Python package to parse and build CSS Cascading Style Sheets.
<upstream>
<remote-id type="google-code">cssutils</remote-id>
<remote-id type="pypi">cssutils</remote-id>
<remote-id type="bitbucket">cthedot/cssutils</remote-id>
</upstream>
</pkgmetadata>

@ -4,5 +4,6 @@
<herd>python</herd>
<upstream>
<remote-id type="pypi">defusedxml</remote-id>
<remote-id type="bitbucket">tiran/defusedxml</remote-id>
</upstream>
</pkgmetadata>

@ -4,5 +4,6 @@
<herd>python</herd>
<upstream>
<remote-id type="pypi">django-annoying</remote-id>
<remote-id type="bitbucket">offline/django-annoying</remote-id>
</upstream>
</pkgmetadata>

@ -4,5 +4,6 @@
<herd>python</herd>
<upstream>
<remote-id type="pypi">django-auth-ldap</remote-id>
<remote-id type="bitbucket">psagers/django-auth-ldap</remote-id>
</upstream>
</pkgmetadata>

@ -4,5 +4,6 @@
<herd>python</herd>
<upstream>
<remote-id type="pypi">django-international</remote-id>
<remote-id type="bitbucket">monwara/django-international</remote-id>
</upstream>
</pkgmetadata>

@ -7,5 +7,6 @@
</maintainer>
<upstream>
<remote-id type="pypi">django-otp-yubikey</remote-id>
<remote-id type="bitbucket">psagers/django-otp</remote-id>
</upstream>
</pkgmetadata>

@ -7,5 +7,6 @@
</maintainer>
<upstream>
<remote-id type="pypi">django-otp</remote-id>
<remote-id type="bitbucket">psagers/django-otp</remote-id>
</upstream>
</pkgmetadata>

@ -1,12 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<maintainer>
<email>dev-zero@gentoo.org</email>
<name>Tiziano Müller</name>
</maintainer>
<upstream>
<remote-id type="pypi">django-piston</remote-id>
</upstream>
<herd>python</herd>
<maintainer>
<email>dev-zero@gentoo.org</email>
<name>Tiziano Müller</name>
</maintainer>
<upstream>
<remote-id type="pypi">django-piston</remote-id>
<remote-id type="bitbucket">jespern/django-piston</remote-id>
</upstream>
</pkgmetadata>

@ -1,17 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>openstack</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
<herd>openstack</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
A caching API built around the concept of a "dogpile lock", which allows
continued access to an expiring data value while
a single thread generates a new value.
</longdescription>
<upstream>
<remote-id type="pypi">dogpile.cache</remote-id>
</upstream>
<upstream>
<remote-id type="pypi">dogpile.cache</remote-id>
<remote-id type="bitbucket">zzzeek/dogpile.cache</remote-id>
</upstream>
</pkgmetadata>

@ -1,17 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
<herd>python</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
A "dogpile" lock, one which allows a single thread to generate an
expensive resource while other threads use the "old" value,
until the "new" value is ready.
</longdescription>
<upstream>
<remote-id type="pypi">dogpile.core</remote-id>
</upstream>
<upstream>
<remote-id type="pypi">dogpile.core</remote-id>
<remote-id type="bitbucket">zzzeek/dogpile.core</remote-id>
</upstream>
</pkgmetadata>

@ -1,13 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>alunduil@gentoo.org</email>
<name>Alex Brandt</name>
</maintainer>
<longdescription lang="en">
<maintainer>
<email>alunduil@gentoo.org</email>
<name>Alex Brandt</name>
</maintainer>
<longdescription lang="en">
</longdescription>
<upstream>
<remote-id type="pypi">doublex</remote-id>
</upstream>
<upstream>
<remote-id type="pypi">doublex</remote-id>
<remote-id type="bitbucket">DavidVilla/python-doublex</remote-id>
</upstream>
</pkgmetadata>

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">dugong</remote-id>
</upstream>
<herd>python</herd>
<upstream>
<remote-id type="pypi">dugong</remote-id>
<remote-id type="bitbucket">nikratio/python-dugong</remote-id>
</upstream>
</pkgmetadata>

@ -4,5 +4,6 @@
<herd>python</herd>
<upstream>
<remote-id type="pypi">flake8</remote-id>
<remote-id type="bitbucket">tarek/flake8</remote-id>
</upstream>
</pkgmetadata>

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">fusil</remote-id>
</upstream>
<herd>python</herd>
<upstream>
<remote-id type="pypi">fusil</remote-id>
<remote-id type="bitbucket">haypo/fusil</remote-id>
</upstream>
</pkgmetadata>

@ -8,5 +8,6 @@
etc.</longdescription>
<upstream>
<remote-id type="pypi">hachoir-core</remote-id>
<remote-id type="bitbucket">haypo/hachoir</remote-id>
</upstream>
</pkgmetadata>

@ -7,5 +7,6 @@
(they only parse the first level of the tree for example).</longdescription>
<upstream>
<remote-id type="pypi">hachoir-parser</remote-id>
<remote-id type="bitbucket">haypo/hachoir</remote-id>
</upstream>
</pkgmetadata>

@ -6,5 +6,6 @@
pattern matching (find file header).</longdescription>
<upstream>
<remote-id type="pypi">hachoir-regex</remote-id>
<remote-id type="bitbucket">haypo/hachoir</remote-id>
</upstream>
</pkgmetadata>

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">cffi</remote-id>
</upstream>
<herd>python</herd>
<upstream>
<remote-id type="pypi">cffi</remote-id>
<remote-id type="bitbucket">RonnyPfannschmidt/hgdistver</remote-id>
</upstream>
</pkgmetadata>

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
<herd>python</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
Classes and setuptools plugin for Mercurial repositories
</longdescription>
<upstream>
<remote-id type="pypi">hgtools</remote-id>
</upstream>
<upstream>
<remote-id type="pypi">hgtools</remote-id>
<remote-id type="bitbucket">jaraco/hgtools</remote-id>
</upstream>
</pkgmetadata>

@ -8,5 +8,6 @@
</longdescription>
<upstream>
<remote-id type="pypi">irc</remote-id>
<remote-id type="bitbucket">jaraco/irc</remote-id>
</upstream>
</pkgmetadata>

@ -4,5 +4,6 @@
<herd>python</herd>
<upstream>
<remote-id type="pypi">jsmin</remote-id>
<remote-id type="bitbucket">dcs/jsmin</remote-id>
</upstream>
</pkgmetadata>

@ -1,8 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">json_tools</remote-id>
</upstream>
<herd>python</herd>
<upstream>
<remote-id type="pypi">json_tools</remote-id>
<remote-id type="bitbucket">vadim_semenov/json_tools</remote-id>
</upstream>
</pkgmetadata>

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>openstack</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
<herd>openstack</herd>
<maintainer>
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
Provides a easy way to access the system keyring service from python.
</longdescription>
<upstream>
<remote-id type="pypi">keyring</remote-id>
</upstream>
<upstream>
<remote-id type="pypi">keyring</remote-id>
<remote-id type="bitbucket">kang/python-keyring-lib</remote-id>
</upstream>
</pkgmetadata>

@ -4,5 +4,6 @@
<herd>python</herd>
<upstream>
<remote-id type="pypi">mockldap</remote-id>
<remote-id type="bitbucket">psagers/mockldap</remote-id>
</upstream>
</pkgmetadata>

@ -0,0 +1,20 @@
diff --git a/scripts/mypy b/scripts/mypy
index e758f1f..5a06146 100755
--- a/scripts/mypy
+++ b/scripts/mypy
@@ -45,14 +45,7 @@ def find_bin_directory() -> str:
This is used by build to find stubs and other data files.
"""
- script = __file__
- # Follow up to 5 symbolic links (cap to avoid cycles).
- for i in range(5):
- if os.path.islink(script):
- script = readlinkabs(script)
- else:
- break
- return os.path.dirname(script)
+ return os.path.dirname(shutil.which('mypy'))
def readlinkabs(link: str) -> str:

@ -0,0 +1,48 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/mypy/mypy-0.2.0-r1.ebuild,v 1.1 2015/06/07 19:26:29 alunduil Exp $
EAPI=5
PYTHON_COMPAT=( python3_3 python3_4 )
inherit distutils-r1 vcs-snapshot
DESCRIPTION="Optional static typing for Python"
HOMEPAGE="http://www.mypy-lang.org/"
SRC_URI="https://github.com/JukkaL/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc examples"
DEPEND="
doc? (
dev-python/sphinx[${PYTHON_USEDEP}]
dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
)
"
RDEPEND=""
python_prepare_all() {
local PATCHES=(
"${FILESDIR}"/use-which.patch
)
distutils-r1_python_prepare_all
}
python_compile_all() {
use doc && emake -C docs html
}
python_test() {
"${PYTHON}" tests.py || die "tests failed under ${EPYTHON}"
}
python_install_all() {
use doc && local HTML_DOCS=( docs/build/html/. )
use examples && local EXAMPLES=( samples/. )
distutils-r1_python_install_all
}

@ -11,5 +11,6 @@
</longdescription>
<upstream>
<remote-id type="pypi">nose-exclude</remote-id>
<remote-id type="bitbucket">kgrandis/nose-exclude</remote-id>
</upstream>
</pkgmetadata>

@ -4,5 +4,6 @@
<herd>openstack</herd>
<upstream>
<remote-id type="pypi">nose-testconfig</remote-id>
<remote-id type="bitbucket">jnoller/nose-testconfig</remote-id>
</upstream>
</pkgmetadata>

@ -1,8 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>tetromino@gentoo.org</email>
<name>Alexandre Rostovtsev</name>
</maintainer>
<maintainer>
<email>tetromino@gentoo.org</email>
<name>Alexandre Rostovtsev</name>
</maintainer>
<upstream>
<remote-id type="bitbucket">izi/polib</remote-id>
</upstream>
</pkgmetadata>

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/pyh2o/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/pyh2o/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/libh2o</remote-id>
</upstream>
</pkgmetadata>

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/pymountboot/issues/</bugs-to>
</upstream>
<maintainer>
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<upstream>
<maintainer status="active">
<email>mgorny@gentoo.org</email>
<name>Michał Górny</name>
</maintainer>
<bugs-to>https://bitbucket.org/mgorny/pymountboot/issues/</bugs-to>
<remote-id type="bitbucket">mgorny/pymountboot</remote-id>
</upstream>
</pkgmetadata>

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

Loading…
Cancel
Save