Sync with portage [Fri Feb 20 23:16:37 MSK 2015].

mhiretskiy
root 9 years ago
parent 7f0012e804
commit a378e840fd

@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/clsync/clsync-0.4.ebuild,v 1.1 2015/02/11 03:39:24 bircoph Exp $
# $Header: /var/cvsroot/gentoo-x86/app-admin/clsync/clsync-0.4-r1.ebuild,v 1.1 2015/02/20 18:36:49 bircoph Exp $
EAPI=5
@ -54,7 +54,9 @@ src_prepare() {
"${FILESDIR}/${P}-handler_path.patch" \
"${FILESDIR}/${P}-hl_locks.patch" \
"${FILESDIR}/${P}-unset_env.patch" \
"${FILESDIR}/${P}-unused-deps.patch"
"${FILESDIR}/${P}-unused-deps.patch" \
"${FILESDIR}/${P}-retries-arg.patch" \
"${FILESDIR}/${P}-strtol.patch"
eautoreconf
}

@ -0,0 +1,13 @@
diff --git a/main.c b/main.c
index 176e1f4..48aee6a 100644
--- a/main.c
+++ b/main.c
@@ -116,7 +116,7 @@ static const struct option long_options[] =
{"cgroup-group-name", required_argument, NULL, CG_GROUPNAME},
#endif
{"threading", required_argument, NULL, THREADING},
- {"retries", optional_argument, NULL, RETRIES},
+ {"retries", required_argument, NULL, RETRIES},
{"ignore-failures", optional_argument, NULL, IGNOREFAILURES},
{"exit-on-sync-skipping",optional_argument, NULL, EXITONSYNCSKIP},
{"output", required_argument, NULL, OUTPUT_METHOD},

