Sync with portage [Sun Jan 11 14:09:32 MSK 2015].

mhiretskiy
root 9 years ago
parent 54e16918b8
commit a44d70d528

@ -1,3 +1,2 @@
DIST perl-cleaner-2.16.tar.bz2 6069 SHA256 b54f7bd0dc8e60c08ac3de242cf157c21dbce1cfb8fc9c525b3d6cca88915ae3 SHA512 d2e03e473754b7730a6275cc743414fbb48a9fcb6a7a7dbef1fae73acb609b1b9f06eb33261505e1309fc79074303b7c29b6bd80b3bc79b40d27fc94d9b2cb09 WHIRLPOOL d240e0946a924a4d4984a2c7cc82e54de91e3c05ebf6a29fe154a557ff475da3503eb99a054f26ceda13ec61b87b8b2fe63c367c441b2b3cb6f7c34cf14f3165
DIST perl-cleaner-2.18.tar.bz2 6719 SHA256 43ee3b071f8f21410e8586500af90681363248695801c46ec37dfe3fbecc25d7 SHA512 d6216e4246a59a5d9c08bfec5763e4566736c1641f17ad45df84392169622b94edec242f3fc37b65ad767330fc0a64967c94fc520697da056f735909132e4ede WHIRLPOOL c77590201847002ce943caaa9c495eea9411586f541ed4607f229496f066cc63f40993e0a5aed89ed10b36b5d8e509943a9c89e953531c1854725eb260221243
DIST perl-cleaner-2.19.tar.bz2 6558 SHA256 03c50ffcfa70081501584de3fc33f634d7a0404ff6adee50c85af6323dc476fa SHA512 404fb5742af929a41f5033dbba066ebcfa1e1bee3f5340d3f732e3eb5cae4dd6d427cca8b6e1ec23e6154c14c36a2e6154be17ec98022422cf44c50984e74973 WHIRLPOOL 64816a6f28299370bc9e5a0469062746d7c6b93ad83f98e3a7656bd5515fb82e16375fadaf1c76b01a901220b4844ef236f744026dcf8489dea859621aec6ea8

@ -1,37 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/perl-cleaner/perl-cleaner-2.18.ebuild,v 1.1 2014/12/13 20:24:15 dilfridge Exp $
EAPI=5
DESCRIPTION="User land tool for cleaning up old perl installs"
HOMEPAGE="http://www.gentoo.org/proj/en/perl/"
if [[ "${PV}" == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="http://github.com/gentoo-perl/perl-cleaner.git"
else
SRC_URI="mirror://gentoo/${P}.tar.bz2 http://dev.gentoo.org/~dilfridge/distfiles/${P}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE=""
[[ "${PV}" == "9999" ]] && DEPEND="sys-apps/help2man"
RDEPEND="app-shells/bash
|| ( >=sys-apps/coreutils-8.15 app-misc/realpath sys-freebsd/freebsd-bin )
dev-lang/perl
|| (
( sys-apps/portage app-portage/portage-utils )
sys-apps/pkgcore
sys-apps/paludis
)
"
src_install() {
dosbin perl-cleaner
doman perl-cleaner.1
}

@ -0,0 +1,21 @@
--- configure.in.orig 2014-12-02 18:56:23.000000000 +0300
+++ configure.in 2014-12-02 19:09:46.724190436 +0300
@@ -6,13 +6,13 @@
dnl Checks for libraries.
dnl Replace `main' with a function in -lftp:
-AC_CHECK_LIB(ftp, main,[LIBS="-DUSE_FTP -lftp"],AC_MSG_WARN([Warning libftp not found ftp features disabled]))
AC_CHECK_LIB(m, ceil,[LIBS="$LIBS -lm"],AC_MSG_ERROR([Error mlib is required]))
-AC_ARG_ENABLE(ftp,
-[
+AC_ARG_ENABLE([ftp],
+ AS_HELP_STRING([--disable-ftp],[Disables all ftp features and libftp dependencies]))
- --disable-ftp Disables all ftp features and libftp dependencies
-],[LIBS=""])
+AS_IF([test "x$enable_ftp" != "xno"], [
+ AC_SEARCH_LIBS([FtpInit],[ftp],[CPPFLAGS+="-DUSE_FTP"],AC_MSG_ERROR([libftp not found]))
+])
dnl Checks for header files.
AC_CONFIG_HEADERS([config.h:config.h.in])

@ -0,0 +1,38 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/xbiso/xbiso-0.6.1-r2.ebuild,v 1.1 2015/01/10 06:01:22 bircoph Exp $
EAPI=5
inherit autotools eutils flag-o-matic
DESCRIPTION="Xbox xdvdfs ISO extraction utility"
HOMEPAGE="http://sourceforge.net/projects/xbiso/"
SRC_URI="mirror://sourceforge/xbiso/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="ftp"
RDEPEND="ftp? ( <net-libs/ftplib-4 )"
DEPEND="${RDEPEND}"
src_prepare() {
sed -i -e 's:C) $(CFLAGS):C) $(LDFLAGS) $(CFLAGS):' Makefile.in || die #337769
epatch "${FILESDIR}/${P}-libs.patch"
mv configure.in configure.ac || die #426262
eautoreconf
}
src_configure() {
# for this package, interix behaves the same as BSD
[[ ${CHOST} == *-interix* ]] && append-flags -D_BSD
econf \
$(use_enable ftp)
}
src_install() {
dobin xbiso
dodoc CHANGELOG README
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/elettra/elettra-1.0.ebuild,v 1.2 2011/08/28 10:56:33 hwoarang Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/elettra/elettra-1.0.ebuild,v 1.3 2015/01/10 06:07:19 bircoph Exp $
inherit toolchain-funcs
@ -12,7 +12,7 @@ SRC_URI="http://www.winstonsmith.info/julia/elettra/${MY_P}.tar.gz"
LICENSE="WTFPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
RDEPEND="sys-libs/zlib

@ -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-crypt/gkeys-gen/gkeys-gen-0.1-r1.ebuild,v 1.1 2015/01/08 20:58:13 dastergon Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gkeys-gen/gkeys-gen-0.1-r1.ebuild,v 1.2 2015/01/09 21:44:07 dolsen Exp $
EAPI="5"
@ -23,7 +23,7 @@ RDEPEND="${DEPEND}
app-crypt/gnupg
dev-python/snakeoil[${PYTHON_USEDEP}]
dev-python/pygpgme[${PYTHON_USEDEP}]
=app-crypt/gkeys-0.1[${PYTHON_USEDEP}]
=app-crypt/gkeys-0.1*[${PYTHON_USEDEP}]
"
pkg_postinst() {

@ -1,40 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gkeys-gen/gkeys-gen-0.1.ebuild,v 1.1 2015/01/08 20:24:31 dastergon Exp $
EAPI="5"
PYTHON_COMPAT=(python{2_7,3_3,3_4})
inherit distutils-r1
DESCRIPTION="Tool for generating OpenPGP/GPG keys using a specifications file"
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Gentoo-keys"
SRC_URI="http://dev.gentoo.org/~dolsen/releases/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~x86"
DEPEND=""
RDEPEND="${DEPEND}
app-crypt/gnupg
dev-python/snakeoil[${PYTHON_USEDEP}]
dev-python/pygpgme[${PYTHON_USEDEP}]
=app-crypt/gkeys-0.1[${PYTHON_USEDEP}]
"
pkg_postinst() {
einfo "This is experimental software."
einfo "The API's it installs should be considered unstable"
einfo "and are subject to change."
einfo
einfo "Please file any enhancement requests, or bugs"
einfo "at https://bugs.gentoo.org"
einfo "We are also on IRC @ #gentoo-keys of the Freenode network"
einfo
ewarn "There may be some Python 3 compatibility issues still."
ewarn "Please help us debug, fix and report them in Bugzilla."
}

@ -1,10 +1,10 @@
# Copyright 2014-2015 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gkeys-gen/gkeys-gen-9999.ebuild,v 1.2 2015/01/01 20:28:44 dolsen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gkeys-gen/gkeys-gen-9999.ebuild,v 1.4 2015/01/09 22:35:13 dolsen Exp $
EAPI="5"
PYTHON_COMPAT=(python2_7 python3_3 python3_4)
PYTHON_COMPAT=(python{2_7,3_3,3_4})
EGIT_BRANCH="master"
#EGIT_BRANCH="gen-update"
@ -14,7 +14,7 @@ inherit distutils-r1 git-r3
EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/gentoo-keys.git"
#EGIT_REPO_URI="https://github.com/gentoo/gentoo-keys.git"
DESCRIPTION="An OpenPGP/GPG tool for generating keys to spec"
DESCRIPTION="Tool for generating OpenPGP/GPG keys using a specifications file"
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Gentoo-keys"
SRC_URI=""
@ -26,7 +26,7 @@ KEYWORDS=""
DEPEND=""
RDEPEND="${DEPEND}
>=app-crypt/gnupg-2.0.0
app-crypt/gnupg
dev-python/snakeoil[${PYTHON_USEDEP}]
dev-python/pygpgme[${PYTHON_USEDEP}]
=app-crypt/gkeys-9999[${PYTHON_USEDEP}]

@ -1 +1 @@
DIST gkeys-0.1.tar.bz2 40702 SHA256 d646fb3545c5a8bb64725330f469529c27140c055078bf3dde1ef2d19b666e67 SHA512 39c77c54123f1efbfa4f154ae7b4bd0fbf2229a1fd4afdc4bd50a1b652ca336cb4215f61f6154ad6fa5a89b102eee8870682c4de59c729469967521140c1ffd9 WHIRLPOOL f7058b107b8285aa2382a00ea52692f2e151ec6b32b5bbe088be53d771da97965f35c05e364ff86a3d89b04d13a27f202563e55a6e012331a885f23a40afb06d
DIST gkeys-0.1.tar.bz2 40987 SHA256 b1e99873d1f966837eeb83b82d9289f6a6414de5a8467586b88d466800528524 SHA512 7da21ffc652ae95b308c8e8cd57754ad45b9414626b95d38b69867704df5def0a18cdb25934962e4a6109feeddbd1bbd8ac47f445b2977a869993b00771e79c5 WHIRLPOOL adc258dbc7955bf05f31106d16d1d4bd247517bd16d5562f1757e14a274d69c05b6749d83a94029caadd3704003f18cf8ca0e5985d6fbd498204ef36c91c4950

@ -1,6 +1,6 @@
# Copyright 2014-2015 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gkeys/gkeys-0.1.ebuild,v 1.2 2015/01/08 20:15:26 dastergon Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gkeys/gkeys-0.1-r1.ebuild,v 1.2 2015/01/09 22:31:56 dolsen Exp $
EAPI="5"

@ -1,10 +1,10 @@
# Copyright 2014-2015 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gkeys/gkeys-9999.ebuild,v 1.4 2015/01/01 22:15:34 dolsen Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gkeys/gkeys-9999.ebuild,v 1.6 2015/01/09 22:31:56 dolsen Exp $
EAPI="5"
PYTHON_COMPAT=(python2_7 python3_3 python3_4)
PYTHON_COMPAT=(python{2_7,3_3,3_4})
#EGIT_PROJECT="gentoo-keys.git"
EGIT_BRANCH="master"
@ -25,11 +25,11 @@ KEYWORDS=""
DEPEND=""
RDEPEND="${DEPEND}
>=app-crypt/gnupg-2.0.0
app-crypt/gnupg
=dev-python/pyGPG-9999[${PYTHON_USEDEP}]
=dev-python/ssl-fetch-9999[${PYTHON_USEDEP}]
dev-python/snakeoil[${PYTHON_USEDEP}]
app-crypt/gentoo-keys
>=app-crypt/gentoo-keys-201501052117
"
S="${WORKDIR}/$P/gkeys"
@ -39,6 +39,7 @@ python_prepare_all() {
# copy these 2 into our subdir from the master level
cp ../LICENSE ./ || die "cp LICENSE failed"
cp ../README.md ./ || die "cp README.me failed"
cp -R ../py2man ./ || die "cp-R py2man failed"
}
python_install_all() {

@ -0,0 +1,124 @@
From ca758f29c89d87581b244c652f7a14c8306cc994 Mon Sep 17 00:00:00 2001
From: Alon Bar-Lev <alon.barlev@gmail.com>
Date: Wed, 7 Jan 2015 14:43:37 +0200
Subject: [PATCH] Add more EC conditionals
Upstream bug:
https://sourceforge.net/p/xca/patches/16/
---
lib/pki_scard.cpp | 12 ++++++++++++
widgets/MW_help.cpp | 2 +-
widgets/NewKey.cpp | 2 +-
3 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/lib/pki_scard.cpp b/lib/pki_scard.cpp
index 444c81d..547c932 100644
--- a/lib/pki_scard.cpp
+++ b/lib/pki_scard.cpp
@@ -237,7 +237,9 @@ pk11_attlist pki_scard::objectAttributesNoId(EVP_PKEY *pk, bool priv) const
QByteArray ba;
RSA *rsa = pk->pkey.rsa;
DSA *dsa = pk->pkey.dsa;
+#ifndef OPENSSL_NO_EC
EC_KEY *ec = pk->pkey.ec;
+#endif
pk11_attlist attrs(pk11_attr_ulong(CKA_CLASS,
priv ? CKO_PRIVATE_KEY : CKO_PUBLIC_KEY));
@@ -254,6 +256,7 @@ pk11_attlist pki_scard::objectAttributesNoId(EVP_PKEY *pk, bool priv) const
pk11_attr_data(CKA_SUBPRIME, dsa->q, false) <<
pk11_attr_data(CKA_BASE, dsa->g, false);
break;
+#ifndef OPENSSL_NO_EC
case EVP_PKEY_EC:
ba = i2d_bytearray(I2D_VOID(i2d_ECPKParameters),
EC_KEY_get0_group(ec));
@@ -261,6 +264,7 @@ pk11_attlist pki_scard::objectAttributesNoId(EVP_PKEY *pk, bool priv) const
attrs << pk11_attr_ulong(CKA_KEY_TYPE, CKK_EC) <<
pk11_attr_data(CKA_EC_PARAMS, ba);
break;
+#endif
default:
throw errorEx(QString("Unkown Keytype %d").arg(pk->type));
@@ -330,7 +334,9 @@ void pki_scard::store_token(slotid slot, EVP_PKEY *pkey)
QByteArray ba;
RSA *rsa = pkey->pkey.rsa;
DSA *dsa = pkey->pkey.dsa;
+#ifndef OPENSSL_NO_EC
EC_KEY *ec = pkey->pkey.ec;
+#endif
pk11_attlist pub_atts;
pk11_attlist priv_atts;
QList<CK_OBJECT_HANDLE> objects;
@@ -381,6 +387,7 @@ void pki_scard::store_token(slotid slot, EVP_PKEY *pkey)
priv_atts << pk11_attr_data(CKA_VALUE, dsa->priv_key, false);
pub_atts << pk11_attr_data(CKA_VALUE, dsa->pub_key, false);
break;
+#ifndef OPENSSL_NO_EC
case EVP_PKEY_EC: {
/* Public Key */
BIGNUM *point;
@@ -410,6 +417,7 @@ void pki_scard::store_token(slotid slot, EVP_PKEY *pkey)
EC_KEY_get0_private_key(ec));
break;
}
+#endif
default:
throw errorEx(QString("Unkown Keytype %d").arg(pkey->type));
@@ -459,11 +467,13 @@ QList<int> pki_scard::possibleHashNids()
case CKM_DSA_SHA1: nids << NID_sha1; break;
}
break;
+#ifndef OPENSSL_NO_EC
case EVP_PKEY_EC:
switch (mechanism) {
case CKM_ECDSA_SHA1: nids << NID_sha1; break;
}
break;
+#endif
}
}
if (nids.count() == 0) {
@@ -473,7 +483,9 @@ QList<int> pki_scard::possibleHashNids()
NID_sha384 << NID_sha512 << NID_ripemd160;
break;
case EVP_PKEY_DSA:
+#ifndef OPENSSL_NO_EC
case EVP_PKEY_EC:
+#endif
nids << NID_sha1;
break;
}
diff --git a/widgets/MW_help.cpp b/widgets/MW_help.cpp
index 67faa2a..c13c309 100644
--- a/widgets/MW_help.cpp
+++ b/widgets/MW_help.cpp
@@ -65,7 +65,7 @@ void MainWindow::about()
}
#endif
#else
- brainpool = "(Elliptic Curve Cryptography support disabled)"
+ brainpool = "(Elliptic Curve Cryptography support disabled)";
#endif
openssl = SSLeay_version(SSLEAY_VERSION);
qt = qVersion();
diff --git a/widgets/NewKey.cpp b/widgets/NewKey.cpp
index 824456d..0dba2c2 100644
--- a/widgets/NewKey.cpp
+++ b/widgets/NewKey.cpp
@@ -79,8 +79,8 @@ class keyListItem
*/
ec_flags = CKF_EC_F_P | CKF_EC_F_2M;
}
- }
#endif
+ }
printname = QString("%1 #%2 (%3 Key of %4 - %5 bits)").
arg(ti.label()).arg(ti.serial()).
arg(tl->name).
--
2.0.5

@ -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-crypt/xca/xca-1.1.0.ebuild,v 1.1 2014/12/21 20:07:18 alonbl Exp $
# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-1.1.0.ebuild,v 1.2 2015/01/09 21:28:43 alonbl Exp $
EAPI="5"
@ -21,6 +21,7 @@ DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.0.0-desktop.patch
epatch "${FILESDIR}"/${P}-ec.patch
}
src_configure() {

@ -1 +1 @@
DIST diakonos-0.9.2.tar.bz2 101516 SHA256 064cb7318c7e8d5b038c5c1c75c79f677045a4809a1fa343d1322d9ef8476970 SHA512 6c4b25d80b77c1161c65ac41d68a74d92e85180c74f49997c09def879d602bac93b04b57bf95edbc8701a57297275a82a43d184ad5c98f73265b83fd92da1d53 WHIRLPOOL 7543a01907560e18aa00d9d6f912857d6bec5afa96bd5d1b020c5e4801cc8b4b1a87a50c2463187a7ac6f2b52a1af9014b34592fcfd897025c6d752f4f273b84
DIST diakonos-0.9.4.tar.bz2 102282 SHA256 9da8d3846c15f2568a77431bb5fe9ee76a890c982cebb745050f2e864d7916d0 SHA512 8aab6173c40b9a182853977ed7631c391a10d3339918fa96866da8c9fa8e36e40f1c5093465c734a9ce36a69c5d994d6b2d1c0306f1e57bff708fd7a64a62db7 WHIRLPOOL 3dc625942653135a55905f173f566a2627cdaf03ac2c9c00f80bc12cf0947864c3689d9aa3174f779370914d71cc2781984a2de03d1573cac2ff5eaa291179c0

@ -1,10 +1,10 @@
# 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-editors/diakonos/diakonos-0.9.2.ebuild,v 1.1 2014/02/22 10:56:27 mrueg Exp $
# $Header: /var/cvsroot/gentoo-x86/app-editors/diakonos/diakonos-0.9.4.ebuild,v 1.1 2015/01/10 00:36:05 mrueg Exp $
EAPI=5
USE_RUBY="ruby19 ruby20"
USE_RUBY="ruby20 ruby21"
inherit ruby-ng
DESCRIPTION="A Linux editor for the masses"

@ -0,0 +1 @@
DIST multi-term-1.2.el.xz 7876 SHA256 8fbc1b1f08b4905eab33187d6a2eb82399308a98092f39eeb4f4c12849bce3b3 SHA512 4041c7fa61aa6840aaad67d13a3e73717c2f9cbb4df68c4ba450c454d65aa4f3b3da749c346d0b06ac1ccf0c43b52dde771335148e03f66bbc561d84ba452180 WHIRLPOOL 02beb9b6d64ea4bda1fcb1a40e0f994c4bc50f4e80ad1f9fc4a448f9da2e3f6efa82e6931447478d09cc2695e3f719a5119435f01ad0149131a17506b387fd25

@ -0,0 +1,7 @@
(add-to-list 'load-path "@SITELISP@")
(autoload 'multi-term "multi-term"
"Create new term buffer.
Will prompt you shell name when you type `C-u' before this command." t)
(autoload 'multi-term-dedicated-open "multi-term"
"Open dedicated `multi-term' window.
Will prompt you shell name when you type `C-u' before this command." t)

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

@ -0,0 +1,18 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/multi-term/multi-term-1.2.ebuild,v 1.1 2015/01/10 19:33:22 ulm Exp $
EAPI=5
inherit elisp
DESCRIPTION="Manage multiple terminal buffers in Emacs"
HOMEPAGE="http://www.emacswiki.org/emacs/MultiTerm"
# Taken from http://www.emacswiki.org/emacs/download/${PN}.el
SRC_URI="http://dev.gentoo.org/~mjo/distfiles/${P}.el.xz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
SITEFILE="50${PN}-gentoo.el"

@ -1,2 +1,3 @@
DIST man-pages-ru_3.54-2171-1790-20131020.tar.bz2 764794 SHA256 ff2140c48bfcdce930189a9122ed2eda9e61170352daa48dac2a2fa4bc51dc5a SHA512 3dc4194fef836b3fb4fdcc85de0b80f29a805d0ca5a88207e11a2296726b2bd0023853c986dba4ae61a533cef7372314b05fb476d55d84007fc1355ebf8c5494 WHIRLPOOL cbc305f57b866ddff58e3730311d8534eb64bc726760eb89f60c0fbe66154a3ac6a8fbbd6d9a8fc71748a2a7cc7977c87ee6a2545c270a9c6b7a47d2034a521d
DIST man-pages-ru_3.56-2172-1866-20140202.tar.bz2 833650 SHA256 23f7387dfcf0431c20d915584f07033648fda534d5b9228a62323aedb3b89cca SHA512 6b765585041bb52cddf1c5707240840d26dfe2d4eee9fa7b3ed156c7e863a112f95fb6af75aa95f9b1dff29a2178e2adfe714048b221853d83c7dc26075d4839 WHIRLPOOL 1114c9389e135ed8de1bcf386a2ac9f8116d8fd4b4418770e698cf00e65e90941be116cb7d2f3f438cacfbd2881e156934c7b91dcbe6c3585bdc57f3fecb6a03
DIST man-pages-ru_3.71-2209-1992-20140911.tar.bz2 1009646 SHA256 b6f599776a175c7fff8b8b37be8be0ab8ecd5df55c382b7a687dcf6bca8d478f SHA512 c6585323ef9cece674fe4144ff1e73e2d4d831e3f8766b5091f57b7e7c13d9c68c446323515f85f4c7fd956987e40d1d22a81c0cba21593133030e1f968fde12 WHIRLPOOL a41d141be4d6d9663829ccbced477bec11adad718cd95098c74e37e82b2317c38251dc399b7531454e48ce9d56604870c0a372f24eb8e6ab2b36a56dbf8b910f

@ -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-i18n/man-pages-ru/man-pages-ru-3.56.2172.1866.20140202.ebuild,v 1.1 2014/02/05 10:01:39 pinkbyte Exp $
# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-ru/man-pages-ru-3.56.2172.1866.20140202.ebuild,v 1.4 2015/01/10 21:15:58 pinkbyte Exp $
EAPI="5"
@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${PN}_${MY_PV}.tar.bz2"
LICENSE="FDL-1.3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux"
DEPEND=""
RDEPEND="virtual/man"

@ -0,0 +1,28 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/man-pages-ru/man-pages-ru-3.71.2209.1992.20140911.ebuild,v 1.3 2015/01/10 19:21:52 zlogene Exp $
EAPI="5"
inherit versionator
MY_PV="$(replace_version_separator 1 . $(replace_all_version_separators -))"
DESCRIPTION="A collection of Russian translations of Linux manual pages"
HOMEPAGE="http://man-pages-ru.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}_${MY_PV}.tar.bz2"
LICENSE="FDL-1.3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
DEPEND=""
RDEPEND="virtual/man"
S="${WORKDIR}/${PN}_${MY_PV}"
src_install() {
insinto /usr/share/man/ru
doins -r man*
dodoc README
}

@ -1,2 +1,3 @@
DIST byobu_5.86.orig.tar.gz 654210 SHA256 aadeed5929bbb79f55491b79baa480933503da34abc83accc1069ddf2e20e6a8 SHA512 e811423714427ae8d781428a225344fa8909584cdb8d369645a00fea12da2740cbb18ca55e7e587d03eb3074b107576b8e9dd3eb5c36b0d01c2b31d77d559ceb WHIRLPOOL 57fa959816e8fc0f0267bdded3497f1b4024aa83e9850c2752dff0cdc4f21df02edc5b8c91ca8dd94c3ff60162786c4bf6f1c5d433599f0fa75d235ad20dee51
DIST byobu_5.87.orig.tar.gz 654269 SHA256 10fbbc337a36f462b4208efac0f731217227018e6ea0fb8b534ca4d561f16923 SHA512 726b34ff82322e699e85a9d136bd1aab4c272852895891c03feeae8d32350560de31bbb24bc2f8bf101da7a57044183cf837e70da5d5975ea79a5395dfc77288 WHIRLPOOL 3562575fda1492fbb6587ae34108d521b617fae45dd6f50754e34cb062553904064a275f7853d99dc421068f4e1774c5f9f97aa96df93b0b9423a47a5bf1d97f
DIST byobu_5.88.orig.tar.gz 658438 SHA256 3a793e47935af278368fdbcb4512308946c3bf2ff985d615a02aea45338865aa SHA512 ee604d51fa39c13021d5190a66100484e2880e1357e0993e4498f5e38f77b1a29e1f1a96fe6cb49a9926c60cf07f10c567bd6b3b9eefd43e0c4715ec29eccd12 WHIRLPOOL 8366204a97f1507087749df23cc79a5c9f13b908a65f7455bced9ba4b0de13b833cd0792676965ecf220f8d28ad8087a60ea7ba7a73541852a7bf1918335e772

@ -0,0 +1,42 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/byobu/byobu-5.88.ebuild,v 1.1 2015/01/10 23:02:23 radhermit Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1
DESCRIPTION="A set of profiles for the GNU Screen console window manager (app-misc/screen)"
HOMEPAGE="http://byobu.co"
SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P/-/_}.orig.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="screen"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
dev-libs/newt[${PYTHON_USEDEP}]
screen? ( app-misc/screen )
!screen? ( app-misc/tmux )"
src_prepare() {
python_fix_shebang .
# Set default system backend to screen
if use screen ; then
sed -i -e 's/#\(BYOBU_BACKEND\).*/\1="screen"/' etc/byobu/backend || die
fi
}
src_install() {
default
# Create symlinks for backends
dosym ${PN} /usr/bin/${PN}-screen
dosym ${PN} /usr/bin/${PN}-tmux
docompress -x /usr/share/doc/${PN}
}

@ -1 +1 @@
DIST gcalcli-2.4.2.tar.gz 1667739 SHA256 bcfaada7092fd988a23659cd285ec40919541bae2d9516daefcbd278f78bbc3b SHA512 ae0d4ddb4befa43df5ebbe434d44719522246725b2950549fcf43969038fcbab76012ee0855c02cb623bfd75351bf7b854ca6f74c34cbc57ca9a28e6d467bed1 WHIRLPOOL 2c58c276b6cc18d2768e9dd9dd88564a84427e6685f3f3809c66b9f0608bc2d60a3a81b961ea1dc6b1d4713ca200402a4cd3fbb5b5f34772cf4b012d364c2926
DIST gcalcli-3.2.tar.gz 1672457 SHA256 9b3465be8e64c291ffe4582f8cb779a7025c700e6a83aae74722d87a3b88d55a SHA512 a2e0d9aea2f27eaee3796acfbfdc08b88a7792002b10f0e44b0db1187a7ecd50aa97f78df7236038c8c18bc1b6dacbfa4b26db6bfb5762c880415c10a5364d83 WHIRLPOOL 66b8e954c5d4527e2725d0f07786262f4365f356e3ef893aa8253d07c41523b5f9c71bffd03acc02b27c57001f0c1e7b3cd92fea7396974b8898b4940abff6fb

@ -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-misc/gcalcli/gcalcli-2.4.2.ebuild,v 1.6 2014/03/31 20:30:47 mgorny Exp $
# $Header: /var/cvsroot/gentoo-x86/app-misc/gcalcli/gcalcli-3.2.ebuild,v 1.1 2015/01/11 05:41:32 robbat2 Exp $
EAPI=5
# google-api-python-client only supports these

@ -1,2 +1,3 @@
DIST physlock-0.4.3.tar.gz 12834 SHA256 16c0cff09c06a0c701e6ff6f074690280ff3d14cc02980a007eb66bd93fff1f2 SHA512 bdaa335b9fbc15cc5206f195075c2d2425933012d0fe1a52244bf1137e2af11faa9d0194b3ea46158230991a56c398a9d5dc8f56eee9716306c88adbd28ddd47 WHIRLPOOL 418be6340b98630e5d0d2dd22f2972b7ca3edd241b0fd025349adb5d6af01abffae1e628556bc88793174c25769ed2ecf4a77032928a6afed860e58663444e3a
DIST physlock-0.4.4.tar.gz 12711 SHA256 792b9167cbda178a04f8cdc490c49529405356d26bb87e5367ef2a964a17b476 SHA512 ed24132c7f41a6dc26c3182dcd1f19155b4e36dcc5f3030a7f9fed61ccf83b764ceb18ed48ff46c6c8972f3fc514c7e6031cf7ae8057602a24dc737950e72c13 WHIRLPOOL e96491208cfc37d3415c540d7257d757556ededdf3b5c5d1caca368b8fc3d457d7bc3bec6bea7c517943b51adf1c260a187533d86ed9abcee4cd866072a3d9ca
DIST physlock-0.4.5.tar.gz 12804 SHA256 5ddb42553142c5e2b8744d086bb8f5bf131a29fc58b8886e825b80e6a456961c SHA512 ab2e71bdc0004d97e3742cf8155602c036dafa22156147cc3cd4050c1665e54d4ca04ee8dc1f763e6369a5d6592524cbc8e10c56870905a1b13385640f4ec476 WHIRLPOOL e770cc9e4448c3407c12d51e1bb2d1fec5f74cdc5be4d6503fa89a297b3a40b7f5bb67466fbb641e2af249339aacdf2abb5de9ac145482c1b283604abbb51533

@ -0,0 +1,24 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/physlock/physlock-0.4.5.ebuild,v 1.1 2015/01/10 07:03:14 radhermit Exp $
EAPI=5
inherit toolchain-funcs eutils
DESCRIPTION="lightweight Linux console locking tool"
HOMEPAGE="https://github.com/muennich/physlock"
SRC_URI="https://github.com/muennich/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.4.4-makefile.patch
tc-export CC
}
src_install() {
emake DESTDIR="${D}" PREFIX=/usr install
}

@ -0,0 +1,18 @@
diff -r -U2 pdfshuffler-0.6.0.orig/pdfshuffler/pdfshuffler.py pdfshuffler-0.6.0/pdfshuffler/pdfshuffler.py
--- pdfshuffler-0.6.0.orig/pdfshuffler/pdfshuffler.py 2012-04-28 21:15:17.000000000 +0700
+++ pdfshuffler-0.6.0/pdfshuffler/pdfshuffler.py 2015-01-11 02:10:02.952809411 +0600
@@ -72,5 +72,13 @@
import poppler #for the rendering of pdf pages
-from pyPdf import PdfFileWriter, PdfFileReader
+
+try:
+ from PyPDF2 import PdfFileWriter, PdfFileReader
+except ImportError:
+ try:
+ from pyPdf import PdfFileWriter, PdfFileReader
+ except ImportError:
+ print('Neither PyPDF2 nor pyPdf found')
+ sys.exit(1)
from pdfshuffler_iconview import CellRendererImage

@ -0,0 +1,40 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/pdfshuffler/pdfshuffler-0.6.0-r1.ebuild,v 1.1 2015/01/10 20:52:17 grozin Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 fdo-mime gnome2-utils
DESCRIPTION="GUI app that can merge or split pdfs and rotate, crop and rearrange their pages"
HOMEPAGE="http://sourceforge.net/projects/pdfshuffler/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="|| ( dev-python/PyPDF2 dev-python/pyPdf )
dev-python/python-poppler"
RDEPEND="${DEPEND}"
DOCS="ChangeLog README TODO AUTHORS"
PATCHES=( "${FILESDIR}"/${PN}-PyPDF2.patch )
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}

@ -0,0 +1 @@
DIST lucene++-3.0.6.tar.gz 1529066 SHA256 3e7092a4935e0d1ad5c6d7ac8f3c6ed2f53e51321237ce83744bbf02e0d61519 SHA512 c65aac4cdc92b4593a7d9996273047ff68cc097b755bacdd424266ffcf9143b491ef91123b8e78d9f1fba3d9ac39078a0c2c97c22a39f646f84a0fef0f2956ef WHIRLPOOL 7064b69214d62e05986c78fee2873222c85c2a7a4c892fcc29a5b47f0b1cb67e64789f3665dc3b8ca3628daf28e05c331a99cd0111062683e9323a6827e7ebf5

@ -0,0 +1,13 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9217c21..d4e7b86 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -118,7 +118,7 @@ enable_testing()
add_subdirectory(src/core)
add_subdirectory(src/contrib)
-add_subdirectory(src/demo)
+#add_subdirectory(src/demo)
add_subdirectory(src/test)
#################################

@ -0,0 +1,42 @@
Forwarded: https://github.com/luceneplusplus/LucenePlusPlus/pull/64
Author: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Description: Disabling tests until we find a proper way for building and including gtest
In the next release this might become possible, after commit 83356d9681fb52
https://github.com/luceneplusplus/LucenePlusPlus/commit/83356d9681fb52a4c190d2cf033279006c1bf57d
Last-Update: 2014-08-25
--- a/CMakeExternal.txt
+++ b/CMakeExternal.txt
@@ -1,5 +1,6 @@
# Enable ExternalProject CMake module
include(ExternalProject)
+find_package(Subversion REQUIRED)
# main directory for external projects
set_directory_properties(PROPERTIES EP_PREFIX ${CMAKE_CURRENT_BINARY_DIR}/ThirdParty)
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,7 +49,6 @@
# bootstrap
####################################
-find_package(Subversion REQUIRED)
find_package(Threads REQUIRED)
find_package(Boost COMPONENTS
date_time
@@ -114,13 +113,13 @@
${CMAKE_CURRENT_BINARY_DIR}/include
)
-include(CMakeExternal.txt)
-enable_testing()
+#include(CMakeExternal.txt)
+#enable_testing()
add_subdirectory(src/core)
add_subdirectory(src/contrib)
#add_subdirectory(src/demo)
-add_subdirectory(src/test)
+#add_subdirectory(src/test)
#################################
# install pkg-config file

@ -0,0 +1,39 @@
From: rezso <rezso@example.com>
Date: Mon, 19 May 2014 09:20:40 +0100
Subject: [PATCH] fix installing lucene++ headers in 3.0.6
Origin: upstream, https://github.com/luceneplusplus/LucenePlusPlus/commit/994f03cf736229044a168835ae7387696041658f
Description: backport upstream patch to fix missing headers install
Index: lucene++-3.0.6/CMakeLists.txt
===================================================================
--- lucene++-3.0.6.orig/CMakeLists.txt
+++ lucene++-3.0.6/CMakeLists.txt
@@ -139,6 +139,14 @@ if(NOT WIN32)
DESTINATION ${LIB_DESTINATION}/pkgconfig)
endif()
+#################################
+# install Config.h
+#################################
+install(
+ FILES
+ "${CMAKE_CURRENT_BINARY_DIR}/include/Config.h"
+ DESTINATION include/lucene++)
+
####################################
# custom targets
####################################
Index: lucene++-3.0.6/src/core/CMakeLists.txt
===================================================================
--- lucene++-3.0.6.orig/src/core/CMakeLists.txt
+++ lucene++-3.0.6/src/core/CMakeLists.txt
@@ -20,7 +20,7 @@ file(GLOB_RECURSE lucene_internal_header
)
file(GLOB_RECURSE lucene_headers
- include/*.h
+ "${lucene++_SOURCE_DIR}/include/*.h"
)
add_definitions(-DLPP_BUILDING_LIB)

@ -0,0 +1,39 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/lucene++/lucene++-3.0.6.ebuild,v 1.1 2015/01/10 13:37:49 johu Exp $
EAPI=5
MY_P="LucenePlusPlus-rel_${PV}"
inherit cmake-utils multilib
DESCRIPTION="C++ port of Java Lucene library, a high-performance, full-featured text search engine"
HOMEPAGE="https://github.com/luceneplusplus/LucenePlusPlus"
SRC_URI="https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="|| ( LGPL-3 Apache-2.0 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
DEPEND="dev-libs/boost:="
RDEPEND="${DEPEND}"
RESTRICT="test"
S="${WORKDIR}/${MY_P}"
DOCS=( AUTHORS README.rst )
PATCHES=(
"${FILESDIR}/${P}-disable-demos.patch"
"${FILESDIR}/${P}-disable-tests.patch"
"${FILESDIR}/${P}-fix-installing-headers.patch"
)
src_configure() {
local mycmakeargs=(
-DLIB_DESTINATION=$(get_libdir)
)
cmake-utils_src_configure
}

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>johu@gentoo.org</email>
<name>Johannes Huber</name>
</maintainer>
<upstream>
<remote-id type="github">luceneplusplus/luceneplusplus</remote-id>
</upstream>
</pkgmetadata>

@ -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/dev-db/mysql/mysql-5.6.22.ebuild,v 1.1 2014/12/04 01:27:44 grknight Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.6.22.ebuild,v 1.2 2015/01/10 04:13:21 grknight Exp $
EAPI="5"
@ -90,6 +90,11 @@ multilib_src_test() {
# rpl.rpl_plugin_load
# fails due to included file not listed in expected result
# appears to be poor planning
#
# main.mysqlhotcopy_archive main.mysqlhotcopy_myisam
# fails due to bad cleanup of previous tests when run in parallel
# The tool is deprecated anyway
# Bug 532288
for t in \
binlog.binlog_mysqlbinlog_filter \
binlog.binlog_statement_insert_delayed \
@ -102,6 +107,7 @@ multilib_src_test() {
perfschema.binlog_edge_mix \
perfschema.binlog_edge_stmt \
rpl.rpl_plugin_load \
main.mysqlhotcopy_archive main.mysqlhotcopy_myisam \
; do
mysql-multilib_disable_test "$t" "False positives in Gentoo"
done

@ -0,0 +1,115 @@
--- pandoc-citeproc-0.6-orig/src/Text/CSL/Pandoc.hs 2014-09-22 14:04:21.000000000 +1000
+++ pandoc-citeproc-0.6/src/Text/CSL/Pandoc.hs 2015-01-10 11:57:26.900041860 +1100
@@ -201,10 +201,10 @@
&& isEndPunct c -> True
(c:_) | isEndPunct c -> True
| otherwise -> False
- where isEndPunct c = c `elem` ".,;:!?"
+ where isEndPunct c = c `elem` (".,;:!?" :: String)
startWithPunct :: [Inline] -> Bool
-startWithPunct = and . map (`elem` ".,;:!?") . headInline
+startWithPunct = and . map (`elem` (".,;:!?" :: String)) . headInline
deNote :: Pandoc -> Pandoc
deNote = topDown go
@@ -324,7 +324,7 @@
sp <- option "" (pSpace >> return " ")
r <- many1 (notFollowedBy pSpace >> notFollowedBy pLocatorPunct >> anyToken)
let s = stringify r
- guard $ any isDigit s || all (`elem` "IVXLCM") s
+ guard $ any isDigit s || all (`elem` ("IVXLCM" :: String)) s
return $ punct ++ sp ++ s
pDigit :: Parsec [Inline] st ()
--- pandoc-citeproc-0.6-orig/src/Text/CSL/Proc.hs 2014-09-22 14:04:21.000000000 +1000
+++ pandoc-citeproc-0.6/src/Text/CSL/Proc.hs 2015-01-10 11:56:18.797456065 +1100
@@ -288,7 +288,7 @@
case ys of
Formatted [] -> xs
Formatted (Note _ : _) -> xs <> ys
- Formatted (Str [c]:_) | c `elem` ", ;:" -> xs <> ys
+ Formatted (Str [c]:_) | c `elem` (", ;:" :: String) -> xs <> ys
_ -> xs <> Formatted [Space] <> ys
formatAuth = formatOutput . localMod
formatCits = (if isNote then toNote else id) .
@@ -328,7 +328,7 @@
| otherwise = id
where
isPunct' [] = False
- isPunct' xs = all (`elem` ".,;:!? ") xs
+ isPunct' xs = all (`elem` (".,;:!? " :: String)) xs
check o = case cleanOutput o of
[] -> ONull
x -> case trim' x of
--- pandoc-citeproc-0.6-orig/src/Text/CSL/Eval/Names.hs 2014-09-22 14:04:21.000000000 +1000
+++ pandoc-citeproc-0.6/src/Text/CSL/Eval/Names.hs 2015-01-10 11:55:41.839119783 +1100
@@ -1,4 +1,4 @@
-{-# LANGUAGE PatternGuards #-}
+{-# LANGUAGE PatternGuards, FlexibleContexts #-}
-----------------------------------------------------------------------------
-- |
-- Module : Text.CSL.Eval.Names
--- pandoc-citeproc-0.6-orig/src/Text/CSL/Eval.hs 2014-09-22 14:04:21.000000000 +1000
+++ pandoc-citeproc-0.6/src/Text/CSL/Eval.hs 2015-01-10 11:55:23.090597159 +1100
@@ -1,4 +1,4 @@
-{-# LANGUAGE PatternGuards #-}
+{-# LANGUAGE PatternGuards, FlexibleContexts #-}
-----------------------------------------------------------------------------
-- |
-- Module : Text.CSL.Eval
--- pandoc-citeproc-0.6-orig/src/Text/CSL/Parser.hs 2014-09-22 14:04:21.000000000 +1000
+++ pandoc-citeproc-0.6/src/Text/CSL/Parser.hs 2015-01-10 11:54:59.755477862 +1100
@@ -144,7 +144,7 @@
parseCslTerm :: Cursor -> CslTerm
parseCslTerm cur =
- let body = unpack $ T.dropAround (`elem` " \t\r\n") $
+ let body = unpack $ T.dropAround (`elem` (" \t\r\n" :: String)) $
T.concat $ cur $/ content
in CT
{ cslTerm = stringAttr "name" cur
--- pandoc-citeproc-0.6-orig/src/Text/CSL/Style.hs 2014-09-22 14:04:21.000000000 +1000
+++ pandoc-citeproc-0.6/src/Text/CSL/Style.hs 2015-01-10 11:53:23.641828264 +1100
@@ -130,7 +130,7 @@
-- this is needed for versions of pandoc that don't turn
-- a span with font-variant:small-caps into a SmallCaps element:
where handleSmallCapsSpans (Span ("",[],[("style",sty)]) ils)
- | filter (`notElem` " \t;") sty == "font-variant:small-caps" =
+ | filter (`notElem` (" \t;" :: String)) sty == "font-variant:small-caps" =
SmallCaps ils
handleSmallCapsSpans x = x
@@ -206,15 +206,15 @@
appendWithPunct (Formatted left) (Formatted right) =
Formatted $
case concat [lastleft, firstright] of
- [' ',d] | d `elem` ",.:;" -> initInline left ++ right
- [c,d] | c `elem` " ,.:;", d == c -> left ++ tailInline right
- [c,'.'] | c `elem` ",.!:;?" -> left ++ tailInline right
- [c,':'] | c `elem` ",!:;?" -> left ++ tailInline right -- Mich.: 2005
- [c,'!'] | c `elem` ",.!:;?" -> left ++ tailInline right
- [c,'?'] | c `elem` ",.!:;?" -> left ++ tailInline right
- [c,';'] | c `elem` ",:;" -> left ++ tailInline right -- et al.;
- [':',c] | c `elem` ",.!:;?" -> left ++ tailInline right
- [';',c] | c `elem` ",.!:;?" -> left ++ tailInline right
+ [' ',d] | d `elem` (",.:;" :: String) -> initInline left ++ right
+ [c,d] | c `elem` (" ,.:;" :: String), d == c -> left ++ tailInline right
+ [c,'.'] | c `elem` (",.!:;?" :: String) -> left ++ tailInline right
+ [c,':'] | c `elem` (",!:;?" :: String) -> left ++ tailInline right -- Mich.: 2005
+ [c,'!'] | c `elem` (",.!:;?" :: String) -> left ++ tailInline right
+ [c,'?'] | c `elem` (",.!:;?" :: String) -> left ++ tailInline right
+ [c,';'] | c `elem` (",:;" :: String) -> left ++ tailInline right -- et al.;
+ [':',c] | c `elem` (",.!:;?" :: String) -> left ++ tailInline right
+ [';',c] | c `elem` (",.!:;?" :: String) -> left ++ tailInline right
-- ".;" -> right -- e.g. et al.;
_ -> left ++ right
where lastleft = lastInline left
--- pandoc-citeproc-0.6-orig/src/Text/CSL/Util.hs 2014-09-22 14:04:21.000000000 +1000
+++ pandoc-citeproc-0.6/src/Text/CSL/Util.hs 2015-01-10 11:51:31.789057499 +1100
@@ -1,4 +1,4 @@
-{-# LANGUAGE ScopedTypeVariables, PatternGuards #-}
+{-# LANGUAGE ScopedTypeVariables, PatternGuards, FlexibleContexts #-}
module Text.CSL.Util
( safeRead
, readNum

@ -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/dev-haskell/pandoc-citeproc/pandoc-citeproc-0.6.ebuild,v 1.1 2014/12/14 08:46:43 gienah Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/pandoc-citeproc/pandoc-citeproc-0.6.ebuild,v 1.2 2015/01/10 09:18:55 gienah Exp $
EAPI=5
@ -8,7 +8,7 @@ EAPI=5
#hackport: flags: -small_base
CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
inherit base haskell-cabal
DESCRIPTION="Supports using pandoc with citeproc"
HOMEPAGE="http://hackage.haskell.org/package/pandoc-citeproc"
@ -46,6 +46,8 @@ DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.12
"
PATCHES=("${FILESDIR}/${PN}-0.6-ghc-7.10.patch")
src_configure() {
# workaround bug on ghc-7.6.3:
# > [13 of 24] Compiling Text.CSL.Input.Bibtex ...

@ -1,3 +1,2 @@
DIST project-template-0.1.3.tar.gz 3930 SHA256 b5b6251ce85f1e2bcd3a99c7b85257e0a793eda61e72adbd05eda8a447244cdb SHA512 e39aad03bfee9b78ac0a0a59388cf0001dab941986ad284561a3ffbb6ce6aa0b8fc6ee20a676bb0bf4c1b5d452644e8dae4f10d5fe7070e074a5140fc6d292a0 WHIRLPOOL fefdd2bf92556ce327ba33071f63152dc02434a98ce4b36af818ea9984c20835fa9a3e047a600e7c60bb52c4da56e1aee7d320416060625ff3c37c62edd804ca
DIST project-template-0.1.4.1.tar.gz 4483 SHA256 8b16b378f3852d9ba8f2531a8c97515a2a2bc6e762c1437c5b9cb53f89425def SHA512 bab39792688fec9f3c1d279dd5d24d75fed443d39da2126c05acd1ee98b736fbed87f7a0b342f0a4c1a3f55db1fbb2cd5f4be7ed646ea0202fe590705e342100 WHIRLPOOL cb8c13c0ebe7932e51ef02d1974e0e9b8ed4a2b4fc218c05becd4ee6eda5169a59bc6a29b93cbc7dbaca48422ee14a7700fdcf93f5be53291fea5ea647673467
DIST project-template-0.1.4.2.tar.gz 4479 SHA256 792a42909acfb0c1810beff32906c7dd338cc127002d0d05a160bbf38c1ec282 SHA512 19e96c6ce93f4232262ee72807d726001ac2dbb21c78b40658f219d314383844fd9400a7cc208d0472a99597b3038b1b8304d92417a491ff5a9619d3a6cbad7e WHIRLPOOL 5d356b0b4a58af4b427bfbde3c5b262de7c7e06fe07847dc3740e07d68c14153685df0f2acc8281e0adcbfd244218a91cff40d7887b511be42ee7f4bee55fcdc

@ -1,38 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/project-template/project-template-0.1.3.ebuild,v 1.1 2013/08/26 12:38:06 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Specify Haskell project templates and generate files"
HOMEPAGE="https://github.com/fpco/haskell-ide"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/base64-bytestring:=[profile?]
dev-haskell/base64-conduit:=[profile?]
>=dev-haskell/classy-prelude-0.4:=[profile?]
>=dev-haskell/conduit-0.5.4:=[profile?]
>=dev-haskell/mtl-2.0:=[profile?]
>=dev-haskell/resourcet-0.4.3:=[profile?]
>=dev-haskell/system-fileio-0.3:=[profile?]
>=dev-haskell/system-filepath-0.4:=[profile?]
>=dev-haskell/text-0.11:=[profile?]
>=dev-haskell/transformers-0.2:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
test? ( >=dev-haskell/hspec-1.3
dev-haskell/quickcheck
)
>=dev-haskell/cabal-1.8"
RESTRICT=test # Text.ProjectTemplate: create/unpack: - is idempotent FAILED [1]

@ -1,10 +1,10 @@
# 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/dev-haskell/sha/sha-1.6.4.1.ebuild,v 1.1 2014/07/02 13:27:56 gienah Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/sha/sha-1.6.4.1-r1.ebuild,v 1.1 2015/01/10 03:19:50 mjo Exp $
EAPI=5
# ebuild generated by hackport 0.4.2.9999
# ebuild generated by hackport 0.4.4.9999
#hackport: flags: +decoderinterface
CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
@ -22,11 +22,14 @@ SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
IUSE="exe test"
RDEPEND=">=dev-haskell/binary-0.7:=[profile?] <dev-haskell/binary-10000:=[profile?]
RDEPEND=">=dev-haskell/binary-0.7:=[profile?]
>=dev-lang/ghc-7.4.1:=
"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
test? ( >=dev-haskell/quickcheck-2.5:2=[profile?] <dev-haskell/quickcheck-3:2=[profile?]
>=dev-haskell/test-framework-0.8.0.3:=[profile?]
>=dev-haskell/test-framework-quickcheck2-0.3.0.2:=[profile?] )
"
S="${WORKDIR}/${MY_P}"
@ -37,3 +40,9 @@ src_configure() {
$(cabal_flag exe exe) \
$(cabal_flag test test)
}
src_test() {
# This package builds a test executable called test_sha, but the
# suite isn't integrated with cabal yet. It's fixed upstream in git.
dist/build/test_sha/test_sha || die "test suite failed"
}

@ -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/dev-haskell/warp/warp-3.0.0.3.ebuild,v 1.2 2014/07/25 09:16:35 slyfox Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/warp/warp-3.0.0.3.ebuild,v 1.3 2015/01/10 18:49:14 mjo Exp $
EAPI=5
@ -19,6 +19,9 @@ SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="+allow-sendfilefd warp-debug"
# The test suite fails in this release but has been fixed upstream.
RESTRICT=test
RDEPEND=">=dev-haskell/blaze-builder-0.3.3:=[profile?] <dev-haskell/blaze-builder-0.4:=[profile?]
>=dev-haskell/case-insensitive-0.2:=[profile?]
dev-haskell/http-date:=[profile?]

@ -1,6 +1,8 @@
DIST XSB335.tar.gz 11724736 SHA256 10a62160cbf31eb3db9d8c7fc33f561f96b6d4374aeba9c8af13ba2ba83e83bc SHA512 0c620374ada32c421c3329096f76e3bd9773397bb1543f696d588fc03ecbcd72a629a53503160dfa001b75f316a87947d460e2923e9569e67f53fd3c32affb9c WHIRLPOOL dd06aef1bc99581465570989370eca4c59c6e95f6ea022dea00553ddb41a97f04e6f5e65b44c255097059008c571c558b8b01c9fc57042b58653f2f2d78bf810
DIST XSB336.tar.gz 11823814 SHA256 3ac7448d7c323717d67edd09f37515ef991d71871ca3ce521975981fee1d9de7 SHA512 dc227e1338454a181ee2c3f84b2c8083bd4607252d89368a614a9894c5403eaf173fdc036a548aab8c6eb2ed7252e5e69a5caedff20710e83cf8c6ec66a8317a WHIRLPOOL bc48fe7dced9c3050253f2122507715abb0a528ba702432ca63a0385cccf47d9a8a1f47b901f779811c238d2015a368a420adbb93d4f68f0640396069112ad19
DIST XSB337.tar.gz 12176947 SHA256 6deb73ed8774ff2e0414ee7a1af29a3768b964f3fe22e7579670d61c3ca7ff40 SHA512 e98c56ad7fb107252160a03a1c07567119921be6a06c7be22960f2334517ccc8799d8bc49d4e260697f5d5912dda0236dc697b4fb8016652b4f81255ae442883 WHIRLPOOL 2daac410add67fcdffcd47660d0bf52701626be23dd6c2400efbe21e2f3f02b5f11d5231e9fac19787369ddf9a8499d9c876889849078dcd4714ca0ed5c75f8a
DIST XSB350.tar.gz 12122366 SHA256 f9664f89e56294d0d174d81b23ebd8314a5f9cc38816ee6ce5ab9d51bfeca63f SHA512 2ef45ef3427f331ad678deb41f7b9ef8bbc4f6d8ef6ec060e755115e91a002f3ac694c53f8f777d1b0790040f3318c23116a6b98c50faeeb541b3e9c2ed22e9f WHIRLPOOL bbdfea2ff42e28abfaf6532a46517c538fc391bef629589445903403435b2227adb2c6ce5705bc0edc16cb478b32f4b86a1250ad27b9b2fa91d49683e25ae887
DIST xsb-3.3.5-gentoo-patchset-0.tar.gz 18570 SHA256 808e90836e69bcd9609ad945377324a65a2f86472c934638fbe5cba5b49bdd88 SHA512 124cee0a0bc54ad503627acb318ae8933fe54e01412411299c2294dd52c7a6b47f02ff72abe48d1a95584f7f5fc8194a89cc8e1e30198caad3b2941ce7c94cdc WHIRLPOOL 519938e856e3e3339a430b385900b8cd02307928382dc978340deab687ff61904ad49bfe1d5455ebb702d6c58af3d4bf8b377ba42b008b67cc9e52ae2a58ee34
DIST xsb-3.3.6-gentoo-patchset-1.tar.gz 17711 SHA256 7630aa3497a80e6a39580bb050da8169318842de3f6b17a8b1f8a721ea6ec0e4 SHA512 a554833e974973f3bf6ad9d63d1e7bcbe358cfccdd35ad3f982375cfa171637484277c9c8be95c5eea34dac87845d02b6abc7d4675e1ff324c64603ae06338d1 WHIRLPOOL 5a0c6bfcc554e5c34f57acf1de2001bfbdea7e18e2ed1037409f58dc2151199c79af01f7d7cca8b7dea79bfe571fca8ff6b1f78ab368d7255e49dab8fe61fa3e
DIST xsb-3.3.7-gentoo-patchset-0.tar.gz 18248 SHA256 2eaad6dedac906f207c24713d92115086196f3c626d1b0e0401c71b4bfe10038 SHA512 3943000e40abad25da8fef2983e059dadf6d794a5a40406a3fb9d7e29506afb0d5ad1d86b0825849ea7dd9741fdfafa2b71fc2fd26cc2b679e39d85f76a91959 WHIRLPOOL d2d51c482d1ff207709c8ed280eb148c632d81d4670ead646c8eb5a62651932dbe292adca03060d1b591405fdbad274be1b767fd3e19e5a4f4e4da3fd4277ea6
DIST xsb-3.5.0-gentoo-patchset-0.tar.gz 5337 SHA256 3dbdbc3bbbfeac4083221ec89d524026fa9ec8a528baacb1c1e3495629a0bbee SHA512 a1158d4480dada855c3cdb80b065b1c3ac2c9b7e8da16ce0a39e7ffb70821c547ae2ba3bf1776a2c70f02bf85828bedbaa81cf4be469c7aeced5d8df541aa998 WHIRLPOOL 1b61a1136433e3119eb6a4018adf8aafd67bbc90333452fb9cb4ac49957a05fd4b40fd64ef7bfc5e472cd2c4277d62f8d3b5db1bf3f9e5f9d396133ae78c8e84

@ -0,0 +1,207 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/xsb/xsb-3.5.0.ebuild,v 1.1 2015/01/10 14:18:46 keri Exp $
EAPI=2
MY_P="XSB${PV//./}"
PATCHSET_VER="0"
inherit eutils autotools java-pkg-opt-2
DESCRIPTION="XSB is a logic programming and deductive database system"
HOMEPAGE="http://xsb.sourceforge.net"
SRC_URI="http://xsb.sourceforge.net/downloads/${MY_P}.tar.gz
mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="curl debug iodbc java mysql odbc pcre threads xml"
RDEPEND="curl? ( net-misc/curl )
iodbc? ( dev-db/libiodbc )
java? ( >=virtual/jdk-1.4 )
mysql? ( virtual/mysql )
odbc? ( dev-db/unixODBC )
pcre? ( dev-libs/libpcre )
xml? ( dev-libs/libxml2 )"
DEPEND="${RDEPEND}"
S="${WORKDIR}"/XSB
src_prepare() {
EPATCH_FORCE=yes
EPATCH_SUFFIX=patch
epatch "${WORKDIR}"/${PV}
cd "${S}"/build
eautoconf
find "${S}"/emu -name '*\.o' | xargs rm -f
find "${S}" -name 'Installation_summary' | xargs rm -f
}
src_configure() {
cd "${S}"/build
econf \
--prefix=/usr/$(get_libdir) \
--disable-optimization \
--without-smodels \
$(use_with odbc) \
$(use_with iodbc) \
$(use_enable threads mt) \
$(use_enable debug)
if use curl ; then
cd "${S}"/packages/curl
econf
fi
if use mysql ; then
cd "${S}"/packages/dbdrivers/mysql
econf
fi
if use odbc ; then
cd "${S}"/packages/dbdrivers/odbc
econf
fi
if use pcre ; then
cd "${S}"/packages/pcre
econf
fi
if use xml ; then
cd "${S}"/packages/xpath
econf
fi
}
src_compile() {
cd "${S}"/build
emake || die "emake failed"
# All XSB Packages are compiled using a single Prolog engine.
# Consequently they must all be compiled using a single make job.
cd "${S}"/packages
rm -f *.xwam
emake -j1 || die "emake packages failed"
if use curl ; then
emake -j1 curl || die "emake curl package failed"
emake -j1 sgml || die "emake sgml package failed"
if use xml ; then
emake -j1 xpath || die "emake xpath package failed"
fi
fi
if use mysql ; then
emake -j1 mysql || die "emake mysql package failed"
fi
if use odbc ; then
emake -j1 odbc || die "emake odbc package failed"
fi
if use pcre ; then
emake -j1 pcre || die "emake pcre package failed"
fi
}
src_install() {
cd "${S}"/build
emake DESTDIR="${D}" install || die "make install failed"
local XSB_INSTALL_DIR=/usr/$(get_libdir)/xsb-${PV}
dosym ${XSB_INSTALL_DIR}/bin/xsb /usr/bin/xsb || die
cd "${S}"/packages
local PACKAGES=${XSB_INSTALL_DIR}/packages
insinto ${PACKAGES}
doins *.xwam || die
insinto ${PACKAGES}/chr
doins chr/*.xwam || die
insinto ${PACKAGES}/chr_d
doins chr_d/*.xwam || die
insinto ${PACKAGES}/clpqr
doins clpqr/*.xwam || die
insinto ${PACKAGES}/gap
doins gap/*.xwam || die
insinto ${PACKAGES}/justify
doins justify/*.xwam || die
doins justify/*.H || die
insinto ${PACKAGES}/regmatch
doins regmatch/*.xwam || die
insinto ${PACKAGES}/regmatch/cc
doins regmatch/cc/*.H || die
insinto ${PACKAGES}/slx
doins slx/*.xwam || die
insinto ${PACKAGES}/wildmatch
doins wildmatch/*.xwam || die
insinto ${PACKAGES}/wildmatch/cc
doins wildmatch/cc/*.H || die
if use curl ; then
insinto ${PACKAGES}/curl
doins curl/*.xwam || die
insinto ${PACKAGES}/curl/cc
doins curl/cc/*.H || die
insinto ${PACKAGES}/sgml
doins sgml/*.xwam || die
insinto ${PACKAGES}/sgml/cc
doins sgml/cc/*.H || die
insinto ${PACKAGES}/sgml/cc/dtd
doins sgml/cc/dtd/* || die
if use xml ; then
insinto ${PACKAGES}/xpath
doins xpath/*xwam || die
insinto ${PACKAGES}/xpath/cc
doins xpath/cc/*.H || die
fi
fi
if use mysql || use odbc ; then
insinto ${PACKAGES}/dbdrivers
doins dbdrivers/*.xwam || die
doins dbdrivers/*.H || die
insinto ${PACKAGES}/dbdrivers/cc
doins dbdrivers/cc/*.H || die
if use mysql ; then
insinto ${PACKAGES}/dbdrivers/mysql
doins dbdrivers/mysql/*.xwam || die
insinto ${PACKAGES}/dbdrivers/mysql/cc
doins dbdrivers/mysql/cc/*.H || die
fi
if use odbc ; then
insinto ${PACKAGES}/dbdrivers/odbc
doins dbdrivers/odbc/*.xwam || die
insinto ${PACKAGES}/dbdrivers/odbc/cc
doins dbdrivers/odbc/cc/*.H || die
fi
fi
if use pcre ; then
insinto ${PACKAGES}/pcre
doins pcre/*.xwam || die
insinto ${PACKAGES}/pcre/cc
doins pcre/cc/*.H || die
fi
cd "${S}"
dodoc FAQ README || die
}

@ -0,0 +1,136 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-53.1-r2.ebuild,v 1.1 2015/01/09 21:56:23 remi Exp $
EAPI=5
inherit eutils toolchain-funcs autotools multilib-minimal
DESCRIPTION="International Components for Unicode"
HOMEPAGE="http://www.icu-project.org/"
SRC_URI="http://download.icu-project.org/files/icu4c/${PV/_/}/icu4c-${PV//./_}-src.tgz"
LICENSE="BSD"
SLOT="0/53"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="debug doc examples static-libs"
DEPEND="
doc? (
app-doc/doxygen[dot]
)
"
S="${WORKDIR}/${PN}/source"
src_prepare() {
local variable
epatch "${FILESDIR}/icu-fix-tests-depending-on-date.patch"
epatch "${FILESDIR}/${PN}-remove-bashisms.patch"
epatch_user
# Do not hardcode flags in icu-config and icu-*.pc files.
# https://ssl.icu-project.org/trac/ticket/6102
for variable in CFLAGS CPPFLAGS CXXFLAGS FFLAGS LDFLAGS; do
sed \
-e "/^${variable} =.*/s: *@${variable}@\( *$\)\?::" \
-i config/icu.pc.in \
-i config/Makefile.inc.in \
|| die
done
# Disable renaming as it is stupind thing to do
sed -i \
-e "s/#define U_DISABLE_RENAMING 0/#define U_DISABLE_RENAMING 1/" \
common/unicode/uconfig.h || die
# Fix linking of icudata
sed -i \
-e "s:LDFLAGSICUDT=-nodefaultlibs -nostdlib:LDFLAGSICUDT=:" \
config/mh-linux || die
# Append doxygen configuration to configure
sed -i \
-e 's:icudefs.mk:icudefs.mk Doxyfile:' \
configure.ac || die
eautoreconf
}
src_configure() {
if tc-is-cross-compiler; then
mkdir "${WORKDIR}"/host || die
pushd "${WORKDIR}"/host >/dev/null || die
CFLAGS="" CXXFLAGS="" ASFLAGS="" LDFLAGS="" \
CC="$(tc-getBUILD_CC)" CXX="$(tc-getBUILD_CXX)" AR="$(tc-getBUILD_AR)" \
RANLIB="$(tc-getBUILD_RANLIB)" LD="$(tc-getBUILD_LD)" \
"${S}"/configure --disable-renaming --disable-debug \
--disable-samples --enable-static || die
emake
popd >/dev/null || die
fi
multilib-minimal_src_configure
}
multilib_src_configure() {
local myeconfargs=(
--disable-renaming
--disable-samples
$(use_enable debug)
$(use_enable static-libs static)
)
multilib_is_native_abi && myeconfargs+=(
$(use_enable examples samples)
)
tc-is-cross-compiler && myeconfargs+=(
--with-cross-build="${WORKDIR}"/host
)
# icu tries to use clang by default
tc-export CC CXX
ECONF_SOURCE=${S} \
econf "${myeconfargs[@]}"
}
multilib_src_compile() {
default
if multilib_is_native_abi && use doc; then
doxygen -u Doxyfile || die
doxygen Doxyfile || die
fi
}
multilib_src_test() {
# INTLTEST_OPTS: intltest options
# -e: Exhaustive testing
# -l: Reporting of memory leaks
# -v: Increased verbosity
# IOTEST_OPTS: iotest options
# -e: Exhaustive testing
# -v: Increased verbosity
# CINTLTST_OPTS: cintltst options
# -e: Exhaustive testing
# -v: Increased verbosity
emake -j1 VERBOSE="1" check
}
multilib_src_install() {
default
if multilib_is_native_abi && use doc; then
dohtml -p api -r doc/html/
fi
}
multilib_src_install_all() {
einstalldocs
dohtml ../readme.html
}

@ -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/dev-libs/libnl/libnl-3.2.25.ebuild,v 1.6 2014/12/27 19:24:50 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.25.ebuild,v 1.7 2015/01/10 20:41:24 klausman Exp $
EAPI=5
PYTHON_COMPAT=( python2_{6,7} python3_{2,3,4} )
@ -16,7 +16,7 @@ SRC_URI="
"
LICENSE="LGPL-2.1 utils? ( GPL-2 )"
SLOT="3"
KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="static-libs python utils"
RDEPEND="python? ( ${PYTHON_DEPS} )

@ -1,3 +1,4 @@
DIST protobuf-c-0.15.tar.gz 500911 SHA256 8fcb538e13a5431c46168fc8f2e6ad2574e2db9b684c0c72b066e24f010a0036 SHA512 a51b9977ca4a6a73dffe92c7f8f5526f5dd3561b5139df290bafe5093d0fd6ace701d9fa1ee92a9dc8394960efd48f739c44ac17a74a7acd8c365d63e6312e9e WHIRLPOOL 3fd2ab0e0008dfabb7d21e30601422fee5b069981d015eff5ada5857621904f339c63f09eedeb6271a8b35a4570e4dad614f58888bfb708e43c5991f6af8568a
DIST protobuf-c-1.0.1.tar.gz 448519 SHA256 e1b2989684ac51e62f8b7de8739c381717b27c7cf4410c7a7e39b958afd3cd74 SHA512 2974e098f8c2f49e6338fcb179cedefdb9651ef1ec53fbd1ce39d4a2778246a65f60fbfc30263d775cf830453e168ff0617a78f042a02660e21315cb57f2231c WHIRLPOOL 2df825bc6a7141bda78f24c9e2cee911cb09bd272b980a3e1299d4b322e02aa7e374e2917db8d07ce9009bbfc5dfd319c89f6067073e85646342336cb9da6087
DIST protobuf-c-1.0.2.tar.gz 449923 SHA256 db771f7b0e76d5bb14140a50df4a32553288fd3e701b60e90e034e22f411ef76 SHA512 d748712f4216015802ffeff1072266da98ba9d9a4dfdaecd1c1b9d76f15403112b5cc2563a54390653c5eb82d7b51caf4c1f595cf1287bcbb123efb646e12f33 WHIRLPOOL 7a18446fc7ea27c10cbc0393f96859f237fcf29c962e982270b8f4cd10e27366b42cc38d418e973d4295e41e7da522fc577df296063e8f723a51415a6783d48d
DIST protobuf-c-1.1.0.tar.gz 453852 SHA256 9a973fc04aac003f9cf2b5a90ac4b8fa294cacb4e3f0796d3b5a789a5ad46c07 SHA512 50e0a9df1152e468c1bda88f67836fbe88e1ad711b3e6517265cdf715d89c2e15e7fb48c46ad4e163c978e54c899712e7a6e5e9b8bf7145cfdbc04947e0dcb34 WHIRLPOOL b22dbbcd5647ed17f4298e7dd1942ac77e7b295c24e98a0faf0a7bd2770dce268e0b3675b30c61863bfd100811c4c26f2a2fc6c21d53eba7ffb1ad008ba8834f

@ -0,0 +1,25 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf-c/protobuf-c-1.1.0.ebuild,v 1.1 2015/01/10 06:48:13 radhermit Exp $
EAPI=5
inherit autotools-multilib
MY_PV=${PV/_/-}
MY_P=${PN}-${MY_PV}
DESCRIPTION="code generator and runtime libraries to use Protocol Buffers (protobuf) from pure C"
HOMEPAGE="https://github.com/protobuf-c/protobuf-c/"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
RDEPEND=">=dev-libs/protobuf-2.6.0[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}
virtual/pkgconfig[${MULTILIB_USEDEP}]"
S=${WORKDIR}/${MY_P}

@ -0,0 +1,17 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Clone/Clone-0.370.0.ebuild,v 1.1 2015/01/09 22:45:08 zlogene Exp $
EAPI=5
MODULE_AUTHOR=GARU
MODULE_VERSION=0.37
inherit perl-module
DESCRIPTION="Recursively copy Perl datatypes"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
SRC_TEST="do"
mymake='OPTIMIZE=${CFLAGS}'

@ -1,2 +1,3 @@
DIST Clone-0.35.tar.gz 13288 SHA256 3d3d9eabfa6022dac8c9111097bebc7731e2e184457b5b55580bd5a3f6ef214a SHA512 fab8cf708ea3b03852d2eabaac638f5f017d8d1c06621f9573e1227554c2aa19bfa7cc8b90f6273baf966df4b85905fd95b8d7110227c8a5d75664f692ae4c92 WHIRLPOOL 432c432dcdcd812c92b0d71a67266e40dfba3ad799b7a3d6f7f42cdca4b3a04f9471c8a6b3e7b7c54f6a7392daaa08bcbf02bd61872478f51a06aef5fd70e794
DIST Clone-0.36.tar.gz 13132 SHA256 03def6e82579cd405f75574a5e8e7590063fa0a753a0df6a53be194289a020c5 SHA512 288db517cf0c7f3a91be1991189e2ddae73d939097cbdb0709c1c64f8b2418faf161fd61eaead561093fc2bec1984039ff42397f6f8dd6dcdedff723febc223a WHIRLPOOL c160330a5cd02599069762888e2675142b5cdb58893fb6ce64e66511d0d160f1ca3db41bb26302a2d0dbdd34391fea71d0fdf6cd63e7df26e6befaacfec1ee29
DIST Clone-0.37.tar.gz 13369 SHA256 d9f251e6f01deaac3d29df1b8422b83dca972af999cd3f6ae456e0fc6f87cd9d SHA512 a47760938d826c28d6db2b3486238acff255c6e1c77ec797e93b4a9350a3cd5c3e730352f00675589594e4ec250ceb978990a10156669813933debce93f59266 WHIRLPOOL 7edd99560e83e0d0ea62e02b9f0409d305b565bd5ccd6e8ac6be6cc6b8db318081451b256cad98325ccb49dd12dcfa80d6f3629eee56a74134d1d7dcac2f10cd

@ -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/dev-perl/Gentoo-PerlMod-Version/Gentoo-PerlMod-Version-0.6.0-r1.ebuild,v 1.1 2014/08/26 18:22:46 axs Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Gentoo-PerlMod-Version/Gentoo-PerlMod-Version-0.6.0-r1.ebuild,v 1.2 2015/01/11 03:36:08 zlogene Exp $
EAPI=5
@ -11,7 +11,7 @@ inherit perl-module
DESCRIPTION="Convert arbitrary Perl Modules' versions into normalised Gentoo versions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~mips ~x86"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~x86"
IUSE="test"
RDEPEND="

@ -1,2 +1,3 @@
DIST Term-ProgressBar-2.14.tar.gz 15979 SHA256 c651b7ce918c10e1e8ab024c5dcb4e97ac843700473c3136983de9b87e3d92a1 SHA512 c079a5169c5704bf9327bb789ec5176548a37648c675506b4ca2fe7a8116d421572cdf94839c08b9e1f8ed2c449345146251d332c41e554775ca39644a7a2d7b WHIRLPOOL 54be15bb759e2b548415c0df714d7724c88a652067acbcb453faf3abd425bcce45d6dcd0245259426015962c5e4a9b4c0d0aea4a5d21cd516f92858078c660ff
DIST Term-ProgressBar-2.15.tar.gz 17126 SHA256 34c7639ac16bc2d07abfc3f53262067c1fed7d764177288bf87eac727103f711 SHA512 358d035c76836e88462ebb1ad39c3b27cd7f19c27de9eb404802b648705a2ffbafee5725f444297a460b309f2a94f5310a7b9ddf16f6aaf9a69e7e29d89e67dd WHIRLPOOL 700b58cc79746efa56ae68c45bb044a015c2a4bc9a95b7023aae1b5ff089cf1d5953bfe904e776cab50f24565788adbf5aa037ba335eb1ac5bcf4e150c16a106
DIST Term-ProgressBar-2.16.tar.gz 17053 SHA256 3da80a51b9ceb2cdc5c9541996ee4b507112b18710abbd820681ec0e73234132 SHA512 90e656dde33a7c1fde199590db2c5305c465d9567307cc4bf612b236626dcc97561782df908e54ba735985f67495b3fcbac6757a79dc4bd1fbb2052b8c16c279 WHIRLPOOL 3ab8103952d5afc07a6ea7c6ac790e157321edb4b1aad2fc5308eadf0bc18d59fa7a44edb7abd97ebbefa06af79cafc7cb90ee2f212f9419c546dc8b314303cb

@ -0,0 +1,28 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Term-ProgressBar/Term-ProgressBar-2.160.0.ebuild,v 1.1 2015/01/09 22:59:43 zlogene Exp $
EAPI=5
MODULE_AUTHOR=SZABGAB
MODULE_VERSION=2.16
inherit perl-module
DESCRIPTION="Perl module for Term-ProgressBar"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
IUSE="test"
RDEPEND="
dev-perl/Class-MethodMaker
dev-perl/TermReadKey
"
DEPEND="${RDEPEND}
test? (
>=dev-perl/Test-Exception-0.310.0
>=dev-perl/Capture-Tiny-0.130.0
)
"
SRC_TEST="do"

@ -1,2 +1,3 @@
DIST ExtUtils-Depends-0.306.tar.gz 13180 SHA256 45258bcb83cd130e90a5f8ff19c1b69063f894634b01140f69d550d92b2c2369 SHA512 3f9771767d070589429fd4b37b2edf6f98040ae003d804f615727c6ae6a8fd47909099298125d772e58cfef31c8cb976289a77cdf97548ef21f06946a61a2de4 WHIRLPOOL ed35a1103e7462b3c319c785d7524d87d89575ce3978075769bef353d748ff228ffa441237c9830b14458837a3351988a73f596e61a39f7e974c7b8f62b76f34
DIST ExtUtils-Depends-0.308.tar.gz 13917 SHA256 81f92f15d769dc77697fdceb7d3aad961768b0c00fac87099a5b9f2d1d82e3e6 SHA512 56d9dbdfe51fb13e47891b13518dac85e5a775a23aebda0df785bdeb6c81683f0f89d04c7b038c39d5463067df21e889fd9d002dd7bb1814f589121db2f97f85 WHIRLPOOL 6f845ac65872da7bcc99ee5839719431be49310a7cd994375e0469fbc1b9a99d77ea71cb3d7906ae6e1c4910abe22afcaffb6b1b901c8184cac609ee25933be7
DIST ExtUtils-Depends-0.403.tar.gz 17928 SHA256 3963e9bc3910b38f402bfdc97fff1f2c87a38db8e5efc20f75f080358bc0594c SHA512 428c49a16a69a2209d08cfaaa1bd57bce3b60a9423f0ef63d41a437cf88a84667d0f78279c6ede02f2b5ac9e69a11620ee77dccb5eb9e985cbb767389298b286 WHIRLPOOL 5bd0f3fded996824825b037ee6d53974ed5726cce3bdd4643c899459b7830b6ca4380a035bbbe258739a4a502d65dc2e940f72da42f789c55323ad059861328f

@ -0,0 +1,18 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/extutils-depends/extutils-depends-0.403.0.ebuild,v 1.1 2015/01/09 22:31:12 zlogene Exp $
EAPI=5
MY_PN=ExtUtils-Depends
MODULE_AUTHOR=XAOC
MODULE_VERSION=0.403
inherit perl-module
DESCRIPTION="Easily build XS extensions that depend on XS extensions"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
IUSE=""
SRC_TEST="do parallel"

@ -1 +0,0 @@
DIST ffmpeg-php-0.6.0.tbz2 275557 SHA256 ec8a9847e0f4d5101a5afedb7dac318e9a13f099865215ae99d08d56add9b141 SHA512 837c854870886486683cf9d3ac2de376f0b4067487d68d4f5c685dd0bd4d306e406334821140bd1fab2d48105e7ee17956db70f2f70fb9bec4dcea14a2104127 WHIRLPOOL b390017ae6d7db3a7e40847468abfb9c151571e878545d02550c854d1f319add693cf87afe3391b03f3f2399a78ac225c0dcc28cdfbac2b58baa8ba8ef871605

@ -1,46 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild,v 1.6 2014/08/10 20:59:42 slyfox Exp $
EAPI="5"
PHP_EXT_NAME="ffmpeg"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
USE_PHP="php5-3 php5-4"
inherit php-ext-source-r2 eutils
KEYWORDS="amd64 x86"
DESCRIPTION="PHP extension that provides access to movie info"
HOMEPAGE="http://sourceforge.net/projects/ffmpeg-php/"
SRC_URI="mirror://sourceforge/ffmpeg-php/${P}.tbz2"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND="virtual/ffmpeg
dev-lang/php[gd]"
RDEPEND="${DEPEND}"
# The test breaks with the test movie, but it the same code works fine with
# other movies
RESTRICT="test"
DOCS="CREDITS ChangeLog EXPERIMENTAL TODO"
src_prepare() {
for slot in $(php_get_slots) ; do
cd "${WORKDIR}/${slot}"
epatch "${FILESDIR}/${P}-avutil50.patch"
epatch "${FILESDIR}/${P}-ffmpeg.patch"
epatch "${FILESDIR}/${P}-log.patch"
epatch "${FILESDIR}/${P}-php5-4.patch"
epatch "${FILESDIR}/${P}-ffincludes.patch"
epatch "${FILESDIR}/${P}-ffmpeg1.patch"
done
php-ext-source-r2_src_prepare
}

@ -1,47 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r3.ebuild,v 1.3 2015/01/04 08:10:23 ago Exp $
EAPI="5"
PHP_EXT_NAME="ffmpeg"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
USE_PHP="php5-6 php5-5 php5-4"
inherit php-ext-source-r2 eutils
KEYWORDS="amd64 x86"
DESCRIPTION="PHP extension that provides access to movie info"
HOMEPAGE="http://sourceforge.net/projects/ffmpeg-php/"
SRC_URI="mirror://sourceforge/ffmpeg-php/${P}.tbz2"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND="virtual/ffmpeg
dev-lang/php[gd]"
RDEPEND="${DEPEND}"
# The test breaks with the test movie, but it the same code works fine with
# other movies
RESTRICT="test"
DOCS="CREDITS ChangeLog EXPERIMENTAL TODO"
src_prepare() {
for slot in $(php_get_slots) ; do
cd "${WORKDIR}/${slot}"
epatch "${FILESDIR}/${P}-avutil50.patch"
epatch "${FILESDIR}/${P}-ffmpeg.patch"
epatch "${FILESDIR}/${P}-log.patch"
epatch "${FILESDIR}/${P}-php5-4.patch"
epatch "${FILESDIR}/${P}-ffincludes.patch"
epatch "${FILESDIR}/${P}-ffmpeg1.patch"
epatch "${FILESDIR}/${P}-api.patch"
done
php-ext-source-r2_src_prepare
}

@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/igbinary/igbinary-1.1.1-r2.ebuild,v 1.4 2013/06/25 13:00:50 ago Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-php/igbinary/igbinary-1.1.1-r2.ebuild,v 1.6 2015/01/11 03:32:17 grknight Exp $
EAPI="5"
PHP_EXT_NAME="igbinary"

@ -1,3 +1 @@
DIST APCu-4.0.1.tgz 105861 SHA256 d9d22fdb69a43118da2bd8c120bfc34da7dff89b9327beb52ded4d1aa73e266f SHA512 64d92ee59b3e404514420c48cbe73e2ae41d3b3cd97a68724b29dc00302dbee8ea465211f52fbc5e116c6a3afb3b4eb69b07eeaef5b038294debb5a541fa9415 WHIRLPOOL ce7725e7f5fd268a6f17b51a3610b50a7d96fc6a0bc72d9f1b80445ec586cac433cb42ee1f5ca4336b321bd69b0886bcf8b4f83a6a51d0355045552bea5a180b
DIST APCu-4.0.6.tgz 119689 SHA256 4c757df0b90e855a1f9cf160d8d697f53f74e60f44bd93080cfb12f838d1027e SHA512 dc9be4bef7ede76f8fe94b49c106f64e3d6b1a52d2f5ca12e00b01b689fe60f6d74790768c45ec085957443c5d7b96249ab9d0a3de93282fe38e829e974bda29 WHIRLPOOL fb8c0a9e655ae274e3a11cd401d42516a0bdaed314f7aedc35a9f90ed921935c832aa6339f89d9259630fac7f93adde00bf5964097edb21301a6ad936215200f
DIST APCu-4.0.7.tgz 118670 SHA256 178a731ee3435b451f1144bc4a63c9d70d4909a2c434e17c6e07db554df90bd6 SHA512 50db51358c9268cc5fdd0d48fb444be9e9356f1690bc1ae021a9618c8819ce8873bf4502fe87a10467ffda2ef38267ccca2af55152b064400c69a8da92b7e98b WHIRLPOOL 3c721753764d6f3adbf6090710aafdb29d78b3d55e718c0101d7cad993b51d7b335931c61f120f8dad4623fe16cad9f13952367934968599ed15dd9c744b9725

@ -1,63 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-apcu/pecl-apcu-4.0.1-r1.ebuild,v 1.4 2014/08/10 21:00:54 slyfox Exp $
EAPI=5
PHP_EXT_NAME="apcu"
PHP_EXT_PECL_PKG="APCu"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS="CHANGELOG INSTALL NOTICE TECHNOTES.txt TODO"
USE_PHP="php5-5 php5-3 php5-4"
S="${WORKDIR}/apcu-${PV}"
PHP_EXT_S="${WORKDIR}/apcu-${PV}"
inherit php-ext-pecl-r2 confutils eutils
S="${WORKDIR}/apcu-${PV}"
KEYWORDS="amd64 x86"
DESCRIPTION="Stripped down version of APC supporting only user cache"
LICENSE="PHP-3.01"
SLOT="0"
IUSE="+mmap"
DEPEND=""
RDEPEND="${DEPEND}"
LOCKS="pthreadmutex pthreadrw spinlock semaphore"
LUSE=""
for l in ${LOCKS}; do
LUSE+="lock_${l} "
done
IUSE+=" ${LUSE/lock_pthreadrw/+lock_pthreadrw}"
REQUIRED_USE="^^ ( $LUSE )"
src_configure() {
my_conf="--enable-apcu"
use mmap || my_conf+=" --disable-apcu-mmap"
enable_extension_enable "apcu-rwlocks" "lock_pthreadrw" 0
php-ext-source-r2_src_configure
}
src_install() {
php-ext-pecl-r2_src_install
dodir "${PHP_EXT_SHARED_DIR}"
insinto "${PHP_EXT_SHARED_DIR}"
doins apc.php
}
pkg_postinst() {
elog "The apc.php file shipped with this release of pecl-apcu was"
elog "installed into ${PHP_EXT_SHARED_DIR}/."
}

@ -1,63 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-apcu/pecl-apcu-4.0.6.ebuild,v 1.1 2014/09/30 15:33:28 grknight Exp $
EAPI=5
PHP_EXT_NAME="apcu"
PHP_EXT_PECL_PKG="APCu"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS="CHANGELOG INSTALL NOTICE TECHNOTES.txt TODO"
USE_PHP="php5-6 php5-5 php5-4"
S="${WORKDIR}/apcu-${PV}"
PHP_EXT_S="${WORKDIR}/apcu-${PV}"
inherit php-ext-pecl-r2 confutils eutils
S="${WORKDIR}/apcu-${PV}"
KEYWORDS="~amd64 ~x86"
DESCRIPTION="Stripped down version of APC supporting only user cache"
LICENSE="PHP-3.01"
SLOT="0"
IUSE="+mmap"
DEPEND=""
RDEPEND="${DEPEND}"
LOCKS="pthreadmutex pthreadrw spinlock semaphore"
LUSE=""
for l in ${LOCKS}; do
LUSE+="lock_${l} "
done
IUSE+=" ${LUSE/lock_pthreadrw/+lock_pthreadrw}"
REQUIRED_USE="^^ ( $LUSE )"
src_configure() {
my_conf="--enable-apcu"
use mmap || my_conf+=" --disable-apcu-mmap"
enable_extension_enable "apcu-rwlocks" "lock_pthreadrw" 0
php-ext-source-r2_src_configure
}
src_install() {
php-ext-pecl-r2_src_install
dodir "${PHP_EXT_SHARED_DIR}"
insinto "${PHP_EXT_SHARED_DIR}"
doins apc.php
}
pkg_postinst() {
elog "The apc.php file shipped with this release of pecl-apcu was"
elog "installed into ${PHP_EXT_SHARED_DIR}/."
}

@ -1,2 +1 @@
DIST pecl_http-1.7.5.tgz 174624 SHA256 6be7648f1c738484b5645ac38b671c93a27e99d9c5dc67331acce056dacf34c1 SHA512 43cd2398897ae6cc2b081ca9729c953680ec665b2dd79ba0af248ff110a99b64478ddba8c20bebacd753624e069a9c1c72ca176cd018052d146bdbd4c39cdcc6 WHIRLPOOL 8ce3b68c69b1d00517853d437b2700cb629b7f61edee2e9107358ad559f0b67c9387e0b745d63dd26719d62cd85d6158b47ad45a046fe2b753ec9e1323bfcc59
DIST pecl_http-1.7.6.tgz 174722 SHA256 e87207a7dcd713bef0eb3701b552e0d173fbd73dbd52f9d3968851112e899983 SHA512 e548073e08d106c9ee633dc00c2728845e3a1403c065134a0e8111899b52dacb7175cea836e19da8cf2b7f42fe58c084602003bb79f16d529bc109c39a78bbca WHIRLPOOL 778bd7f1a0bb1698c4a6a8745a40ea5c757ade6cfc027b99bd10f92cc3b111ceb7887a582216c8a303a2ce8edfc90c653b4c055b057691f873c2e3dbd78f740a

@ -1,61 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-http/pecl-http-1.7.5.ebuild,v 1.4 2014/08/10 21:02:04 slyfox Exp $
EAPI="5"
PHP_EXT_NAME="http"
PHP_EXT_PECL_PKG="pecl_http"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS="docs/examples/tutorial.txt ThanksTo.txt KnownIssues.txt"
USE_PHP="php5-3 php5-4"
inherit php-ext-pecl-r2 php-ext-source-r2
KEYWORDS="amd64 x86"
DESCRIPTION="Extended HTTP Support for PHP"
LICENSE="BSD-2 MIT"
SLOT="0"
IUSE=""
DEPEND="net-misc/curl
sys-libs/zlib
dev-libs/libevent
dev-lang/php[hash,session,iconv]
"
RDEPEND="${DEPEND}"
my_conf="--enable-http \
--with-http-curl-requests \
--with-http-zlib-compression \
--with-http-curl-libevent \
--with-http-magic-mime"
src_install() {
php-ext-pecl-r2_src_install
php-ext-source-r2_addtoinifiles "http.etag.mode" "MD5"
php-ext-source-r2_addtoinifiles "http.force_exit" "1"
php-ext-source-r2_addtoinifiles "http.log.allowed_methods" ""
php-ext-source-r2_addtoinifiles "http.log.cache" ""
php-ext-source-r2_addtoinifiles "http.log.composite" ""
php-ext-source-r2_addtoinifiles "http.log.not_found" ""
php-ext-source-r2_addtoinifiles "http.log.redirect" ""
php-ext-source-r2_addtoinifiles "http.only_exceptions" "0"
php-ext-source-r2_addtoinifiles "http.persistent.handles.ident" "GLOBAL"
php-ext-source-r2_addtoinifiles "http.persistent.handles.limit" "-1"
php-ext-source-r2_addtoinifiles "http.request.datashare.connect" "0"
php-ext-source-r2_addtoinifiles "http.request.datashare.cookie" "0"
php-ext-source-r2_addtoinifiles "http.request.datashare.dns" "1"
php-ext-source-r2_addtoinifiles "http.request.datashare.ssl" "0"
php-ext-source-r2_addtoinifiles "http.request.methods.allowed" ""
php-ext-source-r2_addtoinifiles "http.request.methods.custom" ""
php-ext-source-r2_addtoinifiles "http.send.inflate.start_auto" "0"
php-ext-source-r2_addtoinifiles "http.send.inflate.start_flags" "0"
php-ext-source-r2_addtoinifiles "http.send.deflate.start_auto" "0"
php-ext-source-r2_addtoinifiles "http.send.deflate.start_flags" "0"
php-ext-source-r2_addtoinifiles "http.send.not_found_404" "1"
}

@ -1,3 +1,2 @@
DIST imagick-3.1.0RC2.tgz 93264 SHA256 0dbb7e5df61845f8eab68505711b9efcdc98cfaff96dcb982c7f8931dd9e8a31 SHA512 68d51e521f9a3d7e2a71247d7a03e821d8e2b6f9b20fddcdbac8dc40be6d236557580bfd7fb51d8bd2a0aafd5a70c71dee9e0414ec7cd06e9649c0f8898e1e5b WHIRLPOOL 99b845dc9fc78e3469eaf57c19ddcb4bbfe04e790cd6df87859e2795748b085e4f60e21cae565c94a631ce449f9161371e81cd72610522f8f16f799de2920abe
DIST imagick-3.1.2.tgz 94657 SHA256 528769ac304a0bbe9a248811325042188c9d16e06de16f111fee317c85a36c93 SHA512 d30e129cc4b61e34830b34261671bf92579c355f36924a802952524119bf07b0e0d59fe2ad361a4caa0322f959bed669b82d1f12a531b106648ccf9d22b4fba3 WHIRLPOOL 99309fb01a43d369d6a348c623afedfa291470ff0299b38faa949ff9da4654af0ceef6d67d7b7889b6b50bcaf17c4893a6b719b3c7afaa4fc1c87eef79ea4dc9
DIST imagick-3.2.0RC1.tgz 163503 SHA256 a5f1ea34b9a21f48ea0b978d11a3cac32c53306482097c63324f7ecd9b157b5e SHA512 2c898f5aceb8ef7cb1e2a6b3fc6c5f909afda1891ff67b53a2b7904fac528d0f444d5e655c117c91e261a31d7fb94781eb14d7e38a6365d923c28bdceba7b6ea WHIRLPOOL 38ade896bac904488da04627bdd321beecbb6f44d8cd352168128ecf222f40e4149fe2a99fd027a6789fd9c4a0411215ec5fa1e2e8d717442c66322d9ab67025

@ -1,43 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-imagick/pecl-imagick-3.1.0_rc2.ebuild,v 1.6 2014/08/10 21:02:21 slyfox Exp $
EAPI=4
PHP_EXT_NAME="imagick"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS="TODO"
MY_PV="${PV/_/}"
MY_PV="${MY_PV/rc/RC}"
PECL_PKG_V="${PECL_PKG}-${MY_PV}"
FILENAME="${PECL_PKG_V}.tgz"
S="${WORKDIR}/${PECL_PKG_V}"
USE_PHP="php5-5 php5-3 php5-4"
inherit php-ext-pecl-r2
KEYWORDS="amd64 x86"
DESCRIPTION="PHP wrapper for the ImageMagick library"
LICENSE="PHP-3.01"
SLOT="0"
IUSE="examples"
DEPEND=">=media-gfx/imagemagick-6.2.4"
RDEPEND="${DEPEND}"
SRC_URI="http://pecl.php.net/get/${FILENAME}"
my_conf="--with-imagick=/usr"
src_prepare() {
local slot
for slot in $(php_get_slots) ; do
cd "${WORKDIR}/${slot}"
epatch "${FILESDIR}/remove-header-check.patch"
done
php-ext-source-r2_src_prepare
}

@ -1,8 +1,2 @@
DIST authres-0.401.tar.gz 15278 SHA256 1da49151c1326805cd12b9ca47895310f646187763211d4e52f6b86862fd9cd0 SHA512 d5bd3c562c2d8e700b766ed017b0ff766bd789f441b77be744d9d40013ee532f37bf16a413d74e752c27771919c6b31b7c20a03bd1967b15f1e26f87112f0009 WHIRLPOOL 73633c7c828a6c7366fd594c9532a58b2314c2cc78a71a837eb47e88595f1bfb5aba5778c82bd081f12c383cbe24fee62c59a12c0fd2fdad642fae3292911ef3
DIST authres-0.402.tar.gz 15512 SHA256 cba2dbe39c3cbed5129246055f5f3c9e0e1e2a5b4c2536e4fc721c4905dce679 SHA512 8b3506ee274d3501d07cd51a82a2b146ed39dffd0adcfa552aef40248d30ec89a74678f97ee52bf6e583c7368099b0163b5c10ddf0a11464d7a55923e5c1f8c4 WHIRLPOOL 465b284349f3482e6b4e79123f36c677141cda84b7adb83812da47d100afd2a0e7c294d70ff7c9d243cd941d9262adc31eea1ef30f54d51bac9e46f97801433c
DIST authres-0.500.tar.gz 17246 SHA256 6d7e79d00013b98b6547695c6896fcd5ac8d6bf8a6c2c9af347c69f21d3db145 SHA512 070a34dd84d9d5d7f74defbda0679f2d2de053b03ccfd022060bd63dd3add9855d95be63d772fdb6695b22363368733886cd8bf5ab490d3ee06190a30caaddd3 WHIRLPOOL 77e9a85c253aa5d664671c1965dd0881eb80df0aaa63a23f95c21692608a3a12498317a41bf77badc1467325441301a73334b4d4de48689ab9e0bd0faa7c0717
DIST authres-0.501.tar.gz 27991 SHA256 3021e6d0bd9ccacc06731b96e409ae7fbb8d36b153330d8921e8c6168454abac SHA512 fc4bd7b47df52e72556c57c5d6e2bd2fb81c50cf615bcf127476f58591b36afe2781d1c15da813c4156e60c195fe26ac6b2509d8622e753384f5070f36775980 WHIRLPOOL aab5f5ef07b416f3b88739cfe636fc5251e67e9d8f31280c536636408d0f87b955d7de4d7db0abe7c50c167998b47f1ea9f1b979d716a65ab9fa3ac5b3a7acbb
DIST authres-0.600.tar.gz 16614 SHA256 4bfdff4a51d217c54f611edba14a63417e8563ee15a7cf3e1df9b01e32ebb48a SHA512 d60ea4c061ff82ef9649f668453148e7b467681d3c890aa6241915cd853f38e77c7f5819ddcbddf97ca6c29355effe9ae288b6ad5d3d1fdbb5ff00bcb7b1bcd3 WHIRLPOOL 742c8aac11ef3d7973fa8de6047f36bff32a6f6f0692acb68df67a7339047848af43a6d82882933347627fc7b53c8cf65f1b6b2ba2a32f931ace37cd273eae86
DIST authres-0.601.tar.gz 17800 SHA256 7710b9635a0547e0c4b37963f9edc08849e3d1caf5d7951e47761999c71e09fc SHA512 683fd8485a0fdb65eb7ac06b3a6330864c2d4a1c57bd3d9e77c02867927fb093c9d5360abc6841b98050f9ea0c976e7637a5ac5862e3f6ecc6803945ac570de7 WHIRLPOOL 1bb8d00b5bf0340275eb75a7b5ca625038e1213af33cf6127254bf5ffc33d2f488030f420b09f2485efad0909407cb8be491ba91bdecd57fab984fa2ba7ab8d9
DIST authres-0.602.tar.gz 17971 SHA256 41cea7fcc3387e381b520053dbbba1825598b6cb9d45c505ae466d7a2a27edc3 SHA512 3113a23baecf7bb0483e450cd22271eca0e756a772c366e77d36682bec764e528c0befad682f346026aad669b17dc85337f9994f8480535d7184e5a92c0be512 WHIRLPOOL 609e980f1f4b9142fe88272d75a9cbeb187abcb457552bc5e3d8ed9d3a920d3c188b23b93b8037df4b1a2cadd11e0612f3f7c1535c6337334de5ae2ca3ca8b1a
DIST authres-0.701.tar.gz 18878 SHA256 4536c485ab8da667be84361b040e626d025cc8b3cb5ad7ef156a7764bf9a9b12 SHA512 e4482a8c5494a550a76a0d0b8b0d406d257da271d8fae901569a960d2f90ec616c5de48a578240e831c29f9345d128ecc9cba6f05befbb03f5cd90b4c26af422 WHIRLPOOL cbca8127df9ac573bdb653f22869450184cfd05221aa17a28726183e17572f4cde85b255b6e3583336aa87383e34a1999f4a647c1bac8eb91bc70075b0d0669e

@ -1,29 +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/authres/authres-0.401.ebuild,v 1.2 2012/05/09 03:18:11 floppym Exp $
EAPI=4
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.5"
inherit distutils
DESCRIPTION="Authentication Results Header Module"
HOMEPAGE="https://launchpad.net/authentication-results-python http://pypi.python.org/pypi/authres"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
DOCS="CHANGES README"
src_test() {
testing() {
PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib*)" "$(PYTHON)" \
-c "import sys, ${PN}, doctest; f, t = doctest.testfile('${PN}/tests'); \
sys.exit(bool(f))" || return
}
python_execute_function testing
}

@ -1,29 +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/authres/authres-0.402.ebuild,v 1.3 2013/02/26 10:59:26 ago Exp $
EAPI=4
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.5"
inherit distutils
DESCRIPTION="Authentication Results Header Module"
HOMEPAGE="https://launchpad.net/authentication-results-python http://pypi.python.org/pypi/authres"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE=""
DOCS="CHANGES README"
src_test() {
testing() {
PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib*)" "$(PYTHON)" \
-c "import sys, ${PN}, doctest; f, t = doctest.testfile('${PN}/tests'); \
sys.exit(bool(f))" || return
}
python_execute_function testing
}

@ -1,29 +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/authres/authres-0.500.ebuild,v 1.1 2013/02/22 03:37:01 patrick Exp $
EAPI=4
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.5"
inherit distutils
DESCRIPTION="Authentication Results Header Module"
HOMEPAGE="https://launchpad.net/authentication-results-python http://pypi.python.org/pypi/authres"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
DOCS="CHANGES README"
src_test() {
testing() {
PYTHONPATH="$(ls -d build-${PYTHON_ABI}/lib*)" "$(PYTHON)" \
-c "import sys, ${PN}, doctest; f, t = doctest.testfile('${PN}/tests'); \
sys.exit(bool(f))" || return
}
python_execute_function testing
}

@ -1,24 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/authres/authres-0.501.ebuild,v 1.3 2014/03/31 21:02:13 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
inherit distutils-r1
DESCRIPTION="Authentication Results Header Module"
HOMEPAGE="https://launchpad.net/authentication-results-python http://pypi.python.org/pypi/authres"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
DOCS=( CHANGES README )
python_test() {
"${PYTHON}" -c "import sys, ${PN}, doctest; f, t = doctest.testfile('${PN}/tests'); \
sys.exit(bool(f))" || return
}

@ -1,24 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/authres/authres-0.600.ebuild,v 1.3 2014/03/31 21:02:13 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
inherit distutils-r1
DESCRIPTION="Authentication Results Header Module"
HOMEPAGE="https://launchpad.net/authentication-results-python http://pypi.python.org/pypi/authres"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
DOCS=( CHANGES README )
python_test() {
"${PYTHON}" -c "import sys, ${PN}, doctest; f, t = doctest.testfile('${PN}/tests'); \
sys.exit(bool(f))" || return
}

@ -1,24 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/authres/authres-0.601.ebuild,v 1.3 2014/03/31 21:02:13 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
inherit distutils-r1
DESCRIPTION="Authentication Results Header Module"
HOMEPAGE="https://launchpad.net/authentication-results-python http://pypi.python.org/pypi/authres"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
DOCS=( CHANGES README )
python_test() {
"${PYTHON}" -c "import sys, ${PN}, doctest; f, t = doctest.testfile('${PN}/tests'); \
sys.exit(bool(f))" || return
}

@ -1,3 +1,2 @@
DIST Axiom-0.6.0.tar.gz 197148 SHA256 0c3e5586c91df966f2c1b2031db870ee6b73bdd0517f9a7dab764ef0943e548c SHA512 493aa981d6bfa4ee12cd57fe6272bb00b123f6eed9d6a07923e5f391fd7d5fc4cc1c1025fe6eaf67d1e0da75e8293695abd2e4e9895ef06f02eff6517357a0d6 WHIRLPOOL d2c5c465ae80e0265c44c19b02b6cf7cca97f0f244f8271a296b3274ef87532ec2ea29aba8b5262a46ecf9813cee666280bc045af42f2687aba5a8472027242a
DIST Axiom-0.7.0.tar.gz 440345 SHA256 25e8e54bb0a357bce92d0f46b800d66b31e7692685e899d639243a05832770bb SHA512 4a77df5cac1ff80bb4847922061d2f50897b609f67bdfd4366d40b80baa95d6ddb184314ce816e01c1a3df7a8013d1fa9ae6cf8d08ac864c101e42cb42cb11a3 WHIRLPOOL 6e7e5cc098c9eb5ca4f1a2fa71bd2d678d7ff533d39515a24bc1454a3677552ce5cc6a3a0046dc60a6a2705d4b3aaa90c0baa2a2773549fa267fc7782ad88590
DIST Axiom-0.7.1.tar.gz 200683 SHA256 4699e6cdaecbe178d553bed4cb2ee623238da18e218838e92867a99addfc2c2e SHA512 b2a366436982e93429877a80306e38706978d519b16119440161ceae5f858bc953030819ccdad20906b32b5bd4faa7e392f2d5b3dfb4d4d9a15e5ace75a9c270 WHIRLPOOL 77de680a0bd29852797e4910cc4fa87b417b40f72ede7dee62b73f960460823b823fb285f54fb9ce98e885464e2a9708aadd287c498300cd04d600b1eb4b35ae
DIST Axiom-0.7.2.tar.gz 201850 SHA256 a9e82a2288ac8b465bbeb2b97b567f5eea7d4856924c3e9bb74dcbad466e2ff6 SHA512 b8aba9b1b69141ad93759255f8eb169d815565d4b5b5f813b9afadb1158960ead859c896c2f26797fa1953c5cc35729dfbbb942077530402372030f85e85f3a5 WHIRLPOOL 9dd38b9f2d1f7fb3c245c6f829c6075ed09515dc9b5b88ba4ad881ad633a91ef24b021a2bbab198d77ed58f19a2ce9e89e5846b6865ede8adb7844cf3a18f1ed

@ -1,38 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.7.0.ebuild,v 1.3 2014/08/10 21:07:14 slyfox Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_6,2_7} )
PYTHON_REQ_USE="sqlite"
inherit twisted-r1
DESCRIPTION="Object database implemented on top of SQLite"
HOMEPAGE="http://divmod.org/trac/wiki/DivmodAxiom http://pypi.python.org/pypi/Axiom"
SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
RDEPEND=">=dev-python/epsilon-0.6.0-r2[${PYTHON_USEDEP}]
dev-python/twisted-core[${PYTHON_USEDEP}]
>=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
PATCHES=( "${FILESDIR}/${PN}-0.5.30-sqlite3_3.6.4.patch" )
TWISTED_PLUGINS+=( axiom.plugins )
python_install() {
distutils-r1_python_install
touch "${D}$(python_get_sitedir)"/axiom/plugins/dropin.cache || die
}
python_test() {
py.test ${PN}/test/ || die "testsuite failed under ${EPYTHON}"
}

@ -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/dev-python/axiom/axiom-0.7.1.ebuild,v 1.2 2014/08/10 21:07:14 slyfox Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/axiom/axiom-0.7.2.ebuild,v 1.1 2015/01/11 07:12:49 idella4 Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
@ -15,13 +15,11 @@ SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
IUSE=""
RDEPEND=">=dev-python/epsilon-0.7.0[${PYTHON_USEDEP}]
>=dev-python/twisted-core-13.2.0[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? ( dev-python/pytest[${PYTHON_USEDEP}]
>=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}] )"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}/${PN}-0.5.30-sqlite3_3.6.4.patch" )
@ -32,7 +30,3 @@ python_install() {
touch "${D}$(python_get_sitedir)"/axiom/plugins/dropin.cache || die
}
python_test() {
py.test ${PN}/test/ || die "testsuite failed under ${EPYTHON}"
}

@ -15,3 +15,4 @@ DIST boto-2.28.0.tar.gz 7101691 SHA256 c1599e66174a6cab633cb6bf5ec2590cce104c23d
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

@ -0,0 +1,27 @@
# 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.35.1.ebuild,v 1.2 2015/01/10 06:17:48 radhermit 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="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[${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}"
}

@ -1,2 +1,3 @@
DIST Chameleon-2.16.tar.gz 200838 SHA256 87c82d657fbc1b47decbe605a6f6105d9190cb19e924b59262cfdfa03e7a512d SHA512 a6f1491a11e55231ed5304b297d749dd590f1d0340732e00d20e4af1b311df297df2a72cc79f0e4949e5ac00acb9dec29dcb50423facb2b3bcff6ad3d1d75350 WHIRLPOOL 7ed76fbb05f3c413d86f42b45ef73d5b333718031434273e512db43eae69900abfee7b10deff78f360131d50a1093e22786ca01b8eb5984ac5ac5330ba1f7eb1
DIST Chameleon-2.18.tar.gz 201784 SHA256 b1dddb4d6c19c3464dafdc157ce50b7bdc172c9a1a04b8a5d8173d615f2b6885 SHA512 f58a8610f10902082950e35a260f44ea5bdb89c58a1812a411b87379c430efac66b44cb681abf980044494421d35d97865a9b16448b34c3813faaa3b25e348ea WHIRLPOOL e0bba8f3a8d9f826c53dd62b613ae926fc98185b00c32d37a3327c8f4383e3323d1a1cbebc4ac22098618a4ea653f78b6cdfe299e82a21471680ba46bdb24f1d
DIST Chameleon-2.19.tar.gz 202197 SHA256 744070535f8e85a277aef07b0a98256aec5bf6a0d9b909686ce571eb26914491 SHA512 7e90ccf5f53000b94452b8c343cf232d4bc48857dd33ea19bf44e6732033851459a0761cc0f2af5851b11f5c1cd698679ef541cbaa895373f59d66717b3fc267 WHIRLPOOL 6c24d006a707f2b3e2a0b2df5ee2fc52314a5c830fbb8096429ac40dc43e932ddcc38fbeef5886066f848f10076ea8a171a557f995c7b1df16bdf709a858ee4f

@ -0,0 +1,41 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/chameleon/chameleon-2.19.ebuild,v 1.1 2015/01/11 08:13:30 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
inherit distutils-r1
MY_PN="Chameleon"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Fast HTML/XML template compiler for Python"
HOMEPAGE="http://chameleon.repoze.org http://pypi.python.org/pypi/Chameleon"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="repoze"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
python_compile_all() {
use doc && emake html
}
python_test() {
esetup.py test
}
python_install_all() {
use doc && local HTML_DOCS=( _build/html/{[a-z]*,_static} )
distutils-r1_python_install_all
}

@ -1,4 +1,2 @@
DIST colorama-0.2.4.tar.gz 13070 SHA256 ab2a1f39493a7cfe61b919ec3c6c204f593db2bf3818a70f6f0aa6b8b0a52e55 SHA512 89e3c439d097972454a0337af23a87c7400b32a0aa968719ed6f14b77f245dec8ed73643e626266d206dcfaf5ef0c45e843eda9270135454c1c9190a810bfcbc WHIRLPOOL 3bcc2a658946c7f80e3b058b3cbc251858f40579770c97bf070f7f911deb5a2a1fb30056e51704c0565c1654f27445e4cdfd954501687365a08fb38ff15d97c0
DIST colorama-0.2.7.tar.gz 18513 SHA256 37dc4e718795a6c5d172de35dab1a278625f78c49883519e337834ff40dddde5 SHA512 6ed350b0e1fa3d60775643ee1437b6277478cebf92e5f7de346a79dc1b038fb72b1dd16cf5c0ef87c6cb0b6627eda3a00b57fdc8d62cc5a9431856d3668d1507 WHIRLPOOL ec6443afe43ab7227102fbb1508d7837535dbe07f8ffb62d1c3394e348a6cd5647f86aba20168f8a9fef0d29f39435969284d5c02b419e33aa613b9c335d1bc2
DIST colorama-0.3.1.tar.gz 21107 SHA256 012261ba542a5b18076cac0eaa3892ebe6098e170591e08a8fc0fbf8ab3d5c90 SHA512 4fdffac10099ba47948145e3c37a1345b71ef5a5b728ec4b5d23ed8f3e0eb8a19be2814be0421b144eba1a5b99a0f4b80d9cb2f34653c87fd33adc5dae45436e WHIRLPOOL 543a095a5252e31ed9a5e0d9542183d0297f86bb91a12f72cd512727417f93957f62834ae32213f1f8e9502fa04c4597c3e9424094df093248bb711561f43bf2
DIST colorama-0.3.2.tar.gz 18343 SHA256 218862857d74ff781c2caf44629a7d72b88bbb8a2b0aa0f4f1eb8666f8305c11 SHA512 1fe6d72a4f56ef1adb96f70b1721223937647a2f22648bececf7ad05710d82bede767ebd00e9267db0f874ddbe3ec852b82408794b80ea803c888dcfcd9b9532 WHIRLPOOL b49b276772798ba0b606f0b109d8eef1aaeaa6103e143765f75c3c9275b5e94a06aefd05856e0534372fcf0e3da10b236eac8f1f0b4962ec297beff0cfafe059
DIST colorama-0.3.3.tar.gz 22765 SHA256 eb21f2ba718fbf357afdfdf6f641ab393901c7ca8d9f37edd0bee4806ffa269c SHA512 8e6177ea60ab8f1267ce982f23803a9d2eb0c4550d7eac4776416d62a99d1ce03254fc64cc959ca95e2409ceeff081d4d19359c383e969dfb921b44c56914495 WHIRLPOOL e5fe6c0046b558abdde260d9d89e3cbe197165f99fb4f7134c14fff95e6c1e92b3472a95001d847ab58e8445c87f21774a71f629771593934ea070838c765461

@ -1,21 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/colorama/colorama-0.2.4-r1.ebuild,v 1.3 2014/03/31 20:52:11 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python2_6 python2_7 python3_2 pypy pypy2_0 )
inherit distutils-r1
DESCRIPTION="Makes ANSI escape character sequences, for producing colored
terminal text and cursor positioning."
HOMEPAGE="http://code.google.com/p/colorama/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND=""

@ -1,18 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/colorama/colorama-0.2.7.ebuild,v 1.6 2014/04/03 06:27:28 radhermit Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 )
inherit distutils-r1
DESCRIPTION="Makes ANSI escape character sequences, for producing colored
terminal text and cursor positioning."
HOMEPAGE="http://code.google.com/p/colorama/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""

@ -1,9 +1,9 @@
# 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/dev-python/colorama/colorama-0.3.1.ebuild,v 1.2 2014/08/10 21:08:46 slyfox Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/colorama/colorama-0.3.3.ebuild,v 1.1 2015/01/11 08:50:37 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
inherit distutils-r1

@ -1,2 +1,2 @@
DIST lockfile-0.8.tar.gz 8825 SHA256 e6e20ec66ceaea2cf81c675216d68f11b3d15a855fe6c64a26ef983b399afd7a SHA512 6a854639e1628a9c484fbd543a217814a5c3f02e6887fee1060cff729372d360cb2fe96d50048bd85187add9ca573d7a37de7c57aa40080f3c66eaa55f30b1bc WHIRLPOOL 584e2a5101cfe2bb7fb89690c566398ecf3bd205699a4d448681168b92174e300ca4312c43cbd62c2bbf595d8924d70fa82b943e1be465cb5a01caafe6229c52
DIST lockfile-0.10.2.tar.gz 20662 SHA256 9e42252f17d1dd89ee31745e0c4fbe58862c25147eb0ef5295c9cd9bcb4ea2c1 SHA512 7d70bcf7c343228f144687dd2cbc47a525034a68134fa626077d08308e6abce80559e36e9f65859d4c46873c712f62e1d6bb2aeec422d337332b65caf2e430a8 WHIRLPOOL d23a0b99da2304d9c884e69df7fbae4e507d7bab35fe450f2062aba44b4c85fd2c1585012cd02a56c886b50c44fb5a470afe13546f828297c498c3a8551eda86
DIST lockfile-0.9.1.tar.gz 16949 SHA256 88d8ea8d435ee5691117a87d1ca8fed2f8da881eb145295bf6895ac2c416e95d SHA512 1f7e2b13c42df730339e653a361bf4b85a289d62ed9277f159ab454b1e951d922884086299912472236ce0772d5eceebab7e0c6407590bb2ccbe9c56b664de05 WHIRLPOOL 543bc9ad7e937feba52c6132eee3356a9a229c8866f4f605f8399343a676fc98f62bf33f121c4f8dcbac8e18f38168561d34119efea5e30b53427a7e7283055d

@ -0,0 +1,41 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.10.2.ebuild,v 1.1 2015/01/10 17:54:59 djc Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit distutils-r1
DESCRIPTION="Platform-independent file locking module"
HOMEPAGE="http://launchpad.net/pylockfile http://pypi.python.org/pypi/lockfile"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="doc test"
DEPEND="dev-python/pbr[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
RDEPEND=""
DOCS=( ACKS README RELEASE-NOTES )
python_compile_all() {
if use doc; then
einfo "Generation of documentation"
emake -C doc html || die "Generation of documentation failed"
fi
}
python_test() {
# "${PYTHON}" test/test_lockfile.py yeilds no informative coverage output
nosetests || die "test_lockfile failed under ${EPYTHON}"
}
python_install_all() {
use doc && local HTML_DOCS=( doc/.build/html/. )
distutils-r1_python_install_all
}

@ -1,42 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.8-r1.ebuild,v 1.2 2014/08/20 14:05:28 armin76 Exp $
EAPI="5"
PYTHON_COMPAT=( python2_6 python2_7 )
inherit distutils-r1
DESCRIPTION="Platform-independent file locking module"
HOMEPAGE="http://code.google.com/p/pylockfile/ http://pypi.python.org/pypi/lockfile http://smontanaro.dyndns.org/python/"
SRC_URI="http://pylockfile.googlecode.com/files/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
IUSE="doc"
DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
RDEPEND=""
DOCS=( ACKS README RELEASE-NOTES )
python_compile() {
distutils-r1_python_compile
if use doc; then
einfo "Generation of documentation"
cd doc
emake html || die "Generation of documentation failed"
fi
}
src_install() {
distutils-r1_python_install_all
if use doc; then
cd doc/.build/html
docinto html
cp -R [a-z]* _static "${ED}usr/share/doc/${PF}/html" || die "Installation of documentation failed"
fi
}

@ -1,44 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.8.ebuild,v 1.5 2014/08/20 14:05:28 armin76 Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.*"
inherit distutils
DESCRIPTION="Platform-independent file locking module"
HOMEPAGE="http://code.google.com/p/pylockfile/ http://pypi.python.org/pypi/lockfile http://smontanaro.dyndns.org/python/"
SRC_URI="http://pylockfile.googlecode.com/files/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
IUSE="doc"
DEPEND="doc? ( dev-python/sphinx )"
RDEPEND=""
DOCS="ACKS README RELEASE-NOTES"
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
cd doc
emake html || die "Generation of documentation failed"
fi
}
src_install() {
distutils_src_install
if use doc; then
cd doc/.build/html
docinto html
cp -R [a-z]* _static "${ED}usr/share/doc/${PF}/html" || die "Installation of documentation failed"
fi
}

@ -1,44 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.9.1.ebuild,v 1.7 2014/08/20 14:05:28 armin76 Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.*"
inherit distutils
DESCRIPTION="Platform-independent file locking module"
HOMEPAGE="http://code.google.com/p/pylockfile/ http://pypi.python.org/pypi/lockfile http://smontanaro.dyndns.org/python/"
SRC_URI="http://pylockfile.googlecode.com/files/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm ppc ~sparc x86"
IUSE="doc"
DEPEND="doc? ( dev-python/sphinx )"
RDEPEND=""
DOCS="ACKS README RELEASE-NOTES"
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
cd doc
emake html || die "Generation of documentation failed"
fi
}
src_install() {
distutils_src_install
if use doc; then
cd doc/.build/html
docinto html
cp -R [a-z]* _static "${ED}usr/share/doc/${PF}/html" || die "Installation of documentation failed"
fi
}

@ -3,6 +3,6 @@
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="google-code">pylockfile</remote-id>
<remote-id type="pypi">lockfile</remote-id>
</upstream>
</pkgmetadata>

@ -3,3 +3,4 @@ DIST msgpack-python-0.3.0.tar.gz 97932 SHA256 fb6ed5144a9fe2b58d46f8f276417d48dd
DIST msgpack-python-0.4.0.tar.gz 111411 SHA256 d078094f0b29b2b93cb96a76febc70fbe90ae4eb131ff60a6dc038edda92c278 SHA512 00d5ff5bffb290b01e790c47dec73cefd23020101d16308034ae7ca4e08cb4ed7d2491530cc10069ffb420c3f7e65a130410cd778497c74913711bdd6f7ad15c WHIRLPOOL b6b686a3da80f14b32c0b7087ad2ae14ff1de9c1428948ef7c3d2dd8efcbfd297589e2ffe41080f0ac22a41d2b759494d49f6f81318cf41033388bdb0cb1a02a
DIST msgpack-python-0.4.1.tar.gz 111597 SHA256 63b944fe47c31155dc2239c22eb28eb282baef57de921408748eb9171291adf0 SHA512 0024ac3fd90a6c2cadd672c2512bd343a0b149c4efc078326a0a0efeeab04bd15342dc56507bacfd7dbd6e108bef81423accd048c03c47342b676790a72558f5 WHIRLPOOL 89f167a3cdc9c99301c14963227922e56bc4a3357214103fa620823b73d0f9f1bd372cdf0044a1149bfe947f6ca71ebf497a09b402d81de61c55822a85243d1f
DIST msgpack-python-0.4.2.tar.gz 114043 SHA256 0476e8fdd79e5b648b349bd0edebf06e41271ee29421ef7adb12cdbe55dac2a9 SHA512 73cae17c08d34bd721828b1759b998372600e26fdfc62c16cb571b5cb41bf1a65ef98af65db0e48da229461f835aa17a547b03b25f407f570e493d8f363ab507 WHIRLPOOL 272ac48cb24f93efcbafaecbe3e947ac379bd01fc4913663a02bfa9bba41b75830b54090394017dabc4d4585bdf426ce69038202298ba9edad38bb3d5acda0be
DIST msgpack-python-0.4.4.tar.gz 113908 SHA256 9988ea0cb9dc9d6505e088f1f43d1cf25c9f4d769b4b106ab56e3261438bde36 SHA512 f661ed3830c2e1286de829ed736f07217193377b4065c056b3db28e208d09ee8a875e2356e7e8b97392def581d3a51f176d83899ddb5d56e459cd1095f68ca0d WHIRLPOOL c2784ba4e241a186df497b8ca565fa11a9a7b6629131367a01394543a57079aaaa690b62b13121c8352ce7d926ec78b057d071453558eca2f9efdf75efc30035

@ -0,0 +1,32 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/msgpack/msgpack-0.4.4.ebuild,v 1.1 2015/01/10 06:58:07 radhermit Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
inherit distutils-r1
MY_PN="${PN}-python"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="MessagePack (de)serializer for Python"
HOMEPAGE="http://msgpack.org https://github.com/msgpack/msgpack-python/ https://pypi.python.org/pypi/msgpack-python/"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/six[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
S=${WORKDIR}/${MY_P}
python_test() {
py.test test || die "Tests fail with ${EPYTHON}"
}

@ -1,2 +1,3 @@
DIST oslo.utils-1.0.0.tar.gz 32719 SHA256 4d1fdb896eb7a690ddf2a04b47c347caefaf1117bb2be83723546fbaa5141864 SHA512 09c6b759f39eb90ec382f68f3cf70e600847bdc6c44802a82e279a10be75587fe5e67f5e5b136ab6ac338b69ff484a869dbf236e0e46fc72a90ca69619a53c9b WHIRLPOOL 470720887a248afc953c691ba8e659fb010b3b59708992a34387814487b3077f723879f603d931d1a14efd87fe95f868103ca7beaa8bb78c97a9510c28e8364c
DIST oslo.utils-1.1.0.tar.gz 40359 SHA256 f12dfba246ff52e94ec005d5c5862c0300e6cd295ceb953b37b876571a544dc1 SHA512 6b6ffc086e88c0222e9931c78680f15f021b9e9bb211bcb9b4114cc62f47b5bf85846b58e7b792355c7bfe1c01dddcb78871f981fde719360c3889daa85a5ddc WHIRLPOOL f44c34acdecd1d4bd495c60e65d41cebdaa7ef1a39fc4a749a339161ec428e3d274462e34fa8729aa2e7bcdc1f0de66e8d3f87c022c6c91425f1778ca7bef145
DIST oslo.utils-1.2.1.tar.gz 54946 SHA256 9cd8bcde345554582fd12c6daab81a7327a90c72861aa644e8b7b3fbfed5deba SHA512 f928afe21ef908cb6f20beb42502c4709827fdcc7e44f81fd5adeb4ac8faf07649c813824702e0a1972e8100ec894f441017dfc3a887f1b56afd4bfa24846803 WHIRLPOOL c91b4e2eb283b46df6341d7f52ca61ee20b286c84afd8ca8a287627a7d3be914b343c9fd1ea141e02f2c7179c96921ab38c6d094666ba3979dc639fa5fb2e4f7

@ -0,0 +1,85 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-utils/oslo-utils-1.2.1.ebuild,v 1.1 2015/01/11 00:19:12 alunduil Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
inherit distutils-r1
MY_PN=${PN/-/.}
DESCRIPTION="Oslo Utility library"
HOMEPAGE="http://launchpad.net/oslo"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
CDEPEND="
>=dev-python/pbr-0.6[${PYTHON_USEDEP}]
!~dev-python/pbr-0.7[${PYTHON_USEDEP}]
<dev-python/pbr-1.0[${PYTHON_USEDEP}]
"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
${CDEPEND}
test? (
>=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}]
<dev-python/hacking-0.10[${PYTHON_USEDEP}]
>=dev-python/hacking-0.9.1[${PYTHON_USEDEP}]
>=dev-python/mock-1.0[${PYTHON_USEDEP}]
>=dev-python/oslotest-1.2.0[${PYTHON_USEDEP}]
>=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
>=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
>=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
>=dev-python/testtools-0.9.36[${PYTHON_USEDEP}]
!~dev-python/testtools-1.2.0[${PYTHON_USEDEP}]
)
doc? (
>=dev-python/oslo-sphinx-2.2.0[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}]
!~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}]
<dev-python/sphinx-1.3[${PYTHON_USEDEP}]
)
"
RDEPEND="
>=dev-python/Babel-1.3[${PYTHON_USEDEP}]
>=dev-python/iso8601-0.1.9[${PYTHON_USEDEP}]
>=dev-python/netaddr-0.7.12[${PYTHON_USEDEP}]
>=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
>=dev-python/oslo-i18n-1.0.0[${PYTHON_USEDEP}]
>=dev-python/six-1.7.0[${PYTHON_USEDEP}]
"
python_compile_all() {
use doc && esetup.py build_sphinx
}
# Note: Tests fail due to requiring installation.
#
# Installation appears to fail due to the use of namespace packages but root
# cause was never truly established.
#
# Tests fail with:
# ImportError: No module named 'oslo.utils
RESTRICT="test"
python_test() {
distutils_install_for_testing
rm -rf .testrepository || die "couldn't remove '.testrepository' under ${EPTYHON}"
testr init || die "testr init failed under ${EPYTHON}"
testr run || die "testr run failed under ${EPYTHON}"
}
python_install_all() {
use doc && local HTML_DOCS=( doc/build/html/. )
distutils-r1_python_install_all
}

@ -1,2 +1,3 @@
DIST psutil-1.2.1.tar.gz 167397 SHA256 508e4a44c8253a386a0f86d9c9bd4a1b4cbb2f94e88d49a19c1513653ca66c45 SHA512 9faec6c4139f677252b30f4a8793484658d888535428dfb4e316821bb5f246e1832baedd8704279a7e0da7096d539f1a8dcd49f2d61d943f9299e9204ff47d81 WHIRLPOOL e6b13df0c6f70e5d92a88bd540ad2e2f4d670463e1ec815a3eb3b6b009715dd7c0a96b73a03c5819fb3eb3b30f63a1299d6668ffef992a408d8d1b78d33dea43
DIST psutil-2.1.3.tar.gz 224008 SHA256 b434c75f01715777391f10f456002e33d0ca14633f96fdbd9ff9139b42d9452c SHA512 12a566c2c53897d858bd75455da8f52d9d9279e28dc0df40594275626f75da716d82c8f67d1fc37df4bd3bc05fef401391cb6c52380c819d1e82fb4edd11f843 WHIRLPOOL 75c8475fc55c5a04858ba8acba0e57f9daa06aed6badf68b484d5ff0dc9c6e52066472bb78350113c1ebe755baf4ab205e347cbb5b2bac3eb4857a2fe0dd8f3f
DIST psutil-2.2.0.tar.gz 223676 SHA256 b15cc9e7cad0991bd1cb806fa90ea85ba3a95d0f1226625ecef993294ad61521 SHA512 5ea2f0eb2c952314b5683f92582deb2fd7da01a285f984870c64b78dba5c33b6b2f97d5c0e3a05d16fbeb921e22a1e2d165145767205ef4fa76fc424a382c50d WHIRLPOOL e938eec8e2863a52e85eebf2574ea16d984fa06fce31add930c5708c4e2c7d50e9a0f3cb2b2e36201a10a76aa1c10ae2851e2423c69efa668003d171769514cd

@ -0,0 +1,26 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/psutil-2.2.0.ebuild,v 1.1 2015/01/10 07:26:43 radhermit Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
inherit distutils-r1
DESCRIPTION="Retrieve information on running processes and system utilization"
HOMEPAGE="https://github.com/giampaolo/psutil https://pypi.python.org/pypi/psutil/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
RESTRICT="test"
python_test() {
nosetests -v || die "Tests fail with ${EPYTHON}"
}

@ -1,6 +1,3 @@
DIST pysnmp-3.4.4.tar.gz 91693 SHA256 e290758c17251435b5b8982cf96d3216da8f9f0ffd28beff1a5fd96efaa26bdf SHA512 7293722f11c44c4aebf25ca66be010150880b321ff1085a377f3233081a356084631b03a5c814b67feab48763622608837e9802b0256423b3bab3c8397427bb3 WHIRLPOOL 9db142ed1fd57144f5e4b20a8b3aace5a55b4f0cfef961d1b203e6f770fce8897c9458e26a22327e8a1bf5db8ca666b987feae8d1496077ebf86869de7ac4821
DIST pysnmp-4.1.16a.tar.gz 186219 SHA256 cece884d0179e4121915878477cec7c6a7275f4662d3058f836e18313d0c6284 SHA512 6dd056b8c2523fafab244c1fa101c2556cccad5e7235174d131b57e1557e160f31f3723781bf61c50b83ab60307907f6e46b5dc0a2ac5406773c70a19a1e224a WHIRLPOOL ea4f938df8e188ef6ea8b70993c607395579efa72446d1a17f71c7146318d825217b2822d76d496f35a32b0b5ffaf13856985a54c9218b61bea943e1f9ab266d
DIST pysnmp-4.1.16c.tar.gz 186533 SHA256 2b16665388313201bf64e329f96f39424ddf2704a001443a037aff4d004ae55b SHA512 f0818c59cd977e8c443970021eab4d0778c613bfd708691442de28f31e468bd4578cebdada0d254d9ab490fc162b20a70a5b3d9e76da69d949c26ab086081385 WHIRLPOOL 57265aeb147438f614bc9fe0c0b58958100c04a42056b8b3850c2945c1f49044d23bb1a7ff4458645cb7ad260b591c53b24d1842fee4c681db135469213525ae
DIST pysnmp-4.2.1.tar.gz 194057 SHA256 e9b8b0d4ecc45e6f6a920b13f09e28e9d6051ed0b5cf458847bc34bcb0422ff0 SHA512 3bc8a40e488139158a1919a9709defc1186be64f835e8c71811349ea54b93e2f7c662bc7ce6f1edec74442840a9454ad6cfa013d8e2d0604338e3132a4176de5 WHIRLPOOL 0e99e954f508c7d4c389c16ff554ecf808aef435b893650092f1e3660e6b29358f99e7bceb6bf4a15473225387c553924855194fecd7a2404ef8501efd655c00
DIST pysnmp-4.2.2.tar.gz 183998 SHA256 9402238abbaa24187544595d9ca37971b1e1ae0212d6307c60396290d32d6637 SHA512 6660212fdd92f0359ef8e45c71f4b6ee923a150e3dd051e1260386b9a9c11f000f489e0932b6919e21d85a280fbaa75125a418e126182c95c574539a44eb0d9b WHIRLPOOL 748a91b0251aa765576aa870a49e8c0e38729e00528a1e1a2fdc1d4baac2308b7fb42a0fbb05a8da993a64f29d49b0be0eb36fc91f79f7d3d9ab4911d0bc9318
DIST pysnmp-4.2.5.tar.gz 225014 SHA256 c46e65d99a604f690b3d5800e2f6e26e1ed9a3c7f7e17e7b4b4d897150f7077f SHA512 bf93d7dd7ca95ff8b272c90d0c7d4e528075c83d8d6d630ab50e392227188bd0abdd05ad98521d9c4c0a1891a0b448fb9e4411f8a1d6bc7a9c2f7bb132c0dca0 WHIRLPOOL 74724ca754a7f51d41d231e7c04a7dc027d167a293b2daf5e67b5a735ff92e0a57a44abee3355980e2d3b181aa31e8d10a205a151e44282878a1a3a4b31ac4d3

@ -1,49 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysnmp/pysnmp-4.1.16a.ebuild,v 1.6 2011/08/20 21:16:54 jer Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="SNMP library"
HOMEPAGE="http://pysnmp.sf.net/ http://pypi.python.org/pypi/pysnmp"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ppc ~sparc x86"
IUSE="examples"
RDEPEND="
>=dev-python/pyasn1-0.0.13_alpha
dev-python/pycrypto
"
DEPEND="dev-python/setuptools"
DOCS="CHANGES README THANKS TODO"
src_install(){
distutils_src_install
dohtml docs/*.{html,gif} || die "dohtml failed"
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples docs/mibs || die "doins failed"
fi
}
pkg_postinst() {
distutils_pkg_postinst
elog
elog "You may also be interested in the following packages: "
elog "dev-python/pysnmp-apps - example programs using pysnmp"
elog "dev-python/pysnmp-mibs - IETF and other mibs"
elog "net-libs/libsmi - to dump MIBs in python format"
elog
}

@ -1,49 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysnmp/pysnmp-4.1.16c.ebuild,v 1.1 2011/08/20 21:15:28 jer Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="SNMP library"
HOMEPAGE="http://pysnmp.sf.net/ http://pypi.python.org/pypi/pysnmp"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="examples"
DEPEND="dev-python/setuptools"
RDEPEND="
>=dev-python/pyasn1-0.0.13_alpha
dev-python/pycrypto
"
DOCS="CHANGES README THANKS TODO"
src_install(){
distutils_src_install
dohtml docs/*.{html,gif} || die "dohtml failed"
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples docs/mibs || die "doins failed"
fi
}
pkg_postinst() {
distutils_pkg_postinst
elog
elog "You may also be interested in the following packages: "
elog "dev-python/pysnmp-apps - example programs using pysnmp"
elog "dev-python/pysnmp-mibs - IETF and other mibs"
elog "net-libs/libsmi - to dump MIBs in python format"
elog
}

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

Loading…
Cancel
Save