@ -0,0 +1,179 @@
commit 41283d1359b652c728ca37406a33e62e8541bdda
Author: Andrew Savchenko <bircoph@gmail.com>
Date: Fri Feb 20 21:04:48 2015 +0300
parser: check correctness of str to int conversions.
diff --git a/main.c b/main.c
index 48aee6a..d057489 100644
--- a/main.c
+++ b/main.c
@@ -808,15 +808,33 @@ static int synchandler_arg1(char *arg, size_t arg_len, void *_ctx_p) {
return synchandler_arg(arg, arg_len, _ctx_p, SHARGS_INITIAL);
}
-int parse_customsignals(ctx_t *ctx_p, char *arg) {
+/* strtol wrapper with error checks */
+static inline long xstrtol(const char *str, int *err) {
+ long res;
+ char *endptr;
+
+ res = strtol(str, &endptr, 0);
+ if (errno || *endptr) {
+ error("argument \"%s\" can't be parsed as a number", str);
+ *err = EINVAL;
+ }
+ return res;
+}
+
+static inline int parse_customsignals(ctx_t *ctx_p, char *arg) {
char *ptr = arg, *start = arg;
+ int ret = 0;
unsigned int signal;
do {
switch (*ptr) {
case 0:
case ',':
case ':':
- signal = (unsigned int)atoi(start);
+ signal = (unsigned int)xstrtol(start, &ret);
+ if (ret) {
+ errno = ret;
+ return errno;
+ }
if (signal == 0) {
// flushing the setting
int i = 0;
@@ -883,7 +901,8 @@ int parse_customsignals(ctx_t *ctx_p, char *arg) {
return 0;
}
-int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t paramsource) {
+static int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t paramsource) {
+ int ret = 0;
#ifdef _DEBUG_FORCE
fprintf(stderr, "Force-Debug: parse_parameter(): %i: %i = \"%s\"\n", paramsource, param_id, arg);
#endif
@@ -962,7 +981,7 @@ int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t pa
ctx_p->flags[param_id]++;
if (pwd == NULL) {
- ctx_p->uid = (unsigned int)atol(arg);
+ ctx_p->uid = (unsigned int)xstrtol(arg, &ret);
break;
}
@@ -974,7 +993,7 @@ int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t pa
ctx_p->flags[param_id]++;
if (grp == NULL) {
- ctx_p->gid = (unsigned int)atol(arg);
+ ctx_p->gid = (unsigned int)xstrtol(arg, &ret);
break;
}
@@ -1028,7 +1047,7 @@ int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t pa
ctx_p->flags[param_id]++;
if (pwd == NULL) {
- ctx_p->synchandler_uid = (unsigned int)atol(arg);
+ ctx_p->synchandler_uid = (unsigned int)xstrtol(arg, &ret);
break;
}
@@ -1040,7 +1059,7 @@ int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t pa
ctx_p->flags[param_id]++;
if (grp == NULL) {
- ctx_p->synchandler_gid = (unsigned int)atol(arg);
+ ctx_p->synchandler_gid = (unsigned int)xstrtol(arg, &ret);
break;
}
@@ -1233,7 +1252,7 @@ int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t pa
ctx_p->pidfile = arg;
break;
case RETRIES:
- ctx_p->retries = (unsigned int)atol(arg);
+ ctx_p->retries = (unsigned int)xstrtol(arg, &ret);
break;
case THREADING: {
char *value, *arg_orig = arg;
@@ -1279,22 +1298,22 @@ int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t pa
ctx_p->cluster_mcastipaddr = arg;
break;
case CLUSTERMCASTIPPORT:
- ctx_p->cluster_mcastipport = (uint16_t)atoi(arg);
+ ctx_p->cluster_mcastipport = (uint16_t)xstrtol(arg, &ret);
break;
case CLUSTERTIMEOUT:
- ctx_p->cluster_timeout = (unsigned int)atol(arg);
+ ctx_p->cluster_timeout = (unsigned int)xstrtol(arg, &ret);
break;
case CLUSTERNODENAME:
ctx_p->cluster_nodename = arg;
break;
case CLUSTERHDLMIN:
- ctx_p->cluster_hash_dl_min = (uint16_t)atoi(arg);
+ ctx_p->cluster_hash_dl_min = (uint16_t)xstrtol(arg, &ret);
break;
case CLUSTERHDLMAX:
- ctx_p->cluster_hash_dl_max = (uint16_t)atoi(arg);
+ ctx_p->cluster_hash_dl_max = (uint16_t)xstrtol(arg, &ret);
break;
case CLUSTERSDLMAX:
- ctx_p->cluster_scan_dl_max = (uint16_t)atoi(arg);
+ ctx_p->cluster_scan_dl_max = (uint16_t)xstrtol(arg, &ret);
break;
#endif
case OUTLISTSDIR:
@@ -1334,16 +1353,16 @@ int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t pa
break;
}
case SYNCDELAY:
- ctx_p->syncdelay = (unsigned int)atol(arg);
+ ctx_p->syncdelay = (unsigned int)xstrtol(arg, &ret);
break;
case DELAY:
- ctx_p->_queues[QUEUE_NORMAL].collectdelay = (unsigned int)atol(arg);
+ ctx_p->_queues[QUEUE_NORMAL].collectdelay = (unsigned int)xstrtol(arg, &ret);
break;
case BFILEDELAY:
- ctx_p->_queues[QUEUE_BIGFILE].collectdelay = (unsigned int)atol(arg);
+ ctx_p->_queues[QUEUE_BIGFILE].collectdelay = (unsigned int)xstrtol(arg, &ret);
break;
case BFILETHRESHOLD:
- ctx_p->bfilethreshold = (unsigned long)atol(arg);
+ ctx_p->bfilethreshold = (unsigned long)xstrtol(arg, &ret);
break;
case CANCEL_SYSCALLS: {
char *subopts = arg;
@@ -1412,10 +1431,10 @@ int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t pa
break;
}
case RSYNCINCLIMIT:
- ctx_p->rsyncinclimit = (unsigned int)atol(arg);
+ ctx_p->rsyncinclimit = (unsigned int)xstrtol(arg, &ret);
break;
case SYNCTIMEOUT:
- ctx_p->synctimeout = (unsigned int)atol(arg);
+ ctx_p->synctimeout = (unsigned int)xstrtol(arg, &ret);
break;
case PREEXITHOOK:
if (strlen(arg)) {
@@ -1611,13 +1630,13 @@ int parse_parameter(ctx_t *ctx_p, uint16_t param_id, char *arg, paramsource_t pa
if (arg == NULL)
ctx_p->flags[param_id]++;
else
- ctx_p->flags[param_id] = atoi(arg);
+ ctx_p->flags[param_id] = xstrtol(arg, &ret);
#ifdef _DEBUG_FORCE
fprintf(stderr, "Force-Debug: flag %i is set to %i\n", param_id&0xff, ctx_p->flags[param_id]);
#endif
break;
}
- return 0;
+ return ret;
}
int arguments_parse(int argc, char *argv[], struct ctx *ctx_p) {

@ -0,0 +1,16 @@
rman.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rman.c b/rman.c
index d09e547..e5fc88d 100644
--- a/rman.c
+++ b/rman.c
@@ -1372,7 +1372,7 @@ HTML(enum command cmd) {
break;
case BEGINSECTION: break;
case ENDSECTION:
- if (sectheadid==NAME && message!=NULL) printf(message);
+ if (sectheadid==NAME && message!=NULL) printf("%s", message);
break;
case BEGINSUBSECTION: break;
case ENDSUBSECTION: break;

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

@ -0,0 +1,34 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/rman/rman-3.2-r1.ebuild,v 1.1 2015/02/20 14:09:26 jlec Exp $
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="PolyGlotMan man page translator AKA RosettaMan"
HOMEPAGE="http://sourceforge.net/projects/polyglotman/"
SRC_URI="mirror://sourceforge/polyglotman/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RESTRICT="test"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-gentoo.diff \
"${FILESDIR}"/${P}-ldflags.patch \
"${FILESDIR}"/${P}-format-security.patch
}
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
}
src_install() {
dobin ${PN}
doman ${PN}.1
}

@ -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/dev-libs/libaio/libaio-0.3.110.ebuild,v 1.5 2015/01/16 10:04:40 armin76 Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libaio/libaio-0.3.110.ebuild,v 1.6 2015/02/20 19:21:22 vapier Exp $
EAPI=5
@ -12,7 +12,7 @@ SRC_URI="https://fedorahosted.org/releases/${PN:0:1}/${PN:1:1}/${PN}/${P}.tar.gz
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm 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"
IUSE="static-libs test"
src_prepare() {

@ -1,3 +1,2 @@
DIST clisp-2.47.tar.bz2 7543689 SHA256 565256a50caca44a969b7440c986b3203a0b9679babd0f1dbcbc61a4f4622edb SHA512 fe2e8d685e68d636b053fc6d51c846b57df822cfb24b9b3140f4363e80d538c03ebd531ab92f61db95f5709bd02236b8ce58d3183c8168cfafbd1288d4563cf9 WHIRLPOOL a1877e24613530b5a83a904f40e07eea0014f685e154d2abb69501a64f83de1a44fb0a0ab25557db43c5e3ee6e2231a70b28a520282678532b1fa838b41316c5
DIST clisp-2.48.tar.bz2 7885098 SHA256 05b83f560859a23679ccfc073a128a5377fe9489d734431a3dc32ef88f0c3dc2 SHA512 3288b6a2973c924006b14bbed1e8e3e688276a187ac2a6c7851dc7ae699e7832d30e5e7eecdabc76c08c7e8e8ce1b562eb97a44570d3035e558ea2310de2b719 WHIRLPOOL 6be21d4e3e88a1abf4536e1dfc01f99b714b0543494e214647c6d292a5ce355119a415ecfeae32823670bd8ddb918621531b2c8b43edcbbb33313312acfa28ab
DIST clisp-2.49.tar.bz2 8091011 SHA256 8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890 SHA512 eef66fc85199a2c283b616db61bf67ff103eeb0f19fa907da48994dc790b6f5f8d0c74fb3bd723c6b827c0ff3cfd89fa6ba67934fc669ed5d5249044b5140d81 WHIRLPOOL fe14d3cd09ad5768c72470b71068331623239a9d5c7247267be25bc4fc97d91ca6c53dd0a495b3d2a8c45faeaa01060aa135a19fea5f76d2968ffc505f5b6416

@ -1,136 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/clisp/clisp-2.47-r1.ebuild,v 1.10 2014/12/28 15:36:16 titanofold Exp $
EAPI=1
inherit flag-o-matic eutils toolchain-funcs multilib
DESCRIPTION="A portable, bytecode-compiled implementation of Common Lisp"
HOMEPAGE="http://clisp.sourceforge.net/"
SRC_URI="mirror://sourceforge/clisp/${P}.tar.bz2"
LICENSE="GPL-2"
# EAPI="1"
SLOT="2"
KEYWORDS="alpha amd64 ia64 ppc -sparc x86"
IUSE="hyperspec X new-clx dbus fastcgi gdbm gtk pari pcre postgres readline svm zlib"
RDEPEND="virtual/libiconv
>=dev-libs/libsigsegv-2.4
>=dev-libs/ffcall-1.10
dbus? ( sys-apps/dbus )
fastcgi? ( dev-libs/fcgi )
gdbm? ( sys-libs/gdbm )
gtk? ( >=x11-libs/gtk+-2.10:2 >=gnome-base/libglade-2.6:2.0 )
pari? ( >=sci-mathematics/pari-2.3.0 )
postgres? ( >=dev-db/postgresql-8.0 )
readline? ( >=sys-libs/readline-5.0 )
pcre? ( dev-libs/libpcre )
svm? ( sci-libs/libsvm )
zlib? ( sys-libs/zlib )
X? ( new-clx? ( x11-libs/libXpm ) )
hyperspec? ( dev-lisp/hyperspec )"
# berkdb? ( sys-libs/db:4.5 )
DEPEND="${RDEPEND} X? ( new-clx? ( x11-misc/imake x11-proto/xextproto ) )"
PDEPEND="dev-lisp/gentoo-init"
enable_modules() {
[[ $# = 0 ]] && die "${FUNCNAME[0]} must receive at least one argument"
for m in "$@" ; do
einfo "enabling module $m"
myconf="${myconf} --with-module=${m}"
done
}
BUILDDIR="builddir"
# modules not enabled:
# * berkdb: must figure out a way to make the configure script pick up the
# currect version of the library and headers
# * dirkey: fails to compile, requiring windows.h, possibly wrong #ifdefs
# * matlab, netica: not in portage
# * oracle: can't install oracle-instantclient
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/pari.patch #bug 246074
# More than -O1 breaks alpha/ia64
use alpha || use ia64 && sed -i -e 's/-O2//g' src/makemake.in
}
src_compile() {
# built-in features
local myconf="--with-ffcall --with-dynamic-modules"
use readline || myconf="${myconf} --with-noreadline"
# We need this to build on alpha/ia64
if use alpha || use ia64; then
replace-flags -O? -O1
append-flags '-D NO_MULTIMAP_SHM -D NO_MULTIMAP_FILE -D NO_SINGLEMAP -D NO_TRIVIALMAP'
fi
# default modules
enable_modules wildcard rawsock
# optional modules
use elibc_glibc && enable_modules bindings/glibc
if use X; then
if use new-clx; then
enable_modules clx/new-clx
else
enable_modules clx/mit-clx
fi
fi
if use postgres; then
enable_modules postgresql
CPPFLAGS="-I $(pg_config --includedir)"
fi
# if use berkdb; then
# enable_modules berkley-db
# CPPFLAGS="${CPPFLAGS} -I /usr/include/db4.5"
# fi
use dbus && enable_modules dbus
use fastcgi && enable_modules fastcgi
use gdbm && enable_modules gdbm
use gtk && enable_modules gtk2
use pari && enable_modules pari
use pcre && enable_modules pcre
use svm && enable_modules libsvm
use zlib && enable_modules zlib
if use hyperspec; then
CLHSROOT="file:///usr/share/doc/hyperspec/HyperSpec/"
else
CLHSROOT="http://www.lispworks.com/reference/HyperSpec/"
fi
# configure chokes on --infodir option
local configure="./configure --prefix=/usr --libdir=/usr/$(get_libdir) \
${myconf} --hyperspec=${CLHSROOT} ${BUILDDIR}"
einfo "${configure}"
${configure} || die "./configure failed"
cd ${BUILDDIR}
sed -i 's,"vi","nano",g' config.lisp
IMPNOTES="file://${ROOT%/}/usr/share/doc/${PN}-${PVR}/html/impnotes.html"
sed -i "s,http://clisp.cons.org/impnotes/,${IMPNOTES},g" config.lisp
# parallel build fails
emake -j1 || die "emake failed"
}
src_install() {
pushd ${BUILDDIR}
make DESTDIR="${D}" prefix=/usr install-bin || die
doman clisp.1
dodoc SUMMARY README* NEWS MAGIC.add ANNOUNCE clisp.dvi clisp.html
chmod a+x "${D}"/usr/$(get_libdir)/clisp-${PV/_*/}/clisp-link
# stripping them removes common symbols (defined but unitialised variables)
# which are then needed to build modules...
export STRIP_MASK="*/usr/$(get_libdir)/clisp-${PV}/*/*"
popd
dohtml doc/impnotes.{css,html} doc/regexp.html doc/clisp.png
dodoc doc/{editors,CLOS-guide,LISP-tutorial}.txt
}

@ -1,25 +0,0 @@
commit d6d89b33bee20879c4cef3b7fcc9c4d42c4b6eff
Author: sds <sds>
Date: Thu Jan 8 02:56:33 2009 +0000
fix bug #[ 2492106 ]: CLISP 2.47/amd64 can't build "pari" module
(new_galois_format, factor_add_primes): fix type declarations
diff --git a/modules/pari/pari.lisp b/modules/pari/pari.lisp
index d5cf89d..d5586d3 100644
--- a/modules/pari/pari.lisp
+++ b/modules/pari/pari.lisp
@@ -165,9 +165,9 @@
(and e (foreign-value e))))
;; extern int new_galois_format;
-(def-c-var new_galois_format (:type (c-ptr int)))
+(def-c-var new_galois_format (:type int))
;; extern int factor_add_primes;
-(def-c-var factor_add_primes (:type (c-ptr int)))
+(def-c-var factor_add_primes (:type int))
;; extern ulong DEBUGFILES, DEBUGLEVEL, DEBUGMEM
(def-c-var debugfiles (:name "DEBUGFILES") (:type ulong))
diff --git a/src/ChangeLog b/src/ChangeLog
index 4f386a3..410b02b 100644

@ -1,4 +1 @@
DIST async-110.01.00.tar.gz 79099 SHA256 7c53ff8a1ac2190f00e61f7c446aa0b5dc9db26d6c8dfe6347499b7d54a96399 SHA512 4f07dae38b5c52180a43a84ed38ffbb4392eead4660d8671e68abbb52bf7a738e096d595761cc19cee917b74cc914c5e52cff01b42b597fc2021a81e588c09c5 WHIRLPOOL 12a9ff9bf7ac8c614d6418d481f5a6c2e195b0f083ee61131ba39d1e10dc9b1935a19a79b86e707ff9002eda440d12cd9411c5d314f9531b8db952157f99d937
DIST async-111.25.00.tar.gz 80713 SHA256 9f233036860de71ea6c2d032bd1d4a8f78a637d68777046461b1edfa13847ba0 SHA512 b243ae262934f79f8e2e696e55567916cf70a29bfded7baf6786ee0600f2b7a476591606bc267c6ec49402b2c1719e7676aa51e5bbe34492a0c497df4ba49395 WHIRLPOOL f7d96fc5b3458db375aab657df3fbdfe94d3b57c8df8fee987dffbad684817936617b3cf9bd492ae2a43a57472351d130cf6f3385f991510c9fa14751b6b0ec4
DIST async-112.01.00.tar.gz 81076 SHA256 7d4a0efe7a51b2ee5ce8892200be054ea3690db24c53b68bdb33f0d4c9268ddb SHA512 30d0de83d3b81c8b1acc510ae15611abd90aa75f504a245f6bca35d43f68b244f021eee804fe7c6d84f8a8fbcb878a6a9ca2a74d0801bb0e3cb6514dd52c6a62 WHIRLPOOL 991872e3475c7e897d55d55607d774afb33dbd1edfffe295cc54d95cffad3ecc4b0ab95de98ab505c98667061df37316a2b4ba3568b142c4bbe8eec06654b43b
DIST async-112.06.00.tar.gz 81551 SHA256 5255a5b7c8dfdb22a64ea5300c89183479e2812049cbf1441e2778b399448535 SHA512 1aeca2ce77a1a12991417506cbff8c17b3ca5d289d36bbdb914bd8f36dd1832946895b7f08d49b78f3bfcef9d9ec75d63142b08d34d1d729ee9295ae4ce92ad8 WHIRLPOOL 5ba18f280d3f1882a9a25c05687127a9e4d15977de3a96490bf7d662cabe9bb3d3f3772dcd98f9a795b6c92612c97e553575d6da24c0422aa81cb6f3c46f0df0
DIST async-112.17.00.tar.gz 82486 SHA256 2fa90908a87d4c12d9691a91da48b4c2e5484f770b24362618d97f111baae993 SHA512 3778f28f8ce88e32e72198ca0fd66a4727a12975f1ef6b6ed0ed09a06838d3ffc9b0004801d88b37194d428c61960be8ce369f1ccf14a6c7e556858b81aebfa5 WHIRLPOOL ec148889b63fcd3622581b2c3885e3b40f20f8d478c062810009454ae14ba82f546976d746b1388e017a43486ffc7c577c9b155b493bdac7f41c680fb5d4db43

@ -1,40 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async/async-111.25.00.ebuild,v 1.2 2014/11/28 18:05:22 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="examples"
RDEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/async_unix-${PV}:=
>=dev-ml/async_extra-${PV}:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.0.2 dev-ml/core_bench )"
S="${WORKDIR}/${MY_P}"
src_install() {
oasis_src_install
if use examples ; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}

@ -1,40 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async/async-112.01.00.ebuild,v 1.1 2014/12/01 14:15:40 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="examples"
RDEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/async_unix-${PV}:=
>=dev-ml/async_extra-${PV}:=
dev-ml/camlp4:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.0.2 dev-ml/core_bench )"
S="${WORKDIR}/${MY_P}"
src_install() {
oasis_src_install
if use examples ; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}

@ -1,40 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async/async-112.06.00.ebuild,v 1.1 2014/12/22 10:11:59 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="examples"
RDEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/async_unix-${PV}:=
>=dev-ml/async_extra-${PV}:=
dev-ml/camlp4:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.0.2 dev-ml/core_bench )"
S="${WORKDIR}/${MY_P}"
src_install() {
oasis_src_install
if use examples ; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}

@ -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-ml/async/async-110.01.00.ebuild,v 1.1 2014/02/13 15:53:27 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async/async-112.17.00.ebuild,v 1.1 2015/02/20 17:47:57 aballier Exp $
EAPI="5"
@ -12,8 +12,7 @@ inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
@ -24,9 +23,10 @@ RDEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/async_unix-${PV}:=
>=dev-ml/async_extra-${PV}:=
dev-ml/camlp4:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.0.2 )"
test? ( >=dev-ml/ounit-1.0.2 dev-ml/core_bench dev-ml/pa_ounit )"
S="${WORKDIR}/${MY_P}"

@ -1,4 +1 @@
DIST async_extra-110.01.00.tar.gz 126865 SHA256 36c7b48ed9843e23db8c15e5c52bfc6170af4e1df2398d3aaa8e4f1f20c30207 SHA512 1d9ace56001bf04aa62340a2ccf919b49f2115f583f3f2afb58d4f32e2adbd2755e4936e59a7ca6434195b97a0bfd6ff4c69b6af842b8663b0ea6c3b87763648 WHIRLPOOL 1346402436b2c26f9026e22d9d5c767db0a2eb0dd0d773562788dd0a8fb6ee7171e889c5b0df9842bc86ef4ec340ee43a073818707453d17ae6140852ae9a585
DIST async_extra-111.28.00.tar.gz 145771 SHA256 5eb733332a3c4832dbe438ebaab82c60fcfefa52e3ddbd8ef042534ec0a855bc SHA512 596f112a4f7285be7a32a006adbc2b272ad86325cd021f3ca9c8e08e1e49318b9b30b145a3b9ddad340a1957aa85673720ef72fa7a8009089e0f16ef66b61b5c WHIRLPOOL 3d73c345220ceb0d054a0fd7443533d331a4621d6a61c520fd600a3febe6ec3232cb6a5148dc483dd3ff804f70c896af38d448c5b7833b3aa5193c20139c22dd
DIST async_extra-112.01.00.tar.gz 147996 SHA256 cfb7debf999ece1b448206c970a08239b39191ec549208998e085e6adeca5d04 SHA512 52e9239d72a5ed83e502f929479ff305f386c36acd5dfce3ab956279e6193c6e53ae959ff2b3e79aaff1a203c6585be3c3e9e9ce0d874422a834d32dadfd89c2 WHIRLPOOL 1537d05f5570f73b531eb5f72b75a2b6c70ec6ee1ece0cba3b651dda6daaf7d4a49c05dfd3e06ac83b85535e08bf70861c944e1099a4421e8bb96b1a87c34f1f
DIST async_extra-112.06.00.tar.gz 155008 SHA256 f8062066ded3b3ec1a512db8063825deab1375f4bfd999a8e9eabafdd5d740a6 SHA512 328b294f527bd36cec5340639d3d5e1b76d3bc6f930ce40c75b91062fef5dc8eb562d145bb824d6a9866977c70534d638adbc5114a9097a229552fe06255d504 WHIRLPOOL 9a7953dacdfb21fa1d59c66e067234b23cbc877d2bc86309f0b1f7bfed333e7cf1512eb6581c06e2236eeef008dfb0cb07beaaf4845d8780ea7e94a12d02f443
DIST async_extra-112.17.00.tar.gz 157687 SHA256 97782934e98808e1e667c00f90ef08b6a55b6a462c86a2afefb0ee12189cecd8 SHA512 338a3ed19cd17c16739737c8854a40195912dfdccfb370aa39ec6d2c516f33a69ddb01115fe3616261f17578796a404330b3c6f99f8493b7969c5e3b1c67d397 WHIRLPOOL 8617d6dbb34c75051e5ab67c72f5a8545084ea3c7e3326e59ade777a644b8a37b0a9f20c5f2908a37e2047ac197c88b009c6a25ea4261a065df491263ef6a99a

@ -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/dev-ml/async_extra/async_extra-110.01.00.ebuild,v 1.1 2014/02/13 15:51:52 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (extra)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/pa_ounit-109.18.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/core-${PV}:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/async_unix-${PV}:=
dev-ml/custom_printf:=
dev-ml/herelib:=
dev-ml/pa_test:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -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-ml/async_extra/async_extra-111.28.00.ebuild,v 1.2 2014/11/28 18:04:48 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (extra)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/pa_ounit-109.18.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/core-${PV}:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/async_unix-${PV}:=
dev-ml/custom_printf:=
dev-ml/herelib:=
dev-ml/pa_test:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -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-ml/async_extra/async_extra-112.06.00.ebuild,v 1.1 2014/12/22 10:11:04 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (extra)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/pa_ounit-109.18.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/core-${PV}:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/async_unix-${PV}:=
dev-ml/custom_printf:=
dev-ml/herelib:=
dev-ml/pa_test:=
dev-ml/camlp4:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -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-ml/async_extra/async_extra-112.01.00.ebuild,v 1.1 2014/12/01 14:13:28 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_extra/async_extra-112.17.00.ebuild,v 1.1 2015/02/20 17:45:09 aballier Exp $
EAPI="5"
@ -11,8 +11,7 @@ inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (extra)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"

@ -1,5 +1 @@
DIST async_kernel-109.60.00.tar.gz 121634 SHA256 51dc025f5b909e1dcf46d9f76072dcc6f75567b0ca3aceaac595b4ffce513903 SHA512 0d42828b08a15f2c8efe2a81b79469e0dc0a7896574ba3d27c2c27bb7de1556cd910e78a7b0b0ba6981ab7d6e8b6b1954986d52e6fc0002403779987c3ad6839 WHIRLPOOL 47dec868606361d87430faabb3fc216cf9831fb3e2efdabe77160800f7251b3221268f82cce2f7e8861d32028ff6a774600e5553d4df80b4c0be993cd253f687
DIST async_kernel-110.01.00.tar.gz 121501 SHA256 865bb8b08905872b2cd2730c50501b2271531720b9102c081ed973287d8c7658 SHA512 574f394b5405e882cbd1dc0f44ec2795921afc814eb8ae9197d6a46e48c9db5bc78e50dc6dc5f4387b3b7f65e511ed7c813ea2e3c211210ca006146d11427ed0 WHIRLPOOL e47e5d25e24fcb10d3ed8cca1882e5776393f8b9a117aa7c86b9af4d5fe907fc9abbf27915b36f9c73000781e31ca7cf51cbecd843eba779af9e4d2f6777dac8
DIST async_kernel-111.28.00.tar.gz 128589 SHA256 3fcf2a35c483968863dc8d6e4619369c61551f75a3bb187b2b3a42f06ae336e9 SHA512 5010bcd2d32c13b27a350f4e45b377e6e1321cee51ff536a66aea587b5bfdb2531022d3a7d375890c8c7e652bd9a0705d4f921167fd38d6b4a688176d3b3b619 WHIRLPOOL bcc900055c338f7737eeca5d003fb1c0e16b45b594241db27d361bbf874bbcc9932c47a8ce859bfdca15ba4b6b0d5647cc5561e8ceab07369f0a7234747f0372
DIST async_kernel-112.01.00.tar.gz 129323 SHA256 424741b467230622b09119a00236407b74f0b859a19b22f4d3268f111c322633 SHA512 72ff70cd2431ae52c27561fe509bad5da77d00d0fc11a4698323dd832e2265f2298d34ceab08d612e87a3361e23d3ec6fbcbc4317c52b2a8ec9ce4092a5dc1d5 WHIRLPOOL a9e9c33e6ed65fb0fa994f21afce0efa0d2b073ae9cda844fecf45eeb9f91f89c6b48bab3763647db5c19944b2d29ba7f67cc71c882e4ad95366a982e492b02f
DIST async_kernel-112.06.00.tar.gz 131291 SHA256 7c68dd51b691f934bec2b129fe79f16f056059b1c917052198ccb29f2f51569e SHA512 e55a99fc01ea6059c1909188a4d1bd8a4eb73ce5e4cafaa280a834aa9e3ebe8a844e1d203223e4f8bc6cda21bdbb442bb095193a8b80ae4a4fbae79b6e7a1500 WHIRLPOOL c9f70a89ae8b1964161b83623814436de322c5893d04bae759477831c87d94fe98b8f3dc6b499a6d81324444fb6648ed2db9494f5b0fed75f9060fe85fa868cd
DIST async_kernel-112.17.00.tar.gz 133837 SHA256 eaa99169345096e111a69beb229bdb1b0bc04c72db50837a1630a5852afe1464 SHA512 268a742fad491597635a53b4208730350f07e2b65cd8a6adaa17e9d862b3eefaed4a3badcb4c03cae2462882173d848d472dd1bdd9c0b041fe55814a28098b03 WHIRLPOOL fecc39757b0402cca04fb007ea9a8f6004cc350770a72f17b1ed2ab42a2ecd30fe38217c92924bef591958fd516c1896191a8c393b59f09844cc28536d8769bd

@ -1,32 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_kernel/async_kernel-109.60.00.ebuild,v 1.1 2014/01/19 16:15:33 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (core)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/core-109.35.00:=
>=dev-ml/herelib-109.35.00:=
dev-ml/pa_test:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -1,32 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_kernel/async_kernel-110.01.00.ebuild,v 1.1 2014/02/13 15:46:28 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (core)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/core-109.35.00:=
>=dev-ml/herelib-109.35.00:=
dev-ml/pa_test:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -1,33 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_kernel/async_kernel-111.28.00.ebuild,v 1.2 2014/11/28 18:00:49 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (core)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/core-109.35.00:=
>=dev-ml/herelib-109.35.00:=
dev-ml/pa_test:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -1,33 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_kernel/async_kernel-112.01.00.ebuild,v 1.1 2014/12/01 14:04:40 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (core)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/core-109.35.00:=
>=dev-ml/herelib-109.35.00:=
dev-ml/pa_test:=
dev-ml/camlp4:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -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-ml/async_kernel/async_kernel-112.06.00.ebuild,v 1.1 2014/12/22 10:06:51 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_kernel/async_kernel-112.17.00.ebuild,v 1.1 2015/02/20 17:40:08 aballier Exp $
EAPI="5"
@ -11,7 +11,7 @@ inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (core)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${MY_P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"

@ -1,4 +1 @@
DIST async_unix-110.01.00.tar.gz 141102 SHA256 0ead1316269392de8f37a738958e34d1f897fc8223cd121a3d11be98a9c7ca0f SHA512 f44e2ee9f1047b3449c3483d8384f477b8d9eb9e4312747e74d6184071fa700d7eff7603210ac6224b2df5294ed8946ba0bde0cbe5f4de772d2ae5bf72d0c8f4 WHIRLPOOL d5abd2f01588242afe142c40538a94e5050cd789f6bda8bef4d0dd6ec8986bd56241be6bea3a6c4c2f1467c928d2b61c9e3ebef9efa74cec1729d0bb189aed94
DIST async_unix-111.28.00.tar.gz 152056 SHA256 420782aadf90d3507b9b986ef8be96a90617a7e0389636e88ac1d1d0f4ad4eb0 SHA512 8957f485c6b2d88eb690384a091f1fd260815e840b3fd649fd7c616e1091a8731a7cd070de56d10654c426e1dffc7a2306dcda3b4f9ed3787c313f1746202ea1 WHIRLPOOL febe19a6fa53f7c230b5b10c613f6e650f0ac99124f0d88ab1ac48a89785a3e482c5ab7f0fa937d3752b5ed1a90a492a629ee0e671f51b459fb563b681648ac0
DIST async_unix-112.01.00.tar.gz 154873 SHA256 6a4fbfaee2281f569fa7f2a54fe1fa445de97bbe45bc2db9b0894286e61996e6 SHA512 67c2d82eed75c011e99b93ea0c183cad8ebc39d184efb01088978c2b821771369ce491b16c94050594965c1650e125273a1df9e584760ce0363e6ae0589b2962 WHIRLPOOL 40b9ffc83d376a77461a2cdf0a8d463890d74a9f00905420cbf718d92285c6bdbb180fba7c41128fa87232fe2f7fde0345b82440b85884a68126bb4a596a2df3
DIST async_unix-112.06.00.tar.gz 156275 SHA256 f0040c67273609ce3bae683b5c7813d339e7c208c164a23a8a61070b29fe7a3b SHA512 5eb5744bb48864349dae18c4b6383899d418fd6b3f608e446ceaad2176e4af6b0c177dacb33a2616d70dca282982b6be5a42e196f56f53cc1800e9e89c730c56 WHIRLPOOL e66461dd7d53987a39272d42d0f3aab7cdf2ddbd2182baf7b2201ba3245fe92802505ccbafe8b6510bbd0bb1684e1b6c1d21f7c5aff21dc5ff554e536def12a9
DIST async_unix-112.17.00.tar.gz 158831 SHA256 45ef956f6d16190c50c78a6475b31289d6101f0c6bc67926fcd1d900eac373cb SHA512 b4c17418b2eb56c5ba7a56ec455c18656616f6dfc6d2b6b62e6b34dcd0670e5954d302c1568a8de72c55925e6b9699fe1865f5be4b6210b9091d81f03c9e0527 WHIRLPOOL ecbe09529171a991e09d08a76c8c4546ef3bd0ca4bac2eda243b38426e135c0a08c208e9ddd2676ecbbff2229f5130d963a9b9939ace4f2319cb830145969767

@ -1,36 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_unix/async_unix-110.01.00.ebuild,v 1.1 2014/02/13 15:48:51 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (unix)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/herelib-109.15.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/core-${PV}:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/fieldslib-109.20.00:=
dev-ml/pa_test:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -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/dev-ml/async_unix/async_unix-111.28.00.ebuild,v 1.2 2014/11/28 18:03:00 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (unix)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/herelib-109.15.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/core-${PV}:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/fieldslib-109.20.00:=
dev-ml/pa_test:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -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/dev-ml/async_unix/async_unix-112.06.00.ebuild,v 1.1 2014/12/22 10:09:16 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (unix)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-lang/ocaml-4.00.0:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/herelib-109.15.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/core-${PV}:=
>=dev-ml/async_kernel-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/fieldslib-109.20.00:=
dev-ml/pa_test:=
dev-ml/camlp4:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -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-ml/async_unix/async_unix-112.01.00.ebuild,v 1.1 2014/12/01 14:05:59 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/async_unix/async_unix-112.17.00.ebuild,v 1.1 2015/02/20 17:42:55 aballier Exp $
EAPI="5"
@ -11,8 +11,7 @@ inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Jane Street Capital's asynchronous execution library (unix)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"

@ -1,2 +1,3 @@
DIST bin_prot-112.06.00.tar.gz 91752 SHA256 8f5650995f61e57aac9f78ee964766827ae89b56f749cbd5e91aae7fd60bdecf SHA512 195574a29ab54359dfa621fc73f4788b41e2ad345ccf07781520101b476561680a9d7d7ced81d6ba5461b05265e5f763c3bce8f506bf88119a9d298a08ce70fb WHIRLPOOL d556e6c7bc9ca538ddff54833a9630bc64951571e37ab24bbb8e3351fe516ed97c72b108a56b87e113af30f886fc95cf7bce202a634f42a2b7789008202dcc42
DIST bin_prot-112.06.01.tar.gz 91768 SHA256 d10b9d33e67c20b86a9dccc4c721b61cd864a70c466d774892f8ca4d3a51f3d4 SHA512 7861cceb32f2aebdccb7c9ec214518630c59b77412c4612f1b6781e0c8777917a706cb445b6cce9f2d83098c029eea4e4019a903271b41ad89ad75762145d233 WHIRLPOOL b018bc8036beb5eee485065b66033c44479999a72ec4dde9810ef0d08ba36b223e785cb2273159221ff37eb35a65b7b08d8142d00465dc3c606ccd1d165f3f39
DIST bin_prot-112.17.00.tar.gz 94952 SHA256 cd09c9eb5c347dea2f58cc0986ff87f5f575b5b6a8365d0ec97391c7d90f5395 SHA512 e2e9b24e4fd7169024adb00c76ad6580c8fef9985e1447f94d89b374b46e79d51c4849412991a81b711d08f48b076d33a296a86aacb045bac46fcb4d2a9fcd8b WHIRLPOOL fb707a65a661cb665310163824778942d831ad003453647a4f5dea72a895faa74b2ec7e362940ca45065a9a3f7cb9bf11913474161c47e59f80b650683c5a1db

@ -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-ml/bin-prot/bin-prot-112.17.00.ebuild,v 1.1 2015/02/20 17:14:27 aballier Exp $
EAPI=5
OASIS_BUILD_TESTS=1
OASIS_BUILD_DOCS=1
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="A binary protocol generator"
HOMEPAGE="http://ocaml.janestreet.com/?q=node/13"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="doc"
RDEPEND=">=dev-ml/type-conv-109.28.00:=
dev-ml/camlp4:="
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.2 )"
DOCS=( "README.md" "CHANGES.md" )
S="${WORKDIR}/${MY_P}"

@ -6,3 +6,4 @@ DIST core-111.28.00.tar.gz 744936 SHA256 db8b34f00803890bd68f5c30de009e2eb6ff5fb
DIST core-112.01.01.tar.gz 745501 SHA256 99dab4e41cbd92d7da7ca3056ffaf80e56765012562807fe6473f98ccd745df5 SHA512 8a1569a866f65a3daebe8c76ff85d750400cbd841ea5e3e2b05ba580499b813fd04c7bf1e297418f32049b548a6e2f117dc8fdbd545e6f579d13a399282f2851 WHIRLPOOL 57b0902b0a5af35ae2a1ad0d2310d34ab5b3b6221f2b1dc8b1ed4962ff8218e0a4d99d48ebf6d566344d73d74d790ce10e2aeedac57c2972b40e19b28910051a
DIST core-112.06.01.tar.gz 757672 SHA256 99cf0a1b42cdb1937ea4ca6b45d2c07da55d541f4a4b643333c943608ec4f474 SHA512 1b0135e605e25b36173d418b02e4a161283e216b55b7653523ee6dca19ccbc7f4b735c7fd7165d9b2f3d5e878b21d840cb7c62e36d1af909c78c4889dd9961c2 WHIRLPOOL 38c2e0e6d2be92514800832b4e5b833e508bdc2514b24cafcbb4a7eb7a08a64bb9fdee1c73e1916fc9e62a14d38cf7e8fec6246f2e1ea447a41ba9b980563e38
DIST core-112.06.02.tar.gz 757147 SHA256 1a0fea7bcf0fad1281d1e8b7b3d089744942f71f66df0b1700ff5e966ad43e5f SHA512 fd20cdec21aa0d0de631fdd20ac2ba2f1b3a1288e24e917cc52a71876e7001ff9909ed1c2ed3c30118f011ca448dcefd68776de908c3181323a3640be1fe6561 WHIRLPOOL 0ca4f8d29c93d020079c9b6a13d633dc03c390acf75368473489350c8ff16783a9275f8312bfb35da8960fe95a30be5267a4145058b88577ea2404f65dfaaaa0
DIST core-112.17.00.tar.gz 755485 SHA256 61879c6401a1fd3ebda308584d7e8650fd8f9d745677cba5eb5a5fc16dd9c4a4 SHA512 6964c0310efec64cdfc17c5d77f562dda0280b4fba8eff9c9b8b1697d011f981263fec3748f0a3820b0b8e13690440eff08e52084e090f35593dd37761479258 WHIRLPOOL af290471b327f3434ac4b0e2fd9fae23eae0af984bc179993cacb8af46e0b51cf8fefaa00a1257df2055e37763eb9815a35ad4ea037579283f2fda1ce7c58ca1

@ -1,18 +1,18 @@
# 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-ml/core_extended/core_extended-112.01.00.ebuild,v 1.1 2014/12/01 14:00:07 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core/core-112.17.00.ebuild,v 1.1 2015/02/20 17:20:34 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
inherit eutils oasis
MY_P=${P/_/\~}
DESCRIPTION="Jane Street's alternative to the standard library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
@ -20,19 +20,21 @@ KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core-${PV}:=
>=dev-ml/core_kernel-109.35.00:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/variantslib-109.15.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/custom_printf-109.27.00:=
>=dev-ml/herelib-109.35.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/textutils-109.35.00:=
dev-ml/pa_test:=
dev-ml/re2:=
dev-ml/custom_printf:=
dev-ml/pa_bench:=
dev-ml/pa_test:=
dev-ml/enumerate:=
dev-ml/camlp4:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.0 )"
test? ( >=dev-ml/ounit-1.1.2 )"
DOCS=( "README.md" )

@ -1,3 +1 @@
DIST core_bench-109.58.01.tar.gz 74723 SHA256 5b09de20564d4d0f74db840a8255bdcfa109f848d3a757f450a5f821aac526dc SHA512 2ae9aade77c105e928d2bbf6431df73a4e71520e9c50a5777d015617923ae6fa1b901165725000a55aae8aea80e4431229fa752400b6cfcdea102ad75ff6707d WHIRLPOOL 31640d215325952d5e0e7ecb39df22243bfeb3a6f8f6b15a239c437f0febf659e82393ef176d21fd4d8b0de0f016bb953bf9ac1197c695396fe50aaae0d74b4e
DIST core_bench-112.01.00.tar.gz 77474 SHA256 5074dfc5d116f668c711578324327a34b84345f5d6bc6f248c33143e5d25b9b6 SHA512 4fb95cab246ff986c0cb899d12c9d3d95347d9ea0ad78642c75c7b656253344b99a3dd33f35b095d34d0b702ce02f11da71f0b28d62c98fa01b963737d97c87a WHIRLPOOL ca57228158086ea9d4ae56d64cfdf71d1b40273d13ccd7d74926a9bebf689eef7033ad1cc5cbec021b370b469fc2c3ae0d26996e92d96611be773d636566f3c2
DIST core_bench-112.06.00.tar.gz 78174 SHA256 59199f14eafd9da7dd433f94b38a5940ab947204ff6bf610223187af426e6904 SHA512 3d02ebdca3331bd511db17a0f82f1918c1ba092b5d4dfcb1c5133f6a3f93ae373be8a31888c4e26106dc39eee41956fe26ee788fa96cf3df31b034216b35e691 WHIRLPOOL b0839be9eea79d461363055a67af7f911c571129e5698a93027955a2030a5053d0edf60a2cfee06ce47ce5cfb3666107a3a1987a68118e275eb8653d741d3696
DIST core_bench-112.17.00.tar.gz 78211 SHA256 d1f4789203964199d7b0623962e2dc44d1c582457b51f53145944fa31e468906 SHA512 fec5cb3e48a2067e5d395809bfa49ee1ecb923641092d0da040642f3ff364864ea307b23b407f5f5288b8fdc0fc5f406d4228403376d669af021a01410bf1ada WHIRLPOOL 03987a4833f5b85b34cc53ca5e2ca744988ca6c2a1ee7553c641227cfc5f683f3b0a7b84e8a40f18c286aa8c167981945235e0bd06969de914f4be3dfad7cb8b

@ -1,28 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_bench/core_bench-109.58.01.ebuild,v 1.2 2014/11/28 18:07:13 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Micro-benchmarking library for OCaml"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
dev-ml/textutils:=
dev-ml/pa_ounit:=
dev-ml/core:=
dev-ml/fieldslib:=
dev-ml/comparelib:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
"
DEPEND="${RDEPEND}"
DOCS=( README.md )

@ -1,29 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_bench/core_bench-112.01.00.ebuild,v 1.1 2014/12/01 13:52:05 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Micro-benchmarking library for OCaml"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
dev-ml/sexplib:=
dev-ml/textutils:=
dev-ml/pa_ounit:=
dev-ml/core:=
dev-ml/fieldslib:=
dev-ml/comparelib:=
dev-ml/camlp4:=
"
DEPEND="${RDEPEND}"
DOCS=( README.md )

@ -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-ml/core_bench/core_bench-112.06.00.ebuild,v 1.1 2014/12/22 10:04:48 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_bench/core_bench-112.17.00.ebuild,v 1.1 2015/02/20 17:23:17 aballier Exp $
EAPI="5"
@ -8,7 +8,7 @@ inherit oasis
DESCRIPTION="Micro-benchmarking library for OCaml"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"

@ -1,7 +1 @@
DIST core_extended-109.35.00.tar.gz 275016 SHA256 d6f825cdbca34d225b6884c7163041f54d8f46cd68b86ea76b7bb7fe13a5ba33 SHA512 79899413fef83afd1ae92e18bafb43f5953abbad43a3aefa78aa0862ef7124177f5c3b0744b78181f6575530028138c28023ed9d4da234e0bc50063c642f8fa1 WHIRLPOOL b8a09f24b4cbd499fc5a64548afd28b5567c1af02e6f346eeef112e41f10a32ecf1ff1bcfc8df78ebe186174758fb83630adbadc6e6a61fde58d287590f7e8ea
DIST core_extended-109.36.00.tar.gz 280952 SHA256 f8093add72e6c77a3b51687bc2aa606470013496f55df87e40622576c337b1b5 SHA512 cd697dfdf3cc1a57c3ed94f842cdc409f253b16243b0bc5a9cb533ab56ed7fe0efd8ba900550ec4b71b0d654be957e87474ce46de5cd496ec2256a1c04786f4b WHIRLPOOL 842da7bd51de88f155856ebed09785609987bd888b2358baf069f6a4894631ff533b9eaf30491db13c8e9b3b1457114550a4f1bf3055dbd7763e16aacf8d230c
DIST core_extended-109.58.00.tar.gz 285701 SHA256 2eb849ca15add17722085366900b1499fa82d1b4d11d721cdcf5efa8a8a1c998 SHA512 1dbc87ce53117890674c12c72812ea017b5541e6da671d0afc357418e50798b9695b99fe1337aff5850feaef995f80468ef9e2b2b191aa5ee6812d602de097f8 WHIRLPOOL 6a48a00484121c635cd0f3786c56a83725a2853f35ee1e44fe5b318a4fc9e508c0ef41a808e964dab12d0ede2d10a3a39ad8047ed021b351c590df1e33c946c5
DIST core_extended-110.01.00.tar.gz 285336 SHA256 97b00b1f606b32ef1ca8ff40fff711a48b34aff1c5bc0ed5970bafb4b14f0acd SHA512 83ed6c212fde5a3801003b25989ca0b2b76cfea044757d4722c3e283655875a8b2e983e2e1f7116911917d2132825636b93c4ec704caee24c8984a95d007b06c WHIRLPOOL 51cac1538dd2e4284c9b7a80c1a5308ac0c5a6486e7ec2294fa7668d98a0bab24f4410cc36e9a44c917a01600f10218f1c78c1ffaa688faf44c84f923976c82b
DIST core_extended-111.28.00.tar.gz 284756 SHA256 79d4d1c6a818311be19ab74cbb61a2a8d32c1defe6c2b13fddae0066f07fcf5d SHA512 4779ec5924d400fe870150132e5365bbedc1218eae1cb4cf4e4017775839b8a7bbe16030f10422db753a61ae7d3acf4879d4ec2427761eead182444c5af4a165 WHIRLPOOL e32d75f09fbe6d50bfedc0d0fa7cba3fc337cac9ffed9bf33fcdc63a71b63c4779b819feb624471f01846d7fdbf01fcf8b9b7c1690db932a2f6ef5dcff9bf124
DIST core_extended-112.01.00.tar.gz 288551 SHA256 9ed2ed5c84b80933015ef4ce45cbad990179c5effa0728c233adb6f3378439c7 SHA512 735af331721573fa898012232d891e4c07ac38c676f286060568a0714ec99d412bcf3c9c2b3e902aab98c26cdba21d5259de79a5acd5d7aeb177b82498000acb WHIRLPOOL 95ed7bc382579723a2c88c6117dcc7b8546acc305981309b3da92a79309d02573c8331345b58ef2fa57a4ceaa3c698e4ccfc56965312ccf700f6265e6bd17aa0
DIST core_extended-112.06.00.tar.gz 291779 SHA256 347c2c61de2b9eca9ca23b8341b8197058209164d97904f3c9ec0e2cbf50c26d SHA512 ea8e4eefa6c504f55cfd6d381ebe5c3c87986ef783dbe12f0beaa4c40d6ab06173bfa6e6dba030582588379971b299a90cfa9e1e2fccbff0b3924e2fb5f631a1 WHIRLPOOL e6d550a19d6f40bae46bd25323f174d213d669a65fbb127cbb482c899116775ec4ad4fe09bf9426ebd5d1bf576e78eee31f92582813f44bb091baf5b66e7631e
DIST core_extended-112.17.00.tar.gz 285815 SHA256 a60d2f2654a7d5b70b92059800addf1d593d2ac4bfea823143ff507a9615dde6 SHA512 8636ed21bf5377cc0e0aa036f988a34c3094a091ab6361e2d5d74ca0f75187bdcc19499b8323ee30969df950a2de1df4172e9f1e2bb2d6846c7d15fbcb830f5f WHIRLPOOL 16890fd8ff34fa60ba2888b72b0d6cdd7179347a959efa3483185bc77917a41048b5eeceb28373e876603166eec7e033755e3f7fb4e1c1b409967efc78ed9277

@ -1,35 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_extended/core_extended-109.35.00.ebuild,v 1.1 2013/08/01 14:52:28 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Jane Street's alternative to the standard library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-ml/pcre-ocaml:=
dev-ml/res:=
>=dev-ml/core-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/custom_printf-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/textutils-109.35.00:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.0 )"

@ -1,35 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_extended/core_extended-109.36.00.ebuild,v 1.1 2013/08/19 15:42:51 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Jane Street's alternative to the standard library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-ml/pcre-ocaml:=
dev-ml/res:=
>=dev-ml/core-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/custom_printf-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/textutils-109.35.00:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.0 )"

@ -1,36 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_extended/core_extended-109.58.00.ebuild,v 1.1 2014/01/19 16:39:24 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Jane Street's alternative to the standard library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/custom_printf-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/textutils-109.35.00:=
dev-ml/pa_test:=
dev-ml/re2:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.0 )"

@ -1,36 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_extended/core_extended-110.01.00.ebuild,v 1.1 2014/02/13 15:57:31 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Jane Street's alternative to the standard library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/custom_printf-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/textutils-109.35.00:=
dev-ml/pa_test:=
dev-ml/re2:=
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.0 )"

@ -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-ml/core_extended/core_extended-111.28.00.ebuild,v 1.2 2014/11/28 18:06:39 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Jane Street's alternative to the standard library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core-${PV}:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/bin-prot-109.15.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/custom_printf-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/textutils-109.35.00:=
dev-ml/pa_test:=
dev-ml/re2:=
dev-ml/pa_bench:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
"
DEPEND="${RDEPEND}
test? ( >=dev-ml/ounit-1.1.0 )"

@ -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-ml/core_extended/core_extended-112.06.00.ebuild,v 1.1 2014/12/22 10:03:46 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/core_extended/core_extended-112.17.00.ebuild,v 1.1 2015/02/20 17:28:26 aballier Exp $
EAPI="5"
@ -11,8 +11,7 @@ inherit oasis
DESCRIPTION="Jane Street's alternative to the standard library"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"

@ -1 +1,2 @@
DIST core_kernel-112.06.02.tar.gz 452217 SHA256 edb53c71dac1744e4d79c98bb4defc9703b22bc6ed3db6f5efc527ec91febac8 SHA512 36bddbebe943fea14f7e40c55939ee2004aa1b8d28efdea89c29808af5940553c2ea252e21a9c2a6bbb5c7210e24c3d320f67737ac988e6844d1cc4a4d6eeb87 WHIRLPOOL b75d7d165c43af0a8024275583b0dc9d40ce43528f36b9a3896fad5df131afa31b066d6cd78416f84468af60950c2cd7f0713c57a7b11afc6fc559376e5f5545
DIST core_kernel-112.17.00.tar.gz 458291 SHA256 18aa416e917e84c368f25ecb2e5e11c92e411310476db5ea67fd3352d5ef469c SHA512 6f586dec373d57ff9bc04be1fbaf265c4740a12dffd99ca3909a23056874f402e19ec61f30879f247c44715ccdbbfb1cc8d496256fd512ba78909b956a2ee1a7 WHIRLPOOL 940522269f21380fbd8b3c14151427ce82301f74df16f5499584d85d31dc96e9f6f7f3563a2471c598d0aa601e8678b3a33cdcc524c18c776b0571990162dffb

@ -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/dev-ml/core_kernel/core_kernel-112.17.00.ebuild,v 1.1 2015/02/20 17:15:35 aballier Exp $
EAPI="5"
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="System-independent part of Core"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/bin-prot-112.17.00:=
>=dev-ml/comparelib-109.27.00:=
>=dev-ml/fieldslib-109.20.00:=
>=dev-ml/herelib-109.35.00:=
>=dev-ml/pa_ounit-109.27.00:=
>=dev-ml/pipebang-109.15.00:=
>=dev-ml/sexplib-109.20.00:=
>=dev-ml/variantslib-109.15.00:=
dev-ml/pa_test:=
dev-ml/enumerate:=
dev-ml/pa_bench:=
>=dev-ml/typerep-111.17:=
dev-ml/camlp4:=
!dev-ml/zero
"
DEPEND="${RDEPEND}
test? (
dev-ml/pa_ounit
>=dev-ml/core-109.60.00
)"
DOCS=( "README.md" )

@ -1,5 +1 @@
DIST custom_printf-109.27.00.tar.gz 47893 SHA256 3589effb015fceaab943bf7074493232d33f0eed3b4ad5500f10b6014f2dcda5 SHA512 7a4cd650ee94b5c1ed1e68da54dcb5ddee56d7a8fb05a9fc660ed0bd616d88427e47fe4d7a98d95c9e58707376834b687f1ed0feecd1655228885bb1a3ccf7cd WHIRLPOOL 4819d845385a58f0210e896cc63fd1c3549cbfc15cf803120e996b1dff2739fffb5e9805d9183f1cc3ee306cdb098f014568bf8b1e781de20e41bb45cbb000cd
DIST custom_printf-109.60.00.tar.gz 50974 SHA256 223d145eeb15ae78f053b80e967f318035a0754d0edcff98ec9b87f4bece6bca SHA512 620608020787c21b212183bef72b60ec795841597a18a248c37b6d8e239b5c53ca39a1209a040acdb6b77b2593bf3d07aa0c04bcf06ac733a6aa2ffd5da0afee WHIRLPOOL fc7348c34fed4f83d0809750c385a9b3a45b778699dacb1745863e6783343fecb6f07e9e6c64dd494bfb908af41e5fa44b85f2d4571860b917f8555e8a61de55
DIST custom_printf-111.25.00.tar.gz 54799 SHA256 c6aac54bd5653a66aca3a5f475bb852b007b39091227e9aef54401f758e5d068 SHA512 a053f24b5d319425318765003bbfd136717284d1b582d468dd69b5c7e18dd3b69fc43f7df00894e61a6639031a92eaa34b5573eabb722e8924efd891b288c020 WHIRLPOOL 83ac74715426aff0e453eea2b62f0e4a67c1cb477540057ef0eada7372f56a7471f7668b033241d50937a7dd11821abe5f1beb528ca02158ea36d3fb3327356a
DIST custom_printf-112.01.00.tar.gz 55027 SHA256 f2419250a63bec8e7da89cde49c8f81f24dda4b601be118ecc460548803bed42 SHA512 409881fd09d5302952ee8ad7013383d34a338cbd019f6d353708fb3fdfaafdad445680562a0ec1d642709e82a1a65cd88895c4efc5dc33b2fa4050c2c25d2587 WHIRLPOOL 1b47dbc00d244e6e63955d890dea239acbf771689b49785680a57305b79d2a87d1f03c247d49ee8576d3c511e2e71cc3dca12ad522263d9bbca073c59d589eff
DIST custom_printf-112.06.00.tar.gz 55535 SHA256 9c6788ea8d9b1b839cbded4b321b5066ce1dd7f4e1ac6ba25aeed2fab178382d SHA512 78248196a979e4ab0b7cad87d59fcb6674caee958444124c1f6749db7817b22d40adef5edc6c14cb0fcda3856622c07bdab5c07e5af96e732884cbe8995c6679 WHIRLPOOL c738ad540295c13724cc23644a588016ff20ce34971e3ef99483549d5aa630d54d865a2385187ddc1dc970f02f1fd299417322c8f43a5dd6d6ed46b63738c3e1
DIST custom_printf-112.17.00.tar.gz 55881 SHA256 e1ea8c8ab9f4e3fe1f38b42bde039be0da6be645ab889aeb8b04991c38132f0e SHA512 607592dc4869e8193eaaf3b6662fbf45e5515b887c6377c64a89a566ce56d9d30d6c4a75c2b9b3982bcd27ee520b8a19b2d039f32dd8ad0fd876770aa3a03fb7 WHIRLPOOL 39d05293c928cae3825484c81cc555ad6ee7c9f69da5417e1cc81a3eaabd8fe223fdbf0fcd508049bc15685591e5966848d4894fdffed981fa509a55e1d2e5ca

@ -1,20 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/custom_printf/custom_printf-109.27.00.ebuild,v 1.1 2013/06/10 12:58:10 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Syntax extension for printf format strings"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-ml/type-conv-109.20.00:="
RDEPEND="${DEPEND}"

@ -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-ml/custom_printf/custom_printf-109.60.00.ebuild,v 1.2 2014/10/24 07:30:15 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Syntax extension for printf format strings"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
>=dev-ml/type-conv-109.20.00:=
dev-ml/sexplib:=
dev-ml/pa_ounit:=
"
RDEPEND="${DEPEND}"

@ -1,25 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/custom_printf/custom_printf-111.25.00.ebuild,v 1.2 2014/11/28 17:54:07 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Syntax extension for printf format strings"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
>=dev-ml/type-conv-109.20.00:=
dev-ml/sexplib:=
dev-ml/pa_ounit:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
"
RDEPEND="${DEPEND}"

@ -1,25 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/custom_printf/custom_printf-112.01.00.ebuild,v 1.1 2014/12/01 13:38:21 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Syntax extension for printf format strings"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
>=dev-ml/type-conv-109.20.00:=
dev-ml/sexplib:=
dev-ml/pa_ounit:=
dev-ml/camlp4:=
"
RDEPEND="${DEPEND}"

@ -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-ml/custom_printf/custom_printf-112.06.00.ebuild,v 1.1 2014/12/22 09:46:36 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/custom_printf/custom_printf-112.17.00.ebuild,v 1.1 2015/02/20 17:07:48 aballier Exp $
EAPI="5"
@ -8,8 +8,7 @@ inherit oasis
DESCRIPTION="Syntax extension for printf format strings"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"

@ -1 +1,2 @@
DIST ocaml-ipaddr-2.5.0.tar.gz 62338 SHA256 2724acccc92885cbb7adeffd0c5bb4350a0eb2334ec92181e0ed172d7fa7fa7e SHA512 acf2f80d2f5d97787784bb96188d0af69138b69257ec404890e543dcd610554038dd2b069069a1e0cd4ab803e6659e4a908964cd8ae5aadb93403b9638c1320f WHIRLPOOL b1161adeabd4676a4f7e789a5ff6c7809794a2907280f4d5efeb284242181d5a15e8613345513687cb54edf03859e23899752c198fcd37adfc44b983a795c0df
DIST ocaml-ipaddr-2.6.1.tar.gz 64458 SHA256 7051013d8f58abff433187d70cd7ddd7a6b49a6fbe6cad1893f571f65b8ed3d0 SHA512 a22382b5118caf0a29322e52d40523cbf52edd21d477c2e4581a5f70441b71f948b75ff7d55a7cf6c32f0e68c430c3aff59a05d9514b29e858ff78f4c649c4c6 WHIRLPOOL 418a3bcbef9a1198962bd5d09381756520eaced7e86f8ba204810b786187cfb6e020019da331d85e11d510fa744802c66d52a450fb31a9ff8a418004ff1d4cbe

@ -0,0 +1,23 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-ipaddr/ocaml-ipaddr-2.6.1.ebuild,v 1.1 2015/02/20 17:50:30 aballier Exp $
EAPI=5
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="OCaml library for manipulation of IP (and MAC) address representations"
HOMEPAGE="https://github.com/mirage/ocaml-ipaddr"
SRC_URI="https://github.com/mirage/ocaml-ipaddr/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="dev-ml/sexplib:="
RDEPEND="${DEPEND}"
DOCS=( CHANGES README.md )

@ -1,4 +1 @@
DIST pa_ounit-109.34.00.tar.gz 51282 SHA256 700078948bd8e9388bb4e1ab5b357e250f484da984ea9b901fc4b76ae0e8f581 SHA512 5d3af627c49e00b1a2275dc5083ad9d393fd9bdd553807f3b6ecd5ecd085e26c6d993d4d1c470d3421a0a9674396afe2585861c30bc0e862730ec341fb269208 WHIRLPOOL 736e521583916e6ca5937f4486647dc95e8441121c446d673eaa5471987f87a1e79177f9279ad1c27a91acd9ffa10030fd5136c5c07069f9c3ebc82028545201
DIST pa_ounit-109.36.00.tar.gz 51228 SHA256 20779d41f1e18b4981ddc2391565480dcb6b2cb6dc87c80fe02b17661c463e95 SHA512 107c79388d948a38a79405d7cb67d556120ff6a3f4667ddd01cb16da24b67db04b431f3345166627af3cabe11156ea52b6a5842e813a193fc99f5b0e6bbcfb3d WHIRLPOOL ac2e828163ba8f6f9effcf8f9d2d1bce33dd34f11def525003de766a1293f031c7b240964ccb0cab578b34edfebe60240a8918189fda471aea2ae35636bb34b2
DIST pa_ounit-109.53.02.tar.gz 54573 SHA256 cc990c97b034fb9045dc7db5bb5187b16dbe9d323649d7beab153f988bd67421 SHA512 99e0e2d8250148266ea290ae0cfbc0f3c7918f811b4bafa1321b0cebc58628b081ca01c7d52e463b4ab03e9b7cfe744fed777354f09aa0fcc2b1482582fbcc5a WHIRLPOOL 2b4e86bcf4baa3655524788d4e4aba6880e9316adf349e7f60956107352fc2374273feb9339a8270f52b52ff67d97ce774f108fa9227f0eafd6b84bffc6f8303
DIST pa_ounit-111.28.00.tar.gz 56799 SHA256 9336d0a0731e4c29de41a6a595fc0c2a753bda69d75927657f15bebc8372652d SHA512 8e82b0e8db4baf709276578a8c1c3d300631f0d8db11fe51752d5843b1380b67c15731b4b253da29aa49131d741dda7eb0499e6573e64d004bc3afee6503c2ea WHIRLPOOL d88edf3e7d40cb0bdb519922252d99ffcfcc116201043b50fd58507fed161115eb1d01a8fbe470d45402f645c85d2ad0a32e3b088d383bb4bd44dba7219f1c98
DIST pa_ounit-112.17.00.tar.gz 57314 SHA256 469b67553074e4dfc153eb58fe352c287b1e93b3f38145d512530875efdac612 SHA512 9f96e9fffc5e92fae0df4a8f80ec2b86c41464a6227e1adb3485ae73538be67635e76267b8c56f25d9d6c201b740f23b6f0651c08f21b0c67508131d966f9025 WHIRLPOOL 4c7dc1d758ba66246dff766e21ca5854386c9c73b34725282fbd77e3ab5a433065703479cbb8afd8b95b6d132ddc383f2bd393796e8b4ff0d5816821449e766d

@ -1,22 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_ounit/pa_ounit-109.34.00.ebuild,v 1.1 2013/07/22 01:40:42 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Syntax extension that helps writing in-line test in ocaml"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-ml/ounit-1.1.1:="
RDEPEND="${DEPEND}"
DOCS=( "readme.md" )

@ -1,22 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_ounit/pa_ounit-109.36.00.ebuild,v 1.1 2013/08/19 15:31:55 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Syntax extension that helps writing in-line test in ocaml"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-ml/ounit-1.1.1:="
RDEPEND="${DEPEND}"
DOCS=( "readme.md" )

@ -1,22 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_ounit/pa_ounit-109.53.02.ebuild,v 1.1 2014/01/19 15:42:49 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Syntax extension that helps writing in-line test in ocaml"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-ml/ounit-1.1.1:="
RDEPEND="${DEPEND}"
DOCS=( "readme.md" )

@ -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-ml/pa_ounit/pa_ounit-111.28.00.ebuild,v 1.2 2014/11/28 17:43:22 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pa_ounit/pa_ounit-112.17.00.ebuild,v 1.2 2015/02/20 15:40:16 aballier Exp $
EAPI="5"
@ -8,8 +8,7 @@ inherit oasis
DESCRIPTION="Syntax extension that helps writing in-line test in ocaml"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
@ -17,7 +16,7 @@ KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-ml/ounit-1.1.1:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )"
dev-ml/camlp4:="
RDEPEND="${DEPEND}"
DOCS=( "readme.md" )

@ -1,5 +1 @@
DIST sexplib-109.20.00.tar.gz 115211 SHA256 8d8d20809a70193ee5ef34da90cc86b7f3c119a176f5d7d2f057897ad9042ec9 SHA512 222b2efd1a694262a1e722e5938e795feff12095c7fadc8d7bacffefdda55d904c695efd3bfa5fbbb1cf52084184803be1c8ec5da2fbf2d4ce2ffd92c721d48c WHIRLPOOL 3eb4e91fb74b032947a66dca1ad00fe94c8f4872ecbdc563f6fffe47106559f4ea19a0f2993423228fd94a609a254cc2c0eeb2d1da0376e14c30a138ca08907b
DIST sexplib-109.60.00.tar.gz 130817 SHA256 d71707ed0d5c89328942706ee10d4c76e6a4d955e17aa8fa892e963db11b3425 SHA512 2140342052bf104f710c3208f76051745e3a5f44ea954503d3f1cdb915788bb67cd767a1f6d92249187bbf7dd9eb6486b99d41660664569f365fd622997c8211 WHIRLPOOL ca2f46851090188c892772193eda8ae9143039c72a9a25b210fddef5e7ed6fe4a97d812b4d16168f92c3590b75c994d71100e51e27bb1e9c95920011c04bb164
DIST sexplib-110.01.00.tar.gz 131120 SHA256 5aa6dd5d81b2289fa86f8c13705daf017282230c5cc7f813855082a0c7465927 SHA512 657b7f575438e69e78f15a860d1860c4f7a377288299b16c89d7f603de9aedf23db4e45c7f11fa0a4795f42d54a5653c27eaf21166dcae6d7c562a528a23cd59 WHIRLPOOL 009e765b744bcf6edd07be62c2fff47066b89bba80568217d3c68ecc92b696ec4a5dce70d4088ae863d637288b31577a5dca8eaf311eb4aae0ef36da9ea566d1
DIST sexplib-112.01.00.tar.gz 134716 SHA256 91501bfdffb7fc3b71fc96a1a3c3ccda1d56cb249b09ba6054e343900ff5c6f3 SHA512 44816b888abd4313aeb2d4e33465dafa9dbd5aa5bc77031fa8ce84e663212d7fa807bb67a011f067ae35f725dd75b63569c79ada01bd97fe5837648fc0f5348a WHIRLPOOL 4c910d7379fc990b534bcd4f5f97f7fc742c4bb7608d5e939fad5b880b2854e15aa4aee5c9430d29b10ef1d82f7eab7931f7e46d0d7f1dadf48a49ea44ddbcda
DIST sexplib-112.06.00.tar.gz 134975 SHA256 bafdf32d5f6ac99b0ccb84a7effbc78c72ba5d223616dd9d314b701a618034b0 SHA512 984df7acabef3d11b70af0638514d372682f11d6f9154c350551d3355af6d2752c8d42f2ecb917f159ad04f6f6b3b44f62b12521e42bc9daf38b0158442777a9 WHIRLPOOL 8d0d72cb7dc314fe1a3910882d34ed6a13be09e77b572ff0df2475bb87c0e5815d62a2bcf94511d5440244a35d1a131978a876d6905cf04f477ce03901dbbbb3
DIST sexplib-112.17.00.tar.gz 136611 SHA256 fb99512e850d9ceb8cc0214268786e42e6211a8bfb65765241988405b21447c8 SHA512 8f651fc4ff7964082deac05d7617a16f9f0740b2d66e4c22dc51254598b20f8eddf8110b42298e8a2506f4ca3111c14fa7942677bd1e6b56d93153bdb2b1660f WHIRLPOOL e520223d796dc92c9d030e78b2c9c2386c6ee1812ca327cec0df3b38c333a2b7d93fe43114dc1c999cda3c608e4ebd650fd37d5b793745e05e28228d19896009

@ -1,25 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-109.20.00.ebuild,v 1.1 2013/05/24 15:14:33 aballier Exp $
EAPI=5
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-ml/type-conv-${PV}:="
DEPEND="${RDEPEND}"
DOCS=( "README.md" "CHANGES.txt" )

@ -1,25 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-109.60.00.ebuild,v 1.1 2014/01/19 13:34:35 aballier Exp $
EAPI=5
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-ml/type-conv-${PV}:="
DEPEND="${RDEPEND}"
DOCS=( "README.md" "CHANGES.txt" )

@ -1,25 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-110.01.00.ebuild,v 1.1 2014/02/13 15:28:25 aballier Exp $
EAPI=5
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-ml/type-conv-109.60.01:="
DEPEND="${RDEPEND}"
DOCS=( "README.md" "CHANGES.txt" )

@ -1,26 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-112.01.00.ebuild,v 1.2 2014/11/28 17:42:44 aballier Exp $
EAPI=5
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-ml/type-conv-109.60.01:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )"
DEPEND="${RDEPEND}"
DOCS=( "README.md" "CHANGES.md" )

@ -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-ml/sexplib/sexplib-112.06.00.ebuild,v 1.1 2014/12/22 09:33:35 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-112.17.00.ebuild,v 1.1 2015/02/20 15:33:40 aballier Exp $
EAPI=5
@ -11,8 +11,7 @@ inherit oasis
DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions"
HOMEPAGE="http://bitbucket.org/yminsky/ocaml-core/wiki/Home"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/${PV}"

@ -1,6 +1 @@
DIST textutils-109.35.00.tar.gz 52347 SHA256 e736077be59f5fb7f0d77c57962f2221d4edbdab32b47ef77ceb03c4b5a96021 SHA512 b0b103d536988bee41bf04817044433b3ff798f411f33129142475efc38b185789660f6dca648410ec23db8a57acf2915ea9a7465663c371d962d0eff2b7f24d WHIRLPOOL 148a49ee510909fc3a9eebf2b676e3a331059778a28c37cd358fe4141432a5099e3fc182564380ebb4eeafecb03044b2325963cdf5eb0f61850c4eb61b3848c2
DIST textutils-109.36.00.tar.gz 52483 SHA256 6bb07d839b4faee34d5f39e3cfba6658efecd17cea2b667f3980ac26baee2810 SHA512 979a570ef511aec99ac3c887b85a1f176cab8a0ba1397db9f1ee27d9586fe1c207c7596fd29d97aa2dfde85342ee01dc14b42157812bba19154c959298532013 WHIRLPOOL 8b7f00d12039f552021c87de5842b454b3e307f15cca665a4cf80085e10f9ba362b5de23941a0ba2302e3b2cf2dcec996d1d71abd63afccc0d8ee63e48cb3fb9
DIST textutils-109.53.02.tar.gz 56535 SHA256 7b6627a33475b10ce93d73d5660367860ed8e2cd6967f22070db3671cc0952ef SHA512 223bc55e782d2908442832753704ee256b56270b2f7f489a3b6440efd60087342be2b8a1d36db4969358c212943a26e916bcf460a61dc8acbd73c0edeb04b3fa WHIRLPOOL 7bfb3fdc03490f4a0a4bf290d3de933f5ff96ca6c414c8edc12488669ac36edddeea660828a6b60a6d43450f6ea47cc151f7b2587418279a41aae764ea4dbf41
DIST textutils-109.53.03.tar.gz 56211 SHA256 1ac1e04d331fcdaab31ab21cf0a7367da9df076709425a661619b791cc790d62 SHA512 79accc00da9b9869f0e23d573b0e565d0a2c21f334a46f5156e92e1464a40c3bed8ed07c5c80cc3b98f921a3d7bf81c15e12267f4623f94ad09d491779819165 WHIRLPOOL 169d34414f6d273e028a2e65a700abc2eed675ec8882fc9059aeec8cda0019ed0b94c5d5c98fe7e990a43d03cedf4fe47170b60efcf540e66176ba0a6aad67c1
DIST textutils-112.01.00.tar.gz 60302 SHA256 f973583a8cd79cbcbec7dc57d5c0028f8c5107be6a4152688aa5e676d351e61b SHA512 2394903512e880992bf3012d0a16c1d5d04e2703fa351006ac166ba64b34d872769a006754ec30b96632af91580e639e4595ef07ba8dfe28da371cf38285c3cf WHIRLPOOL 8942fbdf03af565580f0340ea02dfce453793e5059b25a21b90759ff2640322fa777dd8587b407f2d279410b669d0d566c29044f7c556bb930bbbdd3c82a0582
DIST textutils-112.06.00.tar.gz 60778 SHA256 01b42c45b61175e3dcd862ed8cacca0e7857bd485980099c78ac335be8950c20 SHA512 9368257507e18b86bbd43b2049bd9be4d367f07d2d4991ca54fd55dc681de4d7a9c9bb351e1119bbca3f28096939a7276d9e856849150573c9cba1118868a38b WHIRLPOOL 0be4529f529074d3db042945fae5f1c6fe315648784e90582bd9905eabf10d91cd1e62500f7fdb3c0f7643b6fb459e2068331a96ebab00b2cf0903f54aa60b30
DIST textutils-112.17.00.tar.gz 60953 SHA256 605d9fde66dc2d777721c936aa521e17169c143efaf9ff29619a7f273a7d0052 SHA512 bc1143b3406538bb023ba82d80d8f2609312000b610809e9b37d032cf50689c38b385ce0fb6721ca6eb0d2c47d4f1db65a9569bda9b05c934c7cf61b2530539e WHIRLPOOL 96c352f8236354792da9dfb00adea51816ab62501558ece74d61d489b923e52ffb92780737ae0f5c21d3a67a12e790fdee22155713044de94148989c640ab4e0

@ -1,24 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/textutils/textutils-109.35.00.ebuild,v 1.1 2013/08/01 13:41:37 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Text output utilities"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core-109.24.00:=
>=dev-ml/pa_ounit-109.18.00:=
>=dev-ml/sexplib-109.20.00:=
"
DEPEND="${RDEPEND}"

@ -1,24 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/textutils/textutils-109.36.00.ebuild,v 1.1 2013/08/19 15:38:08 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Text output utilities"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core-109.24.00:=
>=dev-ml/pa_ounit-109.18.00:=
>=dev-ml/sexplib-109.20.00:=
"
DEPEND="${RDEPEND}"

@ -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-ml/textutils/textutils-109.53.02.ebuild,v 1.1 2014/01/19 16:31:40 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Text output utilities"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core-109.24.00:=
>=dev-ml/pa_ounit-109.18.00:=
>=dev-ml/sexplib-109.20.00:=
dev-ml/async:=
"
DEPEND="${RDEPEND}"

@ -1,25 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/textutils/textutils-109.53.03.ebuild,v 1.2 2014/11/28 18:06:01 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Text output utilities"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/core-109.24.00:=
>=dev-ml/pa_ounit-109.18.00:=
>=dev-ml/sexplib-109.20.00:=
dev-ml/async:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
"
DEPEND="${RDEPEND}"

@ -1,25 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/textutils/textutils-112.01.00.ebuild,v 1.1 2014/12/01 13:32:53 aballier Exp $
EAPI="5"
inherit oasis
DESCRIPTION="Text output utilities"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-lang/ocaml-4.02[ocamlopt?]
>=dev-ml/core-109.24.00:=
>=dev-ml/pa_ounit-109.18.00:=
>=dev-ml/sexplib-109.20.00:=
dev-ml/camlp4:=
"
DEPEND="${RDEPEND}"

@ -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-ml/textutils/textutils-112.06.00.ebuild,v 1.1 2014/12/22 09:42:36 aballier Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ml/textutils/textutils-112.17.00.ebuild,v 1.1 2015/02/20 15:22:36 aballier Exp $
EAPI="5"
@ -8,7 +8,7 @@ inherit oasis
DESCRIPTION="Text output utilities"
HOMEPAGE="https://ocaml.janestreet.com/"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}.00/individual/${P}.tar.gz"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0/${PV}"

@ -1,3 +1,4 @@
DIST typerep-109.55.02.tar.gz 140713 SHA256 dd2c473d416cc0d537aa33c1dfbd9374b93db049b709a8f88563aac8399ea014 SHA512 19e3cd88db93e42ce7a516d83b6fcec623c8ce60a4e02effc2b2221884d8c2d37d20d8f3b63da32bc1f7b9afeda6624c7043f2397579269451d2491f24088d78 WHIRLPOOL 44cb12802660345e1aaff3c0b54d2d317b8e8a9d3a1466ef3ec6940a68652e9cc0efe4b0076d5cf6e50f4cdb4f2d827cf2b1951bf4591d62fdad66625529af64
DIST typerep-111.17.00.tar.gz 140974 SHA256 588774b4edfc2805df64169b01f0c66ec5b0a27ee242a9f39da64264e8477163 SHA512 b662a16e7723dbecdadac6d21dff8935c741ac9c6a660f631c1453bd7996c7a6f5cb663353592b109d20336dc86cf0d879519401f6c7f7e2dea64d4c0b1323da WHIRLPOOL c595c426bb023cf37168ebd87a8f5ee42f1007d9ee1441192a8ade4b5ffdcf44b2673b12f1dd72f35cbe40bbb2b68284d9a3e638587dc8ca8d4954047dee0c01
DIST typerep-112.06.00.tar.gz 141443 SHA256 c26ef3e19e822a3236f88757fb518e3d98b4fb73e89d1fd94c198da7d4c0da3c SHA512 7189c206bb3deffbbd7231604d4899f16a1e8c4f18cf900cb6f0923b9f909e306fc49884b9b46c6c6777e625418e794b06a3d34d3ce0bad8380f32bb7bd59501 WHIRLPOOL bb77492c96c25e78a4ba95efd2d25767ff052c99e2d42aedaca1308c99724dc5285803cc9100e342d9abed598d2d4782748cbd718c433c98d68f2ee340e6ff52
DIST typerep-112.17.00.tar.gz 115452 SHA256 424cda508cc83ce1b8ea91bc10eb0c2f2e87c201d441c16333ffdf78a351cbb1 SHA512 c05b82414dafa0d1f750e48c81ee7f637b5fd30fda65abbfe59bdd87ef1c54657ad540dd108d34905f01fad177f35bb2e82ed5fe04754e2559925f7bc2114472 WHIRLPOOL 8eea8cae065bc89806eb5058b2d2e3ca6839e9d0832e36a2935282f2ee5cfc37f8f743a933a5c0e2ac5a3580970bd40eca18572df4fc284c1c2c85f9749cba68

@ -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-ml/typerep/typerep-112.17.00.ebuild,v 1.1 2015/02/20 15:13:26 aballier Exp $
EAPI="5"
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Library for creating runtime representation of OCaml types"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz
http://dev.gentoo.org/~aballier/distfiles/${MY_P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
>=dev-ml/type-conv-111.13:=
dev-ml/camlp4:="
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"

@ -0,0 +1 @@
DIST typerep_extended-112.17.00.tar.gz 71755 SHA256 f511d7f697d516b63584b910bf30c06367769be2a1190446ea58a4be4866f0e3 SHA512 ab1f31b95324aad47fabc19f752640d1f4a606906c47f8c98c2820233109a5a59c7094ca46c06453b4afe0befb8da1de04ea03d0b44ff0c3062d94c47c84eb40 WHIRLPOOL a57bd43d35ee7899dba27eefbe2a1ef98ebba930abf01c33fe4b0c129258ce13a7db8f4b0febdbb25d9cef3628b85e35fe2c2ac0c8c560c748f3ed37e5348f76

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

@ -0,0 +1,29 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/typerep_extended/typerep_extended-112.17.00.ebuild,v 1.1 2015/02/20 15:18:35 aballier Exp $
EAPI="5"
inherit oasis
MY_P=${PN/-/_}-${PV}
DESCRIPTION="Runtime types for OCaml (Extended)"
HOMEPAGE="http://www.janestreet.com/ocaml"
SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${MY_P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
DEPEND="
>=dev-ml/typerep-112.17.00:=
dev-ml/sexplib:=
dev-ml/bin-prot:=
dev-ml/core_kernel:=
dev-ml/camlp4:="
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
DOCS=( "CHANGES.md" )

@ -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/Encode-Detect/Encode-Detect-1.10.0-r1.ebuild,v 1.8 2014/10/09 12:35:34 zlogene Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Encode-Detect/Encode-Detect-1.10.0-r1.ebuild,v 1.9 2015/02/20 14:43:37 zlogene Exp $
EAPI=5
@ -12,7 +12,7 @@ DESCRIPTION="Encode::Detect - An Encode::Encoding subclass that detects the enco
LICENSE="MPL-1.1"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
RDEPEND=""

@ -1 +1,2 @@
DIST PPI-1.215.tar.gz 228887 SHA256 db238e84da705b952b69f25554019ce70124079a0ad43713d0638aa14ba54878 SHA512 cc6820278752d7053a6c3dad49247671ce65ff7d91838a0d8710999951427a281fa039b816cbe75bfbb8ccf1bcbc244ad234d0096d0cef0ef412cc5fb5abe79e WHIRLPOOL d26cd6c1d8d3a540201dd14cb4a8fbc6e2f4562ff071ea8dda7dc7fed7540575fb4e24b26f8226e740a2e11dbe80d706211e08387992b41c6c6f93dc8f3e27da
DIST PPI-1.220.tar.gz 245416 SHA256 1e15be50e7d95a36d351af8bf5074f6695a2c72165e586d93e616183e7602b83 SHA512 03ff865424a11cb351211dc7d57b6477848e8f354de74dc5bae214614438549f1dba6818842f6312f88fa631514abad69b0023046d56c8e8584d0b634c202694 WHIRLPOOL a8ea5f55613d1d0cd7223f12aeae5c3819121db3bb519fc000eb6f251618aa034dbff437e5d2133218a79452f8b556d469acc2b3ac62196c20616b847de228ad

@ -0,0 +1,34 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/PPI/PPI-1.220.ebuild,v 1.1 2015/02/20 14:35:22 zlogene Exp $
EAPI=5
MODULE_AUTHOR=MITHALDU
MODULE_VERSION=1.220
inherit perl-module
DESCRIPTION="Parse, Analyze and Manipulate Perl (without perl)"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
IUSE="test"
RDEPEND="
>=virtual/perl-Scalar-List-Utils-1.20
>=dev-perl/Params-Util-1.00
>=dev-perl/Clone-0.30
>=virtual/perl-Digest-MD5-2.35
dev-perl/IO-String
>=dev-perl/List-MoreUtils-0.16
>=virtual/perl-Storable-2.17"
DEPEND="${RDEPEND}
test? ( >=dev-perl/File-Remove-1.42
>=virtual/perl-Test-Simple-0.86
>=dev-perl/Test-NoWarnings-0.084
>=virtual/perl-File-Spec-0.84
dev-perl/Test-SubCalls
dev-perl/Test-Object
>=dev-perl/Class-Inspector-1.22 )"
SRC_TEST="do"

@ -1 +1,2 @@
DIST Readonly-1.03.tar.gz 13677 SHA256 53c46815dea724e29ceabb5d39471b0e6f2ebbb3cf1fe2a23d881a2855f713ea SHA512 0655a37828f70058f136218d11f9c12c91eb9f365b4e9c7c2c6e22c5ec469a1bbd8196c40c17db09a26a3260e638148570c3859541d840348b6d9ddf3890e5c1 WHIRLPOOL e512f91f438e2622cf8495d11b556a185a96a6fee51a30d04fe1ceaf08397c4f167ac7f51525ee8c796251ee2b7cc9a0f9e59a7ccc9ada4d06f37a197f7f9875
DIST Readonly-2.00.tar.gz 23673 SHA256 9bd0156e958842fdfd6c3bb27a23b47232d4737a407d81fabc4dc64b9363bf98 SHA512 293c3be4af0bee2390d5370132c17de31010443123321771dd124d3e285cd72abbdaa7b6f50a2c44102d03a5724636f2976016111efe09afd27149f6880c2bec WHIRLPOOL 3ffd3734f598c27dfa533e883b61fc597025b82cbc41c3a3dd9e3abb52c01b3d72c86401b30181fc2b8d42c8dd1063dbfeae4faf1980e52ea89683f5d0e4bf8e

@ -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/Readonly/Readonly-2.0.0.ebuild,v 1.1 2015/02/20 14:38:49 zlogene Exp $
EAPI=5
MODULE_AUTHOR=SANKO
MODULE_VERSION=2.00
inherit perl-module
DESCRIPTION="Facility for creating read-only scalars, arrays, hashes"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
IUSE=""
SRC_TEST="do"

@ -0,0 +1,29 @@
do not poke around /usr/include and /usr/lib directly as it's (1) not needed
and (2) breaks cross-compiling
patch from Chromium OS
--- a/setup.py
+++ b/setup.py
@@ -147,7 +147,6 @@ class pil_build_ext(build_ext):
add_directory(library_dirs, "/opt/local/lib")
add_directory(include_dirs, "/opt/local/include")
- add_directory(library_dirs, "/usr/local/lib")
# FIXME: check /opt/stuff directories here?
prefix = sysconfig.get_config_var("prefix")
@@ -207,13 +206,6 @@ class pil_build_ext(build_ext):
if os.path.isfile(os.path.join(tcl_dir, "tk.h")):
add_directory(include_dirs, tcl_dir)
- # standard locations
- add_directory(library_dirs, "/usr/local/lib")
- add_directory(include_dirs, "/usr/local/include")
-
- add_directory(library_dirs, "/usr/lib")
- add_directory(include_dirs, "/usr/include")
-
#
# insert new dirs *before* default libs, to avoid conflicts
# between Python PYD stub libs and real libraries

@ -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/imaging/imaging-1.1.7-r5.ebuild,v 1.2 2014/12/30 18:23:18 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/imaging/imaging-1.1.7-r5.ebuild,v 1.3 2015/02/20 18:53:55 vapier Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
@ -42,6 +42,7 @@ python_prepare_all() {
"${FILESDIR}/${P}-missing-math.patch"
"${FILESDIR}/${P}-ft-header-include.patch"
"${FILESDIR}/${P}-dont-run-multiple-viewers.patch"
"${FILESDIR}/${P}-no-host-paths.patch"
)
# Add shebangs.

@ -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/eclass/distutils-r1.eclass,v 1.112 2015/02/20 08:18:05 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.113 2015/02/20 17:57:22 mgorny Exp $
# @ECLASS: distutils-r1
# @MAINTAINER:
@ -393,7 +393,7 @@ _distutils-r1_create_setup_cfg() {
root = ${D}
_EOF_
if [[ ! ${DISTUTILS_SINGLE_IMPL} ]] && _python_want_python_exec2; then
if [[ ! ${DISTUTILS_SINGLE_IMPL} ]]; then
cat >> "${HOME}"/.pydistutils.cfg <<-_EOF_ || die
install-scripts = $(python_get_scriptdir)
_EOF_
@ -444,11 +444,7 @@ _distutils-r1_wrap_scripts() {
local bindir=${2}
local PYTHON_SCRIPTDIR
if _python_want_python_exec2; then
python_export PYTHON_SCRIPTDIR
else
PYTHON_SCRIPTDIR=${bindir}
fi
python_export PYTHON_SCRIPTDIR
local f python_files=() non_python_files=()
@ -462,7 +458,7 @@ _distutils-r1_wrap_scripts() {
if [[ ${shebang} == '#!'*${EPYTHON}* ]]; then
debug-print "${FUNCNAME}: matching shebang: ${shebang}"
python_files+=( "${f}" )
elif _python_want_python_exec2; then
else
debug-print "${FUNCNAME}: non-matching shebang: ${shebang}"
non_python_files+=( "${f}" )
fi
@ -473,18 +469,11 @@ _distutils-r1_wrap_scripts() {
for f in "${python_files[@]}"; do
local basename=${f##*/}
if ! _python_want_python_exec2; then
local newf=${f%/*}/${basename}-${EPYTHON}
debug-print "${FUNCNAME}: renaming ${f#${path}/} to ${newf#${path}/}"
mv "${f}" "${newf}" || die
fi
debug-print "${FUNCNAME}: installing wrapper at ${bindir}/${basename}"
_python_ln_rel "${path}${EPREFIX}"$(_python_get_wrapper_path) \
_python_ln_rel "${path}${EPREFIX}"/usr/lib/python-exec/python-exec2 \
"${path}${bindir}/${basename}" || die
done
# (non-empty only with python-exec:2)
for f in "${non_python_files[@]}"; do
local basename=${f##*/}
@ -544,15 +533,11 @@ distutils-r1_python_install() {
case "${a}" in
--install-scripts=*)
scriptdir=${a#--install-scripts=}
if _python_want_python_exec2; then
unset "${arg_var}"
fi
unset "${arg_var}"
;;
--install-scripts)
scriptdir=${!1}
if _python_want_python_exec2; then
unset "${arg_var}" "${1}"
fi
unset "${arg_var}" "${1}"
shift
;;
esac

@ -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/eclass/python-r1.eclass,v 1.87 2015/02/20 08:14:22 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.89 2015/02/20 17:57:22 mgorny Exp $
# @ECLASS: python-r1
# @MAINTAINER:
@ -652,6 +652,7 @@ _python_obtain_impls() {
_python_validate_useflags
_python_check_USE_PYTHON
_python_check_EAPI
MULTIBUILD_VARIANTS=()

@ -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/eclass/python-single-r1.eclass,v 1.34 2015/02/20 08:14:22 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/python-single-r1.eclass,v 1.36 2015/02/20 17:57:22 mgorny Exp $
# @ECLASS: python-single-r1
# @MAINTAINER:
@ -379,6 +379,8 @@ python_gen_cond_dep() {
python_setup() {
debug-print-function ${FUNCNAME} "${@}"
_python_check_EAPI
unset EPYTHON
local impl impls=()

@ -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/eclass/python-utils-r1.eclass,v 1.78 2015/02/20 08:18:05 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.80 2015/02/20 17:57:22 mgorny Exp $
# @ECLASS: python-utils-r1
# @MAINTAINER:
@ -635,21 +635,14 @@ python_newexe() {
[[ ${EPYTHON} ]] || die 'No Python implementation set (EPYTHON is null).'
[[ ${#} -eq 2 ]] || die "Usage: ${FUNCNAME} <path> <new-name>"
local d=${python_scriptroot:-${DESTTREE}/bin}
local wrapd=${d}
local wrapd=${python_scriptroot:-${DESTTREE}/bin}
local f=${1}
local barefn=${2}
local newfn
if _python_want_python_exec2; then
local PYTHON_SCRIPTDIR
python_export PYTHON_SCRIPTDIR
d=${PYTHON_SCRIPTDIR#${EPREFIX}}
newfn=${barefn}
else
newfn=${barefn}-${EPYTHON}
fi
local newfn=${2}
local PYTHON_SCRIPTDIR d
python_export PYTHON_SCRIPTDIR
d=${PYTHON_SCRIPTDIR#${EPREFIX}}
(
dodir "${wrapd}"
@ -658,8 +651,8 @@ python_newexe() {
)
# install the wrapper
_python_ln_rel "${ED%/}"$(_python_get_wrapper_path) \
"${ED%/}/${wrapd}/${barefn}" || die
_python_ln_rel "${ED%/}"/usr/lib/python-exec/python-exec2 \
"${ED%/}/${wrapd}/${newfn}" || die
# don't use this at home, just call python_doscript() instead
if [[ ${_PYTHON_REWRITE_SHEBANG} ]]; then
@ -1099,40 +1092,6 @@ python_fix_shebang() {
done
}
# @FUNCTION: _python_want_python_exec2
# @INTERNAL
# @DESCRIPTION:
# Check whether we should be using python-exec:2.
_python_want_python_exec2() {
debug-print-function ${FUNCNAME} "${@}"
# EAPI 4 lacks slot operators, so just fix it on python-exec:2.
[[ ${EAPI} == 4 ]] && return 0
# Check if we cached the result, or someone put an override.
if [[ ! ${_PYTHON_WANT_PYTHON_EXEC2+1} ]]; then
has_version 'dev-lang/python-exec:2'
_PYTHON_WANT_PYTHON_EXEC2=$(( ! ${?} ))
fi
# Non-zero means 'yes', zero means 'no'.
[[ ${_PYTHON_WANT_PYTHON_EXEC2} != 0 ]]
}
# @FUNCTION: _python_get_wrapper_path
# @INTERNAL
# @DESCRIPTION:
# Output path to proper python-exec slot.
_python_get_wrapper_path() {
debug-print-function ${FUNCNAME} "${@}"
if _python_want_python_exec2; then
echo /usr/lib/python-exec/python-exec2
else
echo /usr/bin/python-exec
fi
}
# @FUNCTION: python_export_utf8_locale
# @RETURN: 0 on success, 1 on failure.
# @DESCRIPTION:
@ -1168,6 +1127,22 @@ python_export_utf8_locale() {
return 0
}
# @FUNCTION: _python_check_EAPI
# @INTERNAL
# @DESCRIPTION:
# Check whether the ebuild is not using deprecated EAPI 4. Output
# a QA warning if it does.
_python_check_EAPI() {
if [[ ${EAPI} == 4 && ! ${_PYTHON_WARNED_EAPI} ]]; then
eqawarn "This package is using still using EAPI=4. This results in package"
eqawarn "dependencies violating PMS and causing issues for package managers."
eqawarn "For this reason, using EAPI=4 in new Python packages will be banned"
eqawarn "on 2015-03-20 (2 years and 6 months after approving EAPI 5)."
_PYTHON_WARNED_EAPI=1
fi
}
# -- python.eclass functions --
_python_check_dead_variables() {

@ -1,183 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/nethack/nethack-3.4.3-r1.ebuild,v 1.28 2014/03/21 05:11:09 jer Exp $
EAPI=2
inherit eutils toolchain-funcs flag-o-matic games
MY_PV=${PV//.}
DESCRIPTION="The ultimate old-school single player dungeon exploration game"
HOMEPAGE="http://www.nethack.org/"
SRC_URI="mirror://sourceforge/nethack/${PN}-${MY_PV}-src.tgz"
LICENSE="nethack"
SLOT="0"
KEYWORDS="amd64 hppa ppc sparc x86 ~x86-fbsd"
IUSE="X"
RDEPEND=">=sys-libs/ncurses-5.2-r5
X? (
x11-libs/libXaw
x11-libs/libXpm
x11-libs/libXt
)"
DEPEND="${RDEPEND}
virtual/pkgconfig
X? (
x11-proto/xproto
x11-apps/bdftopcf
x11-apps/mkfontdir
)"
HACKDIR=${GAMES_DATADIR}/${PN}
src_prepare() {
# This copies the /sys/unix Makefile.*s to their correct places for
# seding and compiling.
cd "sys/unix"
source setup.sh || die
cd ../..
epatch \
"${FILESDIR}"/${PV}-gentoo-paths.patch \
"${FILESDIR}"/${PV}-default-options.patch \
"${FILESDIR}"/${PV}-bison.patch \
"${FILESDIR}"/${PV}-macos.patch \
"${FILESDIR}"/${P}-gibc210.patch \
"${FILESDIR}"/${P}-recover.patch
mv doc/recover.6 doc/nethack-recover.6
sed -i \
-e "s:GENTOO_STATEDIR:${GAMES_STATEDIR}/${PN}:" include/unixconf.h \
|| die "setting statedir"
sed -i \
-e "s:GENTOO_HACKDIR:${HACKDIR}:" include/config.h \
|| die "setting hackdir"
# set the default pager from the environment bug #52122
if [[ -n "${PAGER}" ]] ; then
sed -i \
-e "115c\#define DEF_PAGER \"${PAGER}\"" \
include/unixconf.h \
|| die "setting statedir"
# bug #57410
sed -i \
-e "s/^DATNODLB =/DATNODLB = \$(DATHELP)/" Makefile \
|| die "sed Makefile failed"
fi
# sys-libs/ncurses[tinfo]
sed -i \
-e '/^WINTTYLIB/s| = .*| = '"$(
$(tc-getPKG_CONFIG) --libs ncurses
)"'|g' \
src/Makefile || die
if use X ; then
epatch "${FILESDIR}/${PV}-X-support.patch"
fi
}
src_compile() {
local lflags="${LDFLAGS}"
cd "${S}"/src
append-flags -I../include
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
LFLAGS="${lflags}" \
../util/makedefs \
|| die "initial makedefs build failed"
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
LFLAGS="${lflags}" \
|| die "main build failed"
cd "${S}"/util
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
LFLAGS="${lflags}" \
recover || die "util build failed"
}
src_install() {
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
LFLAGS="-L/usr/X11R6/lib" \
GAMEPERM=0755 \
GAMEUID="${GAMES_USER}" GAMEGRP="${GAMES_GROUP}" \
PREFIX="${D}/usr" \
GAMEDIR="${D}${HACKDIR}" \
SHELLDIR="${D}/${GAMES_BINDIR}" \
install \
|| die "emake install failed"
# We keep this stuff in ${GAMES_STATEDIR} instead so tidy up.
rm -rf "${D}/usr/share/games/nethack/save"
newgamesbin util/recover recover-nethack || die "newgamesbin failed"
# The final nethack is a sh script. This fixes the hard-coded
# HACKDIR directory so it doesn't point to ${D}/usr/share/nethackdir
sed -i \
-e "s:^\(HACKDIR=\).*:\1${HACKDIR}:" \
"${D}${GAMES_BINDIR}/nethack" \
|| die "sed ${GAMES_BINDIR}/nethack failed"
doman doc/*.6
dodoc doc/*.txt
# Can be copied to ~/.nethackrc to set options
# Add this to /etc/.skel as well, thats the place for default configs
insinto "${HACKDIR}"
doins "${FILESDIR}/dot.nethackrc"
local windowtypes="tty"
use X && windowtypes="${windowtypes} x11"
set -- ${windowtypes}
sed -i \
-e "s:GENTOO_WINDOWTYPES:${windowtypes}:" \
-e "s:GENTOO_DEFWINDOWTYPE:$1:" \
"${D}${HACKDIR}/dot.nethackrc" \
|| die "sed ${HACKDIR}/dot.nethackrc failed"
insinto /etc/skel
newins "${D}/${HACKDIR}/dot.nethackrc" .nethackrc
if use X ; then
# install nethack fonts
cd "${S}/win/X11"
bdftopcf -o nh10.pcf nh10.bdf || die "Converting fonts failed"
bdftopcf -o ibm.pcf ibm.bdf || die "Converting fonts failed"
insinto "${HACKDIR}/fonts"
doins *.pcf
cd "${D}/${HACKDIR}/fonts"
mkfontdir || die "The action mkfontdir ${HACKDIR}/fonts failed"
# copy nethack x application defaults
cd "${S}/win/X11"
insinto /etc/X11/app-defaults
newins NetHack.ad NetHack || die "Failed to install NetHack X app defaults"
sed -i \
-e 's:^!\(NetHack.tile_file.*\):\1:' \
"${D}/etc/X11/app-defaults/NetHack" \
|| die "sed /etc/X11/app-defaults/NetHack failed"
fi
local statedir="${GAMES_STATEDIR}/${PN}"
keepdir "${statedir}/save"
mv "${D}/${HACKDIR}/"{record,logfile,perm} "${D}/${statedir}/"
make_desktop_entry nethack "Nethack"
prepgamesdirs
chmod -R 660 "${D}/${statedir}"
chmod 770 "${D}/${statedir}" "${D}/${statedir}/save"
}
pkg_postinst() {
games_pkg_postinst
elog "You may want to look at /etc/skel/.nethackrc for interesting options"
}

@ -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/games-roguelike/nethack/nethack-3.4.3-r2.ebuild,v 1.2 2015/02/20 09:40:11 ulm Exp $
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/nethack/nethack-3.4.3-r3.ebuild,v 1.1 2015/02/20 16:24:58 swift Exp $
EAPI=5
inherit eutils toolchain-funcs flag-o-matic user
@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/nethack/${PN}-${MY_PV}-src.tgz"
LICENSE="nethack"
SLOT="0"
#KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86 ~x86-fbsd"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE="X"
RDEPEND=">=sys-libs/ncurses-5.2-r5
@ -29,20 +29,23 @@ DEPEND="${RDEPEND}
x11-apps/mkfontdir
)"
HACKDIR="/usr/share/${PN}"
STATEDIR="/var/lib/${PN}"
BINDIR="/usr/games/bin"
HACKDIR="/usr/share/games/${PN}"
STATEDIR="/var/games/${PN}"
NETHACK_GROUP="gamestat"
pkg_setup() {
enewgroup nethack
enewgroup gamestat 36
}
src_prepare() {
# This copies the /sys/unix Makefile.*s to their correct places for
# seding and compiling.
cd "sys/unix"
cd "sys/unix" || die "Could not go into sys/unix directory"
source setup.sh || die
cd ../..
cd ../.. || die "Failed to get back to main directory"
epatch \
"${FILESDIR}"/${PV}-gentoo-paths.patch \
"${FILESDIR}"/${PV}-default-options.patch \
@ -53,7 +56,7 @@ src_prepare() {
epatch_user
mv doc/recover.6 doc/nethack-recover.6
mv doc/recover.6 doc/nethack-recover.6 || die "Could not rename recover.6 to nethack-recover.6"
sed -i \
-e "s:GENTOO_STATEDIR:${STATEDIR}:" include/unixconf.h \
@ -88,7 +91,7 @@ src_prepare() {
src_compile() {
local lflags="${LDFLAGS}"
cd "${S}"/src
cd "${S}"/src || die "Failed to enter src directory"
append-flags -I../include
emake \
@ -100,7 +103,7 @@ src_compile() {
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
LFLAGS="${lflags}"
cd "${S}"/util
cd "${S}"/util || die "Failed to enter util directory"
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
@ -114,23 +117,24 @@ src_install() {
CFLAGS="${CFLAGS}" \
LFLAGS="-L/usr/X11R6/lib" \
GAMEPERM=02755 \
GAMEUID="root" GAMEGRP="nethack" \
GAMEUID="root" GAMEGRP="${NETHACK_GROUP}" \
PREFIX="${D}/usr" \
GAMEDIR="${D}${HACKDIR}" \
SHELLDIR="${D}/usr/bin" \
GAMEDIR="${D}/${HACKDIR}" \
SHELLDIR="${D}/${BINDIR}" \
install
# We keep this stuff in STATEDIR instead so tidy up.
rm -rf "${D}/usr/share/nethack/"{recover,save}
rm -rf "${D}/${HACKDIR}/"{recover,save}
newbin util/recover recover-nethack
exeinto "${BINDIR}"
newexe util/recover recover-nethack
# The final nethack is a sh script. This fixes the hard-coded
# HACKDIR directory so it doesn't point to ${D}/usr/share/nethackdir
sed -i \
-e "s:^\(HACKDIR=\).*:\1${HACKDIR}:" \
"${D}/usr/bin/nethack" \
|| die "sed /usr/bin/nethack failed"
"${D}/${BINDIR}/nethack" \
|| die "sed /${BINDIR}/nethack failed"
doman doc/*.6
dodoc doc/*.txt
@ -153,16 +157,16 @@ src_install() {
if use X ; then
# install nethack fonts
cd "${S}/win/X11"
cd "${S}/win/X11" || die "Failed to enter win/X11 directory"
bdftopcf -o nh10.pcf nh10.bdf || die "Converting fonts failed"
bdftopcf -o ibm.pcf ibm.bdf || die "Converting fonts failed"
insinto "${HACKDIR}/fonts"
doins *.pcf
cd "${D}/${HACKDIR}/fonts"
cd "${D}/${HACKDIR}/fonts" || die "Failed to enter fonts directory"
mkfontdir || die "The action mkfontdir ${HACKDIR}/fonts failed"
# copy nethack x application defaults
cd "${S}/win/X11"
cd "${S}/win/X11" || die "Failed to enter win/X11 directory again"
insinto /etc/X11/app-defaults
newins NetHack.ad NetHack
sed -i \
@ -172,14 +176,43 @@ src_install() {
fi
keepdir "${STATEDIR}/save"
mv "${D}/${HACKDIR}/"{record,logfile,perm} "${D}/${STATEDIR}/"
rm "${D}/${HACKDIR}/"{logfile,perm,record}
make_desktop_entry nethack "Nethack"
chgrp -R nethack "${D}/${STATEDIR}"
chmod -R 660 "${D}/${STATEDIR}"
chmod 770 "${D}/${STATEDIR}" "${D}/${STATEDIR}/save"
fowners -R "root:${NETHACK_GROUP}" "${STATEDIR}"
fperms -R 660 "${STATEDIR}"
fperms 770 "${STATEDIR}" "${STATEDIR}/save"
# FIXME: main executable in /usr/games/share
}
pkg_preinst() {
if has_version "<${CATEGORY}/${PN}-3.4.3-r3" ; then
migration=true
# preserve STATEDIR/{logfile,record} (previous ebuild rev mistakenly removes it)
cp "${ROOT}/${STATEDIR}/"{logfile,record} "$T" # nonfatal
fi
}
pkg_postinst() {
# we don't want to overwrite existing files, as they contain user data
cd "${ROOT}/${STATEDIR}" || die "Failed to enter ${STATEDIR} directory"
local files="logfile perm record"
touch $files && \
chmod 660 $files && \
chown root:"${NETHACK_GROUP}" $files || \
die "Adjustment of file permissions in "${ROOT}/${STATEDIR}" failed"
if [[ -v migration ]] ; then
cp "$T/"{logfile,record} "${ROOT}/${STATEDIR}" # nonfatal
chown -R root:"${NETHACK_GROUP}" "${ROOT}/${STATEDIR}" && \
chmod -R 660 "${ROOT}/${STATEDIR}" && \
chmod 770 "${ROOT}/${STATEDIR}" "${ROOT}/${STATEDIR}/save" || \
die "Adjustment of file permissions in "${ROOT}/${STATEDIR}" failed"
fi
elog "You may want to look at /etc/skel/.nethackrc for interesting options"
}

@ -0,0 +1 @@
DIST lohit-assamese-ttf-2.91.2.tar.gz 72357 SHA256 145c9d59169cccbd9227f715e86152d473a851e7fafb7319836dd458c9b53350 SHA512 32dfdf6a5f868e7ba433d3f7855f26cfbdc821ad069dcc8a62fb8c80f5dd4fd8f616b60f89dd63ec1e8247601ac985146ec4304a7619a6b6d0db416f90e653c7 WHIRLPOOL de773c653618f5a5bc0bbd46372c4e7b28aac3737fe1f5eb7f851dbf7e266808863e42504f5d9ef1d25760a5c67effecba3e17b78e695450a59bca9073c0fae3

@ -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/media-fonts/lohit-assamese/lohit-assamese-2.91.2.ebuild,v 1.1 2015/02/20 17:32:23 yngwin Exp $
EAPI=5
inherit font
FONTDIR="/usr/share/fonts/indic/${PN}"
FONT_SUFFIX="ttf"
DESCRIPTION="The Lohit Assamese font"
HOMEPAGE="https://fedorahosted.org/lohit"
SRC_URI="https://fedorahosted.org/releases/l/o/lohit/${PN}-${FONT_SUFFIX}-${PV}.tar.gz"
LICENSE="OFL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x86-macos"
IUSE=""
DEPEND="!<media-fonts/lohit-fonts-2.20150220"
RDEPEND="${DEPEND}"
RESTRICT="test binchecks"
S=${WORKDIR}/${PN}-${FONT_SUFFIX}-${PV}
FONT_S=${S}
FONT_CONF=( "66-${PN}.conf" )

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

@ -0,0 +1 @@
DIST lohit-bengali-ttf-2.91.2.tar.gz 72355 SHA256 575f04a9f135b9b070c8c4b64f686dc4ca01f4fee1ede7abe3f1a49a5676a58c SHA512 9e7cd9e7763125cbfebf3428941ca0b55f4738d2195a65d7389f5784518a7a17904b1e97fd68ead557ae11273770033c28c0446fd84bda064dfa081aa5f854b9 WHIRLPOOL 0144eb6a4cc71296008b4501f7bf3643c133a9229d3ae69fb420a82339c98c71047ca297d17acd68226967138909bbd6c2837724f1e6081b969538ea00afbe73

@ -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/media-fonts/lohit-bengali/lohit-bengali-2.91.2.ebuild,v 1.1 2015/02/20 17:38:03 yngwin Exp $
EAPI=5
inherit font
FONTDIR="/usr/share/fonts/indic/${PN}"
FONT_SUFFIX="ttf"
DESCRIPTION="The Lohit Bengali font"
HOMEPAGE="https://fedorahosted.org/lohit"
SRC_URI="https://fedorahosted.org/releases/l/o/lohit/${PN}-${FONT_SUFFIX}-${PV}.tar.gz"
LICENSE="OFL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x86-macos"
IUSE=""
DEPEND="!<media-fonts/lohit-fonts-2.20150220"
RDEPEND="${DEPEND}"
RESTRICT="test binchecks"
S=${WORKDIR}/${PN}-${FONT_SUFFIX}-${PV}
FONT_S=${S}
FONT_CONF=( "66-${PN}.conf" )

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

@ -0,0 +1 @@
DIST lohit-devanagari-ttf-2.95.0.tar.gz 89620 SHA256 900f4da830c36e9bfb5a8cf00bcc67bbb2e7d6cfbfc54516b46845c887dd52c0 SHA512 1a37e6799203dcf3e0f55368ab188b9d6ce9f2c5973c49109727eea477433b1a84001e4787c7627b52b8edef40001feaaabc7aba852900033e6971c247a3c0bf WHIRLPOOL ba4ebd0568139c99ca612886b799c16ef7470cd29d23d2edda743d25b1f34f762954d21d2aff6959e47d22ebaa78c50184b4e0aec009c9a24562d62a9ed6b3ba

@ -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/media-fonts/lohit-devanagari/lohit-devanagari-2.95.0.ebuild,v 1.2 2015/02/20 17:48:47 yngwin Exp $
EAPI=5
inherit font
FONTDIR="/usr/share/fonts/indic/${PN}"
FONT_SUFFIX="ttf"
DESCRIPTION="The Lohit Devanagari font"
HOMEPAGE="https://fedorahosted.org/lohit"
SRC_URI="https://fedorahosted.org/releases/l/o/lohit/${PN}-${FONT_SUFFIX}-${PV}.tar.gz"
LICENSE="OFL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~ppc-macos ~x86-macos"
IUSE=""
DEPEND="!<media-fonts/lohit-fonts-2.20150220"
RDEPEND="${DEPEND}"
RESTRICT="test binchecks"
S=${WORKDIR}/${PN}-${FONT_SUFFIX}-${PV}
FONT_S=${S}
FONT_CONF=( "66-${PN}.conf" )

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

Loading…
Cancel
Save