[gentoo-commits] proj/hardened-patchset: New tag: 20160207

2016-02-07 Thread Anthony G. Basile
commit: 
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Feb  8 07:58:24 2016 +

New tag: 20160207




[gentoo-commits] proj/hardened-patchset:master commit in: 4.3.5/

2016-02-07 Thread Anthony G. Basile
commit: 2ba70c31916532781f96e738155b5be997778910
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Feb  8 08:06:43 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Feb  8 08:06:43 2016 +
URL:
https://gitweb.gentoo.org/proj/hardened-patchset.git/commit/?id=2ba70c31

grsecurity-3.1-4.3.5-201602070910

 4.3.5/_README  |   2 +-
 ...> 4420_grsecurity-3.1-4.3.5-201602070910.patch} | 429 ++---
 2 files changed, 201 insertions(+), 230 deletions(-)

diff --git a/4.3.5/_README b/4.3.5/_README
index 3ec071f..40c470e 100644
--- a/4.3.5/_README
+++ b/4.3.5/_README
@@ -2,7 +2,7 @@ README
 -
 Individual Patch Descriptions:
 -
-Patch: 4420_grsecurity-3.1-4.3.5-201602032209.patch
+Patch: 4420_grsecurity-3.1-4.3.5-201602070910.patch
 From:  http://www.grsecurity.net
 Desc:  hardened-sources base patch from upstream grsecurity
 

diff --git a/4.3.5/4420_grsecurity-3.1-4.3.5-201602032209.patch 
b/4.3.5/4420_grsecurity-3.1-4.3.5-201602070910.patch
similarity index 99%
rename from 4.3.5/4420_grsecurity-3.1-4.3.5-201602032209.patch
rename to 4.3.5/4420_grsecurity-3.1-4.3.5-201602070910.patch
index 562e55c..e639b69 100644
--- a/4.3.5/4420_grsecurity-3.1-4.3.5-201602032209.patch
+++ b/4.3.5/4420_grsecurity-3.1-4.3.5-201602070910.patch
@@ -1048,10 +1048,18 @@ index 78c0621..94cd626 100644
  Counts number of I and D TLB Misses and exports them via Debugfs
  The counters can be cleared via Debugfs as well
 diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
-index 639411f..82e6320 100644
+index 639411f..d4b3233 100644
 --- a/arch/arm/Kconfig
 +++ b/arch/arm/Kconfig
-@@ -1785,7 +1785,7 @@ config ALIGNMENT_TRAP
+@@ -1708,6 +1708,7 @@ config HIGHPTE
+ config CPU_SW_DOMAIN_PAN
+   bool "Enable use of CPU domains to implement privileged no-access"
+   depends on MMU && !ARM_LPAE
++  depends on !PAX_KERNEXEC && !PAX_MEMORY_UDEREF
+   default y
+   help
+ Increase kernel security by ensuring that normal kernel accesses
+@@ -1785,7 +1786,7 @@ config ALIGNMENT_TRAP
  
  config UACCESS_WITH_MEMCPY
bool "Use kernel mem{cpy,set}() for {copy_to,clear}_user()"
@@ -1060,7 +1068,7 @@ index 639411f..82e6320 100644
default y if CPU_FEROCEON
help
  Implement faster copy_to_user and clear_user methods for CPU
-@@ -2022,6 +2022,7 @@ config KEXEC
+@@ -2022,6 +2023,7 @@ config KEXEC
depends on (!SMP || PM_SLEEP_SMP)
depends on !CPU_V7M
select KEXEC_CORE
@@ -1747,7 +1755,7 @@ index 0f84249..8e83c55 100644
  struct of_cpuidle_method {
const char *method;
 diff --git a/arch/arm/include/asm/domain.h b/arch/arm/include/asm/domain.h
-index fc8ba16..8b84f53 100644
+index fc8ba16..0c20017 100644
 --- a/arch/arm/include/asm/domain.h
 +++ b/arch/arm/include/asm/domain.h
 @@ -42,7 +42,6 @@
@@ -1786,15 +1794,47 @@ index fc8ba16..8b84f53 100644
  
  #define domain_mask(dom)  ((3) << (2 * (dom)))
  #define domain_val(dom,type)  ((type) << (2 * (dom)))
-@@ -62,7 +79,7 @@
+@@ -62,13 +79,19 @@
  #define DACR_INIT \
(domain_val(DOMAIN_USER, DOMAIN_NOACCESS) | \
 domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
 -   domain_val(DOMAIN_IO, DOMAIN_CLIENT) | \
 +   domain_val(DOMAIN_IO, DOMAIN_KERNELCLIENT) | \
 domain_val(DOMAIN_VECTORS, DOMAIN_CLIENT))
++#elif CONFIG_PAX_MEMORY_UDEREF
++  /* DOMAIN_VECTORS is defined to DOMAIN_KERNEL */
++#define DACR_INIT \
++  (domain_val(DOMAIN_USER, DOMAIN_USERCLIENT) | \
++   domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
++   domain_val(DOMAIN_IO, DOMAIN_KERNELCLIENT))
  #else
  #define DACR_INIT \
+-  (domain_val(DOMAIN_USER, DOMAIN_CLIENT) | \
++  (domain_val(DOMAIN_USER, DOMAIN_USERCLIENT) | \
+domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
+-   domain_val(DOMAIN_IO, DOMAIN_CLIENT) | \
++   domain_val(DOMAIN_IO, DOMAIN_KERNELCLIENT) | \
+domain_val(DOMAIN_VECTORS, DOMAIN_CLIENT))
+ #endif
+ 
+@@ -113,6 +136,17 @@ static inline void set_domain(unsigned val)
+   set_domain(domain); \
+   } while (0)
+ 
++#elif defined(CONFIG_PAX_KERNEXEC) || defined(CONFIG_PAX_MEMORY_UDEREF)
++#define modify_domain(dom,type)   \
++  do {\
++  struct thread_info *thread = current_thread_info(); \
++  unsigned int domain = get_domain(); \
++  domain &= ~domain_mask(dom);\
++  domain = domain | domain_val(dom, type);\
++  thread->cpu_domain = domain;\
++  set_domain(domain); \
++  } while (0)
++
+ #else
+ static 

[gentoo-commits] repo/gentoo:master commit in: dev-go/go-sqlite3/

2016-02-07 Thread Zac Medico
commit: 2a49cfa9a7c79e18db738b8c4abbb36ca56b6f9d
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Feb  7 09:04:02 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Feb  7 09:04:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a49cfa9

dev-go/go-sqlite3: new package

Package-Manager: portage-2.2.27

 dev-go/go-sqlite3/Manifest  |  1 +
 dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160131.ebuild | 18 ++
 dev-go/go-sqlite3/metadata.xml  | 10 ++
 3 files changed, 29 insertions(+)

diff --git a/dev-go/go-sqlite3/Manifest b/dev-go/go-sqlite3/Manifest
new file mode 100644
index 000..fc23dd4
--- /dev/null
+++ b/dev-go/go-sqlite3/Manifest
@@ -0,0 +1 @@
+DIST go-sqlite3-1.1.0_p20160131.tar.gz 1847546 SHA256 
d743a044d7ee88b2783f5a15f22b47ffdaa478c0b258babc3c621ce347955bb8 SHA512 
9596012111b23865191904b7b0817ddbd88fc61383a3dfcf737d3d1be95c1a1d57b779ffbb9fa83303245a992c56e427396ffccb759a440822fffa516cae0b3d
 WHIRLPOOL 
a54021a0b8deb4fd28f44e45e8c78b896ef1121e4a23eb5fe6877b259c37456a6fb4fad77300a079fc3357a14b52d0b0750286a6f15431bdfefd17a99791c7c4

diff --git a/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160131.ebuild 
b/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160131.ebuild
new file mode 100644
index 000..4e203c8
--- /dev/null
+++ b/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160131.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/mattn/go-sqlite3/..."
+EGIT_COMMIT="c5aee9649735e8dadac55eb968ccebd9fa29a881"
+ARCHIVE_URI="https://${EGO_PN%/*}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Go sqlite3 driver using database/sql"
+HOMEPAGE="https://${EGO_PN%/*};
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="MIT"
+SLOT="0"
+IUSE=""

diff --git a/dev-go/go-sqlite3/metadata.xml b/dev-go/go-sqlite3/metadata.xml
new file mode 100644
index 000..c2bb1d9
--- /dev/null
+++ b/dev-go/go-sqlite3/metadata.xml
@@ -0,0 +1,10 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+zmed...@gentoo.org
+  
+  
+mattn/go-sqlite3
+  
+



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/gspeakers/

2016-02-07 Thread Pacho Ramos
commit: 64b81f8edad3aaa8a3a84ca799e5737c66682fdc
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Feb  7 09:46:07 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Feb  7 09:46:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64b81f8e

sci-electronics/gspeakers: Fixes for compatibility with libsigc++-2.6 and cxx11 
(#569540 by Andrew Wilcox (awilfox))

Package-Manager: portage-2.2.27

 sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild | 42 ++
 1 file changed, 42 insertions(+)

diff --git a/sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild 
b/sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild
new file mode 100644
index 000..18e66de
--- /dev/null
+++ b/sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+GCONF_DEBUG="no"
+
+inherit autotools eutils flag-o-matic gnome2
+
+DESCRIPTION="GTK based loudspeaker enclosure and crossovernetwork designer"
+HOMEPAGE="http://gspeakers.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-cpp/gtkmm:2.4
+   >=dev-libs/libsigc++-2.6:2
+   dev-libs/libxml2:2
+   || (
+   sci-electronics/gnucap
+   sci-electronics/ngspice
+   sci-electronics/spice )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   sed -i -e "s/-O0//" src/Makefile.am
+   epatch "${FILESDIR}"/${P}-gcc43.patch
+   epatch "${FILESDIR}"/${P}-glib-single-include.patch
+   epatch "${FILESDIR}"/${P}-fix-sigc-includes.patch
+   epatch "${FILESDIR}"/${P}-c++11.patch
+   append-cxxflags '-std=c++11'
+   mv configure.in configure.ac || die
+   eautoreconf
+   gnome2_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/

2016-02-07 Thread Pacho Ramos
commit: f479305d157b602ff07746bc04336bca29bad18a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Feb  7 09:47:26 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Feb  7 09:47:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f479305d

profiles/package.mask: gspeakers fixed, unmasking it then

 profiles/package.mask | 5 -
 1 file changed, 5 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index cb9bfa8..49df64e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -717,11 +717,6 @@ app-office/passepartout
 # Removal in a month.
 media-video/bombono-dvd
 
-# Pacho Ramos  (31 Dec 2015)
-# Upstream dead, doesn't compile with libsigc++-2.6, bug #569540
-# Removal in a month.
-sci-electronics/gspeakers
-
 # Victor Ostorga  (30 Dec 2015)
 # Mask this liferea version because upstream released it broken
 =net-news/liferea-1.10.17



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/gspeakers/

2016-02-07 Thread Pacho Ramos
commit: f45eb4072cb972db17fad1fae1213f59e4ad2ca8
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Feb  7 09:46:27 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Feb  7 09:46:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f45eb407

sci-electronics/gspeakers: Drop old

Package-Manager: portage-2.2.27

 sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild | 34 --
 1 file changed, 34 deletions(-)

diff --git a/sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild 
b/sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild
deleted file mode 100644
index 40e73c7..000
--- a/sci-electronics/gspeakers/gspeakers-0.11-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit eutils gnome2 autotools
-
-DESCRIPTION="GTK based loudspeaker enclosure and crossovernetwork designer"
-HOMEPAGE="http://gspeakers.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND="dev-cpp/gtkmm:2.4
-   dev-libs/libxml2:2"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-RDEPEND="${RDEPEND}
-   || ( sci-electronics/gnucap
-   sci-electronics/ngspice
-   sci-electronics/spice )"
-
-DOCS="AUTHORS ChangeLog NEWS README* TODO"
-
-src_prepare() {
-   sed -i -e "s/-O0//" src/Makefile.am
-   epatch "${FILESDIR}"/${P}-gcc43.patch
-   epatch "${FILESDIR}"/${P}-glib-single-include.patch
-   eautoreconf
-   gnome2_src_prepare
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/python-exec/

2016-02-07 Thread Michał Górny
commit: ec8a8ce487e94b8adbb6b46c105ec54db745a02b
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb  7 08:43:21 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb  7 08:44:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec8a8ce4

dev-lang/python-exec: Remove unneeded --with-eprefix= from -2.

 dev-lang/python-exec/python-exec-2..ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-lang/python-exec/python-exec-2..ebuild 
b/dev-lang/python-exec/python-exec-2..ebuild
index 561e393..98e0119 100644
--- a/dev-lang/python-exec/python-exec-2..ebuild
+++ b/dev-lang/python-exec/python-exec-2..ebuild
@@ -53,7 +53,6 @@ src_configure() {
done
 
local myconf=(
-   --with-eprefix="${EPREFIX}"
--with-python-impls="${pyimpls[*]}"
)
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/python-exec/

2016-02-07 Thread Michał Górny
commit: 8e83165bc32874b2ec66251b9bb678b91e1f4ddd
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Feb  7 08:44:24 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb  7 08:44:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e83165b

dev-lang/python-exec: Rename the live ebuild to - for consistency

 .../python-exec/{python-exec-2..ebuild => python-exec-.ebuild}| 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-lang/python-exec/python-exec-2..ebuild 
b/dev-lang/python-exec/python-exec-.ebuild
similarity index 100%
rename from dev-lang/python-exec/python-exec-2..ebuild
rename to dev-lang/python-exec/python-exec-.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyscard/

2016-02-07 Thread Justin Lecher
commit: 7b03c036bddafb4f269f77efc370f9a6bcfd8418
Author: Justin Lecher  gentoo  org>
AuthorDate: Sat Feb  6 09:12:31 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 09:48:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b03c036

dev-python/pyscard: Drop old

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/pyscard/Manifest  |  2 --
 dev-python/pyscard/pyscard-1.6.16.ebuild | 24 
 dev-python/pyscard/pyscard-1.7.0.ebuild  | 27 ---
 3 files changed, 53 deletions(-)

diff --git a/dev-python/pyscard/Manifest b/dev-python/pyscard/Manifest
index f211272..ada6ecb 100644
--- a/dev-python/pyscard/Manifest
+++ b/dev-python/pyscard/Manifest
@@ -1,3 +1 @@
-DIST pyscard-1.6.16.tar.gz 366857 SHA256 
d284dd2b0e4a951d8beabead34add0b5539034ba41e0fc40a1e5163103612fd9 SHA512 
ef13aee126fc12aa50cc73f9672c2a7734870f31a18ee6fc1c6c5d86cf1f565a3cd8458f9fd253c1649e394570ad6cf59e35e39db2bf714214a0dadee1116321
 WHIRLPOOL 
79e7b14642e808b09a2864b8d7e8c2efc2334fb9ff91aa6db6dc0563d4edfdc2e5ec9c8e4b0723dde00f0f089455ceada225ed62f0d050aa60ab52141b1f1d77
-DIST pyscard-1.7.0.tar.gz 151796 SHA256 
603977a1b6938442842a6b7f750c6c5a8a49d3f611b9cfde8f4b88a2c6e4ecd1 SHA512 
a56b6650e2057c20863fd128212689ce3ba78b1541d857cc0005d809481d96987c8463ec35f428bce8b0b8c8c97373b21ba786468567c05c2beb678b4c5fc9db
 WHIRLPOOL 
e965ab16c062444eb511679b77349ec9cf79baa5c1db0d0f31c435b3c05ea0058806b495636093b816eccac7ad3e2662a3571364f021721e9a85ee372afa44eb
 DIST pyscard-1.9.1.tar.gz 360952 SHA256 
62ebeaaaea0b98e053f95ae9b357ab7ebb8901acb1100b77dbb421bfd84bea8e SHA512 
97e56dde8e78c73bbda07ba8b418e1877a02ec54094b3b02bd6d6e8b4326b9ea61124ce89d6c2c5a6c9e4c92f3f1e576a02bf26bd8977cbed7a71c32ed96f151
 WHIRLPOOL 
6a232f62ab72b361892bd003d3764e38c3abd67f505ba8f0d49e867fc83ce39abc0ec7d6cfc258a533d5d8fa49c732d899a72d9d61072b5910417dc23cf2cbfd

diff --git a/dev-python/pyscard/pyscard-1.6.16.ebuild 
b/dev-python/pyscard/pyscard-1.6.16.ebuild
deleted file mode 100644
index 7b6a24b..000
--- a/dev-python/pyscard/pyscard-1.6.16.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="pyscard is a python module adding smart cards support to python"
-HOMEPAGE="http://pyscard.sourceforge.net/ https://pypi.python.org/pypi/pyscard;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="sys-apps/pcsc-lite"
-DEPEND="${RDEPEND}
-   dev-lang/swig"
-
-DOCS=( README smartcard/ACKS smartcard/ChangeLog smartcard/TODO )

diff --git a/dev-python/pyscard/pyscard-1.7.0.ebuild 
b/dev-python/pyscard/pyscard-1.7.0.ebuild
deleted file mode 100644
index 6236af9..000
--- a/dev-python/pyscard/pyscard-1.7.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="pyscard is a python module adding smart cards support to python"
-HOMEPAGE="http://pyscard.sourceforge.net/ https://pypi.python.org/pypi/pyscard;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="sys-apps/pcsc-lite"
-DEPEND="${RDEPEND}
-   dev-lang/swig"
-
-pkg_postinst() {
-   elog "For gui support, install dev-python/wxpython"
-   elog "For support of remote readers with Pyro, install dev-python/pyro"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-zendopcache/, dev-perl/YAML-Parser-Syck/, profiles/

2016-02-07 Thread Pacho Ramos
commit: cbe05e3498c9409023a9b463105688b9c10e669f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Feb  7 10:09:52 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Feb  7 10:10:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbe05e34

profiles/package.mask: drop obsolete entries

 dev-perl/YAML-Parser-Syck/Manifest |  1 -
 .../YAML-Parser-Syck-0.10.0-r1.ebuild  | 20 
 dev-perl/YAML-Parser-Syck/metadata.xml | 12 
 dev-php/pecl-zendopcache/Manifest  |  1 -
 dev-php/pecl-zendopcache/metadata.xml  | 10 --
 .../pecl-zendopcache/pecl-zendopcache-7.0.3.ebuild | 22 --
 profiles/package.mask  |  5 -
 7 files changed, 71 deletions(-)

diff --git a/dev-perl/YAML-Parser-Syck/Manifest 
b/dev-perl/YAML-Parser-Syck/Manifest
deleted file mode 100644
index 216fbdd..000
--- a/dev-perl/YAML-Parser-Syck/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST YAML-Parser-Syck-0.01.tar.gz 3545 SHA256 
6531737495ed8d7d336a52e7ef6d360795e057bef9173696919a473c035da998 SHA512 
eed41baf2058a0422e25d7eee2bcf0c0baa82ac131aa6b6e547b7a1615fa2683e0dc361a6f2a990ac5aeade575034c4a5413c522e234ed09df65c11a99f2c862
 WHIRLPOOL 
d58b9757907d3cb3e2ec09ea9f763285855445c07b45f146dff61e26946f0cf5429a0b170c2ecee29d2d49bfe7d3ae81c36450c85dedf7bb07852b7a7ea0c947

diff --git a/dev-perl/YAML-Parser-Syck/YAML-Parser-Syck-0.10.0-r1.ebuild 
b/dev-perl/YAML-Parser-Syck/YAML-Parser-Syck-0.10.0-r1.ebuild
deleted file mode 100644
index eaddd64..000
--- a/dev-perl/YAML-Parser-Syck/YAML-Parser-Syck-0.10.0-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=INGY
-MODULE_VERSION=0.01
-inherit perl-module
-
-DESCRIPTION="Perl Wrapper for the YAML Parser Extension: libsyck"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="dev-libs/syck"
-DEPEND="${RDEPEND}"
-
-SRC_TEST="do"

diff --git a/dev-perl/YAML-Parser-Syck/metadata.xml 
b/dev-perl/YAML-Parser-Syck/metadata.xml
deleted file mode 100644
index 882fd7f..000
--- a/dev-perl/YAML-Parser-Syck/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-p...@gentoo.org
-Gentoo Perl Project
-  
-  
-YAML-Parser-Syck
-YAML::Parser::Syck
-  
-

diff --git a/dev-php/pecl-zendopcache/Manifest 
b/dev-php/pecl-zendopcache/Manifest
deleted file mode 100644
index be8e5f1..000
--- a/dev-php/pecl-zendopcache/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST zendopcache-7.0.3.tgz 94164 SHA256 
08d9a6c21dd7b18c1f027a0c3f13a203a9a8362f98b04db0d39672e2dd5cee62 SHA512 
0360c62f54724994ef96891dc387898f56da728b9899c9a989203caa9f2c709b8b783f209a0368a8fed285bedcdce1be08f29646d443c909da58ac78a9a981fb
 WHIRLPOOL 
7a5c36481652aab538175e0dfc070fac96e86628a3ec3da5037867a015a4a572abfa686bb720b8660f639046f2a4319bfb013c2d607586c0497467822d328024

diff --git a/dev-php/pecl-zendopcache/metadata.xml 
b/dev-php/pecl-zendopcache/metadata.xml
deleted file mode 100644
index ac67fb6..000
--- a/dev-php/pecl-zendopcache/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   olemar...@gentoo.org
-   Ole Markus With
-   
-   
-   
-

diff --git a/dev-php/pecl-zendopcache/pecl-zendopcache-7.0.3.ebuild 
b/dev-php/pecl-zendopcache/pecl-zendopcache-7.0.3.ebuild
deleted file mode 100644
index 52ecb77..000
--- a/dev-php/pecl-zendopcache/pecl-zendopcache-7.0.3.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-PHP_EXT_NAME="opcache"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="yes"
-
-USE_PHP="php5-4"
-
-inherit php-ext-pecl-r2
-
-KEYWORDS="~amd64"
-
-MY_PV="${PV/_/}"
-MY_PV="${MY_PV/rc/RC}"
-
-DESCRIPTION="The Zend Optimizer+ provides faster PHP execution through opcode 
caching and optimization"
-LICENSE="PHP-3"
-SLOT="0"
-IUSE=""

diff --git a/profiles/package.mask b/profiles/package.mask
index 49df64e..f4282cf 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -784,11 +784,6 @@ dev-perl/YAML-Parser-Syck
  (02 Dec 2015)
-# Zend Opcache was integrated into PHP versions 5.5 and later
-# Masked for removal in 30 days
-dev-php/pecl-zendopcache
-
-# Brian Evans  (02 Dec 2015)
 # PHP 5.4 is End Of Life and will not receive any further updates
 # Please migrate to 5.5 or, preferably 5.6.
 dev-lang/php:5.4



[gentoo-commits] repo/gentoo:master commit in: profiles/

2016-02-07 Thread Pacho Ramos
commit: 3ec5c63fe6972d88a6260d2c38dc7424d606d3d8
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Feb  7 10:11:02 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Feb  7 10:11:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ec5c63f

profiles/package.mask: drop obsolete entries

 profiles/package.mask | 5 -
 1 file changed, 5 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index f4282cf..c158b19 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -756,11 +756,6 @@ media-tv/xawtv
 dev-db/drizzle
 dev-php/pecl-drizzle
 
-# Andreas K. Huettel  (11 Dec 2015)
-# Ancient, smells funny, disowned by upstream, needs syck
-# Masked for removal in 30 days, bug 565012
-dev-perl/YAML-Parser-Syck
-
 # Fabian Groffen  (11 Dec 2015)
 # Release candidates for Exim 4.87
 =mail-mta/exim-4.87_rc2



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmcoincoin/

2016-02-07 Thread Bernard Cafarelli
commit: 862afe42d19d80eb917b3932507805aba1985319
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Feb  7 10:59:07 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Feb  7 10:59:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=862afe42

x11-plugins/wmcoincoin: drop some old versions

Package-Manager: portage-2.2.27

 x11-plugins/wmcoincoin/Manifest |  2 --
 x11-plugins/wmcoincoin/wmcoincoin-2.5.1f.ebuild | 37 -
 x11-plugins/wmcoincoin/wmcoincoin-2.6.1.ebuild  | 37 -
 3 files changed, 76 deletions(-)

diff --git a/x11-plugins/wmcoincoin/Manifest b/x11-plugins/wmcoincoin/Manifest
index 15c4d85..b991077 100644
--- a/x11-plugins/wmcoincoin/Manifest
+++ b/x11-plugins/wmcoincoin/Manifest
@@ -1,4 +1,2 @@
-DIST wmcoincoin-2.5.1f.tar.gz 847541 SHA256 
9758327599afb3281bf483db1fec03bd2574f5cb45a45bac7995c889eddef48e SHA512 
6efdef1d8347ab2e7af0e28a6ae1ff08d5b517ec1beea9b012966018a8c919ed8c8ff50f087112619878a7822c4d272b449805ba3e20da68131b352b1967a2b6
 WHIRLPOOL 
d4fd710233016daff37bb7cbd17591002e564139bf836c71bc687fd83ed44678d60bcb02ccb51f20ed84359f0696b6357230dcbd7e4c510ee22a2cd811d9ef28
-DIST wmcoincoin-2.6.1.tar.gz 963391 SHA256 
c466433ac1cd8a018dfe87f33cb8832ce1e1c10714907e3eed94723c792bb140 SHA512 
25027af9d1a0a05ea3b5b0856f6316d0f3409e6f7f02d2611f3e8dbaca72285b8b0a05a8aa2ed8a88af12f05f01821eeaebb1c0272e68ef1fa43459dd6d09da9
 WHIRLPOOL 
bdecac8f249ed2ab598f119504f6b113a04364fa1392e0ac9a5a0d870c2c616e2aff703e062677523355a63f57ea5dda87c582a1499b62d82fb378a00ab79dde
 DIST wmcoincoin-2.6.2_p20140602.tar.gz 972358 SHA256 
e6afdf6ceeaec81327fbeb8d823ac97d4e3372c312b53ac83014c690ca364cf9 SHA512 
ddf1b24d9c9021e9cb02817e80f3327074ef7d09ba7d8033d5d0c8b39a25106a1d54d32f211d31a910e2175d98bbda940f309cc137edd1b02b5a656891e89b2c
 WHIRLPOOL 
031ac936551d4975f460b44cfe715e1b3f21d263fc299fadf0dee9f686a3f49cf879c603aae5e2ffa547a33b590410edde8c2e7768fdcb9e021887bb0baa8532
 DIST wmcoincoin-2.6.3.tar.gz 973973 SHA256 
4879a46e252ca11256257c0f859103d4b233f6e0ba6df0fafdb41aaa0e88de75 SHA512 
daffd94387a03e780250877ae43e5431a7c0710862dd9fab04efc254e02e648215fa9c301bf1ed6d1a9ca5182a2a88d10ea4c385d92752d047492e6e9ad01d2d
 WHIRLPOOL 
9abf87cee56bbb9ebb281fb8b5acd5e8fe5857b26ce49ccdab6c530ceb1fd0535a41ac02ccc838053c77c5a116c4796151f873558b4a7814522922dccb60a4da

diff --git a/x11-plugins/wmcoincoin/wmcoincoin-2.5.1f.ebuild 
b/x11-plugins/wmcoincoin/wmcoincoin-2.5.1f.ebuild
deleted file mode 100644
index 703e3b4..000
--- a/x11-plugins/wmcoincoin/wmcoincoin-2.5.1f.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="a dockapp for browsing dacode news and board sites"
-HOMEPAGE="http://hules.free.fr/wmcoincoin;
-SRC_URI="http://hules.free.fr/${PN}/download/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="nls xinerama"
-
-RDEPEND="x11-libs/gtk+:2
-   media-libs/imlib2
-   x11-libs/libXext
-   x11-libs/libXpm
-   x11-libs/libX11
-   x11-libs/libXft
-   xinerama? ( x11-libs/libXinerama )"
-DEPEND="${RDEPEND}
-   x11-proto/xextproto
-   x11-proto/xproto
-   x11-libs/libXt
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-   xinerama? ( x11-proto/xineramaproto )"
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-src_configure() {
-   econf \
-   $(use_enable nls) \
-   $(use_enable xinerama)
-}

diff --git a/x11-plugins/wmcoincoin/wmcoincoin-2.6.1.ebuild 
b/x11-plugins/wmcoincoin/wmcoincoin-2.6.1.ebuild
deleted file mode 100644
index a35c6ca..000
--- a/x11-plugins/wmcoincoin/wmcoincoin-2.6.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="a dockapp for browsing dacode news and board sites"
-HOMEPAGE="http://hules.free.fr/wmcoincoin;
-SRC_URI="http://hules.free.fr/${PN}/download/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="nls xinerama"
-
-RDEPEND="x11-libs/gtk+:2
-   media-libs/imlib2
-   x11-libs/libXext
-   x11-libs/libXpm
-   x11-libs/libX11
-   x11-libs/libXft
-   xinerama? ( x11-libs/libXinerama )"
-DEPEND="${RDEPEND}
-   x11-proto/xextproto
-   x11-proto/xproto
-   x11-libs/libXt
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-   xinerama? ( x11-proto/xineramaproto )"
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-src_configure() {
-   econf \
-   $(use_enable nls) \
-   $(use_enable xinerama)
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/ec2-api-tools/

2016-02-07 Thread Patrice Clement
commit: 9d429ebe6d6b77744b3fc5ee87c980fd06946d2a
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Feb  7 10:56:35 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Feb  7 10:58:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d429ebe

app-admin/ec2-api-tools: Removal. Fixes bug 471942.

 app-admin/ec2-api-tools/Manifest   |  1 -
 .../ec2-api-tools/ec2-api-tools-1.6.7.2-r5.ebuild  | 90 --
 app-admin/ec2-api-tools/metadata.xml   |  7 --
 3 files changed, 98 deletions(-)

diff --git a/app-admin/ec2-api-tools/Manifest b/app-admin/ec2-api-tools/Manifest
deleted file mode 100644
index 13e95a8..000
--- a/app-admin/ec2-api-tools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ec2-api-tools-1.6.7.2.zip 14536729 SHA256 
4ff426a8d36610754699f639780c7b258744e1705f19a9b1c1c6794d63283557 SHA512 
a2e5381689892bd471d7edea8f96969af847f47da20465f8584fb02e461b9e7c7f35a69e81164bdcfb703045531f5760ba96f247335ac9ead04ada6a1c076cd8
 WHIRLPOOL 
e6fd6511bc53871f2e8e172a736b4a9ea1fe24814ea16ae4ef998eb899bb420db3eed92f45e920d89d4997a74194be2ca4dfcd3c653a807d5efc95810f204399

diff --git a/app-admin/ec2-api-tools/ec2-api-tools-1.6.7.2-r5.ebuild 
b/app-admin/ec2-api-tools/ec2-api-tools-1.6.7.2-r5.ebuild
deleted file mode 100644
index ae4944d..000
--- a/app-admin/ec2-api-tools/ec2-api-tools-1.6.7.2-r5.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit versionator java-pkg-2
-
-DESCRIPTION="These command-line tools serve as the client interface to the 
Amazon EC2 web service"
-HOMEPAGE="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=351=88;
-SRC_URI="http://s3.amazonaws.com/ec2-downloads/${PN}-${PV}.zip;
-
-LICENSE="Amazon"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="mirror"
-
-CDEPEND="
-   dev-java/bcprov:1.45
-   dev-java/commons-cli:1
-   dev-java/commons-codec:0
-   dev-java/commons-discovery:0
-   dev-java/commons-httpclient:3
-   dev-java/commons-logging:0
-   dev-java/jaxb:2
-   dev-java/jax-ws:2
-   dev-java/jsr173:0
-   dev-java/jdom:0
-   dev-java/log4j:0
-   dev-java/wsdl4j:0
-   dev-java/xalan:0
-   dev-java/xalan-serializer:0
-   dev-java/xerces:2"
-
-DEPEND="${CDEPEND}
-   app-arch/unzip:0"
-
-RDEPEND="${CDEPEND}
-   >=virtual/jre-1.4"
-
-S=${WORKDIR}/${PN}-${PV}
-
-java_prepare() {
-   rm 
lib/{bcprov-jdk*,commons-cli-*,commons-codec-*,commons-discovery,commons-httpclient-*,commons-logging-adapters-*,commons-logging-api-*,jaxb-api,jaxb-impl,jaxws-api,jdom,log4j-*,stax2-api-*,wsdl4j,xalan,xercesImpl}.jar
 \
-   || die "Failed to remove bundled jar files that are provided by 
system."
-
-   find . -name '*.cmd' -delete || die "Failed to remove non-Linux files."
-
-   sed -i "s:LIBDIR=\".*\":LIBDIR=\"/usr/share/${PN}/lib\":g" bin/ec2-cmd 
|| die "Failed to set the library path in the wrapper."
-
-   for FILE in bin/* ; do
-   sed -i 's:${EC2_HOME}:/usr:g' ${FILE} || die "Failed to set the 
EC2_HOME value in the wrappers."
-   sed -i '/PREFIX__EC2_HOME/d' ${FILE} || die "Failed to remove 
remaining redundant PREFIX__EC2_HOME lines from wrappers."
-   done
-}
-
-src_install() {
-   dobin bin/*
-
-   local libs="/usr/share/${PN}/lib"
-   insinto ${libs}
-   doins lib/*.jar
-   dosym $(java-pkg_getjar bcprov{-1.45,.jar}) ${libs}/bcprov-jdk15-145.jar
-   dosym $(java-pkg_getjar commons-cli{-1,.jar}) 
${libs}/commons-cli-1.1.jar
-   dosym $(java-pkg_getjar commons-codec{,.jar}) 
${libs}/commons-codec-1.4.jar
-   dosym $(java-pkg_getjar commons-discovery{,.jar}) 
${libs}/commons-discovery.jar
-   dosym $(java-pkg_getjar commons-httpclient{-3,.jar}) 
${libs}/commons-httpclient-3.1.jar
-   dosym $(java-pkg_getjar commons-logging{,-adapters.jar}) 
${libs}/commons-logging-adapters-1.1.1.jar
-   dosym $(java-pkg_getjar commons-logging{,-api.jar}) 
${libs}/commons-logging-api-1.1.1.jar
-   dosym $(java-pkg_getjar jaxb{-2,-api.jar}) ${libs}/jaxb-api.jar
-   dosym $(java-pkg_getjar jaxb{-2,-impl.jar}) ${libs}/jaxb-impl.jar
-   dosym $(java-pkg_getjar jax-ws{-2,.jar}) ${libs}/jaxws-api.jar
-   dosym $(java-pkg_getjar jdom{,.jar}) ${libs}/jdom.jar
-   dosym $(java-pkg_getjar log4j{,.jar}) ${libs}/log4j-1.2.14.jar
-   dosym $(java-pkg_getjar jsr173{,.jar}) ${libs}/stax2-api-3.0.1.jar
-   dosym $(java-pkg_getjar wsdl4j{,.jar}) ${libs}/wsdl4j.jar
-   dosym $(java-pkg_getjar xalan{,.jar}) ${libs}/xalan.jar
-   dosym $(java-pkg_getjar xerces{-2,Impl.jar}) ${libs}/xercesImpl.jar
-
-   dodoc THIRDPARTYLICENSE.TXT
-}
-
-pkg_postinst() {
-   elog ""
-   elog "You need to put the following in your ~/.bashrc replacing the"
-   elog "values with the full paths to your key and 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/bedup/

2016-02-07 Thread Justin Lecher
commit: 416ac492ae9e74efdac84a18748a6c094b327b56
Author: Wes Cilldhaire  sol1  com  au>
AuthorDate: Sun Feb  7 11:39:40 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 11:39:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=416ac492

sys-fs/bedup: rm old

Acked-By: mgorny  gentoo.org

Package-Manager: portage-2.2.27

 sys-fs/bedup/Manifest|  1 -
 sys-fs/bedup/bedup-0.9.0_p20140413-r1.ebuild | 28 
 2 files changed, 29 deletions(-)

diff --git a/sys-fs/bedup/Manifest b/sys-fs/bedup/Manifest
index 31aa2a2..fea764a 100644
--- a/sys-fs/bedup/Manifest
+++ b/sys-fs/bedup/Manifest
@@ -1,2 +1 @@
 DIST bedup-0.10.0.tar.gz 48058 SHA256 
088b31821d8b770d6127ffd7a55e6d5cf21d43b36763e984030d16b677f52fe4 SHA512 
6389f4f6d81062ebd3707a620f334278f7bb55449e1de6f0d56a3d2e87d7e2f1694fdfaf2f0b318487fd25db0344b704f297aa4410fac838a9f0ed7891cdcd62
 WHIRLPOOL 
14a6ed728eb1dfcca47b55b448711bd5c74ed83f7151eed49f10e8f1f06385b1660f2a4bbd85d512ed7574cc2ee2d9f581a8cc7fcba4f8b5c64ccc2632824e35
-DIST bedup-0.9.0_p20140413.tar.gz 48620 SHA256 
f9c380074e3f13e42447c04a0fd5c1abca87cf6ccb6400f09dcca14f90a6 SHA512 
9a730dff2b2af239a6386d860881989de50f7a4fb6ae5b402c6dfe828308bbf4ccc2b6f616fdfc2b445fe23fbfcc302163b320813b50fa27940e578b5145345c
 WHIRLPOOL 
af4827f4514acc8380f312a72bb3208614f1f529e7373bca3bb610315e0474c9d7c7cbda1338d7019316e708f17ba73e71539092065041df588fd449f7639b54

diff --git a/sys-fs/bedup/bedup-0.9.0_p20140413-r1.ebuild 
b/sys-fs/bedup/bedup-0.9.0_p20140413-r1.ebuild
deleted file mode 100644
index 8b6e089..000
--- a/sys-fs/bedup/bedup-0.9.0_p20140413-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Btrfs file de-duplication tool"
-HOMEPAGE="https://github.com/g2p/bedup;
-SRC_URI="https://github.com/g2p/${PN}/archive/5189e166145b8954ac41883f81ef3c3b50dc96ab.tar.gz
-   -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# we need btrfs-progs with includes installed.
-DEPEND=">=dev-python/cffi-0.5:=[${PYTHON_USEDEP}]
-   >=sys-fs/btrfs-progs-0.20_rc1_p358"
-RDEPEND="${DEPEND}
-   =dev-python/sqlalchemy-0.8.2[sqlite,${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: /

2016-02-07 Thread Justin Lecher
commit: 4a4a5a5377ce58490946ca311701197630cdc354
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 12:00:31 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a4a5a53

Merge branch 'anomaly256-ebuild-cleanup'

* anomaly256-ebuild-cleanup:
  dev-python/alembic: rm old
  sys-fs/bedup: rm old

 dev-python/alembic/Manifest  |  3 --
 dev-python/alembic/alembic-0.6.7.ebuild  | 49 
 dev-python/alembic/alembic-0.7.4.ebuild  | 46 --
 dev-python/alembic/alembic-0.7.6.ebuild  | 46 --
 sys-fs/bedup/Manifest|  1 -
 sys-fs/bedup/bedup-0.9.0_p20140413-r1.ebuild | 28 
 6 files changed, 173 deletions(-)



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyrsistent/

2016-02-07 Thread Justin Lecher
commit: cab58a45dd579c0066b8d6b7521f02c3cde79d1c
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:40:22 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cab58a45

dev-python/pyrsistent: Drop old

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/pyrsistent/Manifest  |  2 --
 dev-python/pyrsistent/pyrsistent-0.11.10.ebuild | 35 ---
 dev-python/pyrsistent/pyrsistent-0.11.11.ebuild | 37 -
 3 files changed, 74 deletions(-)

diff --git a/dev-python/pyrsistent/Manifest b/dev-python/pyrsistent/Manifest
index d29fbf3..1cd011f 100644
--- a/dev-python/pyrsistent/Manifest
+++ b/dev-python/pyrsistent/Manifest
@@ -1,3 +1 @@
-DIST pyrsistent-0.11.10.tar.gz 62646 SHA256 
db0469748e74f72b6142aa60bf9a5a15b4a080f47d9ed2fb7c6c083756264149 SHA512 
cc0caf78b596e2cd9a5960be354a7ecae50a6f324295e1d882100e85208145735d5154a8b17eb297b99d48a6b1edb36cf8bdae781efef046f097f53af00f732b
 WHIRLPOOL 
d0ac9088c0afaec1672eb8b4e29c8b3f85f7bb064f360d54a21f0d70daa4ea9d37ab8f947bbba41a0695fc8a5e2f6e73c263748791952c3b32eb7134d2c8d74b
-DIST pyrsistent-0.11.11.tar.gz 84016 SHA256 
1ce499386a567c512eda3a180f14214e1a698d227e46ea2ef2566ba49e3e5d8f SHA512 
7edced0fbe57ad57aaff7d04dec79ed317d938e8e7369ff0d77dea9b1b097de74c794e19cbcdbb0144800ff7f6f491069a7726168b349f584d85bf3b27901695
 WHIRLPOOL 
4f7f3d630d6f5646732bc082387f8fa048d429e1ba762c0ed43e98d6a1501faf734ef027e26057134898bd060479526df687463d9201684f4fabef9f5302
 DIST pyrsistent-0.11.12.tar.gz 88621 SHA256 
255e6e3e1373b93e65158ae0a672a5ba6d01b18f92d8eab319969b81e784fe49 SHA512 
66424adb4d1e69d500cfbb2f9dd0d3d5f9678cd7ee7ca02909a714b7351412022cdb9507417318df3027287f0ffed9f2872dd8fb489e236f1769527a81756d1c
 WHIRLPOOL 
04a52d660c901156de93fed94dee337b2f218cce7ab4f7b8434176565216e543c7ff839c421e219ffaa9b20d1914d51a7514463e0f706baae3ad7b89eb9c17ba

diff --git a/dev-python/pyrsistent/pyrsistent-0.11.10.ebuild 
b/dev-python/pyrsistent/pyrsistent-0.11.10.ebuild
deleted file mode 100644
index d2f9186..000
--- a/dev-python/pyrsistent/pyrsistent-0.11.10.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Persistent/Functional/Immutable data structures"
-HOMEPAGE="http://github.com/tobgu/pyrsistent/ 
http://pypi.python.org/pypi/pyrsistent;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   dev-python/six[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-python/hypothesis[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-# https://github.com/tobgu/pyrsistent/issues/78
-RESTRICT="test"
-
-python_test() {
-   py.test -v -v || die
-}

diff --git a/dev-python/pyrsistent/pyrsistent-0.11.11.ebuild 
b/dev-python/pyrsistent/pyrsistent-0.11.11.ebuild
deleted file mode 100644
index e84a53c..000
--- a/dev-python/pyrsistent/pyrsistent-0.11.11.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Persistent/Functional/Immutable data structures"
-HOMEPAGE="http://github.com/tobgu/pyrsistent/ 
http://pypi.python.org/pypi/pyrsistent;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   dev-python/six[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   dev-python/hypothesis[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-# https://github.com/tobgu/pyrsistent/issues/
-# fails
-RESTRICT="test"
-
-python_test() {
-   export PYTHONPATH="${S}:${PYTHONPATH}"
-   py.test -v -v -x || die ${PYTHONPATH}
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/nose-show-skipped/

2016-02-07 Thread Justin Lecher
commit: a64ff63a8e6524fdddc3c598001eafbb03028b31
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:42:48 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a64ff63a

dev-python/nose-show-skipped: Keyword under ALLARCHES policy

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/nose-show-skipped/nose-show-skipped-0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/nose-show-skipped/nose-show-skipped-0.1.ebuild 
b/dev-python/nose-show-skipped/nose-show-skipped-0.1.ebuild
index 306ffdc..cca26f4 100644
--- a/dev-python/nose-show-skipped/nose-show-skipped-0.1.ebuild
+++ b/dev-python/nose-show-skipped/nose-show-skipped-0.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~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=""
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-python/numexpr/

2016-02-07 Thread Justin Lecher
commit: 790935f76729f1e95acf226d5f45b2085bcf1b5a
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:27:09 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=790935f7

dev-python/numexpr: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/numexpr/Manifest   |  1 +
 dev-python/numexpr/numexpr-2.5.ebuild | 55 +++
 2 files changed, 56 insertions(+)

diff --git a/dev-python/numexpr/Manifest b/dev-python/numexpr/Manifest
index 33dff3a..ad3b9ca 100644
--- a/dev-python/numexpr/Manifest
+++ b/dev-python/numexpr/Manifest
@@ -1,3 +1,4 @@
 DIST numexpr-2.4.3.tar.gz 85171 SHA256 
3ae7191c89df40db6b0a8637a4dace7c5956bc910793a53225f985f3b443c722 SHA512 
b33984072fddd4303980be8533e1348b48ff27de5e150029147e3666ce6bb9e1147dbc45eb0ef22506aebaea6fb366d65ff01221235f9b9935d78ea70ba9aa53
 WHIRLPOOL 
ac5981bac643b825d6ab2fbd6c46b6d73ad62374490e5f05a71fc0b9c4269ab401617da98079e1604b11f454863e64e009a2acc00b7b30499b20eff73efe033f
 DIST numexpr-2.4.4.tar.gz 87133 SHA256 
dfa2fad1af040e93a8022fbe4437f2183bf80e5f64d466381ad589308a73565b SHA512 
abc53f8aafb39e55b6b811c1f08c01eefca23c36fb9d20a82484ef658c8062ffe51d8841d6651f43fb7f8cea6420270623df6ba9f98a95a0f7a09e6ceef91b35
 WHIRLPOOL 
9ab19609189e866a11c03b0aeaa3b93124d8018d53e8dec641721eff39eb73c969c34c457209d63988361ffadef13a205ba5b71d19ad120e9f44313f42c7cd1b
 DIST numexpr-2.4.6.tar.gz 87481 SHA256 
052397670dc56d7845ff894cd7d858e4f115491ecd93bcc0eda5cb83990c5da3 SHA512 
fb68e0e782fd9e9e3cef9288addc0dfc3b79dbf01f0e72422cda6d5effd0f1629a49f9e5b89dcd16fa904423e0e9c776f3f276b4817e83cc58029c90a8627096
 WHIRLPOOL 
485eb98636f1ee5e1efbc843b404a23f3495d1b6682de15b67275a9c4082c87a1550d1bb91a19a7942f10f2f137af4a6294aaed95d7fd746f2db45d7319b70ec
+DIST numexpr-2.5.tar.gz 88347 SHA256 
319cdf4e402177a1c8ed4972cffd09f523446f186d347b7c1974787cdabf0294 SHA512 
32cc70a9dd8cec67d014056c98e798bdaef6338365366ebebd60fa5655dda2cdcb5df550c8afe87aa85e0c87ebada6ae695d125d8b605f32c368bde731ff2a6c
 WHIRLPOOL 
a48a887b324d9a904083621024fcdd6c5fcaa60577c9d76bf88bb370d844b75c409851e9f4a28aefce2a5a3f0420329c67f3d68e825c2525db1dd6aea2340bb1

diff --git a/dev-python/numexpr/numexpr-2.5.ebuild 
b/dev-python/numexpr/numexpr-2.5.ebuild
new file mode 100644
index 000..263d9a7
--- /dev/null
+++ b/dev-python/numexpr/numexpr-2.5.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Fast numerical array expression evaluator for Python and NumPy"
+HOMEPAGE="https://github.com/pydata/numexpr;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="mkl"
+
+RDEPEND="
+   >=dev-python/numpy-1.6[${PYTHON_USEDEP}]
+   mkl? ( sci-libs/mkl )"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_prepare_all() {
+   # TODO: mkl can be used but it fails for me
+   # only works with mkl in tree. newer mkl will use pkgconfig
+   if use mkl; then
+   local ext
+   use amd64 && ext=_lp64
+   cat <<- EOF > "${S}"/site.cfg
+   [mkl]
+   library_dirs = ${MKLROOT}/lib/em64t
+   include_dirs = ${MKLROOT}/include
+   mkl_libs = mkl_solver${ext}, mkl_intel${ext}, \
+   mkl_intel_thread, mkl_core, iomp5
+   EOF
+   fi
+   distutils-r1_python_prepare_all
+}
+
+python_compile() {
+   python_is_python3 || local -x CFLAGS="${CFLAGS} -fno-strict-aliasing"
+   distutils-r1_python_compile
+}
+
+python_test() {
+   pushd "${BUILD_DIR}"/lib > /dev/null
+   "${PYTHON}" \
+   -c "import sys;import numexpr;sys.exit(0 if numexpr.test() else 
1)" \
+   || die
+   pushd > /dev/null
+}



[gentoo-commits] proj/genkernel:master commit in: /

2016-02-07 Thread Robin H. Johnson
commit: 3d57190f734199a3ca48bd3a1b411b184b8963b5
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Feb  7 12:18:00 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Feb  7 12:18:00 2016 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=3d57190f

gen_configkernel: fix missing ||.

Signed-off-by: Robin H. Johnson  gentoo.org>

 gen_configkernel.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gen_configkernel.sh b/gen_configkernel.sh
index 81b2b52..b3a25af 100755
--- a/gen_configkernel.sh
+++ b/gen_configkernel.sh
@@ -38,7 +38,7 @@ function kconfig_set_opt() {
optval="$3"
sed -i "${kconfig}" \
-e "s/^#\? \?${optname}[ =].*/${optname}=${optval}/g" \
-   gen_die "Failed to set ${optname}=${optval} in $kconfig"
+   || gen_die "Failed to set ${optname}=${optval} in $kconfig"
 }
 
 config_kernel() {



[gentoo-commits] repo/gentoo:master commit in: dev-tex/rcsinfo/

2016-02-07 Thread Alexis Ballier
commit: f5e37d4d7aa14f69ab5484eab908453f8a9fb7e1
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 15:22:23 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 15:22:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5e37d4d

dev-tex/rcsinfo: add missing latex2html dep, bug #574094

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-tex/rcsinfo/rcsinfo-1.9.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-tex/rcsinfo/rcsinfo-1.9.ebuild 
b/dev-tex/rcsinfo/rcsinfo-1.9.ebuild
index 85be637..351069f 100644
--- a/dev-tex/rcsinfo/rcsinfo-1.9.ebuild
+++ b/dev-tex/rcsinfo/rcsinfo-1.9.ebuild
@@ -16,3 +16,5 @@ KEYWORDS="~x86 ~amd64"
 IUSE=""
 
 DOCS="README-1.9"
+RDEPEND=""
+DEPEND="dev-tex/latex2html"



[gentoo-commits] repo/gentoo:master commit in: dev-java/struts-plugins/, dev-java/struts/files/, dev-java/struts-xwork/, ...

2016-02-07 Thread Patrice Clement
commit: 10c2a080bfd1aad86f8b955159f651a8a49dbb81
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Feb  7 11:00:50 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Feb  7 11:01:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c2a080

dev-java/struts{,-plugins,-core,-xwork}: Removal. Fixes bug 540888.

 dev-java/struts-core/Manifest  |   2 -
 .../struts-2.3.15.2-build.xml-classpath.patch  |  20 -
 .../files/struts-2.3.15.2-build.xml-manifest.patch |  15 -
 dev-java/struts-core/metadata.xml  |   8 -
 dev-java/struts-core/struts-core-2.3.15.2.ebuild   |  67 
 dev-java/struts-plugins/Manifest   |   3 -
 .../files/struts-2.3.15.2-build.xml-manifest.patch | 406 -
 ...ruts-2.3.15.2-build.xml-remove-codebehind.patch |  50 ---
 .../struts-2.3.15.2-build.xml-remove-portlet.patch |  50 ---
 dev-java/struts-plugins/metadata.xml   |   8 -
 .../struts-plugins/struts-plugins-2.3.15.2.ebuild  | 106 --
 dev-java/struts-xwork/Manifest |   2 -
 dev-java/struts-xwork/metadata.xml |   8 -
 dev-java/struts-xwork/struts-xwork-2.3.15.2.ebuild |  64 
 dev-java/struts/Manifest   |   2 -
 .../struts-2.3.15.2-build.xml-apps-package.patch   | 249 -
 .../struts-2.3.15.2-build.xml-classpath.patch  | 162 
 .../files/struts-2.3.15.2-build.xml-manifest.patch |  30 --
 ...ts-2.3.15.2-build.xml-remove-apps-portlet.patch |  50 ---
 3.15.2-build.xml-remove-core-and-plugins.patch |  56 ---
 dev-java/struts/metadata.xml   |  14 -
 dev-java/struts/struts-2.3.15.2.ebuild | 105 --
 22 files changed, 1477 deletions(-)

diff --git a/dev-java/struts-core/Manifest b/dev-java/struts-core/Manifest
deleted file mode 100644
index c297467..000
--- a/dev-java/struts-core/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST struts-2.3.15.2-src.zip 6957356 SHA256 
26d85c52e7764ece49ccd7b9df38353003326116363a630ee8ae33bc26db3cd5 SHA512 
55df8ea52717781efe1b34b0b09b8677c88ce50cf160119bebfec979f22d95b0a801b9e1184dba3733ca80e9db27297d42412ae550eaa4451e4aad6f25b66825
 WHIRLPOOL 
dcc7d263c22ada417e3e3c518d10e2a8937cda0755110bcf29981c1eec7ce8e3b9b6260c708e0292916d9e5fb11b9d35a061b2e823254d0c2030a95035a67a86
-DIST struts-build.xml-2.3.15.2.tar.xz 20744 SHA256 
c76b3d852140f3ff62718949ec752673b99845abe028445fbca69fd9f4879d5b SHA512 
d4c21ff8dea2990507bff4968311a4f6a44c17ae1cbbd321b818d3fe558c131ee6c0132d5e61509f61aa53e284b61fb3cce24b89020f9889cf9ef960b7c31da3
 WHIRLPOOL 
7f42a22a5a43f91aba871ce4f04a38b0f1314b47395d22054bc6922b7565bb6c978141bb5a1b1274f7bfc9bd51a863ddcde9f711c1374f1cb5c707b0613e1897

diff --git 
a/dev-java/struts-core/files/struts-2.3.15.2-build.xml-classpath.patch 
b/dev-java/struts-core/files/struts-2.3.15.2-build.xml-classpath.patch
deleted file mode 100644
index 1ce5974..000
--- a/dev-java/struts-core/files/struts-2.3.15.2-build.xml-classpath.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 a/maven-build.xml
-+++ b/maven-build.xml
-@@ -125,7 +125,7 @@
- 
-   
- 
--
- 
--
--  
--
--  
- 
-   
- 

diff --git a/dev-java/struts-core/metadata.xml 
b/dev-java/struts-core/metadata.xml
deleted file mode 100644
index 2444066..000
--- a/dev-java/struts-core/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-   j...@gentoo.org
-   Java
-
-

diff --git a/dev-java/struts-core/struts-core-2.3.15.2.ebuild 
b/dev-java/struts-core/struts-core-2.3.15.2.ebuild
deleted file mode 100644
index 1d62ab6..000
--- a/dev-java/struts-core/struts-core-2.3.15.2.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc examples source test"
-
-inherit java-pkg-2 java-ant-2
-
-MY_PN="struts"
-MY_P="${MY_PN}-${PV}-src"
-
-DESCRIPTION="A powerful Model View Controller Framework for JSP/Servlets: Core"
-SRC_URI="mirror://apache/struts/source/${MY_P}.zip
-   
https://dev.gentoo.org/~tomwij/files/dist/${MY_PN}-build.xml-${PV}.tar.xz;
-HOMEPAGE="http://struts.apache.org/index.html;
-
-LICENSE="Apache-2.0"
-SLOT="2"
-KEYWORDS="~amd64"
-
-COMMON_DEPS="dev-java/commons-fileupload:0
-   dev-java/commons-lang:3.1
-   dev-java/freemarker:2.3
-   dev-java/ognl:3.0
-   dev-java/struts-xwork:2
-   dev-java/velocity:0
-   java-virtuals/servlet-api:3.0"
-
-RDEPEND=">=virtual/jre-1.5
-   ${COMMON_DEPS}"
-
-DEPEND=">=virtual/jdk-1.5
-   test? ( dev-java/ant-junit:0 )
-   ${COMMON_DEPS}"
-
-S="${WORKDIR}/${MY_PN}-${PV}/src/core"
-
-JAVA_ANT_REWRITE_CLASSPATH="true"
-EANT_GENTOO_CLASSPATH="struts-xwork-2"
-
-src_unpack() {
-   unpack ${MY_P}.zip
-   cd "${WORKDIR}"/${MY_PN}-${PV}/src || die
-   unpack ${MY_PN}-build.xml-${PV}.tar.xz
-
-   

[gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmcoincoin/

2016-02-07 Thread Bernard Cafarelli
commit: 27ac9dda9bc03f1689e5ffbc1602e16ec0eb3cd1
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Feb  7 10:58:05 2016 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Feb  7 10:59:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27ac9dda

x11-plugins/wmcoincoin: version bump

Also fix imlib2[X] dependency
Thanks Toralf Förster  gmx.de> in bug #573832

Package-Manager: portage-2.2.27

 x11-plugins/wmcoincoin/Manifest|  1 +
 x11-plugins/wmcoincoin/wmcoincoin-2.6.3.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/x11-plugins/wmcoincoin/Manifest b/x11-plugins/wmcoincoin/Manifest
index 83edbe7..15c4d85 100644
--- a/x11-plugins/wmcoincoin/Manifest
+++ b/x11-plugins/wmcoincoin/Manifest
@@ -1,3 +1,4 @@
 DIST wmcoincoin-2.5.1f.tar.gz 847541 SHA256 
9758327599afb3281bf483db1fec03bd2574f5cb45a45bac7995c889eddef48e SHA512 
6efdef1d8347ab2e7af0e28a6ae1ff08d5b517ec1beea9b012966018a8c919ed8c8ff50f087112619878a7822c4d272b449805ba3e20da68131b352b1967a2b6
 WHIRLPOOL 
d4fd710233016daff37bb7cbd17591002e564139bf836c71bc687fd83ed44678d60bcb02ccb51f20ed84359f0696b6357230dcbd7e4c510ee22a2cd811d9ef28
 DIST wmcoincoin-2.6.1.tar.gz 963391 SHA256 
c466433ac1cd8a018dfe87f33cb8832ce1e1c10714907e3eed94723c792bb140 SHA512 
25027af9d1a0a05ea3b5b0856f6316d0f3409e6f7f02d2611f3e8dbaca72285b8b0a05a8aa2ed8a88af12f05f01821eeaebb1c0272e68ef1fa43459dd6d09da9
 WHIRLPOOL 
bdecac8f249ed2ab598f119504f6b113a04364fa1392e0ac9a5a0d870c2c616e2aff703e062677523355a63f57ea5dda87c582a1499b62d82fb378a00ab79dde
 DIST wmcoincoin-2.6.2_p20140602.tar.gz 972358 SHA256 
e6afdf6ceeaec81327fbeb8d823ac97d4e3372c312b53ac83014c690ca364cf9 SHA512 
ddf1b24d9c9021e9cb02817e80f3327074ef7d09ba7d8033d5d0c8b39a25106a1d54d32f211d31a910e2175d98bbda940f309cc137edd1b02b5a656891e89b2c
 WHIRLPOOL 
031ac936551d4975f460b44cfe715e1b3f21d263fc299fadf0dee9f686a3f49cf879c603aae5e2ffa547a33b590410edde8c2e7768fdcb9e021887bb0baa8532
+DIST wmcoincoin-2.6.3.tar.gz 973973 SHA256 
4879a46e252ca11256257c0f859103d4b233f6e0ba6df0fafdb41aaa0e88de75 SHA512 
daffd94387a03e780250877ae43e5431a7c0710862dd9fab04efc254e02e648215fa9c301bf1ed6d1a9ca5182a2a88d10ea4c385d92752d047492e6e9ad01d2d
 WHIRLPOOL 
9abf87cee56bbb9ebb281fb8b5acd5e8fe5857b26ce49ccdab6c530ceb1fd0535a41ac02ccc838053c77c5a116c4796151f873558b4a7814522922dccb60a4da

diff --git a/x11-plugins/wmcoincoin/wmcoincoin-2.6.3.ebuild 
b/x11-plugins/wmcoincoin/wmcoincoin-2.6.3.ebuild
new file mode 100644
index 000..54209cf
--- /dev/null
+++ b/x11-plugins/wmcoincoin/wmcoincoin-2.6.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="a dockapp for browsing dacode news and board sites"
+HOMEPAGE="http://hules.free.fr/wmcoincoin;
+SRC_URI="http://hules.free.fr/${PN}/download/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="nls xinerama"
+
+RDEPEND="x11-libs/gtk+:2
+   media-libs/imlib2[X]
+   x11-libs/libXext
+   x11-libs/libXpm
+   x11-libs/libX11
+   x11-libs/libXft
+   xinerama? ( x11-libs/libXinerama )"
+DEPEND="${RDEPEND}
+   x11-proto/xextproto
+   x11-proto/xproto
+   x11-libs/libXt
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+   xinerama? ( x11-proto/xineramaproto )"
+
+DOCS="AUTHORS ChangeLog NEWS README"
+
+src_configure() {
+   econf \
+   $(use_enable nls) \
+   $(use_enable xinerama)
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/HTML-Parser/

2016-02-07 Thread Andreas Hüttel
commit: 451b403ec4ee5780dd5e220ad1309ccf146d2824
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  6 20:05:45 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sun Feb  7 11:37:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=451b403e

dev-perl/HTML-Parser: Version bump

Package-Manager: portage-2.2.27

 dev-perl/HTML-Parser/HTML-Parser-3.720.0.ebuild | 29 +
 dev-perl/HTML-Parser/Manifest   |  1 +
 2 files changed, 30 insertions(+)

diff --git a/dev-perl/HTML-Parser/HTML-Parser-3.720.0.ebuild 
b/dev-perl/HTML-Parser/HTML-Parser-3.720.0.ebuild
new file mode 100644
index 000..9032e6f
--- /dev/null
+++ b/dev-perl/HTML-Parser/HTML-Parser-3.720.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=GAAS
+DIST_VERSION=3.72
+inherit perl-module
+
+DESCRIPTION="Parse  section of HTML documents"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+
+RDEPEND="
+   >=dev-perl/HTML-Tagset-3.03
+   virtual/perl-XSLoader
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Test-Pod
+   virtual/perl-Test-Simple
+   )
+"
+
+mydoc="ANNOUNCEMENT"

diff --git a/dev-perl/HTML-Parser/Manifest b/dev-perl/HTML-Parser/Manifest
index dbc7b48..cd3ebc3 100644
--- a/dev-perl/HTML-Parser/Manifest
+++ b/dev-perl/HTML-Parser/Manifest
@@ -1 +1,2 @@
 DIST HTML-Parser-3.71.tar.gz 90368 SHA256 
be918b3749d3ff93627f72ee4b825683332ecb4c81c67a3a8d72b0435ffbd802 SHA512 
98165e22534477a4e06e6c61c10a16ad04f0e4ec79a52e458a322751d66fc3fe0182391ff60dce76076449f29dcfcb613a6e43a839d4fc15c4af5b4e8751036e
 WHIRLPOOL 
d59290151a66cc93b36bd62784478f6a57a3dd95fcf046db62bd51cef42b580777a4fbd8d1a18190c9dfda165e96b2f30a5fd8933f78ab8d800a12d71b906d9f
+DIST HTML-Parser-3.72.tar.gz 90680 SHA256 
ec28c7e1d9e67c45eca197077f7cdc41ead1bb4c538c7f02a3296a4bb92f608b SHA512 
9fded69219791af085018ffbe6737e74e370c543af52aa221aec174daf52d1b8d3cdd07f025176c0212ae572a924555262f2eefc73781f82cdb7d9cff58ae716
 WHIRLPOOL 
db3de380aa1df0d5ced4ca8ac48c7d47daa2ea1145aab02f5915f948c46e95019d4cb2cadbe0adaf76f938f0fe0209d9835680be6b66976d1680d3dd15105545



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycurl/

2016-02-07 Thread Justin Lecher
commit: 0ea90f38bbcd7a9bce3c4a8a204e49a8c4657e94
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:47:58 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ea90f38

dev-python/pycurl: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/pycurl/Manifest |  1 +
 dev-python/pycurl/pycurl-7.43.0.ebuild | 75 ++
 2 files changed, 76 insertions(+)

diff --git a/dev-python/pycurl/Manifest b/dev-python/pycurl/Manifest
index df875b1..2b337fa 100644
--- a/dev-python/pycurl/Manifest
+++ b/dev-python/pycurl/Manifest
@@ -2,3 +2,4 @@ DIST pycurl-7.19.3.1.tar.gz 116687 SHA256 
c0d673fe99a9de07239eabe77c798f1b043f60
 DIST pycurl-7.19.5.1.tar.gz 142140 SHA256 
6e9770f80459757f73bd71af82fbb29cd398b38388cdf1beab31ea91a331bc6c SHA512 
89a474d7285cb040099dc6107a238f326dcb22cdb2c2325139f0d7ebea56f0860869d20b6e8e3bb43882048a261a8ff5734c7fc3e790fde8a96de3fffd04894f
 WHIRLPOOL 
87eac50707acb4d764941e334a490d1c72c28433e8ff72caa7811f23d3f8ab2c6949a25ba8edd0cdacb27e498e60e728745c787a05853f1428ede8d91294a5cc
 DIST pycurl-7.19.5.3.tar.gz 154800 SHA256 
24f6c4016b1dd2a5e29d1b025ac2ad61f80c17adfdcf8a7f47aefab63ace78d7 SHA512 
f7e65e0c6f7d1666ed3bebc4fabb41205f6dadd96d80fb5d1985c13ab28d35effef2966e961383e01881648fca4a4d500e9692d712888313dbe164b2c651530c
 WHIRLPOOL 
c5fe1cc232bae07dfc63e1a8a3b0929b3c1bbf7adf29c2b6085e5bc1e97656d6f5afc236974bfc3febdd2ab4fe1b7cce08c96d4a8eba5ba870505c7c423badeb
 DIST pycurl-7.21.5.tar.gz 170962 SHA256 
8a1e0eb55573388275a1d6c2534ca4cfca5d7fa772b99b505c08fa149b27aed0 SHA512 
0f07b9e2256e4e019bf0ac85d9ca2fff56cffd49986495f2235f91e341ed937c9895da1636548be90523404027d063d83910055899e178e653842bc5de4151c4
 WHIRLPOOL 
2e46b5e16181d3cc66be56b38d40f4b7fd2ff7b9574fc4214247140a43ce70c0eac71d793ceddd24ff05bf784a1e8105c315fa4a7b0460bd908901b159e6655d
+DIST pycurl-7.43.0.tar.gz 182522 SHA256 
aa975c19b79b6aa6c0518c0cc2ae33528900478f0b500531dbcdbf05beec584c SHA512 
7442462c74c19964b9d72976e9b92bf68bb37debc1401bc399590bea42704065da13d6de710e795eeae79a4651b9a08841d50454243cb0994c7eb1c1bab233a5
 WHIRLPOOL 
640ef7669273bccdf72f0d98bd5f5c9d882f35ac507d2152f8ab1e2e680298ebe2691b4960713bb39b0a405ba8d0e9a03d69617c5150bb65581efaab99304185

diff --git a/dev-python/pycurl/pycurl-7.43.0.ebuild 
b/dev-python/pycurl/pycurl-7.43.0.ebuild
new file mode 100644
index 000..38c13db
--- /dev/null
+++ b/dev-python/pycurl/pycurl-7.43.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# The selftests fail with pypy, and urlgrabber segfaults for me.
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="python binding for curl/libcurl"
+HOMEPAGE="
+   https://github.com/pycurl/pycurl
+   https://pypi.python.org/pypi/pycurl
+   http://pycurl.io/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos"
+IUSE="curl_ssl_gnutls curl_ssl_libressl curl_ssl_nss +curl_ssl_openssl 
examples ssl test"
+
+# Depend on a curl with curl_ssl_* USE flags.
+# libcurl must not be using an ssl backend we do not support.
+# If the libcurl ssl backend changes pycurl should be recompiled.
+# If curl uses gnutls, depend on at least gnutls 2.11.0 so that pycurl
+# does not need to initialize gcrypt threading and we do not need to
+# explicitly link to libgcrypt.
+RDEPEND="
+   >=net-misc/curl-7.25.0-r1[ssl=]
+   ssl? (
+   
net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_libressl(-)=,curl_ssl_nss(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-),-curl_ssl_polarssl(-)]
+   curl_ssl_gnutls? ( >=net-libs/gnutls-2.11.0 )
+   )"
+
+# bottle-0.12.7: https://github.com/pycurl/pycurl/issues/180
+# bottle-0.12.7: 
https://github.com/defnull/bottle/commit/f35197e2a18de1672831a70a163fcfd38327a802
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/bottle[${PYTHON_USEDEP}]
+   dev-python/flaky[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/nose-show-skipped[${PYTHON_USEDEP}]
+   
net-misc/curl[curl_ssl_gnutls(-)=,curl_ssl_libressl(-)=,curl_ssl_nss(-)=,curl_ssl_openssl(-)=,-curl_ssl_axtls(-),-curl_ssl_cyassl(-),-curl_ssl_polarssl(-),kerberos]
+   >=dev-python/bottle-0.12.7[${PYTHON_USEDEP}]
+   )"
+# Needed for individual runs of testsuite by python impls.
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_prepare_all() {
+   sed -e "/setup_args\['data_files'\] = /d" -i setup.py || die
+   sed -e '/pyflakes/d' -i Makefile || die
+   distutils-r1_python_prepare_all
+}
+

[gentoo-commits] repo/gentoo:master commit in: dev-python/python-ptrace/

2016-02-07 Thread Justin Lecher
commit: 734c03473afff3e74c753d9405240906e8d39a7a
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:15:18 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=734c0347

dev-python/python-ptrace: Add python3.5 support

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild 
b/dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild
index a3ce1fc..54e5a97 100644
--- a/dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild
+++ b/dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/maybe/

2016-02-07 Thread Justin Lecher
commit: 9e2d0013b90eb3b1d00bbab12e46e8d62a5eb959
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:17:35 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e2d0013

dev-python/maybe: Add python3.5 support

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/maybe/Manifest   |  1 +
 dev-python/maybe/maybe-0.2.1.ebuild | 26 ++
 dev-python/maybe/metadata.xml   | 15 +++
 3 files changed, 42 insertions(+)

diff --git a/dev-python/maybe/Manifest b/dev-python/maybe/Manifest
new file mode 100644
index 000..475b919
--- /dev/null
+++ b/dev-python/maybe/Manifest
@@ -0,0 +1 @@
+DIST maybe-0.2.1.tar.gz 5722 SHA256 
d7286b458ad1eb2546401614871e8b2b5c34cd75b5ab95dde73db928c4eaa74f SHA512 
490f1bc31f9f1cc196c4359292270724ececacde4ba2047b5b709a8d4713fa5a730fb6a39ed2c2f2073827e484992568f0a6630a0078be1bbe473568606f7479
 WHIRLPOOL 
806e2eee1a28468462857a940889d6981c0fb06d271ec59b1f367a2ffadfbbf12350009ec5b4ef3801a05aa50395fc8daf185cee1354d37bbedc55480aa144fc

diff --git a/dev-python/maybe/maybe-0.2.1.ebuild 
b/dev-python/maybe/maybe-0.2.1.ebuild
new file mode 100644
index 000..b3387fd
--- /dev/null
+++ b/dev-python/maybe/maybe-0.2.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} )
+
+inherit distutils-r1
+
+DESCRIPTION="See what a program does before deciding whether you really want 
it to happen"
+HOMEPAGE="https://github.com/p-e-w/maybe http://pypi.python.org/pypi/maybe;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-python/blessings[${PYTHON_USEDEP}]
+   dev-python/python-ptrace[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"

diff --git a/dev-python/maybe/metadata.xml b/dev-python/maybe/metadata.xml
new file mode 100644
index 000..12837ef
--- /dev/null
+++ b/dev-python/maybe/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+pyt...@gentoo.org
+Python
+  
+  
+maybe
+
+  p...@worldwidemann.com
+  Philipp Emanuel Weidmann
+
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-python/alembic/

2016-02-07 Thread Justin Lecher
commit: bd81ea4cfc17970db723575ded55c15bd6ef
Author: Wes Cilldhaire  sol1  com  au>
AuthorDate: Sun Feb  7 11:40:38 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 11:40:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd81ea4c

dev-python/alembic: rm old

Package-Manager: portage-2.2.27

 dev-python/alembic/Manifest |  3 --
 dev-python/alembic/alembic-0.6.7.ebuild | 49 -
 dev-python/alembic/alembic-0.7.4.ebuild | 46 ---
 dev-python/alembic/alembic-0.7.6.ebuild | 46 ---
 4 files changed, 144 deletions(-)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index cb87ecf..08d72aa 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,6 +1,3 @@
-DIST alembic-0.6.7.tar.gz 467942 SHA256 
55c35e897d2970bae45345ff4c8a190e773a08f4289299de694ebfebfb0c6946 SHA512 
21bf62bb035cac6686599ec3a5a7dcd8505ca590f37f5667990f18b3070b1490ca083950cec9714fe10947ca05df9598e14c69eb915d3e5d5d958414d00dc5f6
 WHIRLPOOL 
b3a10fbef104167cbd89f08e6dfe00a2559b2e6d620026539af64911d23f5db60873c91c995d55204bbaed6646f2f7f9b834e477c690d0b5abd8050de3e1fdd9
-DIST alembic-0.7.4.tar.gz 604836 SHA256 
550f10b2266f689778eced2fed899bfd05755737478454b97fb99385f2e780e5 SHA512 
258d2f7fe046e7fd662fae0b68ba19988cc59fd1d0d8bb6e1b3b0ea133d076d649d6bc99933ac50be538d1c4d64062b2b2d259cb042d9bbddf7346d0283af383
 WHIRLPOOL 
eaa17f8b0bd91ca8eb11292bc0be45443b43564b06ec1461c5d6b60dcbd3777c443c6a355164057334080a7dbf37f32cf591f176deb52afdb12d7ca79de4a766
-DIST alembic-0.7.6.tar.gz 623931 SHA256 
864fa461265d6c97bcefee603e9ef0b6385bda9063d41b3db3e010abbba5ef61 SHA512 
08d04f4ad0d5e8fe5741fab7480e6652f26449e393af4406c62acd7aa039618cce8db64ebf113565ee5b98c5e19a813b4ebd2ad15d68a717c48080a3418d517e
 WHIRLPOOL 
ce2a5894df399b773a1ee8e8163391fd05c3df8d8b5f6f31bd949f8e5a1ec7b4f837f1eb32e231ce5b5b831faedf35f685b02b02f88075125df2561b2ab64846
 DIST alembic-0.7.7.tar.gz 721855 SHA256 
abdeded3f92766d30d2e00015f73573e23f96bcb38037fac199a75445e3e66c6 SHA512 
5478987f37ca724e168fd4de4bd557ca3344aa0539ae25dd56fc05b855ec02004a1d8c3c14aa3f3715eaaa74431d1b25121810c3f197ba5def67afbbe41e62eb
 WHIRLPOOL 
e10e6930a559fa7a8e90dab83a08d3f9c2a252085d4732036e5e07c9b75329d851a64f6d68639eda88fdb136cfc43078434e23e5438551569ca55eb295a192a8
 DIST alembic-0.8.2.tar.gz 931914 SHA256 
a69d65a766801c40e921ca24ae358bf081a990f54b867bbdc3e2a73e975550be SHA512 
530a30147af4add82c6162f69cf6742831c9909db49bd0ec7245e36db51f8cf008c4696b22df24a8df5ea44cbf3da1c02d1989fbbef349adda238af32e9a061b
 WHIRLPOOL 
699eb29362a0276484cf64148dad6820cbaf41aef11b6f79165ac0aa6b2fbdc2643397bf947378b501acb94e8b9e04b0689903e4c6942b547eda93284f304c3e
 DIST alembic-0.8.4.tar.gz 950696 SHA256 
8507fc12ccc99321da2fa117dde4b5d8664ff5ef017df7ce5e7e5051901a624a SHA512 
ef0c156d21b28dcabe1cb9249a0350fb12b489019240e46c37f2b070f04f86471afe0011c3df745f4d126a0477605f460cef63133cc28cb5ddf550f10627a7ab
 WHIRLPOOL 
46dff4aeb8693314b708c5182d69e271422930fb1d4ee6d7f355f9845b8a19ce4385f6834fb83b35a316be6491c37d9ffd5e6824d349d753c1c12c04c0cb

diff --git a/dev-python/alembic/alembic-0.6.7.ebuild 
b/dev-python/alembic/alembic-0.6.7.ebuild
deleted file mode 100644
index 448ef44..000
--- a/dev-python/alembic/alembic-0.6.7.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
-HOMEPAGE="https://bitbucket.org/zzzeek/alembic;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test doc"
-
-# requires.txt cites 'SQLAlchemy>=0.7.3' which is really both old and silly
-# because it shatters the testsuite.  If 'someone' cares to adhere to correct 
form
-# and edit to -0.7.3, feel free, and then pick up the pieces.
-RDEPEND=">=dev-python/sqlalchemy-0.8.4[${PYTHON_USEDEP}]
-   dev-python/mako[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( ${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}] )"
-# For test phase
-DISTUTILS_IN_SOURCE_BUILD=1
-
-python_prepare_all() {
-   # suite passes all if run from source. The residual fail & error are 
quite erroneous
-   sed -e 's:class SourcelessVersioningTest(VersioningTest):#&:' \
-   -e 's:sourceless = True:#&:' \
-   -e 's:test_needs_flag:_&:' \
-   -i tests/test_versioning.py || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   nosetests tests || die "Testing failed with ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-
-   distutils-r1_python_install_all
-}

diff --git 

[gentoo-commits] repo/gentoo:master commit in: dev-python/wheel/

2016-02-07 Thread Justin Lecher
commit: 8d038a60b6d91c9ad123a20ea3c94593651ac557
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:42:31 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d038a60

dev-python/wheel: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/wheel/Manifest|  1 +
 dev-python/wheel/wheel-0.29.0.ebuild | 46 
 2 files changed, 47 insertions(+)

diff --git a/dev-python/wheel/Manifest b/dev-python/wheel/Manifest
index a06aea6..ffcfe73 100644
--- a/dev-python/wheel/Manifest
+++ b/dev-python/wheel/Manifest
@@ -2,3 +2,4 @@ DIST wheel-0.24.0.tar.gz 50597 SHA256 
ef832abfedea7ed86b6eae7400128f88053a1da81a
 DIST wheel-0.26.0.tar.gz 51207 SHA256 
eaad353805c180a47545a256e6508835b65a8e830ba1093ed8162f19a50a530c SHA512 
04edbb993f1a2a6f9d22ca5eccd267da018df716a0d266d2f7bf6f7f5f4080e252163c84e07abf04cdd449a15c440a19981fe0669c4adc4d8a96667e325f7e24
 WHIRLPOOL 
8ab5c6ed7b36cf15ca77d4effa8f8c3ef0b44bb49c5a01d83ccd8eca35058e9012bee2ceb23139c1e6880e94aac314d20ad689074bb6a3fbb8bf408a5b8bfcaa
 DIST wheel-0.27.0.tar.gz 54003 SHA256 
0beae2ec3a20df54869177ec00b4619219bc7cab5578984fb400517aee2df523 SHA512 
26e95032861ef230cc0273360bc9439b4fe106379876ef6bec5f109d79f3d1f8701056b3752487cacf87ba902fc2df916b65f992454b64cc44cd8bf6ec8403f0
 WHIRLPOOL 
3215d55a742883842162ac289d8a62a8d1cbf1aaaeae88125db5bf5fcd01145076d9e5f66e440791862575f0fd723903116c4016c745c8cdb81965088d237619
 DIST wheel-0.28.0.tar.gz 54052 SHA256 
70525cdda4fe80f3f4b7b5c00cffe4f5d967ec35f6ec55924b13ebd3f58694e1 SHA512 
b15c77c1b282b4d7e4e39c8f475403a8ccb7f44a695ad6433630ecb1de450a951b2012387b8f73d95c47c1bc7d60f8fb56e5d2315fd0d2c404bf186f56e7cb08
 WHIRLPOOL 
5413e23d8f28a6a731928e7f3fbb5ff9dd1836da2ad7133665bd72859442406a12164d92efd82791a1286e8b8aa138bda92690a157f25e3fa91ecbb4d9a20798
+DIST wheel-0.29.0.tar.gz 54143 SHA256 
1ebb8ad7e26b448e9caa4773d2357849bf80ff9e313964bcaf79cbf0201a1648 SHA512 
b72dec3cf71e3d87c611ff41f1381ed7f2c654edb50c808fb4fd0f552bab3572434495bf18c36d2ecc7cb8b355782054d3d6dedd5589ffda15027e72cff24602
 WHIRLPOOL 
93e501fc17208ece626217fda30b07991c6b7f73f16f1d7d5bf338ff0a21e4aed3c44ec243626cfda622c6e1e991ecc856a1cd6caf8e68b99e1edac46321e47e

diff --git a/dev-python/wheel/wheel-0.29.0.ebuild 
b/dev-python/wheel/wheel-0.29.0.ebuild
new file mode 100644
index 000..e9a8505
--- /dev/null
+++ b/dev-python/wheel/wheel-0.29.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="A built-package format for Python"
+HOMEPAGE="https://pypi.python.org/pypi/wheel;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+IUSE="doc test"
+
+RDEPEND="dev-python/jsonschema[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+#  test? (
+#  dev-python/keyring
+#  dev-python/keyrings_alt
+#  dev-python/ed25519ll
+#  dev-python/pytest[${PYTHON_USEDEP}]
+#  )
+#"
+
+# Fails somehow
+RESTRICT=test
+
+python_test() {
+   sed \
+   -e 's:--cov=wheel::g' \
+   -i setup.cfg || die
+   py.test -v -v || die "testsuite failed under ${EPYTHON}"
+}
+
+pkg_postinst() {
+   optfeature "Signature support" \
+   dev-python/keyring \
+   dev-python/keyrings_alt \
+   dev-python/ed25519ll
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/nose-show-skipped/

2016-02-07 Thread Justin Lecher
commit: d92c84946feee1ec84500dbb40455db238251560
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:36:26 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d92c8494

dev-python/nose-show-skipped: New package, ebuild written by me

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/nose-show-skipped/Manifest  |  1 +
 dev-python/nose-show-skipped/metadata.xml  | 15 ++
 .../nose-show-skipped/nose-show-skipped-0.1.ebuild | 23 ++
 3 files changed, 39 insertions(+)

diff --git a/dev-python/nose-show-skipped/Manifest 
b/dev-python/nose-show-skipped/Manifest
new file mode 100644
index 000..b11b175
--- /dev/null
+++ b/dev-python/nose-show-skipped/Manifest
@@ -0,0 +1 @@
+DIST nose-show-skipped-0.1.tar.gz 1768 SHA256 
a202f9c4b35107e9e1d6d8438eff4a930cb31a7e17517a69b319448f136815ce SHA512 
b6f3cbc8fdc6af7f6298ad54a5b06bd053d27197368eef1e006aff438d517dba549154eb3be35996b0bd1c291537729438f52709b76c507e20c496b6e504f5df
 WHIRLPOOL 
9f83b6649ff7f2fbd47b35b5b27c63ac6a732615c773f43b054436fd9df40c86b49b6d7ee3af6473edffd33f2b4498abdd799f5d2d6baa24f144a93c86f51a1e

diff --git a/dev-python/nose-show-skipped/metadata.xml 
b/dev-python/nose-show-skipped/metadata.xml
new file mode 100644
index 000..f21cd25
--- /dev/null
+++ b/dev-python/nose-show-skipped/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+pyt...@gentoo.org
+Python
+  
+  
+nose-show-skipped
+
+  cpcl...@gmail.com
+  Phillip Cloud
+
+  
+

diff --git a/dev-python/nose-show-skipped/nose-show-skipped-0.1.ebuild 
b/dev-python/nose-show-skipped/nose-show-skipped-0.1.ebuild
new file mode 100644
index 000..306ffdc
--- /dev/null
+++ b/dev-python/nose-show-skipped/nose-show-skipped-0.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A nose plugin to show skipped tests and their messages"
+HOMEPAGE="https://github.com/cpcloud/nose-show-skipped 
http://pypi.python.org/pypi/nose-show-skipped;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-ptrace/

2016-02-07 Thread Justin Lecher
commit: 960c6c4c5d88fb65ff85ccfb8cf74b1337462f0d
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:01:22 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=960c6c4c

dev-python/python-ptrace: Chop DESCRIPTION to 80 chars

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild 
b/dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild
index a598d06..a3ce1fc 100644
--- a/dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild
+++ b/dev-python/python-ptrace/python-ptrace-0.8.1-r1.ebuild
@@ -1,13 +1,14 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
+
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
 
 inherit distutils-r1
 
-DESCRIPTION="python-ptrace is a debugger using ptrace (Linux, BSD and Darwin 
system call to trace processes)"
+DESCRIPTION="A debugger using ptrace (Linux, BSD and Darwin system call to 
trace processes)"
 HOMEPAGE="https://bitbucket.org/haypo/python-ptrace/ 
https://pypi.python.org/pypi/python-ptrace;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
@@ -25,6 +26,6 @@ python_test() {
 python_install_all() {
use examples && local EXAMPLES=( examples/. )
# doc folder missing key files to effect a proper doc build
-   use doc && local DOCS=( README doc/* )
+   use doc && local DOCS=( README doc/. )
distutils-r1_python_install_all
 }



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyrsistent/

2016-02-07 Thread Justin Lecher
commit: 2e4bf39787b497e995bdc29c0ecabefc14e5c009
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 10:38:22 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:00:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e4bf397

dev-python/pyrsistent: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/pyrsistent/Manifest  |  1 +
 dev-python/pyrsistent/pyrsistent-0.11.12.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-python/pyrsistent/Manifest b/dev-python/pyrsistent/Manifest
index 561ccda..d29fbf3 100644
--- a/dev-python/pyrsistent/Manifest
+++ b/dev-python/pyrsistent/Manifest
@@ -1,2 +1,3 @@
 DIST pyrsistent-0.11.10.tar.gz 62646 SHA256 
db0469748e74f72b6142aa60bf9a5a15b4a080f47d9ed2fb7c6c083756264149 SHA512 
cc0caf78b596e2cd9a5960be354a7ecae50a6f324295e1d882100e85208145735d5154a8b17eb297b99d48a6b1edb36cf8bdae781efef046f097f53af00f732b
 WHIRLPOOL 
d0ac9088c0afaec1672eb8b4e29c8b3f85f7bb064f360d54a21f0d70daa4ea9d37ab8f947bbba41a0695fc8a5e2f6e73c263748791952c3b32eb7134d2c8d74b
 DIST pyrsistent-0.11.11.tar.gz 84016 SHA256 
1ce499386a567c512eda3a180f14214e1a698d227e46ea2ef2566ba49e3e5d8f SHA512 
7edced0fbe57ad57aaff7d04dec79ed317d938e8e7369ff0d77dea9b1b097de74c794e19cbcdbb0144800ff7f6f491069a7726168b349f584d85bf3b27901695
 WHIRLPOOL 
4f7f3d630d6f5646732bc082387f8fa048d429e1ba762c0ed43e98d6a1501faf734ef027e26057134898bd060479526df687463d9201684f4fabef9f5302
+DIST pyrsistent-0.11.12.tar.gz 88621 SHA256 
255e6e3e1373b93e65158ae0a672a5ba6d01b18f92d8eab319969b81e784fe49 SHA512 
66424adb4d1e69d500cfbb2f9dd0d3d5f9678cd7ee7ca02909a714b7351412022cdb9507417318df3027287f0ffed9f2872dd8fb489e236f1769527a81756d1c
 WHIRLPOOL 
04a52d660c901156de93fed94dee337b2f218cce7ab4f7b8434176565216e543c7ff839c421e219ffaa9b20d1914d51a7514463e0f706baae3ad7b89eb9c17ba

diff --git a/dev-python/pyrsistent/pyrsistent-0.11.12.ebuild 
b/dev-python/pyrsistent/pyrsistent-0.11.12.ebuild
new file mode 100644
index 000..f45f4f9
--- /dev/null
+++ b/dev-python/pyrsistent/pyrsistent-0.11.12.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Persistent/Functional/Immutable data structures"
+HOMEPAGE="http://github.com/tobgu/pyrsistent/ 
http://pypi.python.org/pypi/pyrsistent;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )"
+
+# https://github.com/tobgu/pyrsistent/issues/
+# fails
+#RESTRICT="test"
+
+python_test() {
+   export PYTHONPATH="${S}:${PYTHONPATH}"
+   py.test -v -v -x || die ${PYTHONPATH}
+}



[gentoo-commits] proj/genkernel:master commit in: /

2016-02-07 Thread Robin H. Johnson
commit: aa3fd1cd490c0e2ad1088a28d325701c2cebcdf1
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Feb  7 12:19:51 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Feb  7 12:19:51 2016 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=aa3fd1cd

Be stricter with module path for firmware.

Signed-off-by: Robin H. Johnson  gentoo.org>

 gen_compile.sh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gen_compile.sh b/gen_compile.sh
index 8d8f04a..9b9dc5b 100755
--- a/gen_compile.sh
+++ b/gen_compile.sh
@@ -338,6 +338,8 @@ compile_kernel() {
if [ -n "${firmware_in_kernel_line}" -a "${firmware_in_kernel_line}" != 
CONFIG_FIRMWARE_IN_KERNEL=y ]
then
print_info 1 ">> Installing firmware ('make 
firmware_install') due to CONFIG_FIRMWARE_IN_KERNEL != y..."
+   [ "${INSTALL_MOD_PATH}" != '' ] && export INSTALL_MOD_PATH
+   [ "${INSTALL_FW_PATH}" != '' ] && export INSTALL_FW_PATH
MAKEOPTS="${MAKEOPTS} -j1" compile_generic "firmware_install" 
kernel
else
print_info 1 ">> Not installing firmware as it's 
included in the kernel already (CONFIG_FIRMWARE_IN_KERNEL=y)..."



[gentoo-commits] proj/genkernel:master commit in: /

2016-02-07 Thread Robin H. Johnson
commit: 0042cf39f3efd3ed14a9a8a363b82cb43117b4e4
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Feb  7 12:53:17 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Feb  7 12:53:17 2016 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=0042cf39

gen_initramfs: drop usage of mknod, so we can almost run without root!

Signed-off-by: Robin H. Johnson  gentoo.org>

 gen_initramfs.sh | 61 
 1 file changed, 39 insertions(+), 22 deletions(-)

diff --git a/gen_initramfs.sh b/gen_initramfs.sh
index a03f5b1..fdf2eb1 100755
--- a/gen_initramfs.sh
+++ b/gen_initramfs.sh
@@ -60,6 +60,25 @@ log_future_cpio_content() {
fi
 }
 
+append_devices() {
+   # WARNING, does NOT support appending to cpio!
+   cat >"${TEMP}/initramfs-base-temp.devices" <<-EOF
+   dir /dev 0755 0 0
+   nod /dev/console 660 0 0 c 5 1
+   nod /dev/null 660 0 0 c 1 3
+   nod /dev/zero 660 0 0 c 1 5
+   nod /dev/tty0 600 0 0 c 4 0
+   nod /dev/tty1 600 0 0 c 4 1
+   nod /dev/ttyS0 600 0 0 c 4 64
+   EOF
+   if [[ "${LOGLEVEL}" -gt 1 ]]; then
+   echo "Adding devices to cpio:"
+   cat "${TEMP}/initramfs-base-temp.devices"
+   fi
+   ${KERNEL_OUTPUTDIR}/usr/gen_init_cpio 
"${TEMP}/initramfs-base-temp.devices" >"${CPIO}" \
+   || gen_die "Failed to add devices to cpio"
+}
+
 append_base_layout() {
if [ -d "${TEMP}/initramfs-base-temp" ]
then
@@ -88,15 +107,6 @@ append_base_layout() {
echo "/dev/ram0 /   ext2defaults0 0" > 
${TEMP}/initramfs-base-temp/etc/fstab
echo "proc  /proc   procdefaults0 0" >> 
${TEMP}/initramfs-base-temp/etc/fstab
 
-   cd ${TEMP}/initramfs-base-temp/dev
-   # TODO: this will fail as non-root
-   mknod -m 660 console c 5 1 || gen_die "failed to mknod"
-   mknod -m 660 null c 1 3 || gen_die "failed to mknod"
-   mknod -m 660 zero c 1 5 || gen_die "failed to mknod"
-   mknod -m 600 tty0 c 4 0 || gen_die "failed to mknod"
-   mknod -m 600 tty1 c 4 1 || gen_die "failed to mknod"
-   mknod -m 600 ttyS0 c 4 64 || gen_die "failed to mknod"
-
date -u '+%Y%m%d-%H%M%S' > ${TEMP}/initramfs-base-temp/etc/build_date
echo "Genkernel $GK_V" > ${TEMP}/initramfs-base-temp/etc/build_id
 
@@ -829,9 +839,7 @@ create_initramfs() {
 
# Create empty cpio
CPIO="${TMPDIR}/initramfs-${KV}"
-   echo | cpio ${CPIO_ARGS} -F "${CPIO}" 2>/dev/null \
-   || gen_die "Could not create empty cpio at ${CPIO}"
-
+   append_data 'devices' # WARNING, must be first!
append_data 'base_layout'
append_data 'auxilary' "${BUSYBOX}"
append_data 'busybox' "${BUSYBOX}"
@@ -880,18 +888,26 @@ create_initramfs() {
fi
 
# Finalize cpio by removing duplicate files
-   print_info 1 ">> Finalizing cpio..."
-   local TDIR="${TEMP}/initramfs-final"
-   mkdir -p "${TDIR}"
-   cd "${TDIR}"
-
-   cpio --quiet -i -F "${CPIO}" 2> /dev/null \
-   || gen_die "extracting cpio for finalization"
-   find . -print | cpio ${CPIO_ARGS} -F "${CPIO}" 2>/dev/null \
-   || gen_die "recompressing cpio"
+   # TODO: maybe replace this with:
+   # http://search.cpan.org/~pixel/Archive-Cpio-0.07/lib/Archive/Cpio.pm
+   # as then we can dedupe ourselves...
+   if [[ $UID -eq 0 ]]; then
+   print_info 1 ">> Deduping cpio..."
+   local TDIR="${TEMP}/initramfs-final"
+   mkdir -p "${TDIR}"
+   cd "${TDIR}"
+
+   cpio --quiet -i -F "${CPIO}" 2> /dev/null \
+   || gen_die "extracting cpio for dedupe"
+   find . -print | cpio ${CPIO_ARGS} -F "${CPIO}" 2>/dev/null \
+   || gen_die "rebuilding cpio for dedupe"
+   cd "${TEMP}"
+   rm -rf "${TDIR}"
+   else
+   print_info 1 ">> Cannot deduping cpio contents without 
root; skipping"
+   fi
 
cd "${TEMP}"
-   rm -r "${TDIR}"
 
if isTrue "${INTEGRATED_INITRAMFS}"
then
@@ -998,6 +1014,7 @@ create_initramfs() {
 
if [ -n "${compression}" ]; then
print_info 1 ">> Compressing cpio data 
(${compress_ext})..."
+   print_info 5 ">> Compression command 
(${compress_cmd} $CPIO)..."
${compress_cmd} "${CPIO}" || gen_die 
"Compression (${compress_cmd}) failed"
mv -f "${CPIO}${compress_ext}" "${CPIO}" || 
gen_die "Rename failed"
else



[gentoo-commits] repo/gentoo:master commit in: dev-python/alembic/

2016-02-07 Thread Ian Delaney
commit: a9af629c57ef330e236be95ae7811f10e04f570a
Author: Ian Delaney  gentoo  org>
AuthorDate: Sun Feb  7 13:25:15 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sun Feb  7 13:27:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9af629c

dev-python/alembic: return of vn -0.7.4 to fix breakage

sourced from taskflow-0.7.1 requiring a stabled verison of alembic
that supports python3.3

Pull request: https://github.com/gentoo/gentoo/pull/809

Package-Manager: portage-2.2.26
RepoMan-Options: --force

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-0.7.4.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index 08d72aa..4f75593 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,3 +1,4 @@
+DIST alembic-0.7.4.tar.gz 604836 SHA256 
550f10b2266f689778eced2fed899bfd05755737478454b97fb99385f2e780e5 SHA512 
258d2f7fe046e7fd662fae0b68ba19988cc59fd1d0d8bb6e1b3b0ea133d076d649d6bc99933ac50be538d1c4d64062b2b2d259cb042d9bbddf7346d0283af383
 WHIRLPOOL 
eaa17f8b0bd91ca8eb11292bc0be45443b43564b06ec1461c5d6b60dcbd3777c443c6a355164057334080a7dbf37f32cf591f176deb52afdb12d7ca79de4a766
 DIST alembic-0.7.7.tar.gz 721855 SHA256 
abdeded3f92766d30d2e00015f73573e23f96bcb38037fac199a75445e3e66c6 SHA512 
5478987f37ca724e168fd4de4bd557ca3344aa0539ae25dd56fc05b855ec02004a1d8c3c14aa3f3715eaaa74431d1b25121810c3f197ba5def67afbbe41e62eb
 WHIRLPOOL 
e10e6930a559fa7a8e90dab83a08d3f9c2a252085d4732036e5e07c9b75329d851a64f6d68639eda88fdb136cfc43078434e23e5438551569ca55eb295a192a8
 DIST alembic-0.8.2.tar.gz 931914 SHA256 
a69d65a766801c40e921ca24ae358bf081a990f54b867bbdc3e2a73e975550be SHA512 
530a30147af4add82c6162f69cf6742831c9909db49bd0ec7245e36db51f8cf008c4696b22df24a8df5ea44cbf3da1c02d1989fbbef349adda238af32e9a061b
 WHIRLPOOL 
699eb29362a0276484cf64148dad6820cbaf41aef11b6f79165ac0aa6b2fbdc2643397bf947378b501acb94e8b9e04b0689903e4c6942b547eda93284f304c3e
 DIST alembic-0.8.4.tar.gz 950696 SHA256 
8507fc12ccc99321da2fa117dde4b5d8664ff5ef017df7ce5e7e5051901a624a SHA512 
ef0c156d21b28dcabe1cb9249a0350fb12b489019240e46c37f2b070f04f86471afe0011c3df745f4d126a0477605f460cef63133cc28cb5ddf550f10627a7ab
 WHIRLPOOL 
46dff4aeb8693314b708c5182d69e271422930fb1d4ee6d7f355f9845b8a19ce4385f6834fb83b35a316be6491c37d9ffd5e6824d349d753c1c12c04c0cb

diff --git a/dev-python/alembic/alembic-0.7.4.ebuild 
b/dev-python/alembic/alembic-0.7.4.ebuild
new file mode 100644
index 000..26782e5
--- /dev/null
+++ b/dev-python/alembic/alembic-0.7.4.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="https://bitbucket.org/zzzeek/alembic;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="test doc"
+
+# requires.txt cites 'SQLAlchemy>=0.7.3' which is really both old and silly
+# because it shatters the testsuite.  If 'someone' cares to adhere to correct 
form
+# and edit to -0.7.3, feel free, and then pick up the pieces.
+RDEPEND=">=dev-python/sqlalchemy-0.8.4[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( ${RDEPEND}
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}] )"
+# For test phase
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_prepare_all() {
+   # suite passes all if run from source. The residual fail & error are 
quite erroneous
+   rm tests/test_script_consumption.py
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   ${EPYTHON} run_tests.py || die "Testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/texinfo/, sys-apps/texinfo/files/

2016-02-07 Thread Lars Wendler
commit: 396cd5a91787224e205615f7abd548f3a4141eeb
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  7 15:48:56 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  7 15:49:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=396cd5a9

sys-apps/texinfo: Revert removal of old versions as it breaks packages.

This reverts commit 7257191494c950bc7f057ff321e63e2e821ec28c.

Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/texinfo/Manifest  |   1 +
 .../files/texinfo-4.13-accentenc-test.patch|  17 +++
 sys-apps/texinfo/files/texinfo-4.13-docbook.patch  |  66 +++
 .../files/texinfo-4.13-texi2dvi-regexp-range.patch |  23 
 sys-apps/texinfo/files/texinfo-4.13-tinfo.patch|  24 
 sys-apps/texinfo/files/texinfo-4.13-xz.patch   | 130 +
 sys-apps/texinfo/texinfo-4.13-r2.ebuild|  58 +
 7 files changed, 319 insertions(+)

diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest
index f5d561a..ef9eb65 100644
--- a/sys-apps/texinfo/Manifest
+++ b/sys-apps/texinfo/Manifest
@@ -1,3 +1,4 @@
+DIST texinfo-4.13.tar.lzma 1563777 SHA256 
6d28b0ceae866e3536142fc552e7a3bc9f84c8303119c25731b2478eef64c9e5 SHA512 
bded399ed5fcf97dfa72d9486df91ecfc501301d83929b09b230aee2b8ad6994b7d7b5965b04d43de729cee30575b2334cf75879ad0a61c4b781ccc16d6c12db
 WHIRLPOOL 
6ef9d5e47cae7c6a94272e35bafe0716e617691b6b549a59ef8f95244f1b9a94e9adb79db38cf8e23166a43e84725e3eb01c971c8894bc4201aa743a44170c35
 DIST texinfo-5.2.tar.xz 3812944 SHA256 
5471ef683a64588a7cfef46ef2bdd3fbcbca89d847e10832612293f105e44eda SHA512 
6f9c5142db3b155bd601149b5632807b3c20dcfa7006ce5f7e120e6fc4b2174a3f4671c18232c040ffd69ebfb5950be5c563ac5cc08b88d03eb5a9f1b0f96c04
 WHIRLPOOL 
609f0c2ac4deccf85f99cae3f681ce3892c7822988a84970171dec0f1224052861b3ac3fac97e666016bac4469b0e8446133c775a20f7201ff6dffa90fc84290
 DIST texinfo-6.0.tar.xz 4086712 SHA256 
11ba4358696e8be3b3c7cfc88b89cf69525791aeabf0ee0a59ca58ebbd3471e4 SHA512 
36f82288dfb7c2385630043faf75ccef5af625952d792c669c5eea673ae5b3474c148041bf1935f87ddeaae7114103731277e715d0d510c6fb41e0211ab12494
 WHIRLPOOL 
1d1facd5670321aca908407f65ff6a8769f3d7528c4535d77cf3fc6d948d766acc1e3f592e74554c427fca51a9e54048d54774586543d6316b664ac3c92d06c8
 DIST texinfo-6.1.tar.xz 4520376 SHA256 
ac68394ce21b2420ba7ed7cec65d84aacf308cc88e9bf4716fcfff88286883d2 SHA512 
ae47295f3bcfb728c3be59421cf830ecfa5fc7856a086e45da2bac89600d883aa4406a6ef62d7ee5dc2bab83a3efa1cec861a3b4b14b85bbecb53ebf3ebf7235
 WHIRLPOOL 
187f11681f041aa5f4260c6c2833cb877a4c74afda73d4f72008c61c8a089dd0393ff90257410d5e48b9501c36dd4991032db001c5c17b8224afb6f5819cd165

diff --git a/sys-apps/texinfo/files/texinfo-4.13-accentenc-test.patch 
b/sys-apps/texinfo/files/texinfo-4.13-accentenc-test.patch
new file mode 100644
index 000..ad470fa
--- /dev/null
+++ b/sys-apps/texinfo/files/texinfo-4.13-accentenc-test.patch
@@ -0,0 +1,17 @@
+Fails in UTF-8 locales with grep-2.6
+
+https://bugs.gentoo.org/322151
+https://savannah.gnu.org/bugs/index.php?31068
+
+--- a/makeinfo/tests/accentenc
 b/makeinfo/tests/accentenc
+@@ -1,7 +1,8 @@
+ #!/bin/sh
+ # Test encoded accent info output.
+ 
+-unset TEXINFO_OUTPUT
++unset TEXINFO_OUTPUT LANG LANGUAGE
++LC_ALL=POSIX; export LC_ALL
+ : ${srcdir=.}
+ input=`basename $0`.txi
+ output=`basename $0`.info

diff --git a/sys-apps/texinfo/files/texinfo-4.13-docbook.patch 
b/sys-apps/texinfo/files/texinfo-4.13-docbook.patch
new file mode 100644
index 000..0622b94
--- /dev/null
+++ b/sys-apps/texinfo/files/texinfo-4.13-docbook.patch
@@ -0,0 +1,66 @@
+--- texinfo-4.13.orig/makeinfo/cmds.c  2008-05-22 05:11:34.0 -0700
 texinfo-4.13/makeinfo/cmds.c   2012-05-23 18:31:57.108264307 -0700
+@@ -1560,7 +1560,7 @@ cm_setfilename (void)
+   char *filename;
+   get_rest_of_line (1, );
+   /* warning ("`@%s %s' encountered and ignored", command, filename); */
+-  if (xml)
++  if (xml && !docbook)
+ add_word_args ("%s", filename);
+   free (filename);
+ }
+--- texinfo-4.13.orig/makeinfo/node.c  2008-07-05 16:59:47.0 -0700
 texinfo-4.13/makeinfo/node.c   2012-05-23 17:02:46.517345024 -0700
+@@ -1233,10 +1233,12 @@ cm_anchor (int arg)
+ }
+   else if (xml || docbook)
+ {
++  char *id = xml_id(anchor);
+   xml_insert_element_with_attribute (ANCHOR, START,
+docbook ? "id=\"%s\"" : "name=\"%s\"",
+-   anchor);
++   id);
+   xml_insert_element (ANCHOR, END);
++  free(id);
+ }
+ 
+   /* Save it in the tag table.  */
+--- texinfo-4.13.orig/makeinfo/xml.c   2008-02-12 17:00:55.0 -0800
 texinfo-4.13/makeinfo/xml.c2012-05-23 17:20:13.698858895 -0700
+@@ -586,21 +586,27 @@ static int in_indexterm = 0;
+ char *
+ xml_id (char *id)
+ {
+-  char *tem = xmalloc (strlen (id) + 1);
++  /* Get an extra space to accomodate adding an 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/typerep/

2016-02-07 Thread Alexis Ballier
commit: a256569d671b387080a035ed2853dca234994452
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:10:24 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a256569d

dev-ml/typerep: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/typerep/Manifest |  2 --
 dev-ml/typerep/typerep-112.35.00.ebuild | 25 -
 dev-ml/typerep/typerep-113.00.00.ebuild | 25 -
 3 files changed, 52 deletions(-)

diff --git a/dev-ml/typerep/Manifest b/dev-ml/typerep/Manifest
index 930ea09..e4fa054 100644
--- a/dev-ml/typerep/Manifest
+++ b/dev-ml/typerep/Manifest
@@ -1,3 +1 @@
-DIST typerep-112.35.00.tar.gz 115477 SHA256 
a14d6f6d29be27d8bbae980d843cfc352039692ec3e7af2f616bbc6a7624c144 SHA512 
5fa340461165c98e16a99564c83c6dd6e357d3f6d948281e122f26110bf78daf0615708f94a4b23b76484d9d49f03993507f2cb63134d978d317b00175fe0320
 WHIRLPOOL 
5a5ea8efeb36018a05b7546f0a54d4bdf4367a1ad5c320545bd274bde7250b054a16609d2953ebea8a0f5b05a36ae1714c2a04c5350ce6c387a35a3de6aa9b57
-DIST typerep-113.00.00.tar.gz 115485 SHA256 
68a4ffa1129107aee97c0bfd240abf1678405372983ba85ce96ae1e962e463ef SHA512 
d1537a36dc457cbdd1c11ec2b00e35e1e1045aef20f568d264c208ad60265bc01bb4c939f585914f66290a99611394a9095edcb7a55a44bf617b1219431bcfbc
 WHIRLPOOL 
deae408e107e1e0983dffcc94d431b33fa6356a72611a3b4f6d38671156bab7edde4017a5a6b6c7d94e6d5596a354d56231a663291496a3967d9da15b6873c5d
 DIST typerep-113.24.00.tar.gz 71153 SHA256 
838906c155d682644b3e6b55fad480f7ac93c03eb51a1d126665b4f2aa830e8b SHA512 
3126d89cdfa8f052a2af3937fd9a1d205f18b26b761094a71518329b07f443da06f2db9fc79a22da621f5b2af91a352eda3119b73c3fd0fe80bf882da952d796
 WHIRLPOOL 
01a8864a6e66dcc21fe5d79156a298a7b51c99e0d6a08b48256f904baaa9b2bae6370e267d95f282922b455bbdfe3d72cdce802cb78515f42b46f264918e34db

diff --git a/dev-ml/typerep/typerep-112.35.00.ebuild 
b/dev-ml/typerep/typerep-112.35.00.ebuild
deleted file mode 100644
index c5f353a..000
--- a/dev-ml/typerep/typerep-112.35.00.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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;
-
-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}"

diff --git a/dev-ml/typerep/typerep-113.00.00.ebuild 
b/dev-ml/typerep/typerep-113.00.00.ebuild
deleted file mode 100644
index c5f353a..000
--- a/dev-ml/typerep/typerep-113.00.00.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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;
-
-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}"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/cryptokit/

2016-02-07 Thread Alexis Ballier
commit: d1319326f4001479c6ff39edf06c0c63cf0cedea
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:04:05 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1319326

dev-ml/cryptokit: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/cryptokit/Manifest |  2 --
 dev-ml/cryptokit/cryptokit-1.7.ebuild | 48 --
 dev-ml/cryptokit/cryptokit-1.9.ebuild | 49 ---
 3 files changed, 99 deletions(-)

diff --git a/dev-ml/cryptokit/Manifest b/dev-ml/cryptokit/Manifest
index e4a68a4..e097a6e 100644
--- a/dev-ml/cryptokit/Manifest
+++ b/dev-ml/cryptokit/Manifest
@@ -1,3 +1 @@
 DIST cryptokit-1.10.tar.gz 152525 SHA256 
db6639646e1d35cdd9d8c3779a260d073f8c5385e1d3647f7e9ac9537b144ecc SHA512 
22564e0151c492963d75fb81780b3a884a0bf613ad09380d9b5365740fd9c4bbdaa1c21fed50a1a4934dce920d90f5c86dc014f90e52677544789311f7bded4f
 WHIRLPOOL 
6fe80bf742a68784aac4d9fcdf389b5e9ddd7acf606b7f2c40328756ea56bc631b3af6bcaaaec526528a12a897c69ebc6b4d7228e2ee55b06dbbf95fd731f0e3
-DIST cryptokit-1.7.tar.gz 140400 SHA256 
56a8c0339c47ca3cf43c8881d5b519d3bff68bc8a53267e9c5c9cbc9239600ca SHA512 
39a86b9b97be097120308ef55c2e69b8436a85102cc2eff25f6f3c81abce24511a80295ba7790337fa46584baea24dd9517067039dc81417fe2d38ff8b5e62f1
 WHIRLPOOL 
21756c006d0c23927cfba2756c6206c6fac08ef22768b881c1750237f6f743040bdfbfa783bf2253e586328b9efc91154c3b8dc73e52fcb391dcd36fd360450e
-DIST cryptokit-1.9.tar.gz 143494 SHA256 
d3177e79e425b119b80acc63a85114a12e4c617f16803a69c080f460c4f037f1 SHA512 
67385562d5f42a65dc13b7bbf4164610a47c1f2b20d3e737c62046d716fdc38a19727e7ea04f633562d8c82c83fb1b64472f06c3032ea45e5b7c411b2f177d74
 WHIRLPOOL 
3680ba403a5f380a2bc5e0f68fc50ff64f2b5927f3c32cb04970f11493abecc0389c1070cccea106a91da1949b993fcd4e43bbd681c6efdb6638b4bd71efbead

diff --git a/dev-ml/cryptokit/cryptokit-1.7.ebuild 
b/dev-ml/cryptokit/cryptokit-1.7.ebuild
deleted file mode 100644
index ef00ee2..000
--- a/dev-ml/cryptokit/cryptokit-1.7.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="Cryptographic primitives library for Objective Caml"
-HOMEPAGE="http://forge.ocamlcore.org/projects/cryptokit/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/1166/${P}.tar.gz;
-LICENSE="LGPL-2"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE="zlib"
-
-DEPEND="zlib? ( >=sys-libs/zlib-1.1 )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "Changes" "README.txt" "AUTHORS.txt" )
-
-src_configure() {
-   oasis_configure_opts="$(use_enable zlib)" \
-   oasis_src_configure
-}
-
-pkg_postinst() {
-   elog ""
-   elog "This library uses the /dev/random device to generate "
-   elog "random data and RSA keys.  The device should either be"
-   elog "built into the kernel or provided as a module. An"
-   elog "alternative is to use the Entropy Gathering Daemon"
-   elog "(http://egd.sourceforge.net).  Please note that the"
-   elog "remainder of the library will still work even in the"
-   elog "absence of a one of these sources of randomness."
-   elog ""
-}
-
-src_test() {
-   echo ""
-   einfo "You must have either /dev/random or the Entropy Gathering"
-   einfo "Daemon (EGD) for this test to succeed!"
-   echo ""
-
-   oasis_src_test
-}

diff --git a/dev-ml/cryptokit/cryptokit-1.9.ebuild 
b/dev-ml/cryptokit/cryptokit-1.9.ebuild
deleted file mode 100644
index 699b068..000
--- a/dev-ml/cryptokit/cryptokit-1.9.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Cryptographic primitives library for Objective Caml"
-HOMEPAGE="http://forge.ocamlcore.org/projects/cryptokit/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/1229/${P}.tar.gz;
-LICENSE="LGPL-2"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE="zlib"
-
-DEPEND="zlib? ( >=sys-libs/zlib-1.1 )"
-RDEPEND="${DEPEND}"
-
-DOCS=( "Changes" "README.txt" "AUTHORS.txt" )
-
-src_configure() {
-   oasis_configure_opts="$(use_enable zlib)" \
-   oasis_src_configure
-}
-
-pkg_postinst() {
-   elog ""
-   elog "This library uses the /dev/random device to generate "
-   elog "random data and RSA keys.  The device should either be"
-   elog "built into the kernel or provided as a module. An"
-   elog "alternative is to use the Entropy Gathering Daemon"
-   elog "(http://egd.sourceforge.net).  Please note that the"
-   elog "remainder of the library will still work even in the"
-   elog "absence of a one of these sources 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/bin-prot/

2016-02-07 Thread Alexis Ballier
commit: dc058590e88fb005faef9c3bf88af87a49c4f190
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:03:32 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc058590

dev-ml/bin-prot: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/bin-prot/Manifest  |  2 --
 dev-ml/bin-prot/bin-prot-112.35.00.ebuild | 28 
 dev-ml/bin-prot/bin-prot-113.00.00.ebuild | 28 
 3 files changed, 58 deletions(-)

diff --git a/dev-ml/bin-prot/Manifest b/dev-ml/bin-prot/Manifest
index fdae94a..c1ae368 100644
--- a/dev-ml/bin-prot/Manifest
+++ b/dev-ml/bin-prot/Manifest
@@ -1,3 +1 @@
-DIST bin_prot-112.35.00.tar.gz 97483 SHA256 
e97034e9548fa669decc0d386f1b52952a645d0f70297389b60e78ddef35bbbf SHA512 
7958e315fd16528bedcdee541b6c7cdc2e088eb79eec5fda676fa72d3b57ddd495f203ad9d27cddf50b5aa3d98b00737b217ae6932d21617ce82ec7a1c4ada8c
 WHIRLPOOL 
509fc7d0fffc9d3ecceb71c389c3f630407897daf75e8fa19c229a43bb23813a767bc1018f873f79a57bc4564740d630f061a40fd459ee11a67fabdfc744197a
-DIST bin_prot-113.00.00.tar.gz 97914 SHA256 
06b409d26e4dfabcdd21ce0afefaed7900bdea73e3dc07bf60a5a2461a3ddf01 SHA512 
6982c7a3f36d6ba322fc36b9ce8e32d9d79d82651135c69486b1523140d1aebbdd7070be7856b5ae1a2c83fa0f753ecb57d35371ea67d3a23ec4e7260d4dd8d0
 WHIRLPOOL 
47e63319e57b86570c00c43353456a49fa2943f97d72f05ae191e547912e137df4a07dd73722170b8740cc6dfe5f4a2b6e855264599772a4652f2422f0feb453
 DIST bin_prot-113.24.00.tar.gz 278825 SHA256 
d6124d8a3033680076b5a6787b9e77af6840503406c4de375b19c754579fd97f SHA512 
1139dc3d3456f85c7b6514fc513c5e10a551c2a4a0e245793c8e731204edea5d9a5b5a326eed38b8169a1b9f3c00e761f8a3070c62827c53fe1d894f9d6aad52
 WHIRLPOOL 
375dceee9cea0ae22dd30d414f97c9282ab160267bfe53c3b848e0876a054c0be64cde3a7bf6b34d6df7f6a3cbc16b999368f889093b5cf7e0c11cad4af1b93c

diff --git a/dev-ml/bin-prot/bin-prot-112.35.00.ebuild 
b/dev-ml/bin-prot/bin-prot-112.35.00.ebuild
deleted file mode 100644
index fc9acbc..000
--- a/dev-ml/bin-prot/bin-prot-112.35.00.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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}"

diff --git a/dev-ml/bin-prot/bin-prot-113.00.00.ebuild 
b/dev-ml/bin-prot/bin-prot-113.00.00.ebuild
deleted file mode 100644
index fc9acbc..000
--- a/dev-ml/bin-prot/bin-prot-113.00.00.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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}"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/csv/

2016-02-07 Thread Alexis Ballier
commit: 50202acc38be51ce5d63d4414efe683d4aabd5f8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:05:36 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50202acc

dev-ml/csv: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/csv/Manifest |  3 ---
 dev-ml/csv/csv-1.3.0.ebuild | 24 
 dev-ml/csv/csv-1.3.3.ebuild | 24 
 dev-ml/csv/csv-1.4.ebuild   | 24 
 4 files changed, 75 deletions(-)

diff --git a/dev-ml/csv/Manifest b/dev-ml/csv/Manifest
index 49daa87..9c06c78 100644
--- a/dev-ml/csv/Manifest
+++ b/dev-ml/csv/Manifest
@@ -1,4 +1 @@
-DIST csv-1.3.0.tar.gz 72014 SHA256 
b381d07fa63e041b5619f12521efbf9b4ce522c839542ff288f6be5cf7ff4421 SHA512 
57fcc356571cd08f30ad4add9e9cebe6a8716f86af9c9387b108250f02b3cffdeda2fabb346dea3c349079653207131f5b462f6a07dd99170b42268f3f17cd8d
 WHIRLPOOL 
2abb194a7fd10fded2125c22f035d855e179e15f5e82a897bad6e5f07f0cf33ccae318822d2310ac1dd60ad2e80c7ea37157d847e130d9075dd1e1e3c1451f78
-DIST csv-1.3.3.tar.gz 75978 SHA256 
0236cf88e49d75a365c9505209a3af21c93f93d0c51eae81bf9dcc6307df1aa7 SHA512 
909500556d72641548b93154704c0cb9b85f269785d9624898a1baad71c02c4f846ea492ec1b9a0a353cb17da5fd9ae1ea66e8d597c4fb695afab143e46126f5
 WHIRLPOOL 
c0b8109cdf90f047a457eb79e93fe68b1f1dec28e908d11657c0ef7538dbd0dfffb0afc856bf7326a89df51e02baa6ce0288f07d95ac0502b4a5659d38e9e269
 DIST csv-1.4.2.tar.gz 83091 SHA256 
d6185e9ef8e600493aa32db3e56c095b7d4912168b027602dce879671734b2e8 SHA512 
efba3ca4d48439dbea241b348d851c12fb0dbd784eece20766a2dc7e7f3675c9de0a98b893bd450dcadce6be9eedeeb933d2cc401cc63b38459136b4fee82e15
 WHIRLPOOL 
80f34d9b33c077ca69a81efbd56e8e665272d167444a5d91b22b226fe005d188c36e523c241fb466952297132a4055a1c42a71e0eac7fc469a8fcad579588e5a
-DIST csv-1.4.tar.gz 81711 SHA256 
5fed7ed6ebadd963993149b807114d8e903db2de09cd51ae2ba754b457b12476 SHA512 
b13a5d11c552a5e5bfe61d3e26a889fca6ec341430c270cc677341d09caf09f4b5975e07b2cc9568c11dff782826593793e78602f646677467990cce8d4d66e9
 WHIRLPOOL 
f72bf8f983e0eb65b3665f6363649126580d3d669f53dc40a71ec42eb91fa0169f813fffe66588c93dab3f7aab329eb20325a601c4a7b8c12d7036c97f68e1f4

diff --git a/dev-ml/csv/csv-1.3.0.ebuild b/dev-ml/csv/csv-1.3.0.ebuild
deleted file mode 100644
index e1b1ca1..000
--- a/dev-ml/csv/csv-1.3.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="A pure OCaml library to read and write CSV files"
-HOMEPAGE="http://forge.ocamlcore.org/projects/csv/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/1172/${P}.tar.gz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-DOCS=( "README.txt" "AUTHORS.txt" )

diff --git a/dev-ml/csv/csv-1.3.3.ebuild b/dev-ml/csv/csv-1.3.3.ebuild
deleted file mode 100644
index 51251bf..000
--- a/dev-ml/csv/csv-1.3.3.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="A pure OCaml library to read and write CSV files"
-HOMEPAGE="http://forge.ocamlcore.org/projects/csv/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/1376/${P}.tar.gz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-DOCS=( "README.txt" "AUTHORS.txt" )

diff --git a/dev-ml/csv/csv-1.4.ebuild b/dev-ml/csv/csv-1.4.ebuild
deleted file mode 100644
index b74ab2b..000
--- a/dev-ml/csv/csv-1.4.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="A pure OCaml library to read and write CSV files"
-HOMEPAGE="https://github.com/Chris00/ocaml-csv;
-SRC_URI="https://github.com/Chris00/ocaml-csv/releases/download/${PV}/${P}.tar.gz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-DOCS=( "README.txt" "AUTHORS.txt" )



[gentoo-commits] repo/gentoo:master commit in: dev-ml/lwt/

2016-02-07 Thread Alexis Ballier
commit: e56ddc1e505a9da43913f70ccc5efb53abcacf21
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:06:31 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e56ddc1e

dev-ml/lwt: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/lwt/Manifest |  2 --
 dev-ml/lwt/lwt-2.4.6.ebuild | 43 ---
 dev-ml/lwt/lwt-2.5.0.ebuild | 41 -
 dev-ml/lwt/metadata.xml |  2 --
 4 files changed, 88 deletions(-)

diff --git a/dev-ml/lwt/Manifest b/dev-ml/lwt/Manifest
index 66a12b5..3b76f7e 100644
--- a/dev-ml/lwt/Manifest
+++ b/dev-ml/lwt/Manifest
@@ -1,4 +1,2 @@
 DIST lwt-2.4.3.tar.gz 504000 SHA256 
efee23937750290d6dee96eed6c0bbdb19817d5be6eefcba61ac5031fac10107 SHA512 
725d50a096a43294d49ae2322fdc985c301ce6a8ff5c956925225d7977e787ccb446e36a9db5fdbb50f284b9f1a3a12a52d1aa44d4400feecb59f6f938ed00ad
 WHIRLPOOL 
c5999e950008902600b43bf39f174ed0bc2cb3f6dce983d885416969a3bb98170ec8b74c8f5829459c3c96d160e5b4c8491b7057e7efeac035a46c9846ff7764
-DIST lwt-2.4.6.tar.gz 306510 SHA256 
9f90c6b326e603865bae9a882301e35ee745d22e6b886b488a26dfa94ca69ff1 SHA512 
8ba7cf74a228016f662523a14c083367e1d5eae43dbc208b8620fa867b44b99ea35644a9788fba3e3031e94fd0a852bdf5e85d250494fdbf6ddbe7959cb858e4
 WHIRLPOOL 
d5fea0daf60e9adb213652d2cb4857bae81342c9b1e1e6492137e9683ffe3ac360e63623cfa8771b9406d2a2a8ec110681f8991399ee31028e9efd2b6f0a43eb
-DIST lwt-2.5.0.tar.gz 1278567 SHA256 
37ae28a56bc5e112947ff84562b37fbd2263d54ecbb0b1e2076b2b775f546130 SHA512 
a951f55ebd8440f15c1d60ab41cefe9afea12332f64e477f50537de231535814d704baea0ed167bee2f7e2c7ec8c128811d3d446cad2d6b8d46ab612a160ed40
 WHIRLPOOL 
661db9f59a8205c649309c95292aca80a7e9195f2ac8c4cb0dfca56689e7bae881eb1b4869f02d27a09d33b0aca5bf83f937a8e4389adefb3b9fab071779392d
 DIST lwt-2.5.1.tar.gz 1272834 SHA256 
351ea57e30cdeeebb02ae3b12906ed391f947fd35d57148905828ee121ec29ec SHA512 
648f08e13a5b13072ed44ec380cce226bbf2ac480ca6adcd170e5bfa789bf6a4e832af0748bb1bff0e45611fd8d1b14592ece4211fb78be5b03cbcd7c3cb3b7d
 WHIRLPOOL 
c89ff1cd278ca194e1edf11ee447466dfd90f1bae4c79967e296c73cecf6684f017f8873a9f8cd6c367e83d1acfbd65ccc021edc1a7efc01432207e171f8e9dd

diff --git a/dev-ml/lwt/lwt-2.4.6.ebuild b/dev-ml/lwt/lwt-2.4.6.ebuild
deleted file mode 100644
index e932741..000
--- a/dev-ml/lwt/lwt-2.4.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_TESTS=1
-# fails to build
-#OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="Cooperative light-weight thread library for OCaml"
-SRC_URI="https://github.com/ocsigen/lwt/archive/${PV}.tar.gz -> ${P}.tar.gz"
-HOMEPAGE="http://ocsigen.org/lwt;
-
-IUSE="gtk +react +ssl text toplevel"
-
-DEPEND="react? ( >=dev-ml/react-1.2:= )
-   dev-libs/libev
-   ssl? ( >=dev-ml/ocaml-ssl-0.4.0:= )
-   gtk? ( dev-ml/lablgtk:= dev-libs/glib:2 )
-   text? ( >=dev-ml/ocaml-text-0.4:= )
-   || ( dev-ml/camlp4:= https://github.com/ocsigen/lwt/archive/${PV}.tar.gz -> ${P}.tar.gz"
-HOMEPAGE="http://ocsigen.org/lwt;
-
-IUSE="gtk +react +ssl"
-
-DEPEND="react? ( >=dev-ml/react-1.2:= )
-   dev-libs/libev
-   ssl? ( >=dev-ml/ocaml-ssl-0.4.0:= )
-   gtk? ( dev-ml/lablgtk:= dev-libs/glib:2 )
-   || ( dev-ml/camlp4:= 
Enables the ppx syntax extension
 Enables support for dev-ml/react: Functional 
reactive programming (signals, events, etc.).
-Enables enhanced toplevel.
-Enables text mode utilities.
   
   
 ocsigen/lwt



[gentoo-commits] repo/gentoo:master commit in: dev-ml/menhir/

2016-02-07 Thread Alexis Ballier
commit: a5b93d999787c131c6ec0ff34c29e1bd8d5955b0
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:09:30 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5b93d99

dev-ml/menhir: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/menhir/Manifest   |  5 -
 dev-ml/menhir/menhir-20151012.ebuild | 36 
 dev-ml/menhir/menhir-20151023.ebuild | 36 
 dev-ml/menhir/menhir-20151026.ebuild | 36 
 dev-ml/menhir/menhir-20151030.ebuild | 36 
 dev-ml/menhir/menhir-20151103.ebuild | 36 
 6 files changed, 185 deletions(-)

diff --git a/dev-ml/menhir/Manifest b/dev-ml/menhir/Manifest
index 329de47..424c6c3 100644
--- a/dev-ml/menhir/Manifest
+++ b/dev-ml/menhir/Manifest
@@ -1,6 +1 @@
-DIST menhir-20151012.tar.gz 627290 SHA256 
c7d4e8cf8e3b009577794c5c01f590379201c77fdc61a832e714beffe7cf22be SHA512 
04c10a171fdc24078b6340484314c771b97967a91f506a882bdae741bcc2464ccf3e7f5982339f8cc836abdb0066dc7bcd58a38edbc730a89daf935979fee79c
 WHIRLPOOL 
49b8b0ff0e094e6a5429d747d4ced5ee5515a2f77812f508bd9da872653539ff5540639f6a5a812e4999a7a815bb62b9a6534a71f476dc495a0297ef8f89d737
-DIST menhir-20151023.tar.gz 671810 SHA256 
2dfb642ba08f95afbb75f71b9bbdcf6733c0e8f81d69406373f1420c5cfeca8a SHA512 
0e53365400e88e39d0d595beb594d53bf5614061dc9b0149ec20c00cd3188dd1568ddcca15e1a08dddce20244bebd6263871ab83f761c68c2c62fbedb0d6c980
 WHIRLPOOL 
1e4b9a32959f2c9e98c92bb75436650c26430f1664d2b663fd572a369c0ce6d5225caa3ea28faa9cee18162fead6481a9777eabf99d6694b999179046b98c7a7
-DIST menhir-20151026.tar.gz 672165 SHA256 
a735ebdfc3bc4ac132ea4f7c06814915576516915a80ae1c33c45a9368327355 SHA512 
86fde7e955164861823dd5fac510235b0bb13f771528435495b3ff3a44bcd4837d2cd8085ba6c53e6e5eaf12f935749951cff09056cbb03a93cef062072fcf2a
 WHIRLPOOL 
4327788dde765a4ea2c06637769626022a64352d36bee29fc615a07485efce2adeacb65267cb44f726203405ee23eea23affdde88e76109f1eb76bd3160dfcdc
-DIST menhir-20151030.tar.gz 689132 SHA256 
4f0a3e3afbc1488865c014dff81024775762c7bbc3ec080a07ee634fe00ba889 SHA512 
f2f663a939974d73c42dd0e472bce75f3089013e29a795c54beec9c169a500f2fd038766d28230f08b556b5b64a5704f6dc4fcdfe824210d570ec6d2280cccdc
 WHIRLPOOL 
99a7c5630645ce32a5c7368f8587d1d2812361424f176f849ec43e2fcecd3cd927fd5a715bb94b5e80ebdb5c2352d48ade6accd18059a6c1ff9696d19a4db4a4
-DIST menhir-20151103.tar.gz 709436 SHA256 
26350a2efd3ed756f74aa3dfdbf2b96116cbf7a2cf66fa0c965617422e4112d4 SHA512 
33fdfe8993c983b865845248f3dc204fd0ccf1f6229b14dde4112e363ec0f0a5ad74e00dd3259ac0ff13972716eb0b945716def0c69ed7b2e6e6f51e2a492ef0
 WHIRLPOOL 
c7ba4004609854e6dc4b6f88c08a7faef1581021e81de403911c30ef44a955a916626bbba1da01201a1b00300bd25d635dac34f4532ac8f84e22dd9c293ac6d1
 DIST menhir-20151112.tar.gz 727051 SHA256 
06616e300ed2e5f4f2c74c58873fcd4b5f8f033b4f375f201049dafe4cd20e3a SHA512 
121a932a0918f8fcc08dd86a758a7f791c4b527ef110cdbd33356d3317820ec849e6d33b23b60c948a9ff995e3ca858581adbaf2b5622c7ff6e99ae83ce8cf7d
 WHIRLPOOL 
d1ce225fa23d4834b67d63c6ec1b90fdfd7dd34ce1ef74c76dfaf82d797345ac48a695290724cd359d0844524f7a165ef2bd2a0ade0ef3de08f0cab653a74759

diff --git a/dev-ml/menhir/menhir-20151012.ebuild 
b/dev-ml/menhir/menhir-20151012.ebuild
deleted file mode 100644
index a8d4107..000
--- a/dev-ml/menhir/menhir-20151012.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="LR(1) parser generator for the OCaml language"
-HOMEPAGE="http://gallium.inria.fr/~fpottier/menhir/;
-SRC_URI="http://gallium.inria.fr/~fpottier/menhir/${P}.tar.gz;
-
-LICENSE="QPL-1.0 LGPL-2-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples +ocamlopt"
-
-DEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   if ! use ocamlopt ; then
-   export TARGET=byte
-   fi
-}
-
-src_compile() {
-   emake PREFIX="${EPREFIX}"/usr -j1
-}
-
-src_install() {
-   findlib_src_preinst
-   emake PREFIX="${ED}"/usr docdir="${ED}"/usr/share/doc/"${PF}" $(use 
examples || echo "DOCS=manual.pdf") install
-   use examples && docompress -x /usr/share/doc/${PF}/demos
-   dodoc AUTHORS CHANGES
-}

diff --git a/dev-ml/menhir/menhir-20151023.ebuild 
b/dev-ml/menhir/menhir-20151023.ebuild
deleted file mode 100644
index a8d4107..000
--- a/dev-ml/menhir/menhir-20151023.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="LR(1) parser generator for the OCaml language"

[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-re/

2016-02-07 Thread Alexis Ballier
commit: 1c24e54f23582877a51ed6a938557eb7483d9762
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:07:45 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c24e54f

dev-ml/ocaml-re: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/ocaml-re/Manifest  |  4 
 dev-ml/ocaml-re/ocaml-re-1.3.1.ebuild | 25 -
 dev-ml/ocaml-re/ocaml-re-1.3.2.ebuild | 25 -
 dev-ml/ocaml-re/ocaml-re-1.4.0.ebuild | 25 -
 dev-ml/ocaml-re/ocaml-re-1.4.1.ebuild | 25 -
 5 files changed, 104 deletions(-)

diff --git a/dev-ml/ocaml-re/Manifest b/dev-ml/ocaml-re/Manifest
index 59ae45f..b80faf3 100644
--- a/dev-ml/ocaml-re/Manifest
+++ b/dev-ml/ocaml-re/Manifest
@@ -1,5 +1 @@
-DIST ocaml-re-1.3.1.tar.gz 98686 SHA256 
0c17696232a292d599880162545234030d0ad2d9b2a15b7d233de34e2c8b0724 SHA512 
0c07e607c50e442a8e158d7dfd068451fcccafe1bdda7b6acc9ace0d7456c8b86521cd6f04c1cedbfa5a638d37091dd2a00168220c3be33882994075b0a68670
 WHIRLPOOL 
631feca27880f903baeb9594e945199fb15f4a733eca58bc77f8aacac05cc6ce41aa366f8f35178ae53f7ae8a3da4f978d595b1bb8c5fecfecf5732371ba0636
-DIST ocaml-re-1.3.2.tar.gz 98885 SHA256 
3a34c3d6b6bf61e0d1eb9af74fa82c936809f7e48f8872fb6b11252c79a5d466 SHA512 
6f77e53390bd223bca57ff0e0ce02986e2aad4f3e572089162db75a690273561cacc8b5ff73d03864131c240a4ffe16ca87e8841dc576b459eb526143552c9f2
 WHIRLPOOL 
b419b1f9dc37e9addf304cdf1ec07744d4c6532f65b9ff623c551c61bff8ee33b90e41af0ec530a332aa88e5954fdae0992522705323866a6169391a0bd297c9
-DIST ocaml-re-1.4.0.tar.gz 99887 SHA256 
51f316d73b0c927c1d4150955737a2e78002207ba46d8d3cf18da2a495ecc369 SHA512 
9ac871dfe65b8a90da2786fa565cec588f8de50ce2a12c128b307fe730fa5df6533b343ef366161f900b2809bb3930dbf5e422d5fab5d6c3e0aa805901d856d9
 WHIRLPOOL 
8c3fc29f7c1c635a382a90de3408c367c06af2c2865a9695dffbd88e380b626e3717fdb9cde5d16b4f4fdc40682fa57e72d60753d7093a01c03013d68fd482cf
-DIST ocaml-re-1.4.1.tar.gz 99877 SHA256 
262554309d645f4126a2a2e21e3a798d250293264fda34d6271243cc6c16e576 SHA512 
dac256a1bd2a2109d0dbc39720ac60c6e2e0c229855735972072f5b59a89a3d4a4c5b127d5b753c838a219356a9530bdd1ac40d0bd2ce32a237589ad44307736
 WHIRLPOOL 
5147ba6d8c4bab902914b5a7e24ea2276a9128370de4953cd43986ee1a60338b8e2ac1ded2989682a0273723b202130879e6cc623906966897fd9ca7633b0230
 DIST ocaml-re-1.5.0.tar.gz 103242 SHA256 
53322f763a8d771a68f986c9c323cab7d3afa56873c3eefa528fb92b1b511dd3 SHA512 
f094eadabf4fd976cbae0f288673ef27c9c3fbc4ddf6ada283e20a240fc9865139956096030b7ae8173bf71bd98cf67cadca72562524a7be168dfe77fe4c6469
 WHIRLPOOL 
6b13262476e9ee143a662243d1efc07bf227d48450c7892fc8667a1efd45853e48dff3d391c49ed8f43dde932a4ed3d63b63118919bc930e8d1c2ed05426e17a

diff --git a/dev-ml/ocaml-re/ocaml-re-1.3.1.ebuild 
b/dev-ml/ocaml-re/ocaml-re-1.3.1.ebuild
deleted file mode 100644
index aebbbab..000
--- a/dev-ml/ocaml-re/ocaml-re-1.3.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Regular expression library for OCaml"
-HOMEPAGE="https://github.com/ocaml/ocaml-re;
-SRC_URI="https://github.com/ocaml/ocaml-re/archive/${P}.tar.gz;
-
-LICENSE="LGPL-2-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND=">=dev-lang/ocaml-4.02:="
-DEPEND="${RDEPEND}
-   test? ( dev-ml/ounit )"
-DOCS=( "CHANGES" "TODO.txt" "README.md" )
-S="${WORKDIR}/${PN}-${P}"

diff --git a/dev-ml/ocaml-re/ocaml-re-1.3.2.ebuild 
b/dev-ml/ocaml-re/ocaml-re-1.3.2.ebuild
deleted file mode 100644
index aebbbab..000
--- a/dev-ml/ocaml-re/ocaml-re-1.3.2.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Regular expression library for OCaml"
-HOMEPAGE="https://github.com/ocaml/ocaml-re;
-SRC_URI="https://github.com/ocaml/ocaml-re/archive/${P}.tar.gz;
-
-LICENSE="LGPL-2-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND=">=dev-lang/ocaml-4.02:="
-DEPEND="${RDEPEND}
-   test? ( dev-ml/ounit )"
-DOCS=( "CHANGES" "TODO.txt" "README.md" )
-S="${WORKDIR}/${PN}-${P}"

diff --git a/dev-ml/ocaml-re/ocaml-re-1.4.0.ebuild 
b/dev-ml/ocaml-re/ocaml-re-1.4.0.ebuild
deleted file mode 100644
index aebbbab..000
--- a/dev-ml/ocaml-re/ocaml-re-1.4.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Regular expression library for OCaml"

[gentoo-commits] repo/gentoo:master commit in: dev-ml/typerep_extended/

2016-02-07 Thread Alexis Ballier
commit: 0a1b81facb428d6baaa3d7378183d2bf16236687
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:10:00 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a1b81fa

dev-ml/typerep_extended: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/typerep_extended/Manifest   |  2 --
 .../typerep_extended-112.17.00.ebuild  | 29 --
 .../typerep_extended-113.00.00.ebuild  | 29 --
 3 files changed, 60 deletions(-)

diff --git a/dev-ml/typerep_extended/Manifest b/dev-ml/typerep_extended/Manifest
index dce6504..6eab859 100644
--- a/dev-ml/typerep_extended/Manifest
+++ b/dev-ml/typerep_extended/Manifest
@@ -1,3 +1 @@
-DIST typerep_extended-112.17.00.tar.gz 71755 SHA256 
f511d7f697d516b63584b910bf30c06367769be2a1190446ea58a4be4866f0e3 SHA512 
ab1f31b95324aad47fabc19f752640d1f4a606906c47f8c98c2820233109a5a59c7094ca46c06453b4afe0befb8da1de04ea03d0b44ff0c3062d94c47c84eb40
 WHIRLPOOL 
a57bd43d35ee7899dba27eefbe2a1ef98ebba930abf01c33fe4b0c129258ce13a7db8f4b0febdbb25d9cef3628b85e35fe2c2ac0c8c560c748f3ed37e5348f76
-DIST typerep_extended-113.00.00.tar.gz 71746 SHA256 
fc8e446a7ac86cd5f3db6956cb9326e48d4081d5f6c7415127e1e478c7e834cf SHA512 
948e9e520a2a1802aa0ee7dbb4ced3a2d6c9d55f3c788d942ac40f5017e16ecbb078542faca8e34bac1a87e53e2b1104aab20753b9e837e1429c31d4635cd0b9
 WHIRLPOOL 
2355e1234b6fdf4ec60f59c7f69d5c053007b4a3cea9584ec079c1fe2c9e0d92d0a6d199e6c37658516ddbc8f8aae0448fc8b16992927b8998de30f244c1b1f4
 DIST typerep_extended-113.24.00.tar.gz 117421 SHA256 
7c0246e7af1c147b1f00d5a612091bb62e060dc8903f70b8957d5eb2f77b01b8 SHA512 
97747967fd3747603ed9fe58b3ddefe0e164dae9237c31d1f9ef719de1b4244afed73f7c29924d24e38d1d0a68fc014f0a87f59910831b6c9fa251dbbd709501
 WHIRLPOOL 
7734bca0fc1e4591f6e06abd66c05aa5d5f7fd59bd71454f9a2a6ef67888cf65d612aa2297ae25caf7a6e8ad8296f3ac56f5ac827d932cf912bac4f6762dae20

diff --git a/dev-ml/typerep_extended/typerep_extended-112.17.00.ebuild 
b/dev-ml/typerep_extended/typerep_extended-112.17.00.ebuild
deleted file mode 100644
index 7b771f8..000
--- a/dev-ml/typerep_extended/typerep_extended-112.17.00.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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" )

diff --git a/dev-ml/typerep_extended/typerep_extended-113.00.00.ebuild 
b/dev-ml/typerep_extended/typerep_extended-113.00.00.ebuild
deleted file mode 100644
index 7b771f8..000
--- a/dev-ml/typerep_extended/typerep_extended-113.00.00.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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" )



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-text/

2016-02-07 Thread Alexis Ballier
commit: 5e7e7f72d3b706c18f9164116b43cb65bfce9c0c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:05:05 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e7e7f72

dev-ml/ocaml-text: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/ocaml-text/Manifest  |  1 -
 dev-ml/ocaml-text/ocaml-text-0.6.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/dev-ml/ocaml-text/Manifest b/dev-ml/ocaml-text/Manifest
index a9a4e0e..6c39dd7 100644
--- a/dev-ml/ocaml-text/Manifest
+++ b/dev-ml/ocaml-text/Manifest
@@ -1,2 +1 @@
-DIST ocaml-text-0.6.tar.gz 253162 SHA256 
cfd4d224ec0b776ce462c5ba5cb6e4eae8cf397ede6d3b91add44a05a6520f49 SHA512 
83dffe6cb11634e81076d72a0ed4b1621705dae2657706c5629550e3a4a4b912258bb63cb913c5248ecb556c7484ab77be4d1063dc4c216ec680b363f854e305
 WHIRLPOOL 
ac84bd4d7f5c1e8473cfaed4c8a5f47c4d20c38070974f21d6a5859ba8b069788562f911fcb98b607a62263714981efa39c76e811a83687e75dc0c113a9d3a4c
 DIST ocaml-text-0.8.tar.gz 80898 SHA256 
bab32ca98a086631a0715d06109ebf09a71d2ac9aa901bc4f4ecd3d84331b746 SHA512 
712afd21f615a81dc361ce7f5d89aff0c341ed91cd0e4cce6a2000361023b006b10731ce0cc6c025bde5f5fe7d07fa85ca2af65a8ad4d50647e8dfa8ff7ad81f
 WHIRLPOOL 
1ae59a2cbffa7b9a9ce3a027df7b9eba0db69442ad99666439fc5833f2aa13120dfa18b155a9a11dfc0cce641260b3f1e29e652e61c584627526ffcf4e09d6bf

diff --git a/dev-ml/ocaml-text/ocaml-text-0.6.ebuild 
b/dev-ml/ocaml-text/ocaml-text-0.6.ebuild
deleted file mode 100644
index d568947..000
--- a/dev-ml/ocaml-text/ocaml-text-0.6.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="library for dealing with 'text'"
-HOMEPAGE="http://forge.ocamlcore.org/projects/ocaml-text/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/937/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="pcre"
-
-DEPEND="virtual/libiconv
-   || ( dev-ml/camlp4:= 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/yojson/

2016-02-07 Thread Alexis Ballier
commit: 58b225068bb2fd66a5ff254d07014a09a81d5716
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:06:59 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58b22506

dev-ml/yojson: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/yojson/Manifest|  3 ---
 dev-ml/yojson/yojson-1.2.0.ebuild | 38 --
 dev-ml/yojson/yojson-1.2.1.ebuild | 38 --
 dev-ml/yojson/yojson-1.2.3.ebuild | 38 --
 4 files changed, 117 deletions(-)

diff --git a/dev-ml/yojson/Manifest b/dev-ml/yojson/Manifest
index f39cf85..d3cccde 100644
--- a/dev-ml/yojson/Manifest
+++ b/dev-ml/yojson/Manifest
@@ -1,4 +1 @@
-DIST yojson-1.2.0.tar.gz 26069 SHA256 
7c163d820c12773681abed7e02d6a7ebd8b8d00163e81ce5a3742b5fd39d7a8f SHA512 
7d5c7ab17a7230fe23fab956bba905fca40429575c708606ec07fe32ccace6816db4499756954c4e3d0f7d2686ca789d214e381b9236afe7e8efe0855fb01561
 WHIRLPOOL 
cffe050d98677441707451219a69251f834847bf1a68b347be8939040767f030dc7af4af2da0165d88cbf2ce42c52c157ef9db9387a6bfee0fac893a18c5704b
-DIST yojson-1.2.1.tar.gz 26268 SHA256 
df8cb4945b592897cdb54e4240758a88a38267daa54554dc62a2f48a91e8a32d SHA512 
5a8b302e41ff1dfb312636d68bcf4bb38231335b8f35b0a9236dcdc97cd1a3026e7a349fdc0d73866c0432a86fe350a650c791f89122cc9bc129c7fcb54b4715
 WHIRLPOOL 
c9df8f62bc3aadc4a905c434db53e1fd3a3ec14917a58dcbbe239c8ba9f196c1f819da20df4c253d0a8e4a7b54025c4a75453e817bb0cdc8dce0fbf89c52a0e5
-DIST yojson-1.2.3.tar.gz 26388 SHA256 
7e0d8ecc47f43b051901a2b556a7c65bb62fcf1ab856d822f50f2bdd35a36078 SHA512 
12929e6b4db13074fc708a9bb45a35a5661a0a43e893c03cc984a346e4e0aa04ca91f3ecce3460147ef6e85ddeda28ed251fefb2bf3e71b06edbe4fdc53b6c9b
 WHIRLPOOL 
c2ac1291f375870023a4883e9866a74be19647863ccee0f0e95ee2dee0734c57489612f96897330c223549166a21a8e44088e8eac186ac0d596a3469cf3bbe04
 DIST yojson-1.3.0.tar.gz 26610 SHA256 
80e26e6d902c57bbacf44467f2a5cc30e4e189260093c66a3269fb1b1cc37094 SHA512 
65e2d5bb7649cad3d395ec8fead11b18fd0ca5e59e87194a39a77561bcdaa04cecdc71f0da32ac268a36c0e7b21f56e9f40a08610f84cf7f81d0da20daf90fc0
 WHIRLPOOL 
ed5ba5a5c397d47616282272573f9940d02035698a45dc7bc377c1fb2918d4a72fc789a4332ff7c09113d6bdcb223e2321f46f21f9576ff85197825bdc661d0d

diff --git a/dev-ml/yojson/yojson-1.2.0.ebuild 
b/dev-ml/yojson/yojson-1.2.0.ebuild
deleted file mode 100644
index cab42fd..000
--- a/dev-ml/yojson/yojson-1.2.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="JSON parsing and pretty-printing library for OCaml"
-HOMEPAGE="http://mjambon.com/yojson.html;
-SRC_URI="https://github.com/mjambon/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0/${PV}"
-LICENSE="BSD"
-KEYWORDS="~amd64"
-IUSE="examples"
-
-RDEPEND=">=dev-lang/ocaml-3.11:=[ocamlopt]
-   dev-ml/easy-format:=[ocamlopt]
-   dev-ml/biniou:=[ocamlopt]
-"
-DEPEND="${RDEPEND}
-   dev-ml/cppo
-"
-
-src_compile() {
-   emake -j1
-}
-
-src_install() {
-   dodir /usr/bin
-   findlib_src_install BINDIR="${ED}"/usr/bin
-   dodoc README.md Changes
-   if use examples ; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-}

diff --git a/dev-ml/yojson/yojson-1.2.1.ebuild 
b/dev-ml/yojson/yojson-1.2.1.ebuild
deleted file mode 100644
index cab42fd..000
--- a/dev-ml/yojson/yojson-1.2.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="JSON parsing and pretty-printing library for OCaml"
-HOMEPAGE="http://mjambon.com/yojson.html;
-SRC_URI="https://github.com/mjambon/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0/${PV}"
-LICENSE="BSD"
-KEYWORDS="~amd64"
-IUSE="examples"
-
-RDEPEND=">=dev-lang/ocaml-3.11:=[ocamlopt]
-   dev-ml/easy-format:=[ocamlopt]
-   dev-ml/biniou:=[ocamlopt]
-"
-DEPEND="${RDEPEND}
-   dev-ml/cppo
-"
-
-src_compile() {
-   emake -j1
-}
-
-src_install() {
-   dodir /usr/bin
-   findlib_src_install BINDIR="${ED}"/usr/bin
-   dodoc README.md Changes
-   if use examples ; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-}

diff --git a/dev-ml/yojson/yojson-1.2.3.ebuild 
b/dev-ml/yojson/yojson-1.2.3.ebuild
deleted file mode 100644
index cab42fd..000
--- a/dev-ml/yojson/yojson-1.2.3.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="JSON parsing and pretty-printing library for OCaml"

[gentoo-commits] repo/gentoo:master commit in: dev-ml/herelib/

2016-02-07 Thread Alexis Ballier
commit: f38172c1dfd65ef0ceb444bf3997ea3ecf3b6e34
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:11:09 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f38172c1

dev-ml/herelib: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/herelib/Manifest |  2 --
 dev-ml/herelib/herelib-109.35.00.ebuild | 23 ---
 dev-ml/herelib/herelib-109.35.02.ebuild | 25 -
 3 files changed, 50 deletions(-)

diff --git a/dev-ml/herelib/Manifest b/dev-ml/herelib/Manifest
index 6fc9679..6978098 100644
--- a/dev-ml/herelib/Manifest
+++ b/dev-ml/herelib/Manifest
@@ -1,3 +1 @@
-DIST herelib-109.35.00.tar.gz 44436 SHA256 
183853f7e6f88be0884672d5acdc1f8d6aa3c3204d85b6f9b0b984700e0fe079 SHA512 
473de2701a2f83d831bb8a0af4aa4bae86f5b6dd30503eaef6715bce5f22b13cefc2f5e333650ea04780d07edad925fbfe13325909da50a28397a9fe4d115fa4
 WHIRLPOOL 
eca71daae788e5ee2cd66a6e25cb3f6d1b956a208459c36026c13ce65788fbdc912cda4457df0d98dfa516c17fbab7fe2fe11fe358df280a935c8abfb4daaafa
-DIST herelib-109.35.02.tar.gz 47650 SHA256 
7f8394169cb63f6d41e91c9affa1b8ec240d5f6e9dfeda3fbb611df521d4b05a SHA512 
2ab68fb4ed5acce2dd0cbbac658743713d6534ae7f215dd8e34f97b0ef94883ffaf68462651473f8f6a0ef95dbf26c21857bf261291c3accab01d094008c4838
 WHIRLPOOL 
ebed805ba8eff3c410368f929845c24b288bea91cce5b89bec6f031b72cac91091666773d44468009716c937a26c175f81be7726239deb0e0e4d662feccf338a
 DIST herelib-112.35.00.tar.gz 49201 SHA256 
7a75969aa27d3ec3d6ec20b93d2c5f459d5aca1021b4fa7f0e0d355be5a5390f SHA512 
3b7fe743327e93526858004f90f102e5eb98cc493f22acea3d82e51bf99307679017389680456a143fb6fa9dce0a30bfd69abf90e5f0ea1367ec9c9c0726150f
 WHIRLPOOL 
cf9e90dd50a438fd0d01a8fb1fbed0a013284c755a5b01a1220d25d2188b76158b447135a18bcc4236d995d1ef22bbe5b43c9d058c20169bb434c8186b7832f9

diff --git a/dev-ml/herelib/herelib-109.35.00.ebuild 
b/dev-ml/herelib/herelib-109.35.00.ebuild
deleted file mode 100644
index 057bce6..000
--- a/dev-ml/herelib/herelib-109.35.00.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit oasis
-
-MY_P=${PN/-/_}-${PV}
-DESCRIPTION="Syntax extension for inserting the current location"
-HOMEPAGE="http://www.janestreet.com/ocaml;
-SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV}/individual/${MY_P}.tar.gz
-   https://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:="
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"

diff --git a/dev-ml/herelib/herelib-109.35.02.ebuild 
b/dev-ml/herelib/herelib-109.35.02.ebuild
deleted file mode 100644
index 844c924..000
--- a/dev-ml/herelib/herelib-109.35.02.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit oasis
-
-MY_P=${PN/-/_}-${PV}
-DESCRIPTION="Syntax extension for inserting the current location"
-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/camlp4:= 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-data-notation/

2016-02-07 Thread Alexis Ballier
commit: 7d1a959949d22bcb2ad719a53de24b648de66e88
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:04:33 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d1a9599

dev-ml/ocaml-data-notation: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/ocaml-data-notation/Manifest|  1 -
 .../ocaml-data-notation-0.0.10.ebuild  | 28 --
 2 files changed, 29 deletions(-)

diff --git a/dev-ml/ocaml-data-notation/Manifest 
b/dev-ml/ocaml-data-notation/Manifest
index 507b8f4..1f3c480 100644
--- a/dev-ml/ocaml-data-notation/Manifest
+++ b/dev-ml/ocaml-data-notation/Manifest
@@ -1,2 +1 @@
-DIST ocaml-data-notation-0.0.10.tar.gz 63163 SHA256 
e61d1dc014770b552f005ece61a242ffc6a72471050335ecc3e6ee93710d9fbd SHA512 
339ac99f835e2718cb98e7491e482d23028b80834fe43c1cb83aab5ec31d5d1732783dd785b216ab93f37ea2f39fbe247f48886c6e8b02193a21572aca1ba45e
 WHIRLPOOL 
30cba39bc7fc53bcc0e6cb8ced6beffcb24d83dc7cef67df99b6d26d32b141c48601e1a4f1cdd02ed622396d0eb48e06d9a6b9712d7410f41e28d5e8ddfe64ba
 DIST ocaml-data-notation-0.0.11.tar.gz 63968 SHA256 
928ef4c76338e810808c4faa92300bc30b120c10e9ed0609b5825d177dfb4825 SHA512 
010c6105b0745c4dbf426186915078cd71d02d56e19ca01089a37f803c9d81c02a22e64184b9b4a42d44450834527a050ff20430f8c2d8a972610717f4c653d7
 WHIRLPOOL 
2bd6bc585db4e249b263712c0c35e7885488580c8799a09222db30bbb0fc3992b99a437fb335243169ea97ea395ee201a78027e20ee511715f69b8196175e4d6

diff --git a/dev-ml/ocaml-data-notation/ocaml-data-notation-0.0.10.ebuild 
b/dev-ml/ocaml-data-notation/ocaml-data-notation-0.0.10.ebuild
deleted file mode 100644
index 13183f5..000
--- a/dev-ml/ocaml-data-notation/ocaml-data-notation-0.0.10.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="This project uses type-conv to dump OCaml data structure using 
OCaml data notation"
-HOMEPAGE="http://forge.ocamlcore.org/projects/odn;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/1029/${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND=">=dev-ml/type-conv-108.07.01:="
-DEPEND="${RDEPEND}
-   test? ( dev-ml/ounit[ocamlopt?] dev-ml/ocaml-fileutils[ocamlopt?] )"
-
-DOCS=( "README.txt" "AUTHORS.txt" "CHANGES.txt" )
-
-src_prepare() {
-   sed -i -e 's/type-conv/type_conv/' tests/test.ml || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/zarith/

2016-02-07 Thread Alexis Ballier
commit: d18dbc9ed127be8f0c542f42dab5088b514a7308
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:07:21 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d18dbc9e

dev-ml/zarith: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/zarith/Manifest |  2 --
 dev-ml/zarith/zarith-1.3-r1.ebuild | 46 -
 dev-ml/zarith/zarith-1.4.ebuild| 47 --
 3 files changed, 95 deletions(-)

diff --git a/dev-ml/zarith/Manifest b/dev-ml/zarith/Manifest
index 8511a52..3f2ab4b 100644
--- a/dev-ml/zarith/Manifest
+++ b/dev-ml/zarith/Manifest
@@ -1,3 +1 @@
-DIST zarith-1.3.tgz 69415 SHA256 
946687d6f032b96ab9db9661d876e39437bff783e0ad473ac463c06259b7a3d7 SHA512 
c8b0b32ae3cae2808d0af701fbf134fd8bf7b1b3042fbd562edf4a54f958386b4b425117838e60033f51ee0e4ea22969ddc7a8968ba979a4ad70c725cf4357d4
 WHIRLPOOL 
363e9f973a2e8ebc305c66e6d8dcb6f68bb5599dfce3da906fe013e2d7acfd80b17e886de60f393b72538488dcfdba33b0656f2fe6b19aeeec88d6c0ec3bf21b
 DIST zarith-1.4.1.tgz 88831 SHA256 
23b6c140aad25385bb0b862b9b9fe8a5c6e6f608d0fac7a688aaede5ea876650 SHA512 
ef6717e3b6c19ef94fb0e02eb33b1d9f2b2103a9fe0334cb89b01b344ee953fbeeaed8a75b17daa32760faaf93d582e6778ae50e59e9cf878663f2ecba1d5659
 WHIRLPOOL 
51fc093160ccd5b26282dc1e4f0da223cf0de49c357d560c45bf839ae1dadc53968b117f6ecb96da722fcda2c669ececbd6ca3fab61c71059f37764bfc602888
-DIST zarith-1.4.tgz 88392 SHA256 
98bc21d9e86c3726b5641e0a4c6e859a1bf52b3f691344187e432760386b4861 SHA512 
52c39ba98a3abd5fe8a38a7efd879993a6b3113133bdc0c9541168637fe9c8f813a9d38db679199ff0bf1b41f5f4a49f63876a2ca6a74796c309622b8023ac75
 WHIRLPOOL 
c7abfcd9c81ee04fc819925c5f4fd07ea6603a1c2630a523b3a3b3bb3e21a7fcff0532a166b0cb6d9376b4f40747e7232be2d4b3f6e65592103b1ea12f96470c

diff --git a/dev-ml/zarith/zarith-1.3-r1.ebuild 
b/dev-ml/zarith/zarith-1.3-r1.ebuild
deleted file mode 100644
index 91bc43d..000
--- a/dev-ml/zarith/zarith-1.3-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit findlib eutils
-
-DESCRIPTION="Arithmetic and logic operations over arbitrary-precision integers"
-HOMEPAGE="https://forge.ocamlcore.org/projects/zarith/;
-SRC_URI="https://forge.ocamlcore.org/frs/download.php/1471/${P}.tgz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="doc mpir +ocamlopt"
-
-RDEPEND="
-   >=dev-lang/ocaml-4:=[ocamlopt?]
-   !mpir? ( dev-libs/gmp:0= )
-   mpir? ( sci-libs/mpir )"
-
-DEPEND="${RDEPEND} dev-lang/perl"
-
-src_configure() {
-   ./configure -host "${CHOST}" \
-   -ocamllibdir "/usr/$(get_libdir)" \
-   -installdir "${ED}/usr/$(get_libdir)/ocaml" \
-   $(usex mpir "-mpir" "-gmp") || die
-}
-
-src_compile() {
-   emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt 
yes no) all
-   use doc && emake doc
-}
-
-src_test() {
-   emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt 
yes no) tests
-}
-
-src_install() {
-   findlib_src_preinst
-   emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt 
yes no) install
-   dodoc Changes README
-   use doc && dohtml html/*
-}

diff --git a/dev-ml/zarith/zarith-1.4.ebuild b/dev-ml/zarith/zarith-1.4.ebuild
deleted file mode 100644
index e2ab191..000
--- a/dev-ml/zarith/zarith-1.4.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit findlib eutils toolchain-funcs
-
-DESCRIPTION="Arithmetic and logic operations over arbitrary-precision integers"
-HOMEPAGE="https://forge.ocamlcore.org/projects/zarith/;
-SRC_URI="https://forge.ocamlcore.org/frs/download.php/1567/${P}.tgz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="doc mpir +ocamlopt"
-
-RDEPEND="
-   >=dev-lang/ocaml-4:=[ocamlopt?]
-   !mpir? ( dev-libs/gmp:0= )
-   mpir? ( sci-libs/mpir )"
-
-DEPEND="${RDEPEND} dev-lang/perl"
-
-src_configure() {
-   tc-export CC
-   ./configure -host "${CHOST}" \
-   -ocamllibdir "/usr/$(get_libdir)" \
-   -installdir "${ED}/usr/$(get_libdir)/ocaml" \
-   $(usex mpir "-mpir" "-gmp") || die
-}
-
-src_compile() {
-   emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt 
yes no) all
-   use doc && emake doc
-}
-
-src_test() {
-   emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt 
yes no) tests
-}
-
-src_install() {
-   findlib_src_preinst
-   emake HASOCAMLOPT=$(usex ocamlopt yes no) HASDYNLINK=$(usex ocamlopt 
yes no) install
-   dodoc Changes README
-   use doc && dohtml 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/pgocaml/

2016-02-07 Thread Alexis Ballier
commit: e6d7f31febf44b5a249862acec48b96213b14c84
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:00:17 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6d7f31f

dev-ml/pgocaml: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/pgocaml/Manifest |  2 --
 dev-ml/pgocaml/metadata.xml |  3 ---
 dev-ml/pgocaml/pgocaml-1.7.1.ebuild | 27 ---
 dev-ml/pgocaml/pgocaml-2.1.ebuild   | 29 -
 4 files changed, 61 deletions(-)

diff --git a/dev-ml/pgocaml/Manifest b/dev-ml/pgocaml/Manifest
index 6675d92..80c64cd 100644
--- a/dev-ml/pgocaml/Manifest
+++ b/dev-ml/pgocaml/Manifest
@@ -1,3 +1 @@
-DIST pgocaml-1.7.1.tgz 79890 SHA256 
f7c843032455f83c8d1f15de9a7012441ab28e5ec6d06deabb2526859a4afb55 SHA512 
47b99bebc27dc64641cab65890e89217d1f256bac953b33a01dcf62c838b251d49097c88642a3b14f6325941c2b2f97b68f14209463f431000587b3d20ff5372
 WHIRLPOOL 
bd2ae32896aed6d7d19baac5ba8815c3be6296984835b531161beb443d360a0b401192f5dc6a8c5a68825b63376b4e03842d72143ab1e060ffd9b6845e85
-DIST pgocaml-2.1.tgz 88596 SHA256 
d547490fd8b4a7f6c739d919a90af8b952af78f47367a5dc45e59f0a2b85fc54 SHA512 
55138dac355a060d8f6cc234fa1954d2af453a2265d6b1cbe332db11cc04754c844d830233af0f6a3faf223adf6f22e52704f389b59974db4d51c386a6ee43d7
 WHIRLPOOL 
6e807d47e0dc539dc70b554bd7b37bff9c5df05d7269e3593179260600bec6ae70f5ee6fb3f2bf6278335240d12936380100e38a3f99147ab2d453f618a2d426
 DIST pgocaml-2.2.tgz 88613 SHA256 
3027ca823f9f3db24475bd36e5628ee259605d72048d889be3b7e32c3e850d74 SHA512 
1358e377d46aeb8fa00f44ba47dcc61097919584accc96264ae751cd2d6b8380dd2135109d5f6bf7963f3b448ee59046210c6335a3750deed4ad0ce5fc0a9d8d
 WHIRLPOOL 
53da87c02670d493ff0dd12c467d69bac630aa9fe5141be074f328722c305611ad951d14fafe941961dd40d4b6af012ef4e3a305bb6df96734c13f01473c4520

diff --git a/dev-ml/pgocaml/metadata.xml b/dev-ml/pgocaml/metadata.xml
index dffab2d..76bbff9 100644
--- a/dev-ml/pgocaml/metadata.xml
+++ b/dev-ml/pgocaml/metadata.xml
@@ -5,7 +5,4 @@
m...@gentoo.org
Gentoo ML Project

-   
-   Enable Batteries support instead 
of extlib
-   
 

diff --git a/dev-ml/pgocaml/pgocaml-1.7.1.ebuild 
b/dev-ml/pgocaml/pgocaml-1.7.1.ebuild
deleted file mode 100644
index a48ef38..000
--- a/dev-ml/pgocaml/pgocaml-1.7.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit oasis
-
-DESCRIPTION="PG'OCaml is a set of OCaml bindings for the PostgreSQL database"
-HOMEPAGE="http://pgocaml.forge.ocamlcore.org/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/1099/${P}.tgz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="doc batteries"
-
-DEPEND="dev-ml/calendar:=
-   >=dev-ml/batteries-2:=
-   dev-ml/csv:=
-   dev-ml/pcre-ocaml:="
-RDEPEND="${DEPEND}"
-
-DOCS=( "README.txt" "CHANGELOG.txt"
-   "doc/BUGS.txt" "doc/CONTRIBUTORS.txt"
-   "doc/HOW_IT_WORKS.txt" "doc/PROFILING.txt"
-   )

diff --git a/dev-ml/pgocaml/pgocaml-2.1.ebuild 
b/dev-ml/pgocaml/pgocaml-2.1.ebuild
deleted file mode 100644
index d3a1218..000
--- a/dev-ml/pgocaml/pgocaml-2.1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="PG'OCaml is a set of OCaml bindings for the PostgreSQL database"
-HOMEPAGE="http://pgocaml.forge.ocamlcore.org/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/1413/${P}.tgz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="doc"
-
-DEPEND="dev-ml/calendar:=
-   dev-ml/csv:=
-   dev-ml/pcre-ocaml:=
-   || ( dev-ml/camlp4:= 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-sqlite3/

2016-02-07 Thread Alexis Ballier
commit: a8badefa0d3a7f0393fd29e317c5e6ddec0ae0e3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:08:36 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8badefa

dev-ml/ocaml-sqlite3: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/ocaml-sqlite3/Manifest   |  7 --
 dev-ml/ocaml-sqlite3/ocaml-sqlite3-2.0.4.ebuild | 29 -
 dev-ml/ocaml-sqlite3/ocaml-sqlite3-2.0.5.ebuild | 29 -
 dev-ml/ocaml-sqlite3/ocaml-sqlite3-2.0.7.ebuild | 29 -
 dev-ml/ocaml-sqlite3/ocaml-sqlite3-2.0.9.ebuild | 29 -
 dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.0.0.ebuild | 29 -
 dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.0.1.ebuild | 29 -
 dev-ml/ocaml-sqlite3/ocaml-sqlite3-4.0.2.ebuild | 29 -
 8 files changed, 210 deletions(-)

diff --git a/dev-ml/ocaml-sqlite3/Manifest b/dev-ml/ocaml-sqlite3/Manifest
index 00f9351..3ce8d2c 100644
--- a/dev-ml/ocaml-sqlite3/Manifest
+++ b/dev-ml/ocaml-sqlite3/Manifest
@@ -1,8 +1 @@
-DIST sqlite3-ocaml-2.0.4.tar.gz 60665 SHA256 
51ccb4c7a240eb40652c59e1770cfe1827dfa1eb926c969d19ff414aef4e80a1 SHA512 
7167397cf4731599cbd4a916941e2bf394755183e4f925a0cacd80352b030e9517fc492f6d24fb7e9f44dc705570303d8a96247c69309543090896c7ffacc0cc
 WHIRLPOOL 
ac844deb1d1e410eab9cae1507f22ee5d01f92df31054894f0c2351053365b978d86288e3dde62129f9f972c326cefcbc15c7a0c570629fc7220fd74602f9b7c
-DIST sqlite3-ocaml-2.0.5.tar.gz 63765 SHA256 
251f710e3b66cb3651c2330e447a8633fe7e5bf968030946f4f913375cfb0efc SHA512 
019283ecc8e65b1125fe2d72c652351093fe3228cbc1d07e126c15d5fde73a6b2e5466740bdcf2b59e20e68f0189f4fc89797205f9a6be104e5759140297
 WHIRLPOOL 
be42c73a06990e00e22c3d30f4324c6278062419f6e60853f8954ec817b4e194e26fa1e0955bc1424eee42815f079e72a5443c792371fc3563980afa9e8ef3da
-DIST sqlite3-ocaml-2.0.7.tar.gz 64760 SHA256 
b8adf338c39fb7b84bda7ab5f53905a6db85a4a0f54daacf12d4d450c4c7a712 SHA512 
66f9b11f554194277f2484440602cc3a0bf4de8fe1b1b88d1327967bf6780bdbc21b29b4cc0ec1b10c188aa679d46a983dc994751ea6089b1f228d949cfb9300
 WHIRLPOOL 
0d45411711493c48a8cb713104e4f594eb8cbbd05e0b32925e1d68c52be120f1f0f30f7dc1a89dee6e8870fff3f2155a7967d10008fdb9fc9b3c8b575a2880a0
-DIST sqlite3-ocaml-2.0.9.tar.gz 65361 SHA256 
a1143a260e0e943e39ab1c9c8a80e32f542c0be958d4f8fcaab80fe56ce89a67 SHA512 
55d2f1a7efc75e44ea4dde58f02957b0b65f1058df620b1f802507876746e5038ff3bfadfea73accac577d2081a3fbb45cfd4f3a935221a5cad4340505591475
 WHIRLPOOL 
2a51477989ae1ee4b8439820dfdde1ee9e95fe981eacb783d2adb7644102d9b64c64a99d5691a299eff284144952b33e2c4792e8b6efb1a4273f8d0a64a7684c
-DIST sqlite3-ocaml-4.0.0.tar.gz 66497 SHA256 
02856daa9e88124824f6055bd242a1b5770ff1e2d9876280f1022cf2ab0fcf61 SHA512 
c93d98f4ba8f1700f4ffed298392d3329b13bb716e46f27898c3038503e86c6584c6facb40014eb12e261ba32e714bb6a4a877a21e875d9da64935cbdaa1fba2
 WHIRLPOOL 
c958d5b6440822eda27e7fc74f2533510e2b81804b88617459584be782215a85f051d710cbca5fef03da44ffc1da5ea2545408eaf0e91f39c15663dca8cd9513
-DIST sqlite3-ocaml-4.0.1.tar.gz 66732 SHA256 
ea268103217d15b88e30389e1865e10644aaedcc1a945cc7a8ded627babfea2f SHA512 
5f6db4f2b0563ff42a32bde446c5dc76f186cf34c06b748498c6a58b3ca5563dc5705a82be267a00a34f46b76ab18804c750c61505ced2b36b51590dfc06a969
 WHIRLPOOL 
eef9618fd65959fa57563157a8e18d912ccf52723eeed5b726f8d8e1667a722a2f985c388008eba31ae7082b918c8d2fafe8a040b6970c3f92eb18782497b345
-DIST sqlite3-ocaml-4.0.2.tar.gz 66901 SHA256 
169767f174623b180e50f120a8df2425eec30f5218558f904eae073c06161403 SHA512 
85a65c0cfefa72c87b9fb9869eaf0e820bac66ee560bd178359fd0b5005d75f5844fd4eee46ff0a3e3ac1c6e642095901731e7737e96f29aa61650debe6eb8e7
 WHIRLPOOL 
4835c63e98d796896dede46af2166bb025443ab96788c266ea2a9ff83b7aad77b503426033a03864bcd5b055883099aab38bec4860e269228540b1b11fed7fcc
 DIST sqlite3-ocaml-4.0.3.tar.gz 67376 SHA256 
390383088b07fde6f775d060e59551ea796334b23b480d9937ad6429cd615d30 SHA512 
5304874ac51aba140a4f2d5bbd147092d25a7fdfb006ff89800d54d7351e717b4db28732f0c7acba80d24bc78e198249cd01c1801034040bded8ebd941bfd482
 WHIRLPOOL 
c2ecacd570b06a3ac375cba88b54ccf5de9ae130dcffbc71d25a91f16c5ccbecdb4303e7da8e7addb4027d8b0457798e1858ec2a82866d2b6089a9d6c6243ba0

diff --git a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-2.0.4.ebuild 
b/dev-ml/ocaml-sqlite3/ocaml-sqlite3-2.0.4.ebuild
deleted file mode 100644
index ec5e13c..000
--- a/dev-ml/ocaml-sqlite3/ocaml-sqlite3-2.0.4.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_TESTS=1
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-MY_PN="sqlite3-ocaml"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="A package for ocaml that provides access to SQLite databases"
-HOMEPAGE="https://bitbucket.org/mmottl/sqlite3-ocaml;

[gentoo-commits] repo/gentoo:master commit in: dev-ml/postgresql-ocaml/

2016-02-07 Thread Alexis Ballier
commit: d0d257ed70321dcfe7994e253301961fd7aa0d87
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:11:53 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d257ed

dev-ml/postgresql-ocaml: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/postgresql-ocaml/Manifest   |  3 --
 .../postgresql-ocaml/postgresql-ocaml-2.0.6.ebuild | 31 
 .../postgresql-ocaml/postgresql-ocaml-3.2.0.ebuild | 34 --
 .../postgresql-ocaml/postgresql-ocaml-3.2.1.ebuild | 34 --
 4 files changed, 102 deletions(-)

diff --git a/dev-ml/postgresql-ocaml/Manifest b/dev-ml/postgresql-ocaml/Manifest
index eedacf3..ccc5365 100644
--- a/dev-ml/postgresql-ocaml/Manifest
+++ b/dev-ml/postgresql-ocaml/Manifest
@@ -1,5 +1,2 @@
 DIST postgresql-ocaml-2.0.5.tar.gz 79123 SHA256 
e786c46edbd63aacd82e008098a2c801f445d59a29bd49713eae5cf5c157eaa8 SHA512 
1d4b09b9135e1d6a98295bd51175ac44e6b51219703ad8ba5c0d429d81534989b43ed8922eff6511de4fc31b6dde1e6ca4f7bea91981e3d8c025d151258e41c7
 WHIRLPOOL 
04ae6fb1865fea75f286faf366ba4a976f260c502de1f898b48c8fb93b70ddedfdeeb9383e54efb2dd3b15e9b6d5302e1a5e0009188d8d83bbd69d4448774eef
-DIST postgresql-ocaml-2.0.6.tar.gz 79697 SHA256 
1f3ae24c323f3b1f5876d647168eeca2182994feb53dad9ef540fd54837887cb SHA512 
0cde0deb38df5bdce467941ca4e9bd3a9648c430a9e406eadc6aecffbe7b5aae27fb5fe3464954de98cba8ecece77e91416cd28f94cb3d3d7d08993d2238f2dc
 WHIRLPOOL 
f5f3a100074fb0e1d1dbc6ae13b98be28db76cf7dce5f1731bee44f099dd00f40dd0e13015432f6e1e1f55d3b522986bacf1ea369f1d1a881be10266d2decd8c
-DIST postgresql-ocaml-3.2.0.tar.gz 85619 SHA256 
bdae08e08fffa0f863512ac54675db6fa2edd0bab63762cc9ffbedc656893426 SHA512 
da35820cf1081641161e8e9c0ee5c0d1090fa61b1f0e13893feda83ae6a0167aac93e58db7448b3cf841bab345f3a4efa97b385ca7819019c6146fd17cd9f146
 WHIRLPOOL 
fab8eee40cbf808faab9aca277a1a6306a1bb02d7fba9d2a45fdf8c586d6174367417b9760656a13622bc9fbff2d4b8218b7627a8c9f365db99eb9bd983cac34
-DIST postgresql-ocaml-3.2.1.tar.gz 85604 SHA256 
e4679e22f10d4c366ad03b926ab63e65618e4da8359e16711d8f2d9dff8a7593 SHA512 
36c4c894259d8bfaccbb1e5dc517fdbb025fe6d9fd24fa5e1d2120faf75aec472218d62c8816ef0055b1c0de934ff74a7eb22d8724d9e9790c21eaa6c4a56ed6
 WHIRLPOOL 
c1476316e1b9b77ef0d5e8c76384a1bfb367d83cb527fed56afbea51e924cebef51af7de2e7d72ca6b117726d71147e8b842f57bf1aa003a7f9e7f06a59fdfbf
 DIST postgresql-ocaml-3.2.2.tar.gz 85697 SHA256 
51348110f06e7d17f68894fd91f91b3e1f935647355a94a79b8c16f923ce9e81 SHA512 
c41c6feed76d8d49932399a080d2e2fa9227b742e0cab5efdf849315ae1b633369e035bee3fd1d94c6a61e533f23d3881e9de650d1b4ec01946660f39c245917
 WHIRLPOOL 
c314346cf113c87ceec3ded469505952a7717f06bdc6099e5fab84d4b5911927b611036bf924c9fdadb35c545ad3fc8ab06d115fd24ad78e045580ba8e02a04f

diff --git a/dev-ml/postgresql-ocaml/postgresql-ocaml-2.0.6.ebuild 
b/dev-ml/postgresql-ocaml/postgresql-ocaml-2.0.6.ebuild
deleted file mode 100644
index ccafa24..000
--- a/dev-ml/postgresql-ocaml/postgresql-ocaml-2.0.6.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="A package for ocaml that provides access to PostgreSQL databases"
-SRC_URI="https://bitbucket.org/mmottl/postgresql-ocaml/downloads/${P}.tar.gz;
-HOMEPAGE="https://bitbucket.org/mmottl/postgresql-ocaml;
-IUSE="examples"
-
-DEPEND="dev-db/postgresql[server]"
-RDEPEND="${DEPEND}"
-
-SLOT="0/${PV}"
-LICENSE="LGPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DOCS=( "AUTHORS.txt" "CHANGES.txt" "README.md" )
-
-src_install() {
-   oasis_src_install
-   if use examples ; then
-   insinto /usr/share/doc/${PF}
-   doins -r examples
-   fi
-}

diff --git a/dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.0.ebuild 
b/dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.0.ebuild
deleted file mode 100644
index 3f2ac2f..000
--- a/dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="A package for ocaml that provides access to PostgreSQL databases"
-SRC_URI="https://github.com/mmottl/postgresql-ocaml/releases/download/v${PV}/${P}.tar.gz;
-HOMEPAGE="http://mmottl.github.io/postgresql-ocaml/;
-IUSE="examples"
-
-RDEPEND="
-   dev-db/postgresql:=[server]
-"
-DEPEND="${RDEPEND}
-   >=dev-ml/findlib-1.5"
-
-SLOT="0/${PV}"
-LICENSE="LGPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DOCS=( "AUTHORS.txt" "CHANGES.txt" "README.md" )
-
-src_install() {
-   oasis_src_install
-   if use examples ; then
-   insinto /usr/share/doc/${PF}
-   doins -r examples
-   fi
-}

diff --git 

[gentoo-commits] repo/gentoo:master commit in: games-emulation/ppsspp/, games-emulation/ppsspp/files/

2016-02-07 Thread Patrice Clement
commit: 76de7b7fd59422898dd599f7dba5817e9023732a
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Feb  7 10:50:18 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Feb  7 10:51:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76de7b7f

games-emulation/ppsspp: Remove bogus patch. Fix install directory (typo).

Also taken into consideration in this commit is the sed command pruning all -O2
flags in favour of -O3, courtesy of Michał Ziąbkowski  o2.pl>.

Gentoo-Bug: 574000

Package-Manager: portage-2.2.26
Signed-off-by: Patrice Clement  gentoo.org>

 games-emulation/ppsspp/files/ppsspp-cmake.patch| 32 --
 ...sspp-1.1.1-r1.ebuild => ppsspp-1.1.0-r2.ebuild} |  7 +++--
 ...sspp-1.1.0-r1.ebuild => ppsspp-1.1.1-r2.ebuild} |  5 +++-
 games-emulation/ppsspp/ppsspp-.ebuild  |  7 +++--
 4 files changed, 14 insertions(+), 37 deletions(-)

diff --git a/games-emulation/ppsspp/files/ppsspp-cmake.patch 
b/games-emulation/ppsspp/files/ppsspp-cmake.patch
deleted file mode 100644
index 4a0a036..000
--- a/games-emulation/ppsspp/files/ppsspp-cmake.patch
+++ /dev/null
@@ -1,32 +0,0 @@
 CMakeLists.txt.orig2016-01-04 20:44:44.010023206 +0800
-+++ CMakeLists.txt 2016-01-04 20:45:34.910024088 +0800
-@@ -219,11 +219,11 @@
- if(NOT MSVC)
-   set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -D_DEBUG")
-   set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} -Os 
-D_NDEBUG")
--  set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -D_NDEBUG")
-+  set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O2 -D_NDEBUG")
-   set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} 
-O2 -g -D_NDEBUG")
-   set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -g -D_DEBUG")
-   set(CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} -Os 
-D_NDEBUG")
--  set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O3 -D_NDEBUG")
-+  set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O2 -D_NDEBUG")
-   set(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} -O2 
-g -D_NDEBUG")
- 
-   # Disable some warnings
-@@ -634,12 +634,12 @@
- if (NOT MSVC)
-   # These can be fast even for debug.
-   if(NOT SNAPPY_FOUND)
--  set_target_properties(snappy PROPERTIES COMPILE_FLAGS "-O3")
-+  set_target_properties(snappy PROPERTIES COMPILE_FLAGS "-O2")
-   endif()
--  set_target_properties(udis86 PROPERTIES COMPILE_FLAGS "-O3")
--  set_target_properties(cityhash PROPERTIES COMPILE_FLAGS "-O3")
-+  set_target_properties(udis86 PROPERTIES COMPILE_FLAGS "-O2")
-+  set_target_properties(cityhash PROPERTIES COMPILE_FLAGS "-O2")
-   if(NOT ZLIB_FOUND)
--  set_target_properties(zlib PROPERTIES COMPILE_FLAGS "-O3")
-+  set_target_properties(zlib PROPERTIES COMPILE_FLAGS "-O2")
-   endif()
- endif()

diff --git a/games-emulation/ppsspp/ppsspp-1.1.1-r1.ebuild 
b/games-emulation/ppsspp/ppsspp-1.1.0-r2.ebuild
similarity index 96%
rename from games-emulation/ppsspp/ppsspp-1.1.1-r1.ebuild
rename to games-emulation/ppsspp/ppsspp-1.1.0-r2.ebuild
index 19baa10..4d8db28 100644
--- a/games-emulation/ppsspp/ppsspp-1.1.1-r1.ebuild
+++ b/games-emulation/ppsspp/ppsspp-1.1.0-r2.ebuild
@@ -60,10 +60,13 @@ src_unpack() {
 }
 
 src_prepare() {
-   epatch "$FILESDIR"/ppsspp-cmake.patch
+   # Bug 574000
+   sed -i -e "s#-O3#-O2#g;" "${S}"/CMakeLists.txt || die
+
epatch "$FILESDIR"/ppsspp-ffmpeg-x86_64.patch
epatch "$FILESDIR"/ppsspp-ffmpeg-x86.patch
epatch "$FILESDIR"/ppsspp-qt.patch
+
if use qt4 ; then
cd "${WORKDIR}"/"${P}"/Qt || die
qt4-r2_src_prepare
@@ -103,7 +106,7 @@ src_compile() {
 
 src_install() {
if use qt4 ; then
-   into /usr/games/bin
+   exeinto /usr/games/bin
newexe "${WORKDIR}"/"${P}"/Qt/ppsspp ppsspp
elif use qt5 ; then
exeinto /usr/games/bin

diff --git a/games-emulation/ppsspp/ppsspp-1.1.0-r1.ebuild 
b/games-emulation/ppsspp/ppsspp-1.1.1-r2.ebuild
similarity index 97%
rename from games-emulation/ppsspp/ppsspp-1.1.0-r1.ebuild
rename to games-emulation/ppsspp/ppsspp-1.1.1-r2.ebuild
index 19baa10..3e3854f 100644
--- a/games-emulation/ppsspp/ppsspp-1.1.0-r1.ebuild
+++ b/games-emulation/ppsspp/ppsspp-1.1.1-r2.ebuild
@@ -60,10 +60,13 @@ src_unpack() {
 }
 
 src_prepare() {
-   epatch "$FILESDIR"/ppsspp-cmake.patch
+   # Bug 574000
+   sed -i -e "s#-O3#-O2#g;" "${S}"/CMakeLists.txt || die
+
epatch "$FILESDIR"/ppsspp-ffmpeg-x86_64.patch
epatch "$FILESDIR"/ppsspp-ffmpeg-x86.patch
epatch "$FILESDIR"/ppsspp-qt.patch
+
if use qt4 ; then
cd "${WORKDIR}"/"${P}"/Qt || die
qt4-r2_src_prepare

diff --git a/games-emulation/ppsspp/ppsspp-.ebuild 

[gentoo-commits] repo/gentoo:master commit in: app-office/wps-office/

2016-02-07 Thread Pacho Ramos
commit: 0b78ee71c88c24c9952b5f9128e71ef86d0ca634
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Feb  7 12:27:34 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Feb  7 12:28:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b78ee71

app-office/wps-office: Drop old

Package-Manager: portage-2.2.27

 app-office/wps-office/Manifest |   2 -
 .../wps-office-10.1.0.5444_alpha20.ebuild  | 141 -
 2 files changed, 143 deletions(-)

diff --git a/app-office/wps-office/Manifest b/app-office/wps-office/Manifest
index f8e1708..bc9f0ed 100644
--- a/app-office/wps-office/Manifest
+++ b/app-office/wps-office/Manifest
@@ -1,5 +1,3 @@
-DIST wps-office_10.1.0.5444~a20_amd64.deb 81954904 SHA256 
19380705962fb6f161dbf2ba40c6a5b5df34dc55b983ac6b1bd1776baeef2069 SHA512 
585bcf5f51c7fec073fdc284501e4f31199f5982badaf879b325b6e49b5e0d4c3eb0d719ce6b5ee180aed8b479531e8f060d036902a4efbe6c632bb0146e6eb3
 WHIRLPOOL 
246fb53eb3122966be033c0bcc20035b86fbd0b8f1a327fa21bbd27ffef14738c61f23d00431e5b7ab93fc95d759e6bc269c128de66ad45488d363f2e3d63d30
-DIST wps-office_10.1.0.5444~a20_i386.deb 81553560 SHA256 
130ac0926ae2c8bc4dc3b3092998556b5d949044d7630cc4d41b5339e6e487f5 SHA512 
02474a9948b1e2907a84522cb7d84a4acbda5bfdd5aa97068b60acf92646ef89858ee1eb5e834be7caa2eeb8c8e3eb33b5fd691d15711e5daf205611dfac0363
 WHIRLPOOL 
8d06d473ae042497173b68bedc3d776c1f3b133428035410c14d24ea12e0a340ab47a1362f60eb6b1113ab48a2bfb9aac55031a878f6097f644477b751130b73
 DIST wps-office_10.1.0.5460~a20p1_amd64.deb 81891888 SHA256 
5e4844a0da411f2ff01d3b1dd03ff7291799001ee7a78925d8c5dd3ca3fce8d0 SHA512 
ae3ff4923177f6fa8e097099045b7c7c7b03473cb55a074cc84a184e0e263445287783b9a123847645573928393708f0480300132614067c04fd2cb3a11076ec
 WHIRLPOOL 
8d0c6b596401e6dcdc5c11cd3cf2f842a3dbf52232a2b128a8678c86107ddc0aae9191de93bbb555fc3c0b57293348a1998cd20a8bd6063b7deb3855b813856e
 DIST wps-office_10.1.0.5460~a20p1_i386.deb 81407384 SHA256 
cf314da6a7f82a72664633f90bbfc75940a931661c01b6904db5229445d00fd0 SHA512 
d720ca78a35bf60fcdb209bd19b5c0d865da87681e08cf7848a01a76f260f23f5de41ba9d3c635f300cd27518f6b0643f6476970128fbb40429ffbc0d76d945c
 WHIRLPOOL 
edf33b0a1e2ebf2288bf6a6bf3ad216d99efd7bf68fad1c5c1aab216fc42c03ec503dacb60e6140873374006520b6d292ff03455d1368124fab3ab88989169c1
 DIST wps-office_10.1.0.5503~a20p2_amd64.deb 82023734 SHA256 
c6667a590eddc6b7478a6493f5c700ccec04b6a164fdcbc06765afaf8322b4c2 SHA512 
e2d5b21d116763d95438218a3beff3a9450271d7d972a95e86824436991c6ac5b77e0ed443ce48a4b2ea0edda15989fdffaf99c553c30fb81ef60e4015802e43
 WHIRLPOOL 
10aeee458a1b3a6a3555a5ff726c27a09fe743cb009ffedf3483f20774890e63287e50d162c9a663117434e03627065dabb6fd8a1f1405e0657daf941c0f

diff --git a/app-office/wps-office/wps-office-10.1.0.5444_alpha20.ebuild 
b/app-office/wps-office/wps-office-10.1.0.5444_alpha20.ebuild
deleted file mode 100644
index cd7c16f..000
--- a/app-office/wps-office/wps-office-10.1.0.5444_alpha20.ebuild
+++ /dev/null
@@ -1,141 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit fdo-mime font gnome2-utils unpacker versionator
-
-MY_PV="$(get_version_component_range 1-4)"
-MY_V="$(get_version_component_range 5)"
-
-if [ -z "$(get_version_component_range 6)" ]; then
-   MY_SP=""
-else
-   MY_SP="$(get_version_component_range 6)"
-fi
-
-case ${PV} in
-   *_alpha*)
-   MY_BRANCH=${MY_V/alpha/a}
-   ;;
-   *_beta*)
-   MY_BRANCH=${MY_V/beta/b}
-   ;;
-   *)
-   die "Invalid value for \${PV}: ${PV}"
-   ;;
-esac
-MY_VV=${MY_PV}~${MY_BRANCH}${MY_SP}
-
-DESCRIPTION="WPS Office is an office productivity suite"
-HOMEPAGE="http://linux.wps.cn/;
-
-KEYWORDS="~amd64 ~x86"
-
-SRC_URI="
-   x86? ( 
http://kdl.cc.ksosoft.com/wps-community/download/${MY_BRANCH}/${PN}_${MY_VV}_i386.deb
 )
-   amd64? ( 
http://kdl.cc.ksosoft.com/wps-community/download/${MY_BRANCH}/${PN}_${MY_VV}_amd64.deb
 )
-"
-
-SLOT="0"
-RESTRICT="strip mirror" # mirror as explained at bug #547372
-LICENSE="WPS-EULA"
-IUSE="+sharedfonts"
-
-UNBUNDLED_LIBS="
-"
-#  media-libs/tiff:3
-#  dev-qt/qtwebkit:4
-#  dev-qt/qtcore:4
-#  dev-qt/qtdbus:4
-#  media-libs/phonon
-
-NATIVE_DEPEND="
-   app-arch/bzip2
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/libffi
-   dev-libs/libxml2:2
-   media-libs/fontconfig:1.0
-   media-libs/freetype:2
-   media-libs/glu
-   media-libs/gst-plugins-base:0.10
-   media-libs/gstreamer:0.10
-   media-libs/libpng:1.2
-   virtual/opengl
-   media-libs/tiff:3
-   sys-apps/util-linux
-   sys-libs/zlib
-   x11-libs/libdrm
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libxcb
-   x11-libs/libXdamage
-   x11-libs/libXdmcp
-   x11-libs/libXext
- 

[gentoo-commits] repo/gentoo:master commit in: app-office/wps-office/

2016-02-07 Thread Pacho Ramos
commit: f9c9fd58cb5ceacea62e520642e8659c1c1c23a4
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Feb  7 11:43:59 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Feb  7 12:28:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9c9fd58

app-office/wps-office: Version bump

Package-Manager: portage-2.2.27

 app-office/wps-office/Manifest |   2 +
 app-office/wps-office/metadata.xml |   2 +-
 .../wps-office-10.1.0.5503_alpha20_p2.ebuild   | 141 +
 3 files changed, 144 insertions(+), 1 deletion(-)

diff --git a/app-office/wps-office/Manifest b/app-office/wps-office/Manifest
index 6213619..f8e1708 100644
--- a/app-office/wps-office/Manifest
+++ b/app-office/wps-office/Manifest
@@ -2,3 +2,5 @@ DIST wps-office_10.1.0.5444~a20_amd64.deb 81954904 SHA256 
19380705962fb6f161dbf2
 DIST wps-office_10.1.0.5444~a20_i386.deb 81553560 SHA256 
130ac0926ae2c8bc4dc3b3092998556b5d949044d7630cc4d41b5339e6e487f5 SHA512 
02474a9948b1e2907a84522cb7d84a4acbda5bfdd5aa97068b60acf92646ef89858ee1eb5e834be7caa2eeb8c8e3eb33b5fd691d15711e5daf205611dfac0363
 WHIRLPOOL 
8d06d473ae042497173b68bedc3d776c1f3b133428035410c14d24ea12e0a340ab47a1362f60eb6b1113ab48a2bfb9aac55031a878f6097f644477b751130b73
 DIST wps-office_10.1.0.5460~a20p1_amd64.deb 81891888 SHA256 
5e4844a0da411f2ff01d3b1dd03ff7291799001ee7a78925d8c5dd3ca3fce8d0 SHA512 
ae3ff4923177f6fa8e097099045b7c7c7b03473cb55a074cc84a184e0e263445287783b9a123847645573928393708f0480300132614067c04fd2cb3a11076ec
 WHIRLPOOL 
8d0c6b596401e6dcdc5c11cd3cf2f842a3dbf52232a2b128a8678c86107ddc0aae9191de93bbb555fc3c0b57293348a1998cd20a8bd6063b7deb3855b813856e
 DIST wps-office_10.1.0.5460~a20p1_i386.deb 81407384 SHA256 
cf314da6a7f82a72664633f90bbfc75940a931661c01b6904db5229445d00fd0 SHA512 
d720ca78a35bf60fcdb209bd19b5c0d865da87681e08cf7848a01a76f260f23f5de41ba9d3c635f300cd27518f6b0643f6476970128fbb40429ffbc0d76d945c
 WHIRLPOOL 
edf33b0a1e2ebf2288bf6a6bf3ad216d99efd7bf68fad1c5c1aab216fc42c03ec503dacb60e6140873374006520b6d292ff03455d1368124fab3ab88989169c1
+DIST wps-office_10.1.0.5503~a20p2_amd64.deb 82023734 SHA256 
c6667a590eddc6b7478a6493f5c700ccec04b6a164fdcbc06765afaf8322b4c2 SHA512 
e2d5b21d116763d95438218a3beff3a9450271d7d972a95e86824436991c6ac5b77e0ed443ce48a4b2ea0edda15989fdffaf99c553c30fb81ef60e4015802e43
 WHIRLPOOL 
10aeee458a1b3a6a3555a5ff726c27a09fe743cb009ffedf3483f20774890e63287e50d162c9a663117434e03627065dabb6fd8a1f1405e0657daf941c0f
+DIST wps-office_10.1.0.5503~a20p2_i386.deb 81588594 SHA256 
b5635fc5b00eea3de1e95875378426b7002b9944295a7a5e6290602fe0282a0c SHA512 
843d8d59a2ac60f21354f9028db6de3ec1e28bffb08366e859b2d3aac4a0cd31e510ecbf6eb6445e5b1357e124d6d273fdf9d3b8124d7ff57c7421f28574d642
 WHIRLPOOL 
3d80f3cc6bcd03ab350dcc5fc7fea2ba71e34d6fe83cf4a543722080e2c08f5b358f00aadcb77f8dc62b65d5dbda9f52f90de8f2dc5cf92779aa0e573d6d69d8

diff --git a/app-office/wps-office/metadata.xml 
b/app-office/wps-office/metadata.xml
index 3603fd3..c659f42 100644
--- a/app-office/wps-office/metadata.xml
+++ b/app-office/wps-office/metadata.xml
@@ -6,6 +6,6 @@
Pacho Ramos
 
 
-   Preserve fonts from WPS
+   Install WPS fonts available system wide
 
 

diff --git a/app-office/wps-office/wps-office-10.1.0.5503_alpha20_p2.ebuild 
b/app-office/wps-office/wps-office-10.1.0.5503_alpha20_p2.ebuild
new file mode 100644
index 000..c124c38
--- /dev/null
+++ b/app-office/wps-office/wps-office-10.1.0.5503_alpha20_p2.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit fdo-mime font gnome2-utils unpacker versionator
+
+MY_PV="$(get_version_component_range 1-4)"
+MY_V="$(get_version_component_range 5)"
+
+if [ -z "$(get_version_component_range 6)" ]; then
+   MY_SP=""
+else
+   MY_SP="$(get_version_component_range 6)"
+fi
+
+case ${PV} in
+   *_alpha*)
+   MY_BRANCH=${MY_V/alpha/a}
+   ;;
+   *_beta*)
+   MY_BRANCH=${MY_V/beta/b}
+   ;;
+   *)
+   die "Invalid value for \${PV}: ${PV}"
+   ;;
+esac
+MY_VV=${MY_PV}~${MY_BRANCH}${MY_SP}
+
+DESCRIPTION="WPS Office is an office productivity suite"
+HOMEPAGE="http://linux.wps.cn/ http://wps-community.org/;
+
+KEYWORDS="~amd64 ~x86"
+
+SRC_URI="
+   x86? ( 
http://kdl.cc.ksosoft.com/wps-community/download/${MY_BRANCH}/${PN}_${MY_VV}_i386.deb
 )
+   amd64? ( 
http://kdl.cc.ksosoft.com/wps-community/download/${MY_BRANCH}/${PN}_${MY_VV}_amd64.deb
 )
+"
+
+SLOT="0"
+RESTRICT="strip mirror" # mirror as explained at bug #547372
+LICENSE="WPS-EULA"
+IUSE="+sharedfonts"
+
+UNBUNDLED_LIBS="
+"
+#  media-libs/tiff:3
+#  dev-qt/qtwebkit:4
+#  dev-qt/qtcore:4
+#  dev-qt/qtdbus:4
+#  media-libs/phonon
+
+NATIVE_DEPEND="
+   app-arch/bzip2
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/libffi
+   

[gentoo-commits] repo/gentoo:master commit in: dev-python/taskflow/

2016-02-07 Thread Justin Lecher
commit: 4321a2a2619b8bda039843b0da12fa3c3909e617
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 12:27:34 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:27:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4321a2a2

dev-python/taskflow: Drop old

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/taskflow/Manifest   |  6 ---
 dev-python/taskflow/taskflow-0.1.3.ebuild  | 46 --
 dev-python/taskflow/taskflow-0.10.0.ebuild | 62 --
 dev-python/taskflow/taskflow-0.10.1.ebuild | 62 --
 dev-python/taskflow/taskflow-0.2.ebuild| 43 -
 dev-python/taskflow/taskflow-0.5.0.ebuild  | 48 ---
 dev-python/taskflow/taskflow-0.7.1.ebuild  | 59 
 7 files changed, 326 deletions(-)

diff --git a/dev-python/taskflow/Manifest b/dev-python/taskflow/Manifest
index 61fc8d2..3de6b7c 100644
--- a/dev-python/taskflow/Manifest
+++ b/dev-python/taskflow/Manifest
@@ -1,7 +1 @@
-DIST taskflow-0.1.3.tar.gz 144130 SHA256 
ab81452748c9fdb84e59525a58acff202b698f467d2d0290bf29c78774bfd796 SHA512 
61f445146bf361d47a4519298f9c70ca07c3a644df9ef758a1113eea297caaeed9fe4222ea37dccbfe952f1416d0851501ea43cf6de3cca8f4cc0e37ff4cd30a
 WHIRLPOOL 
de6b32ef22384ae0d49c0a1eafa09098ef52a5a8fd12070ff60d85081001674a346b34c61683089f9c41f8f17c75ca15e31e0308a4e2689e9f09f0347cef8864
-DIST taskflow-0.10.0.tar.gz 672492 SHA256 
7278b8abb3f359f8ecf3e80bd0ae82c1992679f7f5f0ba1ce0125f18b47e8da7 SHA512 
4e0afed3ce7a3ed1b0d3dfbbbd253e3983ed5e1268308809504c2428d8ff7e4870a5bf3950ccc839672fa967560d96bf7908cdfad2efe438f164079d5ef435f5
 WHIRLPOOL 
6a95e789aade37c47aa3d2fc2877db8278887af90a28e1fc03f5a0d588aa5c83940dda5209176d0c292ce0f98ffa3a5969c6e75060cf9d73630f51a60f58df05
-DIST taskflow-0.10.1.tar.gz 672564 SHA256 
717de5dabcce615745d15a89f75f4bebc062b82288ebd54d657a2a15aeea SHA512 
62178bc55f0bf3609a540a723c6955a793fbcc0ab5353929ffc4d54e4d3683ba19dd044773554ff3a8dcc145699fed48307c69432e650f08cbb9b207f11c87fd
 WHIRLPOOL 
3c8e37c9d39105aaa3177f6f0ce5b2ef234a9183419d13cfb2bb069a2ec47832ce9d192ee80915082f9a5531f16f364bdb0bfdaa0d838c302fbc2e459e5fdd7f
-DIST taskflow-0.2.tar.gz 238352 SHA256 
7cfbf08bfd52b9f652294cc914ad0e6032c209e5ae00a7cdbd2ac7ec2508d147 SHA512 
6082ef47617d10157e4f91581dcebcd7f21d2d30ab687545c2c1af0bfa3471b27c96de87adafa7a54fe8bbd168500314f87ddb86db4a36b07d8aaf8e8cccb4eb
 WHIRLPOOL 
9cf24c034b705a1ffc60d6a676d6a1e6aa7d480faf898891a44110a35ddf4bec6f7e0bf94462cefa7a7e4ec5ef2f544f01dcdc21a8e84c17ad8a0eb4762f033b
-DIST taskflow-0.5.0.tar.gz 415045 SHA256 
1df392fba696b978be62364abc4d14bec3a4fd9007974631a2405356a43482ce SHA512 
d7a0be2cab55c17ed572391bbe8c9d833272897765bb824de1db14f4e056010d736a54098986ea6c07c419b4ca3f62d2d403c884e8fb182bc9b6bf64124ebc74
 WHIRLPOOL 
82083edb9df4b2c7bb515eedaf6931d0fe83b93bd08fd177c5d0b3cd4dbe6f8946cdfc1f06f37faf61dc3e1394b93630ef739cef2580079feaf677b7b188ed1c
-DIST taskflow-0.7.1.tar.gz 631738 SHA256 
bf1f833184c12787d09ab1b587b41d4feec631f2b9d7fc55e63ef3098e74ad5b SHA512 
f3e06bec83c5ef963a386dafa80239b48595e1a3ed9857a4dabc3bf41114de49cc1d5282ae11508164b926a16c721be7e9d25bf51be0f86b7f7dda8ec5817f59
 WHIRLPOOL 
d4f3e55c479437a2f373ca6f1c559c474ae7c935e79f9b7c26e6fd978c67bf58c63dccc7c755b33d9ccb7bbeab2ac7440b783222a0291e5ac93d02d972ea0a56
 DIST taskflow-1.21.0.tar.gz 1022884 SHA256 
cda5021fc2a2b1d20d575c3e191aaae280e0552b138907e77cea70301be88721 SHA512 
cd22c44ece0ae825aeca7c8d063d92708c1414f3a48d90d4835deff1a373da4cc19f84a3265b2d88451a8186bfc71034fdfc44344594d63b7f13fbde58b762f0
 WHIRLPOOL 
d17d0111c0c5b600cb6027df95519bcae7b5ec22d153b1816e6a750dc0cd7b40c57e821f7efdcc43eb47c7036e400e3f03bef81d251e580f8b08175f2af1ada6

diff --git a/dev-python/taskflow/taskflow-0.1.3.ebuild 
b/dev-python/taskflow/taskflow-0.1.3.ebuild
deleted file mode 100644
index 85a7efa..000
--- a/dev-python/taskflow/taskflow-0.1.3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-#not dealing with yet another dep
-RESTRICT="test"
-
-DESCRIPTION="A library to do [jobs, tasks, flows] in a HA manner using 
different backends"
-HOMEPAGE="https://github.com/openstack/taskflow;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/pbr-0.6[${PYTHON_USEDEP}]
-   =dev-python/hacking-0.8.0[${PYTHON_USEDEP}]
-   =dev-python/coverage-3.6[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}]
-   >=dev-python/keyring-2.1[${PYTHON_USEDEP}]
-  

[gentoo-commits] repo/gentoo:master commit in: dev-python/testtools/

2016-02-07 Thread Justin Lecher
commit: a18aca71777420bbfab2ff160a7b9b6393fa535e
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 12:23:08 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 12:23:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a18aca71

dev-python/testtools: Resolve circular deps

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/testtools/testtools-2.0.0.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/testtools/testtools-2.0.0.ebuild 
b/dev-python/testtools/testtools-2.0.0.ebuild
index 367c8a7..030cbc7 100644
--- a/dev-python/testtools/testtools-2.0.0.ebuild
+++ b/dev-python/testtools/testtools-2.0.0.ebuild
@@ -20,7 +20,6 @@ IUSE="doc test"
 
 CDEPEND="
dev-python/extras[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-1.3.0[${PYTHON_USEDEP}]
dev-python/mimeparse[${PYTHON_USEDEP}]
>=dev-python/pbr-0.11[${PYTHON_USEDEP}]
dev-python/pyrsistent[${PYTHON_USEDEP}]
@@ -32,10 +31,14 @@ DEPEND="
${CDEPEND}
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
+   >=dev-python/fixtures-1.3.0[${PYTHON_USEDEP}]
dev-python/testscenarios[${PYTHON_USEDEP}]
)
 "
 RDEPEND="${CDEPEND}"
+PDEPEND="
+   >=dev-python/fixtures-1.3.0[${PYTHON_USEDEP}]
+"
 
 python_compile_all() {
use doc && emake -C doc html



[gentoo-commits] repo/gentoo:master commit in: games-emulation/ppsspp/

2016-02-07 Thread Patrice Clement
commit: 0921c3562069ebbc2664d126b2444fe9210f5e92
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Feb  7 13:12:44 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Feb  7 13:13:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0921c356

games-emulation/ppsspp: Fix typo: exeinto instead of into.

Package-Manager: portage-2.2.26
Signed-off-by: Patrice Clement  gentoo.org>

 games-emulation/ppsspp/ppsspp-1.1.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/ppsspp/ppsspp-1.1.1-r2.ebuild 
b/games-emulation/ppsspp/ppsspp-1.1.1-r2.ebuild
index 3e3854f..4d8db28 100644
--- a/games-emulation/ppsspp/ppsspp-1.1.1-r2.ebuild
+++ b/games-emulation/ppsspp/ppsspp-1.1.1-r2.ebuild
@@ -106,7 +106,7 @@ src_compile() {
 
 src_install() {
if use qt4 ; then
-   into /usr/games/bin
+   exeinto /usr/games/bin
newexe "${WORKDIR}"/"${P}"/Qt/ppsspp ppsspp
elif use qt5 ; then
exeinto /usr/games/bin



[gentoo-commits] repo/gentoo:master commit in: app-admin/monit/

2016-02-07 Thread Lars Wendler
commit: e180e28d8882de48cc3d8530b14c2e795d76140f
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  7 13:59:12 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  7 14:45:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e180e28d

app-admin/monit: Bump to version 5.16.1

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler  gentoo.org>

 app-admin/monit/Manifest|  1 +
 app-admin/monit/monit-5.16.1.ebuild | 52 +
 2 files changed, 53 insertions(+)

diff --git a/app-admin/monit/Manifest b/app-admin/monit/Manifest
index c570d99..3a5056c 100644
--- a/app-admin/monit/Manifest
+++ b/app-admin/monit/Manifest
@@ -1,2 +1,3 @@
 DIST monit-5.15.tar.gz 1218043 SHA256 
deada8153dc7e8755f572bc4d790143a92c7a8668dccb563ae4dbd73af56697c SHA512 
7e2b011a89d9b1dc990faf413a38f0c68aea398e25efd5392d6aa1baf50d68ea2db087ea2093c84658a99b7a83d133b23562d5ad11e1197db7a54a2b961177cd
 WHIRLPOOL 
e305705583c79b8d861595cae4d000b5832e3288f3d0ec59e69ac811e1f402af489e44c8fe568941781d97c953ff181a8048f0b3dfaeec14a26fd4bbc8cff697
+DIST monit-5.16.1.tar.gz 1226375 SHA256 
b729b8345f5b85311c7f05751fc5d009128fd4a95fc4929a04b43bd15ab3b23f SHA512 
911462b73074cbdd151596dc29cef74370af3ae368067d36e9f630fd2f4cb37867f0eef68083ee07efa1f489848560c4b4152e55eccc829d5118990e04308ffa
 WHIRLPOOL 
bca90fd0d28aa65c81074d427426bf748a94de23716fe99a203e8af7bea34aa32d9f0c02716d4850b67f165c0224de14618f8a64061588bfe2fa2542a70a1a70
 DIST monit-5.16.tar.gz 1226329 SHA256 
5b998e796113ce244c8b575da09d3a62bac1b2765484fe6416f224b4ba8f391f SHA512 
09d3fa772c0749e0cb7fd057bcf9d057650601e09b746dd335ee040ba1f9f45693174aead065d50c7f43c2f5dc7f3cace252cf2c94ccdf767a14afdff57f808e
 WHIRLPOOL 
9cbf7dd1f42ebb43f4e3ea1d5880f3229b147576d4ea4f856e38d1fffb20af539d31d52d7bdebcad9354a0ffd3c135760e585a673cb76e2b56f396e34d5dcfc9

diff --git a/app-admin/monit/monit-5.16.1.ebuild 
b/app-admin/monit/monit-5.16.1.ebuild
new file mode 100644
index 000..df1ef80
--- /dev/null
+++ b/app-admin/monit/monit-5.16.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit pam systemd
+
+DESCRIPTION="a utility for monitoring and managing daemons or similar programs 
running on a Unix system"
+HOMEPAGE="http://mmonit.com/monit/;
+SRC_URI="http://mmonit.com/monit/dist/${P}.tar.gz;
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE="libressl pam ssl"
+
+RDEPEND="
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl )
+   )"
+DEPEND="${RDEPEND}
+   sys-devel/flex
+   sys-devel/bison
+   pam? ( virtual/pam )"
+
+src_prepare() {
+   default
+
+   sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die "sed failed in 
Makefile.in"
+}
+
+src_configure() {
+   econf $(use_with ssl) $(use_with pam)
+}
+
+src_install() {
+   default
+
+   dodoc README
+
+   insinto /etc; insopts -m600; doins monitrc
+   newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit
+   systemd_dounit "${FILESDIR}"/${PN}.service
+
+   use pam && newpamd "${FILESDIR}"/${PN}.pamd ${PN}
+}
+
+pkg_postinst() {
+   elog "Sample configurations are available at:"
+   elog "http://mmonit.com/monit/documentation/;
+}



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/

2016-02-07 Thread Lars Wendler
commit: e46544a82e80b0dbc4d09913c188af4ba9798fcd
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  7 14:29:04 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  7 14:45:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e46544a8

dev-vcs/git: Removed old.

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler  gentoo.org>

 dev-vcs/git/Manifest |   3 -
 dev-vcs/git/git-2.6.4.ebuild | 640 ---
 dev-vcs/git/git-2.7.0.ebuild | 640 ---
 3 files changed, 1283 deletions(-)

diff --git a/dev-vcs/git/Manifest b/dev-vcs/git/Manifest
index 2c3616c..c7d440e 100644
--- a/dev-vcs/git/Manifest
+++ b/dev-vcs/git/Manifest
@@ -1,18 +1,15 @@
 DIST git-2.4.10.tar.xz 3695176 SHA256 
b631b2b26f5593833a29cd833b8071b4eaf7b212fba180e587b526f51c2331df SHA512 
08f7f63fd4820f155aec08373fd4f5abbe5a4c8f98a73a824897ba68901fb274b4cf47b8751cd2bea358cbb9c09934f7857aa440de69b46ee88a4bba852f5ced
 WHIRLPOOL 
3ec53b7355f1895c95b91e1fa85f185801acdb0317384099e4d7914208c3d762d536ed83e099c96a168d696e37e3f8a491459de59c7dd59dce9c49fb75af836b
 DIST git-2.5.4.tar.xz 3747552 SHA256 
e08d2d384e1c8c474d336c3583ed5cd396c76455155a4e65bfa97699fc38472a SHA512 
25964bc59301b11994c94bab618613bc87ef788d356af55a26c77861a939f2b67cf37be98199e81d5c2a63e8d9c043b4fc6fb481316cc4d8bb6a1f382eddf33e
 WHIRLPOOL 
e62efd86c5e0d1b040816978cc28a41d00a7c095513482b0df1d4addc87bd89ce20dbb1b77e3ec3d9bd0722de3237e451b05f687fdb6419fa419708921049222
-DIST git-2.6.4.tar.xz 3820804 SHA256 
1c0170952163e0b240256bc47388b95c617cf8cf446c93261df83d42cf5dd466 SHA512 
935233c6dc504448af5dce3115174f9d36489288f7f16790f21dd0faa2699ed71609b8053182e0e2b100b9229cde80ca4d944ecc7723e697bec7af5b28b8f12e
 WHIRLPOOL 
2df761b4aa1876d93e7c6c22d7a57d61a1cab6419f582ee842330a5167888af3da17de7812903baadca6f36b1de15216f6efccb548a70e3e3a366131703a441b
 DIST git-2.6.5.tar.xz 3822016 SHA256 
07ce40131821c42fbcfa8f989b384f30f64f3665c06e8b2c2e2077d730777db5 SHA512 
c71a1ad80eced40b007d9a6dc10d081fcf5b9b384f20d5db2e3a2646191838070369b96c172a66d86eaa488634bd4adbe0840f0c4dade51a45eba2fd3a0870a5
 WHIRLPOOL 
331e8422cdaf0376ea6ff15f8b7abc2d14355fda9871ad8928fd7d46df3cd88e94702da243c5032e1e1e364def92b3fd8b852e8b7aaa98a69bb20599417ba50c
 DIST git-2.7.0.tar.xz 3861524 SHA256 
fa9fb34efce9c80527152a40fbae138e83bd04a15ef9111726252259345a7b0d SHA512 
e2d51e3d547229bb1e5c3a92c71476695f23420d9c639f9cb1d953fd00579aad92f9bbaf8f3d45f966c9476da73bf4c11dabf18c06f542de6e4d26e12c43dcf3
 WHIRLPOOL 
e0dc8071ebc4e0558a2f2b9d8b32d840f4278e893777367029e84a57bf52d1d00eadb778a3e6df70c93de8cb754b94ff985ae6025ff98d6276629d7d3318aa19
 DIST git-2.7.1.tar.xz 3905876 SHA256 
477a8137de342f858d364383266e9551e582718e96b34051a6aaef57606d6bfe SHA512 
968a77ed2dd0118a55fdc0715c1dad3edbef59cad15d57d1cd6f8385636480746bf8f934e5bbf4e7cf2264cb59f387260a10e851f0b4a54b0b959e19e8856dbb
 WHIRLPOOL 
9cb5e59eb8dfbad56b6046fac69dcd0e3588558a30c5c8d67499b75afbd4bddf2053bd1907c584a984649b40ae7f67d659ac9abe6658b2d93d4fafcc1042e3ed
 DIST git-htmldocs-2.4.10.tar.xz 996588 SHA256 
f2c523ea114caac7c5cf51a20a420a215411762fabff2da9febfc2917af835ef SHA512 
60fc5a2b6665ec7fc10680608b5689a24fa211fe7393f010a8099c6fb0a9582f20cebc7cad0653b62750677d79a80fcd6e8e96fb440acb3fc7c7c0ffc00779d3
 WHIRLPOOL 
30585753a7b08dfa812c74832d35168d3615d8bf71c3c853efb125348538b5fb7cc4b3f1cfef725082ade144b5362394991186967f6026cee8c91dd41e30290e
 DIST git-htmldocs-2.5.4.tar.xz 1009820 SHA256 
cb36b3b7198a3fa49f2677bba83f1e57a1a40250a181d9e86232cb8febcc8053 SHA512 
af833635632ba5c65524bfef00f291a41fd37ba7bd9ca4b65b4c0eb9329b888d2e8757fe29f33bd25a75e1841d67a20dff49f43d35a502ef3b29599d073dcd6a
 WHIRLPOOL 
e5f55c3dbdf69d946295c5c19b95a79168d34645ced8e6a837ec8b5dd948008487288159f63a2f81a36fbdf3f413d3fdefd008b0157785df37431ccb9127284e
-DIST git-htmldocs-2.6.4.tar.xz 1021204 SHA256 
03c43f8ce24e9ffe3b7f3066d0ffb4036a67b2ac5d0914b788379341c742167b SHA512 
5d0fa33ac1d5f9160b72720e504158c6403beff7c9dfc0d0c43e55acb4575a130689d664c20c16316a78020130fbd9fcec4cb6068aeb3da41ac2623a43b2442c
 WHIRLPOOL 
fece0a4dbf4910f1fe0f0239ddf3b399bcef6b369206dc6f30cc84f8d50805c55cada81cd7a4010315b36f3bf55b29024bea5a85b191c871eaf99641242dc75e
 DIST git-htmldocs-2.6.5.tar.xz 1021516 SHA256 
40b5ee75a69d834005b36dd190dc0164124593cca233391774a3a9c82af88de5 SHA512 
dc796bbe54104821c8be8a7475039a8a6b207d3e3bd20b950d786b02c824801e3f915389af7c267b83800ed2e0d1b037fb543d6c0f942f887c715a361a589728
 WHIRLPOOL 
3abd96db7ed3368a8903ff89265c6a44c8e5a2127695edca6bdc2511a27dd45c546016400f926c367030602828329a194fc2683785f25c7833c18c9f32ea57f1
 DIST git-htmldocs-2.7.0.tar.xz 1028748 SHA256 
a9d30a744eb07392ba3ffe389cca7e57a2bdd718c9ffccdf2d525eeafac548a9 SHA512 
e86dd5874c87bd9df9a76a50bc41280dbcaff7b24547d57eae1f68f97645e15dc35027754425013bef6fea1bd4f6e9e23ac0aac80023166a29848deee7d3d4d0
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/

2016-02-07 Thread Lars Wendler
commit: 71a8f4991d8f1e4a4af0de6137fa376c3862ea28
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  7 14:08:51 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  7 14:45:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71a8f499

dev-vcs/git: Bump to version 2.7.1

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler  gentoo.org>

 dev-vcs/git/Manifest |   3 +
 dev-vcs/git/git-2.7.1.ebuild | 657 +++
 2 files changed, 660 insertions(+)

diff --git a/dev-vcs/git/Manifest b/dev-vcs/git/Manifest
index 906d451..2c3616c 100644
--- a/dev-vcs/git/Manifest
+++ b/dev-vcs/git/Manifest
@@ -3,13 +3,16 @@ DIST git-2.5.4.tar.xz 3747552 SHA256 
e08d2d384e1c8c474d336c3583ed5cd396c76455155
 DIST git-2.6.4.tar.xz 3820804 SHA256 
1c0170952163e0b240256bc47388b95c617cf8cf446c93261df83d42cf5dd466 SHA512 
935233c6dc504448af5dce3115174f9d36489288f7f16790f21dd0faa2699ed71609b8053182e0e2b100b9229cde80ca4d944ecc7723e697bec7af5b28b8f12e
 WHIRLPOOL 
2df761b4aa1876d93e7c6c22d7a57d61a1cab6419f582ee842330a5167888af3da17de7812903baadca6f36b1de15216f6efccb548a70e3e3a366131703a441b
 DIST git-2.6.5.tar.xz 3822016 SHA256 
07ce40131821c42fbcfa8f989b384f30f64f3665c06e8b2c2e2077d730777db5 SHA512 
c71a1ad80eced40b007d9a6dc10d081fcf5b9b384f20d5db2e3a2646191838070369b96c172a66d86eaa488634bd4adbe0840f0c4dade51a45eba2fd3a0870a5
 WHIRLPOOL 
331e8422cdaf0376ea6ff15f8b7abc2d14355fda9871ad8928fd7d46df3cd88e94702da243c5032e1e1e364def92b3fd8b852e8b7aaa98a69bb20599417ba50c
 DIST git-2.7.0.tar.xz 3861524 SHA256 
fa9fb34efce9c80527152a40fbae138e83bd04a15ef9111726252259345a7b0d SHA512 
e2d51e3d547229bb1e5c3a92c71476695f23420d9c639f9cb1d953fd00579aad92f9bbaf8f3d45f966c9476da73bf4c11dabf18c06f542de6e4d26e12c43dcf3
 WHIRLPOOL 
e0dc8071ebc4e0558a2f2b9d8b32d840f4278e893777367029e84a57bf52d1d00eadb778a3e6df70c93de8cb754b94ff985ae6025ff98d6276629d7d3318aa19
+DIST git-2.7.1.tar.xz 3905876 SHA256 
477a8137de342f858d364383266e9551e582718e96b34051a6aaef57606d6bfe SHA512 
968a77ed2dd0118a55fdc0715c1dad3edbef59cad15d57d1cd6f8385636480746bf8f934e5bbf4e7cf2264cb59f387260a10e851f0b4a54b0b959e19e8856dbb
 WHIRLPOOL 
9cb5e59eb8dfbad56b6046fac69dcd0e3588558a30c5c8d67499b75afbd4bddf2053bd1907c584a984649b40ae7f67d659ac9abe6658b2d93d4fafcc1042e3ed
 DIST git-htmldocs-2.4.10.tar.xz 996588 SHA256 
f2c523ea114caac7c5cf51a20a420a215411762fabff2da9febfc2917af835ef SHA512 
60fc5a2b6665ec7fc10680608b5689a24fa211fe7393f010a8099c6fb0a9582f20cebc7cad0653b62750677d79a80fcd6e8e96fb440acb3fc7c7c0ffc00779d3
 WHIRLPOOL 
30585753a7b08dfa812c74832d35168d3615d8bf71c3c853efb125348538b5fb7cc4b3f1cfef725082ade144b5362394991186967f6026cee8c91dd41e30290e
 DIST git-htmldocs-2.5.4.tar.xz 1009820 SHA256 
cb36b3b7198a3fa49f2677bba83f1e57a1a40250a181d9e86232cb8febcc8053 SHA512 
af833635632ba5c65524bfef00f291a41fd37ba7bd9ca4b65b4c0eb9329b888d2e8757fe29f33bd25a75e1841d67a20dff49f43d35a502ef3b29599d073dcd6a
 WHIRLPOOL 
e5f55c3dbdf69d946295c5c19b95a79168d34645ced8e6a837ec8b5dd948008487288159f63a2f81a36fbdf3f413d3fdefd008b0157785df37431ccb9127284e
 DIST git-htmldocs-2.6.4.tar.xz 1021204 SHA256 
03c43f8ce24e9ffe3b7f3066d0ffb4036a67b2ac5d0914b788379341c742167b SHA512 
5d0fa33ac1d5f9160b72720e504158c6403beff7c9dfc0d0c43e55acb4575a130689d664c20c16316a78020130fbd9fcec4cb6068aeb3da41ac2623a43b2442c
 WHIRLPOOL 
fece0a4dbf4910f1fe0f0239ddf3b399bcef6b369206dc6f30cc84f8d50805c55cada81cd7a4010315b36f3bf55b29024bea5a85b191c871eaf99641242dc75e
 DIST git-htmldocs-2.6.5.tar.xz 1021516 SHA256 
40b5ee75a69d834005b36dd190dc0164124593cca233391774a3a9c82af88de5 SHA512 
dc796bbe54104821c8be8a7475039a8a6b207d3e3bd20b950d786b02c824801e3f915389af7c267b83800ed2e0d1b037fb543d6c0f942f887c715a361a589728
 WHIRLPOOL 
3abd96db7ed3368a8903ff89265c6a44c8e5a2127695edca6bdc2511a27dd45c546016400f926c367030602828329a194fc2683785f25c7833c18c9f32ea57f1
 DIST git-htmldocs-2.7.0.tar.xz 1028748 SHA256 
a9d30a744eb07392ba3ffe389cca7e57a2bdd718c9ffccdf2d525eeafac548a9 SHA512 
e86dd5874c87bd9df9a76a50bc41280dbcaff7b24547d57eae1f68f97645e15dc35027754425013bef6fea1bd4f6e9e23ac0aac80023166a29848deee7d3d4d0
 WHIRLPOOL 
435b67e536991b6a31f5b70870947f30fe9d2318648bb061ed96608acc0e5deca4d21574cbdcb06548ab90fb2a368e5a629610aaa5f030c91ec9d6e0965be302
+DIST git-htmldocs-2.7.1.tar.xz 1030484 SHA256 
9a9b857fb28fef8ad2fd780b263331f2f5d3f09338c64bd902f8a5ec03bbfc89 SHA512 
b97223f7fec21d254f0b1b2407341b84d03ec23ed38e3042541e9cb2e2d847a856524e9e5751d2ff4a00c32f0f02ee667e376c3a6ad00252d6b6bee0dde1af4e
 WHIRLPOOL 
42ba0d194a77d5074f57a6936a72a7f4dbd0cbda0d620eb22fc04ea5ef1d0016d777dbf1e9a06265424f870c0241ef6f79e310f758c90ebf081d05b926e810b0
 DIST git-manpages-2.4.10.tar.xz 373968 SHA256 
da712c07d84bb3da10be9fb56c15289c77828d3011179ab71f090e77e52a03d9 SHA512 
d5a978109db70f3d50d02ad17c93229206f2d5a2dd3dd7e9fb266ca7b76b85ad92f63120df885b88b5a33fe1dce0686ae92fc50749cb3b6275cb48812eb031a9
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: net-print/cups/, net-print/cups/files/

2016-02-07 Thread Lars Wendler
commit: b8fa126dd2c2241428665c8e5112a6a2abf9d2ef
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  7 14:45:21 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  7 14:45:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8fa126d

net-print/cups: Bump to version 2.1.3

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler  gentoo.org>

 net-print/cups/Manifest|   1 +
 net-print/cups/cups-2.1.3.ebuild   | 357 +
 .../files/cups-1.6.0-dont-compress-manpages.patch  |   6 +-
 .../cups/files/cups-1.6.0-fix-install-perms.patch  |   6 +-
 net-print/cups/files/cupsd.init.d-r2   |  20 ++
 5 files changed, 382 insertions(+), 8 deletions(-)

diff --git a/net-print/cups/Manifest b/net-print/cups/Manifest
index 271c55f..f911ce0 100644
--- a/net-print/cups/Manifest
+++ b/net-print/cups/Manifest
@@ -1,3 +1,4 @@
 DIST cups-2.0.3-source.tar.bz2 8797220 SHA256 
bc3167048690a7379f29a37d9fbd2143cf0ca033b54eedd9333ddfc4ee258881 SHA512 
fcc2be8d12cec624423a07706486afd226c9cb29b2ba694d63b8250c16a7d0f39aa51e6c831ca7c978ba5009e98b1daedad4b119a4f3287a88e21e48f0d07e18
 WHIRLPOOL 
d12771b6d941db78854a1b05644a4402fa6a62f8acab1332c7490887e0099463b129684f4dd21b5e9f02e4f8e23bef633a06fca01ad8fa8b34de9298b72ab3ba
 DIST cups-2.0.4-source.tar.bz2 8799274 SHA256 
e1d5e68d9f24faca317aeaebc164c34102813bc0f1d69c00b3a59b49c49f4abd SHA512 
d0db3ce729ee893f260b69814343e84af4b934f1783d96049fcf58204a93ac534d0bf0c1626f5ac55371962419b91c857bd872f499e905223069b5103405c4ae
 WHIRLPOOL 
cbeb3f61cf534017180aa0d55f60ec81ac082f92d3626b18b4480aaf9e67b425b829ad260dfa1227ba56a79b52959f1e740848d26dc938fc9fc0159f1844a2bb
 DIST cups-2.1.2-source.tar.bz2 8831726 SHA256 
bab0ca3ba80eae48319b3a6b19a5b14fad5ce230f30151a0cfa4c0271df281ad SHA512 
c1bd15acdd8ac55a731c9267f0dcf9159a02c3a895d4b032b0e0d0bbb1189eb4b3b4600a9f025a8359a55ce93a5911014058f361f2bc954d1fb2cdbf219e183d
 WHIRLPOOL 
e4bb7729bb4ac7d8ba51a18178dfaeaa98c3e4525c7c6beb17dbe78f938e7cb2da466f9b4cb7f68452ddae6a52de36ee3c2b204dd1f5c9e21141cdaf7fdccea0
+DIST cups-2.1.3-source.tar.bz2 8832400 SHA256 
36a70d43584aea2617da914b9331e23341c3501a8254c4d2eae9c11ec01fd4d3 SHA512 
5cc715b8521b4d6af29a97a8abf7a1b0973840c00727ee8e7926e89a4a9da8e67565d14cc4b57ab7cfb40b238d4faaed7608b9ab95947cc3671ed87b710f8f36
 WHIRLPOOL 
161c65b8adc3ab1c65208fe23bf14aefe5dfd84e9b162c69b1a8f977c3a4fc7c31ea92d0c2eaca3c276fa192596a31701052f0c2a1ffd213a09d48c11d446f6f

diff --git a/net-print/cups/cups-2.1.3.ebuild b/net-print/cups/cups-2.1.3.ebuild
new file mode 100644
index 000..3f1174b
--- /dev/null
+++ b/net-print/cups/cups-2.1.3.ebuild
@@ -0,0 +1,357 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools fdo-mime gnome2-utils flag-o-matic linux-info \
+   multilib multilib-minimal pam python-single-r1 user versionator \
+   java-pkg-opt-2 systemd toolchain-funcs
+
+MY_P=${P/_rc/rc}
+MY_P=${MY_P/_beta/b}
+MY_PV=${PV/_rc/rc}
+MY_PV=${MY_PV/_beta/b}
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="http://www.cups.org/cups.git;
+   if [[ ${PV} !=  ]]; then
+   EGIT_BRANCH=branch-${PV/.}
+   fi
+else
+   SRC_URI="http://www.cups.org/software/${MY_PV}/${MY_P}-source.tar.bz2;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
+fi
+
+DESCRIPTION="The Common Unix Printing System"
+HOMEPAGE="http://www.cups.org/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="acl dbus debug java kerberos lprng-compat pam
+   python selinux +ssl static-libs systemd +threads usb X xinetd zeroconf"
+
+LANGS="ca cs de es fr it ja ru"
+for X in ${LANGS} ; do
+   IUSE="${IUSE} +linguas_${X}"
+done
+
+CDEPEND="
+   app-text/libpaper
+   acl? (
+   kernel_linux? (
+   sys-apps/acl
+   sys-apps/attr
+   )
+   )
+   dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
+   java? ( >=virtual/jre-1.6:* )
+   kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+   !lprng-compat? ( !net-print/lprng )
+   pam? ( virtual/pam )
+   python? ( ${PYTHON_DEPS} )
+   ssl? (
+   >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}]
+   >=net-libs/gnutls-2.12.23-r6[${MULTILIB_USEDEP}]
+   )
+   systemd? ( sys-apps/systemd )
+   usb? ( virtual/libusb:1 )
+   X? ( x11-misc/xdg-utils )
+   xinetd? ( sys-apps/xinetd )
+   zeroconf? ( >=net-dns/avahi-0.6.31-r2[${MULTILIB_USEDEP}] )
+   abi_x86_32? (
+   !<=app-emulation/emul-linux-x86-baselibs-20140508
+   !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
+   )
+"
+
+DEPEND="${CDEPEND}
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+"
+

[gentoo-commits] repo/gentoo:master commit in: sys-apps/texinfo/files/, sys-apps/texinfo/

2016-02-07 Thread Lars Wendler
commit: 7257191494c950bc7f057ff321e63e2e821ec28c
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  7 13:37:52 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  7 14:45:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72571914

sys-apps/texinfo: Removed old.

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/texinfo/Manifest  |   1 -
 .../files/texinfo-4.13-accentenc-test.patch|  17 ---
 sys-apps/texinfo/files/texinfo-4.13-docbook.patch  |  66 ---
 .../files/texinfo-4.13-texi2dvi-regexp-range.patch |  23 
 sys-apps/texinfo/files/texinfo-4.13-tinfo.patch|  24 
 sys-apps/texinfo/files/texinfo-4.13-xz.patch   | 130 -
 sys-apps/texinfo/texinfo-4.13-r2.ebuild|  58 -
 7 files changed, 319 deletions(-)

diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest
index ef9eb65..f5d561a 100644
--- a/sys-apps/texinfo/Manifest
+++ b/sys-apps/texinfo/Manifest
@@ -1,4 +1,3 @@
-DIST texinfo-4.13.tar.lzma 1563777 SHA256 
6d28b0ceae866e3536142fc552e7a3bc9f84c8303119c25731b2478eef64c9e5 SHA512 
bded399ed5fcf97dfa72d9486df91ecfc501301d83929b09b230aee2b8ad6994b7d7b5965b04d43de729cee30575b2334cf75879ad0a61c4b781ccc16d6c12db
 WHIRLPOOL 
6ef9d5e47cae7c6a94272e35bafe0716e617691b6b549a59ef8f95244f1b9a94e9adb79db38cf8e23166a43e84725e3eb01c971c8894bc4201aa743a44170c35
 DIST texinfo-5.2.tar.xz 3812944 SHA256 
5471ef683a64588a7cfef46ef2bdd3fbcbca89d847e10832612293f105e44eda SHA512 
6f9c5142db3b155bd601149b5632807b3c20dcfa7006ce5f7e120e6fc4b2174a3f4671c18232c040ffd69ebfb5950be5c563ac5cc08b88d03eb5a9f1b0f96c04
 WHIRLPOOL 
609f0c2ac4deccf85f99cae3f681ce3892c7822988a84970171dec0f1224052861b3ac3fac97e666016bac4469b0e8446133c775a20f7201ff6dffa90fc84290
 DIST texinfo-6.0.tar.xz 4086712 SHA256 
11ba4358696e8be3b3c7cfc88b89cf69525791aeabf0ee0a59ca58ebbd3471e4 SHA512 
36f82288dfb7c2385630043faf75ccef5af625952d792c669c5eea673ae5b3474c148041bf1935f87ddeaae7114103731277e715d0d510c6fb41e0211ab12494
 WHIRLPOOL 
1d1facd5670321aca908407f65ff6a8769f3d7528c4535d77cf3fc6d948d766acc1e3f592e74554c427fca51a9e54048d54774586543d6316b664ac3c92d06c8
 DIST texinfo-6.1.tar.xz 4520376 SHA256 
ac68394ce21b2420ba7ed7cec65d84aacf308cc88e9bf4716fcfff88286883d2 SHA512 
ae47295f3bcfb728c3be59421cf830ecfa5fc7856a086e45da2bac89600d883aa4406a6ef62d7ee5dc2bab83a3efa1cec861a3b4b14b85bbecb53ebf3ebf7235
 WHIRLPOOL 
187f11681f041aa5f4260c6c2833cb877a4c74afda73d4f72008c61c8a089dd0393ff90257410d5e48b9501c36dd4991032db001c5c17b8224afb6f5819cd165

diff --git a/sys-apps/texinfo/files/texinfo-4.13-accentenc-test.patch 
b/sys-apps/texinfo/files/texinfo-4.13-accentenc-test.patch
deleted file mode 100644
index ad470fa..000
--- a/sys-apps/texinfo/files/texinfo-4.13-accentenc-test.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Fails in UTF-8 locales with grep-2.6
-
-https://bugs.gentoo.org/322151
-https://savannah.gnu.org/bugs/index.php?31068
-
 a/makeinfo/tests/accentenc
-+++ b/makeinfo/tests/accentenc
-@@ -1,7 +1,8 @@
- #!/bin/sh
- # Test encoded accent info output.
- 
--unset TEXINFO_OUTPUT
-+unset TEXINFO_OUTPUT LANG LANGUAGE
-+LC_ALL=POSIX; export LC_ALL
- : ${srcdir=.}
- input=`basename $0`.txi
- output=`basename $0`.info

diff --git a/sys-apps/texinfo/files/texinfo-4.13-docbook.patch 
b/sys-apps/texinfo/files/texinfo-4.13-docbook.patch
deleted file mode 100644
index 0622b94..000
--- a/sys-apps/texinfo/files/texinfo-4.13-docbook.patch
+++ /dev/null
@@ -1,66 +0,0 @@
 texinfo-4.13.orig/makeinfo/cmds.c  2008-05-22 05:11:34.0 -0700
-+++ texinfo-4.13/makeinfo/cmds.c   2012-05-23 18:31:57.108264307 -0700
-@@ -1560,7 +1560,7 @@ cm_setfilename (void)
-   char *filename;
-   get_rest_of_line (1, );
-   /* warning ("`@%s %s' encountered and ignored", command, filename); */
--  if (xml)
-+  if (xml && !docbook)
- add_word_args ("%s", filename);
-   free (filename);
- }
 texinfo-4.13.orig/makeinfo/node.c  2008-07-05 16:59:47.0 -0700
-+++ texinfo-4.13/makeinfo/node.c   2012-05-23 17:02:46.517345024 -0700
-@@ -1233,10 +1233,12 @@ cm_anchor (int arg)
- }
-   else if (xml || docbook)
- {
-+  char *id = xml_id(anchor);
-   xml_insert_element_with_attribute (ANCHOR, START,
-docbook ? "id=\"%s\"" : "name=\"%s\"",
--   anchor);
-+   id);
-   xml_insert_element (ANCHOR, END);
-+  free(id);
- }
- 
-   /* Save it in the tag table.  */
 texinfo-4.13.orig/makeinfo/xml.c   2008-02-12 17:00:55.0 -0800
-+++ texinfo-4.13/makeinfo/xml.c2012-05-23 17:20:13.698858895 -0700
-@@ -586,21 +586,27 @@ static int in_indexterm = 0;
- char *
- xml_id (char *id)
- {
--  char *tem = xmalloc (strlen (id) + 1);
-+  /* Get an extra space to accomodate adding an i-prefix. */
-+  char *tem = xmalloc (strlen (id) + 2);
-   char *p = 

[gentoo-commits] repo/gentoo:master commit in: sys-apps/texinfo/

2016-02-07 Thread Lars Wendler
commit: 43de9a271b3b08b20c3c3414326da3f61390eb49
Author: Lars Wendler  gentoo  org>
AuthorDate: Sun Feb  7 13:36:55 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sun Feb  7 14:45:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43de9a27

sys-apps/texinfo: Bump to version 6.1

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/texinfo/Manifest   |  1 +
 sys-apps/texinfo/texinfo-6.1.ebuild | 41 +
 2 files changed, 42 insertions(+)

diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest
index c78b9d9..ef9eb65 100644
--- a/sys-apps/texinfo/Manifest
+++ b/sys-apps/texinfo/Manifest
@@ -1,3 +1,4 @@
 DIST texinfo-4.13.tar.lzma 1563777 SHA256 
6d28b0ceae866e3536142fc552e7a3bc9f84c8303119c25731b2478eef64c9e5 SHA512 
bded399ed5fcf97dfa72d9486df91ecfc501301d83929b09b230aee2b8ad6994b7d7b5965b04d43de729cee30575b2334cf75879ad0a61c4b781ccc16d6c12db
 WHIRLPOOL 
6ef9d5e47cae7c6a94272e35bafe0716e617691b6b549a59ef8f95244f1b9a94e9adb79db38cf8e23166a43e84725e3eb01c971c8894bc4201aa743a44170c35
 DIST texinfo-5.2.tar.xz 3812944 SHA256 
5471ef683a64588a7cfef46ef2bdd3fbcbca89d847e10832612293f105e44eda SHA512 
6f9c5142db3b155bd601149b5632807b3c20dcfa7006ce5f7e120e6fc4b2174a3f4671c18232c040ffd69ebfb5950be5c563ac5cc08b88d03eb5a9f1b0f96c04
 WHIRLPOOL 
609f0c2ac4deccf85f99cae3f681ce3892c7822988a84970171dec0f1224052861b3ac3fac97e666016bac4469b0e8446133c775a20f7201ff6dffa90fc84290
 DIST texinfo-6.0.tar.xz 4086712 SHA256 
11ba4358696e8be3b3c7cfc88b89cf69525791aeabf0ee0a59ca58ebbd3471e4 SHA512 
36f82288dfb7c2385630043faf75ccef5af625952d792c669c5eea673ae5b3474c148041bf1935f87ddeaae7114103731277e715d0d510c6fb41e0211ab12494
 WHIRLPOOL 
1d1facd5670321aca908407f65ff6a8769f3d7528c4535d77cf3fc6d948d766acc1e3f592e74554c427fca51a9e54048d54774586543d6316b664ac3c92d06c8
+DIST texinfo-6.1.tar.xz 4520376 SHA256 
ac68394ce21b2420ba7ed7cec65d84aacf308cc88e9bf4716fcfff88286883d2 SHA512 
ae47295f3bcfb728c3be59421cf830ecfa5fc7856a086e45da2bac89600d883aa4406a6ef62d7ee5dc2bab83a3efa1cec861a3b4b14b85bbecb53ebf3ebf7235
 WHIRLPOOL 
187f11681f041aa5f4260c6c2833cb877a4c74afda73d4f72008c61c8a089dd0393ff90257410d5e48b9501c36dd4991032db001c5c17b8224afb6f5819cd165

diff --git a/sys-apps/texinfo/texinfo-6.1.ebuild 
b/sys-apps/texinfo/texinfo-6.1.ebuild
new file mode 100644
index 000..17ee03b
--- /dev/null
+++ b/sys-apps/texinfo/texinfo-6.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# Note: if your package uses the texi2dvi utility, it must depend on the
+# virtual/texi2dvi package to pull in all the right deps.  The tool is not
+# usable out-of-the-box because it requires the large tex packages.
+
+EAPI="5"
+
+inherit flag-o-matic
+
+DESCRIPTION="The GNU info program and utilities"
+HOMEPAGE="https://www.gnu.org/software/texinfo/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+IUSE="nls static"
+
+RDEPEND="
+   !=app-text/tetex-2*
+   >=sys-libs/ncurses-5.2-r2:0=
+   dev-lang/perl
+   dev-perl/libintl-perl
+   dev-perl/Unicode-EastAsianWidth
+   dev-perl/Text-Unidecode
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   nls? ( >=sys-devel/gettext-0.19.6 )"
+
+src_configure() {
+   use static && append-ldflags -static
+   econf \
+   --with-external-libintl-perl \
+   --with-external-Unicode-EastAsianWidth \
+   --with-external-Text-Unidecode \
+   $(use_enable nls)
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/oasis/

2016-02-07 Thread Alexis Ballier
commit: 57090a89d31cd6c4fcec667a95e4b1aa3de815b5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:01:14 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57090a89

dev-ml/oasis: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/oasis/Manifest   |  3 ---
 dev-ml/oasis/oasis-0.3.0.ebuild | 36 
 dev-ml/oasis/oasis-0.4.1.ebuild | 37 -
 dev-ml/oasis/oasis-0.4.4.ebuild | 38 --
 4 files changed, 114 deletions(-)

diff --git a/dev-ml/oasis/Manifest b/dev-ml/oasis/Manifest
index d988f19..0cf9d6e 100644
--- a/dev-ml/oasis/Manifest
+++ b/dev-ml/oasis/Manifest
@@ -1,4 +1 @@
-DIST oasis-0.3.0.tar.gz 298052 SHA256 
2efa90a2dc31d0b731dc574f99ca3e1fd07079da1898b077d84db4a3fd212701 SHA512 
b8b9bb694c0d29364b39ff4fa10647e2aad0371d5345cae47ac99f1853e331153e6db7d9088f898b7e21793b97af1b4aeecb0e78d962a54d5b6d2c99f4c3cfe7
 WHIRLPOOL 
d3f91be86c858e634120f297359f45d81abe593c207fb182eb3b7af2ed3b676cdadfcf1bbb417f87bfd610934fdf8fd4b12ae0bceb4232e500553ecf31bd3b4d
-DIST oasis-0.4.1.tar.gz 309466 SHA256 
12ca49699dceba687cd150a5b5e66246450d2e06e47578a701c140195ce256d3 SHA512 
34424f174794cc00de485660134e6358fda222a2d5bb29959be31dd8bdeacac9c37d2c3bdffd9c4ee3d53b05695e1e7580858198fcd088104e60f2c813401e23
 WHIRLPOOL 
a60ddad0f058fab284c35c6887a597d48d8ab23574d700da6d8f6463eb73d9ec451dd60540616b4088d667d8b79fa185b575d2071e85980ae32e634b6453f234
-DIST oasis-0.4.4.tar.gz 333041 SHA256 
90a99ba342c2fc63afcc0b12fbef022153de27478072ab3b302cf7adb4bc526f SHA512 
1abb6e01f93029c5d9af3422a0e93b215182577225ad949442a4b69d0904620c20547941bad96fb27ad0034a0a4b472b586aac2614e89f5faae3084b751ed3c8
 WHIRLPOOL 
39f250a4fae03c240cc6f73d9128b5f1fc5383ad1a702bc977b196cf3a4aa6eda741f6e89d678c0d071299ae559cd52c69b4de0aa02014a39d94456e28eda108
 DIST oasis-0.4.5.tar.gz 336502 SHA256 
6623a603415c4718add6a6ebad80f6688164a2e9b28576c082548b17bf8b2e44 SHA512 
97d5401762ffda6bf4d7a239d9c77f8647d58da1728925e6de6e8fdfded6f8e7bb69652a838b86ab7203cd68436b06f76921c76840b97db56a94bb87d74450d7
 WHIRLPOOL 
46f5c3f900baa3d3b6ada8c0cf90cc90cfddc70523510d5ba5541e5075c96360ebacdd23a1b0f8b28a90bda7fb1700b9a2e9d7989af650e9aa5d50f358795d92

diff --git a/dev-ml/oasis/oasis-0.3.0.ebuild b/dev-ml/oasis/oasis-0.3.0.ebuild
deleted file mode 100644
index 931047c..000
--- a/dev-ml/oasis/oasis-0.3.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_TESTS=1
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-MY_P=${P/_/\~}
-DESCRIPTION="OASIS is a tool to integrate a configure, build and install 
system in OCaml project"
-HOMEPAGE="http://oasis.forge.ocamlcore.org/index.php;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/918/${MY_P}.tar.gz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND=">=dev-ml/ocaml-data-notation-0.0.3:="
-DEPEND="${RDEPEND}
-   dev-ml/ocamlify
-   dev-ml/ocamlmod
-   !=dev-ml/ocaml-fileutils-0.4.2
-   >=dev-ml/ounit-1.1.0
-   >=dev-ml/ocaml-expect-0.0.2
-   dev-ml/extlib
-   )"
-
-STRIP_MASK="*/bin/*"
-S="${WORKDIR}/${MY_P}"
-DOCS=( "README.txt" "TODO.txt" "AUTHORS.txt" "CHANGES.txt" )

diff --git a/dev-ml/oasis/oasis-0.4.1.ebuild b/dev-ml/oasis/oasis-0.4.1.ebuild
deleted file mode 100644
index a0add77..000
--- a/dev-ml/oasis/oasis-0.4.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_TESTS=1
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-MY_P=${P/_/\~}
-DESCRIPTION="OASIS is a tool to integrate a configure, build and install 
system in OCaml project"
-HOMEPAGE="http://oasis.forge.ocamlcore.org/index.php;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/1355/${MY_P}.tar.gz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND=">=dev-ml/ocaml-data-notation-0.0.11:="
-DEPEND="${RDEPEND}
-   >=dev-ml/findlib-1.3.1
-   dev-ml/ocamlify
-   dev-ml/ocamlmod
-   !=dev-ml/ocaml-fileutils-0.4.2
-   >=dev-ml/ounit-2.0.0
-   >=dev-ml/ocaml-expect-0.0.4
-   dev-ml/extlib
-   )"
-
-STRIP_MASK="*/bin/*"
-S="${WORKDIR}/${MY_P}"
-DOCS=( "README.txt" "TODO.txt" "AUTHORS.txt" "CHANGES.txt" )

diff --git a/dev-ml/oasis/oasis-0.4.4.ebuild b/dev-ml/oasis/oasis-0.4.4.ebuild
deleted file mode 100644
index f595bff..000
--- a/dev-ml/oasis/oasis-0.4.4.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_TESTS=1

[gentoo-commits] repo/gentoo:master commit in: dev-ml/lambda-term/

2016-02-07 Thread Alexis Ballier
commit: 232942deb6c3272c5b4296fc046b26f42c6241f4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:02:55 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=232942de

dev-ml/lambda-term: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/lambda-term/Manifest   |  1 -
 dev-ml/lambda-term/lambda-term-1.8.ebuild | 28 
 2 files changed, 29 deletions(-)

diff --git a/dev-ml/lambda-term/Manifest b/dev-ml/lambda-term/Manifest
index f51e59a..55c819c 100644
--- a/dev-ml/lambda-term/Manifest
+++ b/dev-ml/lambda-term/Manifest
@@ -1,2 +1 @@
-DIST lambda-term-1.8.tar.gz 156911 SHA256 
ec5d2e29263444e0922dd559860d13f977cf4c391c5cf959826b158c480fc143 SHA512 
6130cfc66c450788c6acdbb35ecabc12b2934999afd0fa33b93e047f8023a4ece35d6c95ff3f2b10e2bd531f610362f05e0bb04fb3bacea93cf51f03dd28a9fd
 WHIRLPOOL 
b18aacc698f3e9bcd095d56bbbf41521ac02ae0ded37b39c487015c6cd9f33f844bd352c37be677c13705076abc57428ce32d2463cadbf2e60ca325418deae62
 DIST lambda-term-1.9.tar.gz 157782 SHA256 
d21bd941cfaa98e5c08343fcb4c50fdb6e34600d8bff217c3356a4652e53f506 SHA512 
f36aeac2693796c8e6058e13655b459523e2ce4e4fbd6662a2b135b65850421021b5ae3d7f370d64037e66fe8c8efe7d3ad953c280f200dbcb9ff75b6a6ca72a
 WHIRLPOOL 
1850c99953c465ed2a3fa9d6d0bf9cb3c45aa16aa5a54cb00037cec3ef9395cde0e7aa367eb8e2987ad37f749c8e11033bb8ebbada02ccf903b52886998f0a3b

diff --git a/dev-ml/lambda-term/lambda-term-1.8.ebuild 
b/dev-ml/lambda-term/lambda-term-1.8.ebuild
deleted file mode 100644
index 854da8d..000
--- a/dev-ml/lambda-term/lambda-term-1.8.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="A cross-platform library for manipulating the terminal"
-HOMEPAGE="https://github.com/diml/lambda-term;
-SRC_URI="https://github.com/diml/lambda-term/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
-   >=dev-ml/lwt-2.4.0:=[react]
-   >=dev-ml/zed-1.2:=
-   >=dev-ml/camomile-0.8:=
-   dev-ml/react:=
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( "CHANGES.md" "README.md" )



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocamlmod/

2016-02-07 Thread Alexis Ballier
commit: edc7e44c8c6c686116fc804b68880d5451dde4a9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:02:23 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edc7e44c

dev-ml/ocamlmod: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/ocamlmod/Manifest  |  2 --
 dev-ml/ocamlmod/ocamlmod-0.0.3.ebuild | 24 
 dev-ml/ocamlmod/ocamlmod-0.0.7.ebuild | 24 
 3 files changed, 50 deletions(-)

diff --git a/dev-ml/ocamlmod/Manifest b/dev-ml/ocamlmod/Manifest
index 32b052a..5a21fe4 100644
--- a/dev-ml/ocamlmod/Manifest
+++ b/dev-ml/ocamlmod/Manifest
@@ -1,3 +1 @@
-DIST ocamlmod-0.0.3.tar.gz 43107 SHA256 
23740d023c38b0aa8d8010d8df3ba69b1b93a5c5ebdd5ef5058ced18f88cbb70 SHA512 
5a3761e43a468b8e391a6559538b23dd9f264ae46d7281445bec8797b1967d425c5b3fe26e72499c5947dfa23fb574ada033a2851167fdf3732a089964de4ef6
 WHIRLPOOL 
150e9a79d7415d31038f3692d70de3eb6256b54442d825f6f3b9c743ca9e1001538c07f0ecaef46f029b5cf239b2951c435d33d4ed7d36487549811c674c172a
-DIST ocamlmod-0.0.7.tar.gz 46221 SHA256 
a329a0919fa18128b48fd00897204d2aecec0c946c1956541589f807203f6f86 SHA512 
bc88d3cae0506a17bcfc0e178ba26e3b6d634c47e704621198ff7f1920852163fb017f04b9d2d2add19235f3a29a3fa2f894189329e6629694953a8e1b15
 WHIRLPOOL 
e28827069b256c0aac0f1a935bcc741dd0be0b48d6da3bdd2fd3eb701f434863b87f76b20adff079324bdde8f4e66e578ef622693ad61a5d25561f0df8f2229c
 DIST ocamlmod-0.0.8.tar.gz 48985 SHA256 
2f6909279c87ab2df0f6e291ebb79d9eddd632dc6f84dd00187357ef1d451cf0 SHA512 
beb64c109c241965f33a60b4868f5215e6c112742a3be214d3b7a0503b9d29494c0453fa5f2551bbc1975cd4b123d0b917116aeeba968d2a7d2c6fb9651a64f4
 WHIRLPOOL 
e094e4fb45fc740bb932310607c8d568c5e4e5af6218e1b78b55842b82de2a8e0a1fe21bb8321059237baacb5dae1282e59a6f1b5c254345fcaae9c1fd58da20

diff --git a/dev-ml/ocamlmod/ocamlmod-0.0.3.ebuild 
b/dev-ml/ocamlmod/ocamlmod-0.0.3.ebuild
deleted file mode 100644
index 903fea8..000
--- a/dev-ml/ocamlmod/ocamlmod-0.0.3.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-#OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Generate OCaml modules from source files"
-HOMEPAGE="http://forge.ocamlcore.org/projects/ocamlmod/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/856/${P}.tar.gz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-#  test? ( >=dev-ml/ounit-1.1.1 )"
-
-DOCS=( "AUTHORS.txt" "README.txt" )

diff --git a/dev-ml/ocamlmod/ocamlmod-0.0.7.ebuild 
b/dev-ml/ocamlmod/ocamlmod-0.0.7.ebuild
deleted file mode 100644
index aeafb3f..000
--- a/dev-ml/ocamlmod/ocamlmod-0.0.7.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-#OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Generate OCaml modules from source files"
-HOMEPAGE="http://forge.ocamlcore.org/projects/ocamlmod/;
-SRC_URI="http://forge.ocamlcore.org/frs/download.php/1350/${P}.tar.gz;
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}"
-#  test? ( >=dev-ml/ounit-2.0.0 )"
-
-DOCS=( "AUTHORS.txt" "README.txt" )



[gentoo-commits] repo/gentoo:master commit in: dev-ml/optcomp/

2016-02-07 Thread Alexis Ballier
commit: 31e5d150a5b5cdd961c16a32344eab49314e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Feb  7 16:01:52 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Feb  7 16:13:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31e5

dev-ml/optcomp: remove old

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ml/optcomp/Manifest   |  1 -
 dev-ml/optcomp/optcomp-1.5.ebuild | 23 ---
 2 files changed, 24 deletions(-)

diff --git a/dev-ml/optcomp/Manifest b/dev-ml/optcomp/Manifest
index 15aee86..89956af 100644
--- a/dev-ml/optcomp/Manifest
+++ b/dev-ml/optcomp/Manifest
@@ -1,2 +1 @@
-DIST optcomp-1.5.tar.gz 51964 SHA256 
1041762f2a5ba014b26a24c31ed46c6c08cd89754c8914388f358161b7e97d8d SHA512 
15fc215e19e4e7854d5b6b005ece6301e5847cf8cdfc1d017a858fd3a0fd4309346e4347c2ab29902d929d67d284a279001ae518b498c997e1648bfcd2513142
 WHIRLPOOL 
1a88fa85f626a590d9edca8a1551ac963338ae7a68f5f7c3ab028b5251d696c83473eb8ebfddaf653421409af79bd01ff07084c27009b839c0251d0959dedd41
 DIST optcomp-1.6.tar.gz 56370 SHA256 
5022d80e4d7dba4ada3aa57156503fad75fcd6d7b13cfa8580012a1d9f581042 SHA512 
19fa04a42e5ed589979647469759017442598d170bf82d49c3b720d1b1b6bbe3066ae3ffee77a3f15dcbf51be5d7a8934300873391ebce423f3a0f3878250c18
 WHIRLPOOL 
ca453c60a367e58747363cb9f4d20f7e34c3f1a63a767104903b810d1e50007bca6340ed517cc98a0563ad6bf0e934ff3ded448a441627280c7e6a51097ca676

diff --git a/dev-ml/optcomp/optcomp-1.5.ebuild 
b/dev-ml/optcomp/optcomp-1.5.ebuild
deleted file mode 100644
index 1853fd5..000
--- a/dev-ml/optcomp/optcomp-1.5.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-OASIS_BUILD_DOCS=1
-
-inherit oasis
-
-DESCRIPTION="Optional compilation for OCaml with cpp-like directives"
-HOMEPAGE="https://github.com/diml/optcomp;
-SRC_URI="https://github.com/diml/optcomp/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-DOCS=( CHANGES.md README.md )



[gentoo-commits] proj/mysql:master commit in: eclass/

2016-02-07 Thread Brian Evans
commit: 8c240ee6acb0a20ebb9bea19548c42f18d2ded55
Author: Brian Evans  gentoo  org>
AuthorDate: Sun Feb  7 20:29:36 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Sun Feb  7 20:29:36 2016 +
URL:https://gitweb.gentoo.org/proj/mysql.git/commit/?id=8c240ee6

Add FLUSH PRIVILEGES to the pkg_config after setting the root password

 eclass/mysql-multilib-r1.eclass | 2 +-
 eclass/mysql-multilib.eclass| 2 +-
 eclass/mysql-v2.eclass  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/eclass/mysql-multilib-r1.eclass b/eclass/mysql-multilib-r1.eclass
index e14a2a8..1512b21 100644
--- a/eclass/mysql-multilib-r1.eclass
+++ b/eclass/mysql-multilib-r1.eclass
@@ -952,7 +952,7 @@ mysql-multilib-r1_pkg_config() {
 
ebegin "Setting root password"
# Do this from memory, as we don't want clear text passwords in temp 
files
-   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'"
+   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'; FLUSH PRIVILEGES"
"${EROOT}/usr/bin/mysql" \
--socket=${socket} \
-hlocalhost \

diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass
index 0016e76..a8cac37 100644
--- a/eclass/mysql-multilib.eclass
+++ b/eclass/mysql-multilib.eclass
@@ -1144,7 +1144,7 @@ mysql-multilib_pkg_config() {
 
ebegin "Setting root password"
# Do this from memory, as we don't want clear text passwords in temp 
files
-   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'"
+   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'; FLUSH PRIVILEGES"
"${EROOT}/usr/bin/mysql" \
--socket=${socket} \
-hlocalhost \

diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass
index c654374..2ca4f7f 100644
--- a/eclass/mysql-v2.eclass
+++ b/eclass/mysql-v2.eclass
@@ -895,7 +895,7 @@ mysql-v2_pkg_config() {
 
ebegin "Setting root password"
# Do this from memory, as we don't want clear text passwords in temp 
files
-   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'"
+   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'; FLUSH PRIVILEGES"
"${EROOT}/usr/bin/mysql" \
--socket=${socket} \
-hlocalhost \



[gentoo-commits] repo/gentoo:master commit in: /

2016-02-07 Thread Ian Delaney
commit: df1634bae9f064b3aaacedce4a2eaff6a78f0b58
Author: Ian Delaney  gentoo  org>
AuthorDate: Sun Feb  7 21:25:37 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sun Feb  7 21:25:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df1634ba

Merge remote-tracking branch 'remotes/nvinson/sbcl'

Pull request: https://bugs.gentoo.org/show_bug.cgi?id=572478

 dev-lisp/sbcl/metadata.xml  |  5 +
 dev-lisp/sbcl/{sbcl-1.1.18.ebuild => sbcl-1.1.18-r1.ebuild} | 10 +++---
 2 files changed, 12 insertions(+), 3 deletions(-)



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/

2016-02-07 Thread Ian Delaney
commit: 944c46edbf96fffc7d9151853ba361589d6a13d0
Author: Nicholas Vinson  gmail  com>
AuthorDate: Sun Feb  7 18:40:05 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sun Feb  7 18:58:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=944c46ed

dev-lisp/sbcl: Fix for bug #572478

Package-Manager: portage-2.2.27

 dev-lisp/sbcl/sbcl-1.1.18-r1.ebuild | 216 
 1 file changed, 216 insertions(+)

diff --git a/dev-lisp/sbcl/sbcl-1.1.18-r1.ebuild 
b/dev-lisp/sbcl/sbcl-1.1.18-r1.ebuild
new file mode 100644
index 000..cb391da
--- /dev/null
+++ b/dev-lisp/sbcl/sbcl-1.1.18-r1.ebuild
@@ -0,0 +1,216 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit multilib eutils flag-o-matic pax-utils
+
+#same order as http://www.sbcl.org/platform-table.html
+BV_X86=1.0.58
+BV_AMD64=1.1.18
+BV_PPC=1.0.28
+BV_SPARC=1.0.28
+BV_ALPHA=1.0.28
+
+DESCRIPTION="Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common 
Lisp"
+HOMEPAGE="http://sbcl.sourceforge.net/;
+SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2
+   x86? ( 
mirror://sourceforge/sbcl/${PN}-${BV_X86}-x86-linux-binary.tar.bz2 )
+   amd64? ( 
mirror://sourceforge/sbcl/${PN}-${BV_AMD64}-x86-64-linux-binary.tar.bz2 )
+   ppc? ( 
mirror://sourceforge/sbcl/${PN}-${BV_PPC}-powerpc-linux-binary.tar.bz2 )
+   sparc? ( 
mirror://sourceforge/sbcl/${PN}-${BV_SPARC}-sparc-linux-binary.tar.bz2 )
+   alpha? ( 
mirror://sourceforge/sbcl/${PN}-${BV_ALPHA}-alpha-linux-binary.tar.bz2 )"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="debug doc source +threads +unicode pax_kernel zlib"
+
+CDEPEND="=dev-lisp/asdf-3.0*:="
+DEPEND="${CDEPEND}
+   doc? ( sys-apps/texinfo >=media-gfx/graphviz-2.26.0 )
+   pax_kernel? ( sys-apps/paxctl sys-apps/elfix )"
+RDEPEND="${CDEPEND}
+elibc_glibc? ( >=sys-libs/glibc-2.3 || ( >=sys-libs/glibc-2.6 
) )"
+
+# Disable warnings about executable stacks, as this won't be fixed soon by 
upstream
+QA_EXECSTACK="usr/bin/sbcl"
+
+CONFIG="${S}/customize-target-features.lisp"
+ENVD="${T}/50sbcl"
+
+# Prevent ASDF from using the system libraries
+CL_SOURCE_REGISTRY="(:source-registry :ignore-inherited-configuration)"
+ASDF_OUTPUT_TRANSLATIONS="(:output-translations 
:ignore-inherited-configuration)"
+
+usep() {
+   use ${1} && echo "true" || echo "false"
+}
+
+sbcl_feature() {
+   echo "$( [[ ${1} == "true" ]] && echo "(enable ${2})" || echo "(disable 
${2})")" >> "${CONFIG}"
+}
+
+sbcl_apply_features() {
+   sed 's/^X//' > "${CONFIG}" <<-'EOF'
+   (lambda (list)
+   X  (flet ((enable  (x) (pushnew x list))
+   X (disable (x) (setf list (remove x list
+   EOF
+   if use x86 || use amd64; then
+   sbcl_feature "$(usep threads)" ":sb-thread"
+   fi
+   sbcl_feature "true" ":sb-ldb"
+   sbcl_feature "false" ":sb-test"
+   sbcl_feature "$(usep unicode)" ":sb-unicode"
+   sbcl_feature "$(usep zlib)" ":sb-core-compression"
+   sbcl_feature "$(usep debug)" ":sb-xref-for-internals"
+   sed 's/^X//' >> "${CONFIG}" <<-'EOF'
+   X)
+   X  list)
+   EOF
+   cat "${CONFIG}"
+}
+
+src_unpack() {
+   unpack ${A}
+   mv sbcl-*-linux sbcl-binary || die
+   cd "${S}"
+}
+
+src_prepare() {
+   epatch "${FILESDIR}"/gentoo-fix_install_man.patch
+   epatch "${FILESDIR}"/gentoo-fix_linux-os-c.patch
+   # bug #468482
+   epatch "${FILESDIR}"/concurrency-test.patch
+   # bug #486552
+   epatch "${FILESDIR}"/bsd-sockets-test.patch
+
+   # To make the hardened compiler NOT compile with -fPIE -pie
+   if gcc-specs-pie ; then
+   einfo "Disabling PIE..."
+   epatch 
"${FILESDIR}"/${PN}-1.1.17-gentoo-fix_nopie_for_hardened_toolchain.patch
+   fi
+
+   # bug #526194
+   sed -e "s@CFLAGS =@CFLAGS = ${CFLAGS}@" \
+   -e "s@LINKFLAGS =@LINKFLAGS = ${LDFLAGS}@" \
+   -i src/runtime/GNUmakefile || die
+
+   cp /usr/share/common-lisp/source/asdf/build/asdf.lisp contrib/asdf/ || 
die
+
+   use source && sed 's%"$(BUILD_ROOT)%$(MODULE).lisp "$(BUILD_ROOT)%' -i 
contrib/vanilla-module.mk
+
+   # Some shells(such as dash) don't have "time" as builtin
+   # and we don't want to DEPEND on sys-process/time
+   sed "s,^time ,," -i make.sh || die
+   sed "s,/lib,/$(get_libdir),g" -i install.sh || die
+   # #define SBCL_HOME ...
+   sed "s,/usr/local/lib,/usr/$(get_libdir),g" -i src/runtime/runtime.c || 
die
+
+   find . -type f -name .cvsignore -delete
+
+   # bug #572478
+   sed "s%(sb-posix:rmdir #-win32 \"/\"%(sb-posix:rmdir #-win32\
+   \"$(PORTAGE_BUILDDIR)\"%" -i contrib/sb-posix/posix-tests.lisp
+}
+
+src_configure() {
+   # customizing SBCL version as per
+   # 

[gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/

2016-02-07 Thread Ian Delaney
commit: cc0af2b21542635063f7ad4b9696a2018c0ee1d2
Author: Nicholas Vinson  gmail  com>
AuthorDate: Sun Feb  7 18:56:02 2016 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Sun Feb  7 18:58:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc0af2b2

dev-lisp/sbcl: Adding self as proxy maintainer

Package-Manager: portage-2.2.27

 dev-lisp/sbcl/metadata.xml | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-lisp/sbcl/metadata.xml b/dev-lisp/sbcl/metadata.xml
index 03a2c8b..c65162d 100644
--- a/dev-lisp/sbcl/metadata.xml
+++ b/dev-lisp/sbcl/metadata.xml
@@ -11,6 +11,11 @@
Stelian Ionescu (fe[nl]ix)
second-maintainer

+   
+   nvinson...@gmail.com
+   Nicholas Vinson
+   Proxy maintainer to be assigned bugs
+   

common-l...@gentoo.org
Gentoo Common Lisp Project



[gentoo-commits] repo/gentoo:master commit in: dev-lang/go/

2016-02-07 Thread William Hubbs
commit: 730b8aa8fcd12cb12791abcbd74eaffa112f9c61
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Feb  7 22:20:26 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Feb  7 22:20:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=730b8aa8

dev-lang/go-1.6_rc2 version bump

 dev-lang/go/Manifest  |   1 +
 dev-lang/go/go-1.6_rc2.ebuild | 211 ++
 2 files changed, 212 insertions(+)

diff --git a/dev-lang/go/Manifest b/dev-lang/go/Manifest
index 671a66c..545f19c 100644
--- a/dev-lang/go/Manifest
+++ b/dev-lang/go/Manifest
@@ -1,3 +1,4 @@
 DIST go1.4.2.src.tar.gz 10921896 SHA256 
299a6fd8f8adfdce15bc06bde926e7b252ae8e24dd5b16b7d8791ed79e7b5e9b SHA512 
cda1a29d4418875dffaf3324004ddae8e1bbb573f7668e6e0c03d8b61284f4db7fca244c181f2859f8ccdd3db6391fb21e0d98a1a9fc15096c15883249d48a9c
 WHIRLPOOL 
d06c27f6ff3a6499a6c7cb3c5eccd53eb588896c4d837e1fe9855c22ee3caa5cc48fd68cbeceff105b7c47fafbbf0eb3dc28ee3af7196692c5bf18511c6760ef
 DIST go1.5.3.src.tar.gz 12057623 SHA256 
754e06dab1c31ab168fc9db9e32596734015ea9e24bc44cae7f237f417ce4efe SHA512 
b348832ea7cb095cf793960cf9f4da5e9f6ca8de7b5262bb819de97efea4835643e30a18efd4a82d01ea3854a1905af9e134271716c4b68c9d2a8f6e15f65ff0
 WHIRLPOOL 
aec869ec6af62601f6b83283417eef739141f99be938d419ef4a553028141e05dedfdff2a2d1a3e35e4976e4ec96a301b4875c509a370848d0df5dc9e0c8
 DIST go1.6rc1.src.tar.gz 12597286 SHA256 
2d1a6756f24227dcee955add4af7d194eb4a8c3656b2c4ce778994e21a533a83 SHA512 
539ba9603d87bf09d37ab37a7256cb6860357ce976ac000814e733d5ae4f2d1150a4d75412b70dba0fae453aa6fc36c0cc03874d9adce7d23a168551611a47f4
 WHIRLPOOL 
c7f272dfec8a2526bacc1cba165afb5a7c8e6df2540132ce0934795df0c0952752ee7cdee3201a9f13da1f15b13c5b67c0879ef9eedfd60d47be0f9525b37961
+DIST go1.6rc2.src.tar.gz 12602910 SHA256 
92914a23cde7e34e1d017175d785e5850fbb28f323a145028e2e26053ef1a598 SHA512 
33771377244fd7e7e06e093738fe09381a90f9375e86a807b58e5c2169ffab16eacd832bb28e8e3b759f8ba3283626fe089a3c5bdced4e919218e49eb585e42d
 WHIRLPOOL 
b6cc9e0425b74abfa94c0bcbbd0f2e0e82ef6e83ed1d6f8362dfa5beb907db6e424810c9f1b2ec8a00faf65fcaf943eff1e39deec19a14674d5f039795848d3c

diff --git a/dev-lang/go/go-1.6_rc2.ebuild b/dev-lang/go/go-1.6_rc2.ebuild
new file mode 100644
index 000..86910ef
--- /dev/null
+++ b/dev-lang/go/go-1.6_rc2.ebuild
@@ -0,0 +1,211 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+export CBUILD=${CBUILD:-${CHOST}}
+export CTARGET=${CTARGET:-${CHOST}}
+
+MY_PV=${PV/_/}
+
+inherit toolchain-funcs
+
+if [[ ${PV} =  ]]; then
+   EGIT_REPO_URI="git://github.com/golang/go.git"
+   inherit git-r3
+else
+   SRC_URI="https://storage.googleapis.com/golang/go${MY_PV}.src.tar.gz;
+   # go-bootstrap-1.4 only supports go on amd64, arm and x86 architectures.
+   # Allowing other bootstrap options would enable arm64 and ppc64 builds.
+   case ${PV} in 
+   **|*_rc*) ;;
+   *)
+   KEYWORDS="-* ~amd64 ~arm ~x86 ~amd64-fbsd ~x86-fbsd 
~x64-macos ~x86-macos"
+   ;;
+   esac
+fi
+
+DESCRIPTION="A concurrent garbage collected and typesafe programming language"
+HOMEPAGE="http://www.golang.org;
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+IUSE=""
+
+DEPEND=">=dev-lang/go-bootstrap-1.4.1"
+RDEPEND="!https://golang.org/issue/2775
+   doins -r bin doc lib pkg src
+   fperms -R +x /usr/lib/go/bin /usr/lib/go/pkg/tool
+
+   cp -a misc "${D}"/usr/lib/go/misc
+
+   if go_cross_compile; then
+   bin_path="bin/$(go_tuple)"
+   else
+   bin_path=bin
+   fi
+   for x in ${bin_path}/*; do
+   f=${x##*/}
+   dosym ../lib/go/${bin_path}/${f} /usr/bin/${f}
+   done
+   dodoc AUTHORS CONTRIBUTORS PATENTS README.md
+}
+
+pkg_preinst()
+{
+   has_version 'http://golang.org/doc/go${PV};
+   fi
+
+   if $had_support_files; then
+   ewarn
+   ewarn "All editor support, IDE support, shell completion"
+   ewarn "support, etc has been removed from the go package"
+   ewarn "upstream."
+   ewarn "For more information on which support is available, see"
+   ewarn "the following URL:"
+   ewarn 
"https://github.com/golang/go/wiki/IDEsAndTextEditorPlugins;
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lang/go/

2016-02-07 Thread William Hubbs
commit: e25f4ad4353c24a597b06639c831474dd7d0110e
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Feb  7 22:21:02 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Feb  7 22:21:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e25f4ad4

dev-lang/go: sync live ebuild

 dev-lang/go/go-.ebuild | 22 +-
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/dev-lang/go/go-.ebuild b/dev-lang/go/go-.ebuild
index 14d6b7a..86910ef 100644
--- a/dev-lang/go/go-.ebuild
+++ b/dev-lang/go/go-.ebuild
@@ -2,21 +2,28 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 export CBUILD=${CBUILD:-${CHOST}}
 export CTARGET=${CTARGET:-${CHOST}}
 
-inherit eutils toolchain-funcs
+MY_PV=${PV/_/}
+
+inherit toolchain-funcs
 
 if [[ ${PV} =  ]]; then
EGIT_REPO_URI="git://github.com/golang/go.git"
inherit git-r3
 else
-   SRC_URI="https://storage.googleapis.com/golang/go${PV}.src.tar.gz;
+   SRC_URI="https://storage.googleapis.com/golang/go${MY_PV}.src.tar.gz;
# go-bootstrap-1.4 only supports go on amd64, arm and x86 architectures.
# Allowing other bootstrap options would enable arm64 and ppc64 builds.
-   KEYWORDS="-* ~amd64 ~arm ~x86 ~amd64-fbsd ~x86-fbsd ~x64-macos 
~x86-macos"
+   case ${PV} in 
+   **|*_rc*) ;;
+   *)
+   KEYWORDS="-* ~amd64 ~arm ~x86 ~amd64-fbsd ~x86-fbsd 
~x64-macos ~x86-macos"
+   ;;
+   esac
 fi
 
 DESCRIPTION="A concurrent garbage collected and typesafe programming language"
@@ -107,11 +114,6 @@ pkg_pretend()
fi
 }
 
-src_prepare()
-{
-   epatch_user
-}
-
 src_compile()
 {
export GOROOT_BOOTSTRAP="${EPREFIX}"/usr/lib/go1.4
@@ -159,6 +161,8 @@ src_install()
doins -r bin doc lib pkg src
fperms -R +x /usr/lib/go/bin /usr/lib/go/pkg/tool
 
+   cp -a misc "${D}"/usr/lib/go/misc
+
if go_cross_compile; then
bin_path="bin/$(go_tuple)"
else



[gentoo-commits] repo/gentoo:master commit in: sci-calculators/orpie/files/, sci-calculators/orpie/

2016-02-07 Thread David Seifert
commit: 79af85fc5f101a70f1aafcf5565904ff42de3d8a
Author: David Seifert  gentoo  org>
AuthorDate: Sun Feb  7 22:43:01 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Feb  7 22:43:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79af85fc

sci-calculators/orpie: Version bump to 1.5.2

Gentoo-Bug: 532776
* EAPI=6
* Add missing dependency on dev-ml/camlp4 (thanks Quentin Minster)
* Amend patches for -p1

Package-Manager: portage-2.2.27

 sci-calculators/orpie/Manifest |  1 +
 .../orpie/files/orpie-1.5.1-nogsl.patch|  4 +-
 ...e-1.5.1-nogsl.patch => orpie-1.5.2-nogsl.patch} | 37 
 sci-calculators/orpie/orpie-1.5.2.ebuild   | 49 ++
 4 files changed, 81 insertions(+), 10 deletions(-)

diff --git a/sci-calculators/orpie/Manifest b/sci-calculators/orpie/Manifest
index 06f3378..3945241 100644
--- a/sci-calculators/orpie/Manifest
+++ b/sci-calculators/orpie/Manifest
@@ -1 +1,2 @@
 DIST orpie-1.5.1.tar.gz 370851 SHA256 
f68ee37a5351c1dd32a68edae253a22a913fc2124bace1f6cf19cc2d422100cd SHA512 
026afcaf37016f07397ba19629a92c5bdffbbec6d25b5f96e9367274afbf7468a7d6626b4ae81d1c9b426dde3a2c66a97e9b48c54dfb3a8079f0d59906f0efb7
 WHIRLPOOL 
30ba5f026ffc1f704a08d6090eabe6d47f8dfe96ec49ba6a6a772dd85337a54fe7de2b382015e832fc0058e7449a1829fedc6fc87683a074d0cac82dad48150e
+DIST orpie-1.5.2.tar.gz 379583 SHA256 
de557fc7f608c6cb1f44a965d3ae07fc6baf2b02a0d7994b89d6a0e0d87d3d6d SHA512 
5deed6d8e8e68ce5286f4d5183315b585adef38f205805ff6ccbbbf3983c97a468e370d0d44ebe2dff596de0ad9dba20401dbc0e4e9bc176bc93b118fd1cc11a
 WHIRLPOOL 
390c681dbc72d9730cbf22551ffa951f77e7a3589bf10c244fd1c0a3bc2ad81107ff8f5ede196b6486f50ed8f106554a8db03b04979cd5a88da31de4c1aeb836

diff --git a/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch 
b/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch
index 45894f2..8719bfd 100644
--- a/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch
+++ b/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch
@@ -1,5 +1,5 @@
 Makefile.in.orig   2010-06-03 21:02:14.0 +0100
-+++ Makefile.in2010-06-03 21:02:49.0 +0100
+--- orpie-1.5.1/Makefile.in.orig   2010-06-03 21:02:14.0 +0100
 orpie-1.5.1/Makefile.in2010-06-03 21:02:49.0 +0100
 @@ -38,7 +38,7 @@
  CURSES_LIB = @CURSES_LIB@
  GSL_LIB= @GSL_LIB@

diff --git a/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch 
b/sci-calculators/orpie/files/orpie-1.5.2-nogsl.patch
similarity index 54%
copy from sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch
copy to sci-calculators/orpie/files/orpie-1.5.2-nogsl.patch
index 45894f2..75a56a7 100644
--- a/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch
+++ b/sci-calculators/orpie/files/orpie-1.5.2-nogsl.patch
@@ -1,6 +1,6 @@
 Makefile.in.orig   2010-06-03 21:02:14.0 +0100
-+++ Makefile.in2010-06-03 21:02:49.0 +0100
-@@ -38,7 +38,7 @@
+--- orpie-1.5.2/Makefile.in
 orpie-1.5.2/Makefile.in
+@@ -44,7 +44,7 @@
  CURSES_LIB = @CURSES_LIB@
  GSL_LIB= @GSL_LIB@
  
@@ -8,8 +8,8 @@
 +INCLUDES = -I ./curses -I /usr/lib/ocaml/gsl -I ./units
  BFLAGS   = -pp camlp4o -g $(INCLUDES) -thread
  OFLAGS   = -pp camlp4o $(INCLUDES) -thread
- BLFLAGS  = -custom -cclib '@LDFLAGS@ $(CURSES_LIB) $(GSL_LIB) -lm'
-@@ -72,16 +72,8 @@
+ BLFLAGS  = -custom -cclib '$(LDFLAGS) $(CURSES_LIB) $(GSL_LIB) -lm'
+@@ -78,17 +78,8 @@
  CURSES_BOBJS = $(CURSES_CMO) $(CURSES_COBJS)
  CURSES_OOBJS = $(CURSES_CMX) $(CURSES_COBJS)
  
@@ -18,9 +18,10 @@
 -  gsl/gsl_vector_complex_flat.cmo gsl/gsl_matrix_complex_flat.cmo 
gsl/gsl_vectmat.cmo \
 -  gsl/gsl_permut.cmo gsl/gsl_linalg.cmo gsl/gsl_fun.cmo
 -GSL_CMX = $(GSL_CMO:.cmo=.cmx)
--GSL_COBJS = gsl/mlgsl_error.o gsl/mlgsl_blas.o gsl/mlgsl_blas_complex.o 
gsl/mlgsl_complex.o \
--   gsl/mlgsl_matrix_complex.o gsl/mlgsl_matrix_double.o 
gsl/mlgsl_vector_double.o gsl/mlgsl_permut.o \
--   gsl/mlgsl_linalg.o gsl/mlgsl_linalg_complex.o gsl/mlgsl_fun.o 
gsl/mlgsl_math.o gsl/mlgsl_sf.o
+-GSL_COBJS = gsl/mlgsl_error.o gsl/mlgsl_blas.o gsl/mlgsl_blas_complex.o 
gsl/mlgsl_complex.o gsl/mlgsl_blas_float.o \
+-   gsl/mlgsl_blas_complex_float.o gsl/mlgsl_matrix_complex.o 
gsl/mlgsl_matrix_double.o gsl/mlgsl_matrix_float.o \
+-   gsl/mlgsl_matrix_complex_float.o gsl/mlgsl_vector_double.o 
gsl/mlgsl_vector_float.o \
+-   gsl/mlgsl_permut.o gsl/mlgsl_linalg.o 
gsl/mlgsl_linalg_complex.o gsl/mlgsl_fun.o gsl/mlgsl_math.o gsl/mlgsl_sf.o
 -GSL_BOBJS = $(GSL_COBJS) $(GSL_CMO)
 -GSL_OOBJS = $(GSL_COBJS) $(GSL_CMX)
 +GSL_BOBJS = /usr/lib/ocaml/gsl/gsl.cma
@@ -28,3 +29,23 @@
  
  UNITS_CMO = units/units.cmo
  UNITS_CMX = $(UNITS_CMO:.cmo=.cmx)
+@@ -324,7 +305,7 @@
+ config.status: configure
+   ./config.status --recheck
+ 
+-configure: configure.in
++configure: configure.ac
+   autoconf 
+ 
+ # clean
+--- orpie-1.5.2/curses_keys.ml
 

[gentoo-commits] repo/gentoo:master commit in: eclass/

2016-02-07 Thread Brian Evans
commit: 705d182ed875589b0ad1c809ae6ba1cfadf55352
Author: Brian Evans  gentoo  org>
AuthorDate: Sun Feb  7 20:47:48 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Sun Feb  7 20:47:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=705d182e

mysql eclasses: Add missing SQL command after setting root password wrt bug 
574040

When updating the table by hand, we don't do FLUSH PRIVILEGES before inserting 
the
next command which can stop the loading of the timezone and help tables.

 eclass/mysql-multilib-r1.eclass | 2 +-
 eclass/mysql-multilib.eclass| 2 +-
 eclass/mysql-v2.eclass  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/eclass/mysql-multilib-r1.eclass b/eclass/mysql-multilib-r1.eclass
index e14a2a8..1512b21 100644
--- a/eclass/mysql-multilib-r1.eclass
+++ b/eclass/mysql-multilib-r1.eclass
@@ -952,7 +952,7 @@ mysql-multilib-r1_pkg_config() {
 
ebegin "Setting root password"
# Do this from memory, as we don't want clear text passwords in temp 
files
-   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'"
+   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'; FLUSH PRIVILEGES"
"${EROOT}/usr/bin/mysql" \
--socket=${socket} \
-hlocalhost \

diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass
index 69293f1..b2e7dff 100644
--- a/eclass/mysql-multilib.eclass
+++ b/eclass/mysql-multilib.eclass
@@ -1140,7 +1140,7 @@ mysql-multilib_pkg_config() {
 
ebegin "Setting root password"
# Do this from memory, as we don't want clear text passwords in temp 
files
-   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'"
+   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'; FLUSH PRIVILEGES"
"${EROOT}/usr/bin/mysql" \
--socket=${socket} \
-hlocalhost \

diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass
index 260420b..556d37e 100644
--- a/eclass/mysql-v2.eclass
+++ b/eclass/mysql-v2.eclass
@@ -886,7 +886,7 @@ mysql-v2_pkg_config() {
 
ebegin "Setting root password"
# Do this from memory, as we don't want clear text passwords in temp 
files
-   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'"
+   local sql="UPDATE mysql.user SET Password = 
PASSWORD('${MYSQL_ROOT_PASSWORD}') WHERE USER='root'; FLUSH PRIVILEGES"
"${EROOT}/usr/bin/mysql" \
--socket=${socket} \
-hlocalhost \



[gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/

2016-02-07 Thread Manuel Rüger
commit: afb81059af090c6385646e141d293db9b07ae4dc
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Feb  7 22:03:13 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Feb  7 22:03:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afb81059

www-servers/nginx: Fix build without slice module

Gentoo-Bug: 574020

Thanks to: Thomas D.  whissi.de>

Package-Manager: portage-2.2.27

 www-servers/nginx/nginx-1.9.10-r3.ebuild | 758 +++
 1 file changed, 758 insertions(+)

diff --git a/www-servers/nginx/nginx-1.9.10-r3.ebuild 
b/www-servers/nginx/nginx-1.9.10-r3.ebuild
new file mode 100644
index 000..fe091e7
--- /dev/null
+++ b/www-servers/nginx/nginx-1.9.10-r3.ebuild
@@ -0,0 +1,758 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# Maintainer notes:
+# - http_rewrite-independent pcre-support makes sense for matching locations 
without an actual rewrite
+# - any http-module activates the main http-functionality and overrides 
USE=-http
+# - keep the following requirements in mind before adding external modules:
+#  * alive upstream
+#  * sane packaging
+#  * builds cleanly
+#  * does not need a patch for nginx core
+# - TODO: test the google-perftools module (included in vanilla tarball)
+
+# prevent perl-module from adding automagic perl DEPENDs
+GENTOO_DEPEND_ON_PERL="no"
+
+# devel_kit (https://github.com/simpl/ngx_devel_kit, BSD license)
+DEVEL_KIT_MODULE_PV="0.2.19"
+DEVEL_KIT_MODULE_P="ngx_devel_kit-${DEVEL_KIT_MODULE_PV}-r1"
+DEVEL_KIT_MODULE_URI="https://github.com/simpl/ngx_devel_kit/archive/v${DEVEL_KIT_MODULE_PV}.tar.gz;
+DEVEL_KIT_MODULE_WD="${WORKDIR}/ngx_devel_kit-${DEVEL_KIT_MODULE_PV}"
+
+# http_uploadprogress 
(https://github.com/masterzen/nginx-upload-progress-module, BSD-2 license)
+HTTP_UPLOAD_PROGRESS_MODULE_PV="0.9.1"
+HTTP_UPLOAD_PROGRESS_MODULE_P="ngx_http_upload_progress-${HTTP_UPLOAD_PROGRESS_MODULE_PV}-r1"
+HTTP_UPLOAD_PROGRESS_MODULE_URI="https://github.com/masterzen/nginx-upload-progress-module/archive/v${HTTP_UPLOAD_PROGRESS_MODULE_PV}.tar.gz;
+HTTP_UPLOAD_PROGRESS_MODULE_WD="${WORKDIR}/nginx-upload-progress-module-${HTTP_UPLOAD_PROGRESS_MODULE_PV}"
+
+# http_headers_more (https://github.com/agentzh/headers-more-nginx-module, BSD 
license)
+HTTP_HEADERS_MORE_MODULE_PV="0.29"
+HTTP_HEADERS_MORE_MODULE_P="ngx_http_headers_more-${HTTP_HEADERS_MORE_MODULE_PV}"
+HTTP_HEADERS_MORE_MODULE_URI="https://github.com/agentzh/headers-more-nginx-module/archive/v${HTTP_HEADERS_MORE_MODULE_PV}.tar.gz;
+HTTP_HEADERS_MORE_MODULE_WD="${WORKDIR}/headers-more-nginx-module-${HTTP_HEADERS_MORE_MODULE_PV}"
+
+# http_cache_purge (http://labs.frickle.com/nginx_ngx_cache_purge/, BSD-2 
license)
+HTTP_CACHE_PURGE_MODULE_PV="2.3"
+HTTP_CACHE_PURGE_MODULE_P="ngx_http_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}"
+HTTP_CACHE_PURGE_MODULE_URI="http://labs.frickle.com/files/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}.tar.gz;
+HTTP_CACHE_PURGE_MODULE_WD="${WORKDIR}/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}"
+
+# http_slowfs_cache (http://labs.frickle.com/nginx_ngx_slowfs_cache/, BSD-2 
license)
+HTTP_SLOWFS_CACHE_MODULE_PV="1.10"
+HTTP_SLOWFS_CACHE_MODULE_P="ngx_http_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}"
+HTTP_SLOWFS_CACHE_MODULE_URI="http://labs.frickle.com/files/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}.tar.gz;
+HTTP_SLOWFS_CACHE_MODULE_WD="${WORKDIR}/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}"
+
+# http_fancyindex (https://github.com/aperezdc/ngx-fancyindex, BSD license)
+HTTP_FANCYINDEX_MODULE_PV="0.3.5"
+HTTP_FANCYINDEX_MODULE_P="ngx_http_fancyindex-${HTTP_FANCYINDEX_MODULE_PV}"
+HTTP_FANCYINDEX_MODULE_URI="https://github.com/aperezdc/ngx-fancyindex/archive/v${HTTP_FANCYINDEX_MODULE_PV}.tar.gz;
+HTTP_FANCYINDEX_MODULE_WD="${WORKDIR}/ngx-fancyindex-${HTTP_FANCYINDEX_MODULE_PV}"
+
+# http_lua (https://github.com/openresty/lua-nginx-module, BSD license)
+HTTP_LUA_MODULE_PV="0.10.0"
+HTTP_LUA_MODULE_P="ngx_http_lua-${HTTP_LUA_MODULE_PV}"
+HTTP_LUA_MODULE_URI="https://github.com/openresty/lua-nginx-module/archive/v${HTTP_LUA_MODULE_PV}.tar.gz;
+HTTP_LUA_MODULE_WD="${WORKDIR}/lua-nginx-module-${HTTP_LUA_MODULE_PV}"
+
+# http_auth_pam (https://github.com/stogh/ngx_http_auth_pam_module/, 
http://web.iti.upv.es/~sto/nginx/, BSD-2 license)
+HTTP_AUTH_PAM_MODULE_PV="1.4"
+HTTP_AUTH_PAM_MODULE_P="ngx_http_auth_pam-${HTTP_AUTH_PAM_MODULE_PV}"
+HTTP_AUTH_PAM_MODULE_URI="https://github.com/stogh/ngx_http_auth_pam_module/archive/v${HTTP_AUTH_PAM_MODULE_PV}.tar.gz;
+HTTP_AUTH_PAM_MODULE_WD="${WORKDIR}/ngx_http_auth_pam_module-${HTTP_AUTH_PAM_MODULE_PV}"
+
+# http_upstream_check 
(https://github.com/yaoweibin/nginx_upstream_check_module, BSD license)
+HTTP_UPSTREAM_CHECK_MODULE_PV="0.3.0"
+HTTP_UPSTREAM_CHECK_MODULE_P="ngx_http_upstream_check-${HTTP_UPSTREAM_CHECK_MODULE_PV}"

[gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/

2016-02-07 Thread Manuel Rüger
commit: c5f0fdc2a17f1b71a335566578476f3cd0aefa35
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Feb  7 22:03:55 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Feb  7 22:03:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5f0fdc2

www-servers/nginx: Remove old

Package-Manager: portage-2.2.27

 www-servers/nginx/nginx-1.9.10-r2.ebuild | 758 ---
 1 file changed, 758 deletions(-)

diff --git a/www-servers/nginx/nginx-1.9.10-r2.ebuild 
b/www-servers/nginx/nginx-1.9.10-r2.ebuild
deleted file mode 100644
index 04ab250..000
--- a/www-servers/nginx/nginx-1.9.10-r2.ebuild
+++ /dev/null
@@ -1,758 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# Maintainer notes:
-# - http_rewrite-independent pcre-support makes sense for matching locations 
without an actual rewrite
-# - any http-module activates the main http-functionality and overrides 
USE=-http
-# - keep the following requirements in mind before adding external modules:
-#  * alive upstream
-#  * sane packaging
-#  * builds cleanly
-#  * does not need a patch for nginx core
-# - TODO: test the google-perftools module (included in vanilla tarball)
-
-# prevent perl-module from adding automagic perl DEPENDs
-GENTOO_DEPEND_ON_PERL="no"
-
-# devel_kit (https://github.com/simpl/ngx_devel_kit, BSD license)
-DEVEL_KIT_MODULE_PV="0.2.19"
-DEVEL_KIT_MODULE_P="ngx_devel_kit-${DEVEL_KIT_MODULE_PV}-r1"
-DEVEL_KIT_MODULE_URI="https://github.com/simpl/ngx_devel_kit/archive/v${DEVEL_KIT_MODULE_PV}.tar.gz;
-DEVEL_KIT_MODULE_WD="${WORKDIR}/ngx_devel_kit-${DEVEL_KIT_MODULE_PV}"
-
-# http_uploadprogress 
(https://github.com/masterzen/nginx-upload-progress-module, BSD-2 license)
-HTTP_UPLOAD_PROGRESS_MODULE_PV="0.9.1"
-HTTP_UPLOAD_PROGRESS_MODULE_P="ngx_http_upload_progress-${HTTP_UPLOAD_PROGRESS_MODULE_PV}-r1"
-HTTP_UPLOAD_PROGRESS_MODULE_URI="https://github.com/masterzen/nginx-upload-progress-module/archive/v${HTTP_UPLOAD_PROGRESS_MODULE_PV}.tar.gz;
-HTTP_UPLOAD_PROGRESS_MODULE_WD="${WORKDIR}/nginx-upload-progress-module-${HTTP_UPLOAD_PROGRESS_MODULE_PV}"
-
-# http_headers_more (https://github.com/agentzh/headers-more-nginx-module, BSD 
license)
-HTTP_HEADERS_MORE_MODULE_PV="0.29"
-HTTP_HEADERS_MORE_MODULE_P="ngx_http_headers_more-${HTTP_HEADERS_MORE_MODULE_PV}"
-HTTP_HEADERS_MORE_MODULE_URI="https://github.com/agentzh/headers-more-nginx-module/archive/v${HTTP_HEADERS_MORE_MODULE_PV}.tar.gz;
-HTTP_HEADERS_MORE_MODULE_WD="${WORKDIR}/headers-more-nginx-module-${HTTP_HEADERS_MORE_MODULE_PV}"
-
-# http_cache_purge (http://labs.frickle.com/nginx_ngx_cache_purge/, BSD-2 
license)
-HTTP_CACHE_PURGE_MODULE_PV="2.3"
-HTTP_CACHE_PURGE_MODULE_P="ngx_http_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}"
-HTTP_CACHE_PURGE_MODULE_URI="http://labs.frickle.com/files/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}.tar.gz;
-HTTP_CACHE_PURGE_MODULE_WD="${WORKDIR}/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}"
-
-# http_slowfs_cache (http://labs.frickle.com/nginx_ngx_slowfs_cache/, BSD-2 
license)
-HTTP_SLOWFS_CACHE_MODULE_PV="1.10"
-HTTP_SLOWFS_CACHE_MODULE_P="ngx_http_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}"
-HTTP_SLOWFS_CACHE_MODULE_URI="http://labs.frickle.com/files/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}.tar.gz;
-HTTP_SLOWFS_CACHE_MODULE_WD="${WORKDIR}/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}"
-
-# http_fancyindex (https://github.com/aperezdc/ngx-fancyindex, BSD license)
-HTTP_FANCYINDEX_MODULE_PV="0.3.5"
-HTTP_FANCYINDEX_MODULE_P="ngx_http_fancyindex-${HTTP_FANCYINDEX_MODULE_PV}"
-HTTP_FANCYINDEX_MODULE_URI="https://github.com/aperezdc/ngx-fancyindex/archive/v${HTTP_FANCYINDEX_MODULE_PV}.tar.gz;
-HTTP_FANCYINDEX_MODULE_WD="${WORKDIR}/ngx-fancyindex-${HTTP_FANCYINDEX_MODULE_PV}"
-
-# http_lua (https://github.com/openresty/lua-nginx-module, BSD license)
-HTTP_LUA_MODULE_PV="0.10.0"
-HTTP_LUA_MODULE_P="ngx_http_lua-${HTTP_LUA_MODULE_PV}"
-HTTP_LUA_MODULE_URI="https://github.com/openresty/lua-nginx-module/archive/v${HTTP_LUA_MODULE_PV}.tar.gz;
-HTTP_LUA_MODULE_WD="${WORKDIR}/lua-nginx-module-${HTTP_LUA_MODULE_PV}"
-
-# http_auth_pam (https://github.com/stogh/ngx_http_auth_pam_module/, 
http://web.iti.upv.es/~sto/nginx/, BSD-2 license)
-HTTP_AUTH_PAM_MODULE_PV="1.4"
-HTTP_AUTH_PAM_MODULE_P="ngx_http_auth_pam-${HTTP_AUTH_PAM_MODULE_PV}"
-HTTP_AUTH_PAM_MODULE_URI="https://github.com/stogh/ngx_http_auth_pam_module/archive/v${HTTP_AUTH_PAM_MODULE_PV}.tar.gz;
-HTTP_AUTH_PAM_MODULE_WD="${WORKDIR}/ngx_http_auth_pam_module-${HTTP_AUTH_PAM_MODULE_PV}"
-
-# http_upstream_check 
(https://github.com/yaoweibin/nginx_upstream_check_module, BSD license)
-HTTP_UPSTREAM_CHECK_MODULE_PV="0.3.0"
-HTTP_UPSTREAM_CHECK_MODULE_P="ngx_http_upstream_check-${HTTP_UPSTREAM_CHECK_MODULE_PV}"

[gentoo-commits] proj/mozilla:master commit in: www-client/firefox/, eclass/

2016-02-07 Thread Jory Pratt
commit: 1ef28065e21d09f1f0cfbecf422ef948d36cb4e9
Author: Jory A. Pratt  gentoo  org>
AuthorDate: Sun Feb  7 17:35:36 2016 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sun Feb  7 17:35:36 2016 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=1ef28065

www-client/firefox - firefox-35.0_beta3 bump, this is known to segfault
with hardened setup

 eclass/mozconfig-v6.44.eclass  | 3 +--
 www-client/firefox/Manifest| 2 +-
 .../firefox/{firefox-45.0_beta2.ebuild => firefox-45.0_beta3.ebuild}   | 0
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/eclass/mozconfig-v6.44.eclass b/eclass/mozconfig-v6.44.eclass
index 63847ff..b916507 100644
--- a/eclass/mozconfig-v6.44.eclass
+++ b/eclass/mozconfig-v6.44.eclass
@@ -75,7 +75,6 @@ IUSE="${IUSE} dbus debug ffmpeg +gstreamer gstreamer-0 
+jemalloc3 neon pulseaudi
 RDEPEND=">=app-text/hunspell-1.2
dev-libs/atk
dev-libs/expat
-   >=dev-libs/libevent-1.4.7:=
>=x11-libs/cairo-1.10[X]
>=x11-libs/gtk+-2.18:2
x11-libs/gdk-pixbuf
@@ -114,7 +113,7 @@ RDEPEND=">=app-text/hunspell-1.2
system-cairo? ( >=x11-libs/cairo-1.12[X,xcb] >=x11-libs/pixman-0.19.2 )
system-icu? ( >=dev-libs/icu-51.1:= )
system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 )
-   system-libevent? ( =dev-libs/libevent-2.0* )
+   system-libevent? ( dev-libs/libevent:0/2.0-5 )
system-sqlite? ( >=dev-db/sqlite-3.9.1:3[secure-delete,debug=] )
system-libvpx? ( >=media-libs/libvpx-1.3.0:0=[postproc] )
 "

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 769a628..8af7770 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -80,4 +80,4 @@ DIST firefox-44.0-zh-CN.xpi 496299 SHA256 
061a58990006a4d25be48477f9a0e06642f34a
 DIST firefox-44.0-zh-TW.xpi 487760 SHA256 
92da03a68277fcc445caf5a4dde39a3283bda63674d005e327f651dbc0d6dad9 SHA512 
f54e293d5da8abb68f5c47e3330ed46a3529a2c5c9178f6230596b08a1464097d7a3590008f49f3e2375bef778f549a7dfcb5200753cdb3e53562c05af1ba66e
 WHIRLPOOL 
0b9fae8bf600bdb14162f0afde882ba3db0e0ab854321c546eb1ec164660a5c47192e0d5109306f4d4ede46cf301f51a572560895294e9ef0049a552dad171ef
 DIST firefox-44.0.source.tar.xz 182370528 SHA256 
ea82b0f4840d320aa4fe8046ba28e686bf6dc60f707a0514a9d68c150d0c4c1d SHA512 
d7a2d3ee595dbf356795ba8029e298d8a69645e11d9201307008ad3a0d15b586cbc119d2273a83843621024d20cd67c7d490228f1c4c09b467cb5dcbd288a864
 WHIRLPOOL 
1a0d47b62d875f700665ebc73f50daf2d33a33c3f9c4cfb5967ff0dfa516be18143d04c08f4a013ed46ba9a35d5b71b77a0f71200413ebf6c57ee57f3c841137
 DIST firefox-45.0-patches-0.1.tar.xz 14232 SHA256 
8b4926d538a5652b909ee4c174f0160da082defa988559275e105fb18f08f5d8 SHA512 
9bfffce906a84ee984a0b553d30006fbf200b5e17ccb4782ee00f2bb13377d5368d6feedbc3b74b906608602ca95a0b8b2b16632dd1d34a1416b60a7167c0f80
 WHIRLPOOL 
8d335e6c5a899658fa478af19a77dde45d8199025393a365c18dc41600be111a21445b8add8198527512d1769f7b76e439440102616514bb44354b23b03828bb
-DIST firefox-45.0b2.source.tar.xz 184002736 SHA256 
e33f3919e7677b94657bbea9c0475b182476890626f613fe4f451fe1a5d29c6d SHA512 
40b66fcc1f9df857c1d31c7aa86269f05d79b9ee0fd6f99ee3ff9fc10a37600f5116d55a7ddf10413d90a6548bda14a42f909fef6c292180196b594ad4036330
 WHIRLPOOL 
965ee48d527a4d2e441b6c364c3e526c17c78502c35af2fd906534dec1ccb51188ef2396f3c00e1768a9c5d89684fa7a2794491cbd4e709b91bd1e5a5aa5cfd3
+DIST firefox-45.0b3.source.tar.xz 184010012 SHA256 
bf5094ccbe13dbc9ca1ce68ddb44fcaa4aded6d48d0511d7ee48252d8c9862c2 SHA512 
3d9ae69ae779339236339c02fe6a2651131b9d12c493fd3518f0acd388ef7c8b7bcc044b1ccbac33f581438600f5ff6332cfcda50273b33bef909770abf8c33e
 WHIRLPOOL 
89a587d1d83b5933bcfc94d3447a2562c905d04f1ea227d7310813e4d5f56f5f68752de3c8a629fee4834ad0eb9d7d92026c962127b12f85d5a23c3078657c24

diff --git a/www-client/firefox/firefox-45.0_beta2.ebuild 
b/www-client/firefox/firefox-45.0_beta3.ebuild
similarity index 100%
rename from www-client/firefox/firefox-45.0_beta2.ebuild
rename to www-client/firefox/firefox-45.0_beta3.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools/

2016-02-07 Thread Justin Lecher
commit: 670f5c07e7fabd654d4c8c1a960ad3fa0d232d9e
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 18:12:02 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 18:27:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=670f5c07

dev-python/setuptools: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/setuptools/Manifest   |  1 +
 dev-python/setuptools/setuptools-20.0.ebuild | 57 
 2 files changed, 58 insertions(+)

diff --git a/dev-python/setuptools/Manifest b/dev-python/setuptools/Manifest
index 7622db7..106fa6b 100644
--- a/dev-python/setuptools/Manifest
+++ b/dev-python/setuptools/Manifest
@@ -12,3 +12,4 @@ DIST setuptools-19.6.1.tar.gz 637780 SHA256 
d7fd89a4bbd89ea51aaf18100b50411cc881
 DIST setuptools-19.6.2.tar.gz 641373 SHA256 
69261eefdb21057cfbe92ba8032b923d6363d6682967d42cf46388090d0f1a15 SHA512 
c00ef832fd4d1514e440c36d90691e48aa179b14d24021dd7a0149dbb0ae8efb801327025a7e1911a29cef63eec7c5cbadfa78c832beb316b8a4391b4ff053fe
 WHIRLPOOL 
3cbc2a1c29050a86a323a0271f4e17adda0df2f99620e54fdaf9038ca9f4e1bb0801fdd309be274c655aaf6fb7c6c77b4babb5cd721c09d9e6904235077b3736
 DIST setuptools-19.6.tar.gz 641502 SHA256 
ecd48d753c1a8ecc6a2826b863a6defaafbfd4ceafc0c1d62e5362f5a86912e9 SHA512 
79b9a0f595bda16f18997d9937c6bc2e21bb2bb23fcca4be29df2fb71649c5ba973428472e3c795f2a5d6fbcccf1d5f29096a0fb593a4c52fa87b1d003e474da
 WHIRLPOOL 
391f3e20739c717cc42613e099b867ee01cd8a1f3623f31062dee23131c3b1bad2e34345348f76e44ff2b92652cf65931b3fd8b6a7663b9c135a7c03b6954405
 DIST setuptools-19.7.tar.gz 641634 SHA256 
9e0783f3e6b736530a84980dce99fb0f01dafcd31b3f600cde2aa446f6f77cc0 SHA512 
fe74b10eb1afef5d78cc5cd4d6dbd53ed16f975c693c138181dfb1661276255d214037eb036186d0cdc9dd31d636f9f1067d67bf591542e8ef933afca267ee4c
 WHIRLPOOL 
e1ee325d3de9a6b0dfd49fc68129271faeaccf5ffb77a750f553986fc47b75a5003c17a3f00d76be15eb3808d04e7060f5ccddb9ca9c804fbb68ad54c01453f4
+DIST setuptools-20.0.tar.gz 641692 SHA256 
a6f7b295f399fed3de918c4bea9e2053a5fbd9e3a55a6fef7aafe9d1f474866d SHA512 
c77b8f963c1c2735014f344cb3fba6ab88fc034ea32e52501a19430538db4bc6217706532ac3427f928d55b9a2321a0948f57aca5c7a01020868efc9231dd174
 WHIRLPOOL 
2d2a1bb7c5ea4ace4da1ddceb6f03605858be10f8c835f8aee9be896041c3c84680f6f09edc4cbcefc99a209d6b3a9ca50f2413a8e226861ceee135543e409d3

diff --git a/dev-python/setuptools/setuptools-20.0.ebuild 
b/dev-python/setuptools/setuptools-20.0.ebuild
new file mode 100644
index 000..3004253
--- /dev/null
+++ b/dev-python/setuptools/setuptools-20.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Collection of extensions to Distutils"
+HOMEPAGE="https://pypi.python.org/pypi/setuptools;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/packaging-15.3-r1[${PYTHON_USEDEP}]
+   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
+   "
+DEPEND="${RDEPEND}
+   test? (
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+PDEPEND=">=dev-python/certifi-2015.11.20[${PYTHON_USEDEP}]"
+
+# Force in-source build because build system modifies sources.
+DISTUTILS_IN_SOURCE_BUILD=1
+
+DOCS=( README.txt docs/{easy_install.txt,pkg_resources.txt,setuptools.txt} )
+
+python_prepare_all() {
+   rm -r ./pkg_resources/_vendor || die
+   # disable tests requiring a network connection
+   rm setuptools/tests/test_packageindex.py || die
+
+   # don't run integration tests
+   rm setuptools/tests/test_integration.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   # test_easy_install raises a SandboxViolation due to 
${HOME}/.pydistutils.cfg
+   # It tries to sandbox the test in a tempdir
+   HOME="${PWD}" py.test --verbose ${PN} || die "Tests failed under 
${EPYTHON}"
+}
+
+python_install() {
+   export DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1
+   distutils-r1_python_install
+}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/coinor-alps/

2016-02-07 Thread David Seifert
commit: 314dbc6dd4fdd2c0b247a7d1c208964c1513e136
Author: David Seifert  gentoo  org>
AuthorDate: Sun Feb  7 20:33:19 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Feb  7 20:34:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=314dbc6d

sci-libs/coinor-alps: Version bump to 1.5.4

Gentoo-Bug: 532256, 527414
* EAPI=6

Package-Manager: portage-2.2.27

 sci-libs/coinor-alps/Manifest |  1 +
 sci-libs/coinor-alps/coinor-alps-1.5.4.ebuild | 62 +++
 2 files changed, 63 insertions(+)

diff --git a/sci-libs/coinor-alps/Manifest b/sci-libs/coinor-alps/Manifest
index d887e67..77c89cf 100644
--- a/sci-libs/coinor-alps/Manifest
+++ b/sci-libs/coinor-alps/Manifest
@@ -1 +1,2 @@
 DIST Alps-1.4.9.tgz 5564207 SHA256 
b1d1636ed16b3a3982d7bc547da9713657cd22cbc3ed4d4323ec63af04d139d2 SHA512 
b8f557d33f3d02d0bf98541309934eeebebd21829fe1e2a438b07e6e17f0a1de1a970ed97b28cdaddc8b14eb1092a86db4d44838cef70bae3d091cd48fe8e2d8
 WHIRLPOOL 
dddf890622d44f0c42278a15e0ac979cc6faa9cfa9b26b47fcc785de709098a044bd68d2fe81671b0ab5bae268c18f2ad8b00741bdf96ec7779ce76bf71fc352
+DIST Alps-1.5.4.tgz 5691940 SHA256 
e9ca0a3b6f7013b04845935b26ebcda9468eae23b31ae2dcee2dbeb30a046f3a SHA512 
eace2f0e3dde682ee92b8e185ba6ea226a681dbcecb5fcf5258334e6deed89705b2c61821896b07323459fbd8575a31fa91c3342becbc9f6173efdf094d39555
 WHIRLPOOL 
4c77b472bbacb7dcee8f00be91198a17f745769aac00e720b46c034d5e0a8805142efd350eb23a8d3602e4faaa464a6334cd6aa726f8b20b7dccabb6bcd0eebf

diff --git a/sci-libs/coinor-alps/coinor-alps-1.5.4.ebuild 
b/sci-libs/coinor-alps/coinor-alps-1.5.4.ebuild
new file mode 100644
index 000..66d7cc3
--- /dev/null
+++ b/sci-libs/coinor-alps/coinor-alps-1.5.4.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils
+
+MYPN=Alps
+
+DESCRIPTION="COIN-OR Framework for implementing parallel graph search 
algorithms"
+HOMEPAGE="https://projects.coin-or.org/CHiPPS/;
+SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz;
+
+LICENSE="CPL-1.0"
+SLOT="0/3"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples static-libs test"
+
+RDEPEND="
+   sci-libs/coinor-utils:=
+   sci-libs/coinor-clp:="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   doc? ( app-doc/doxygen[dot] )
+   test? ( sci-libs/coinor-sample sci-libs/coinor-cgl )"
+
+S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
+
+src_prepare() {
+   default
+   # as-needed fix
+   # hack to avoid eautoreconf (coinor has its own weird autotools)
+   sed -i \
+   -e 's:\(libAlps_la_LIBADD.*=\).*:\1 @ALPSLIB_LIBS@:g' \
+   src/Makefile.in || die
+   # bug for later versions of subversions
+   sed -i \
+   -e 's/xexported/xexported -a "x$svn_rev_tmp" != "xUnversioned 
directory"/' \
+   configure || die
+}
+
+src_configure() {
+   PKG_CONFIG_PATH+="${ED}"/usr/$(get_libdir)/pkgconfig
+   export PKG_CONFIG_PATH
+   econf \
+   --enable-dependency-linking \
+   $(use_with doc dot) \
+   $(use_enable static-libs static)
+}
+
+src_compile() {
+   emake all $(usex doc doxydoc "")
+}
+
+src_install() {
+   default
+   use examples && dodoc -r examples/
+   use doc && dodoc -r doxydoc/html/
+
+   prune_libtool_files --all
+}



[gentoo-commits] proj/mysql:master commit in: eclass/

2016-02-07 Thread Brian Evans
commit: 36ca198c6dda326d1ad13d83328ce75d5f5d5a21
Author: Brian Evans  gentoo  org>
AuthorDate: Sun Feb  7 20:41:14 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Sun Feb  7 20:41:14 2016 +
URL:https://gitweb.gentoo.org/proj/mysql.git/commit/?id=36ca198c

Update minor changes from the main portage tree to older eclasses

 eclass/mysql-multilib.eclass |  5 +
 eclass/mysql-v2.eclass   | 15 +--
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass
index a8cac37..c3f4299 100644
--- a/eclass/mysql-multilib.eclass
+++ b/eclass/mysql-multilib.eclass
@@ -1067,6 +1067,11 @@ mysql-multilib_pkg_config() {
 
use prefix || options="${options} --user=mysql"
 
+   # MySQL 5.6+ needs InnoDB
+   if [[ ${PN} == "mysql" || ${PN} == "percona-server" ]] ; then
+   mysql_version_is_at_least "5.6" || options="${options} 
--loose-skip-innodb"
+   fi
+
einfo "Creating the mysql database and setting proper permissions on it 
..."
 
# Now that /var/run is a tmpfs mount point, we need to ensure it exists 
before using it

diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass
index 2ca4f7f..dda63c3 100644
--- a/eclass/mysql-v2.eclass
+++ b/eclass/mysql-v2.eclass
@@ -47,7 +47,7 @@ MYSQL_EXTRAS=""
 # Use "none" to disable it's use
 [[ ${MY_EXTRAS_VER} == "live" ]] && MYSQL_EXTRAS="git-r3"
 
-inherit eutils flag-o-matic gnuconfig ${MYSQL_EXTRAS} ${BUILD_INHERIT} 
mysql_fx versionator toolchain-funcs user
+inherit eutils flag-o-matic ${MYSQL_EXTRAS} ${BUILD_INHERIT} mysql_fx 
versionator toolchain-funcs user
 
 #
 # Supported EAPI versions and export functions
@@ -184,9 +184,9 @@ if [[ ${MY_EXTRAS_VER} != "live" && ${MY_EXTRAS_VER} != 
"none" ]]; then
SRC_URI="${SRC_URI}
mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
-   
http://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
-   
http://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
-   
http://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2;
+   
https://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2;
 fi
 
 DESCRIPTION="A fast, multi-threaded, multi-user SQL database server"
@@ -293,10 +293,6 @@ else
fi
 fi
 
-if [[ ${PN} == "mysql" || ${PN} == "percona-server" ]] ; then
-   mysql_version_is_at_least "5.7.5" && DEPEND="${DEPEND} dev-libs/boost"
-fi
-
 if [[ ${PN} == "mariadb" || ${PN} == "mariadb-galera" ]] ; then
mysql_check_version_range "5.1.38 to 5.3.99" && DEPEND="${DEPEND} 
libevent? ( >=dev-libs/libevent-1.4 )"
mysql_version_is_at_least "5.2" && DEPEND="${DEPEND} oqgraph? ( 
>=dev-libs/boost-1.40.0 )"
@@ -826,8 +822,7 @@ mysql-v2_pkg_config() {
mysql_version_is_at_least "5.6" || options="${options} 
--loose-skip-innodb"
fi
 
-   einfo "Creating the mysql database and setting proper"
-   einfo "permissions on it ..."
+   einfo "Creating the mysql database and setting proper permissions on it 
..."
 
# Now that /var/run is a tmpfs mount point, we need to ensure it exists 
before using it
PID_DIR="${EROOT}/var/run/mysqld"



[gentoo-commits] repo/gentoo:master commit in: profiles/

2016-02-07 Thread James Le Cuirot
commit: 901eca9b0aa0d7215d3bc46bcfd06cb8e99d0c07
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Feb  7 22:47:34 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Feb  7 22:49:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=901eca9b

profiles: Mask sci-biology/{biojava,mauve,mauvealigner}

BioJava depends on commons-dbcp:0, which requires Java 6. Even the
latest "legacy" version 1.9.1 does so and no one wants to do the
difficult bump to 4.1.0. Mauve depends on BioJava but being a very
outdated live SVN ebuild, it probably doesn't work anyway. This goes
for Mauve Aligner too. Removal in 30 days. See bug #556470.

 profiles/package.mask | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 6fd698c..964eb1c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -31,6 +31,16 @@
 #--- END OF EXAMPLES ---
 
 # James Le Cuirot  (07 Feb 2016)
+# BioJava depends on commons-dbcp:0, which requires Java 6. Even the
+# latest "legacy" version 1.9.1 does so and no one wants to do the
+# difficult bump to 4.1.0. Mauve depends on BioJava but being a very
+# outdated live SVN ebuild, it probably doesn't work anyway. This goes
+# for Mauve Aligner too. Removal in 30 days. See bug #556470.
+sci-biology/biojava
+sci-biology/mauve
+sci-biology/mauvealigner
+
+# James Le Cuirot  (07 Feb 2016)
 # Masked until 2.0 final arrives, which hopefully won't depend on
 # commons-dbcp:0 as that requires Java 6. Note that the 2.0 in the
 # tree should have actually been 2.0_beta1. There are no revdeps.



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/Macaulay2/files/, sci-mathematics/Macaulay2/

2016-02-07 Thread Thomas Kahle
commit: 82a3be8736c06ab5ce7f9219c05b0f20a7710e1a
Author: Thomas Kahle  gentoo  org>
AuthorDate: Sun Feb  7 16:44:18 2016 +
Commit: Thomas Kahle  gentoo  org>
CommitDate: Sun Feb  7 16:44:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82a3be87

sci-mathematics/Macaulay2: bump to 1.8.2.1

Package-Manager: portage-2.2.26

 sci-mathematics/Macaulay2/Macaulay2-1.8.2.1.ebuild | 136 +
 sci-mathematics/Macaulay2/Manifest |   1 +
 .../Macaulay2/files/Macaulay2-1.8.2.1-lapack.patch |  50 
 3 files changed, 187 insertions(+)

diff --git a/sci-mathematics/Macaulay2/Macaulay2-1.8.2.1.ebuild 
b/sci-mathematics/Macaulay2/Macaulay2-1.8.2.1.ebuild
new file mode 100644
index 000..f779844
--- /dev/null
+++ b/sci-mathematics/Macaulay2/Macaulay2-1.8.2.1.ebuild
@@ -0,0 +1,136 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools elisp-common eutils flag-o-matic python-single-r1 
toolchain-funcs
+
+# To stop the download madness we now roll our own tarball (Feb 2016)
+DESCRIPTION="Research tool for commutative algebra and algebraic geometry"
+HOMEPAGE="http://www.math.uiuc.edu/Macaulay2/;
+BASE_URI="http://www.math.uiuc.edu/Macaulay2/Downloads/OtherSourceCode/;
+BASE_URI2="http://dev.gentoo.org/~tomka/files/;
+SRC_URI="
+   ${BASE_URI2}/${P}-fat.tar.bz2
+"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug emacs +optimization"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}
+   sys-process/time
+   virtual/pkgconfig"
+
+RDEPEND="${PYTHON_DEPS}
+   sys-libs/gdbm
+   sci-mathematics/pari[gmp]
+   >=sys-libs/readline-6.1
+   dev-libs/libxml2:2
+   sci-mathematics/flint[gc]
+   sci-mathematics/frobby
+   sci-mathematics/4ti2
+   sci-mathematics/nauty
+   >=sci-mathematics/normaliz-2.8
+   sci-mathematics/gfan
+   sci-libs/cdd+
+   sci-libs/cddlib
+   sci-libs/lrslib[gmp]
+   virtual/blas
+   virtual/lapack
+   dev-util/ctags
+   sys-libs/ncurses
+   >=dev-libs/boehm-gc-7.4[threads]
+   dev-libs/libatomic_ops
+   emacs? ( virtual/emacs )"
+
+SITEFILE=70Macaulay2-gentoo.el
+
+S="${WORKDIR}/M2/M2"
+
+pkg_setup () {
+   tc-export CC CPP CXX PKG_CONFIG
+   append-cppflags "-I/usr/include/frobby"
+   # gtest needs python:2
+   python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   # Patching .m2 files to look for external programs in
+   # /usr/bin
+   epatch "${FILESDIR}"/1.6-paths-of-external-programs.patch
+
+   # Shortcircuit lapack tests
+   epatch "${FILESDIR}/${P}"-lapack.patch
+
+   eautoreconf
+}
+
+src_configure (){
+   # Recommended in bug #268064 Possibly unecessary
+   # but should not hurt anybody.
+   if ! use emacs; then
+   tags="ctags"
+   fi
+
+   # configure instead of econf to enable install with --prefix
+   ./configure LIBS="$($(tc-getPKG_CONFIG) --libs lapack)" \
+   --prefix="${D}/usr" \
+   --disable-encap \
+   --disable-strip \
+   --with-issue=Gentoo \
+   $(use_enable optimization optimize) \
+   $(use_enable debug) \
+   --enable-build-libraries="factory" \
+   --with-unbuilt-programs="4ti2 gfan normaliz nauty cddplus 
lrslib" \
+   || die "failed to configure Macaulay"
+}
+
+src_compile() {
+   # Parallel build not supported yet
+   emake IgnoreExampleErrors=true -j1
+
+   if use emacs; then
+   cd "${S}/Macaulay2/emacs" || die
+   elisp-compile *.el
+   fi
+}
+
+src_test() {
+   # No parallel tests yet & Need to increase the time
+   # limit for long running tests in Schubert2 to pass
+   emake TLIMIT=750 -j1 check
+}
+
+src_install () {
+   # Parallel install not supported yet
+   emake IgnoreExampleErrors=true -j1 install
+
+   # Remove emacs files and install them in the
+   # correct place if use emacs
+   rm -rf "${ED}"/usr/share/emacs/site-lisp || die
+   if use emacs; then
+   cd "${S}/Macaulay2/emacs" || die
+   elisp-install ${PN} *.elc *.el
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+   fi
+}
+
+pkg_postinst() {
+   if use emacs; then
+   elisp-site-regen
+   elog "If you want to set a hot key for Macaulay2 in Emacs add a 
line similar to"
+   elog "(global-set-key [ f12 ] 'M2)"
+   elog "in order to set it to F12 (or choose a different one)."
+   fi
+}
+
+pkg_postrm() {
+   use emacs && elisp-site-regen
+}

diff --git a/sci-mathematics/Macaulay2/Manifest 
b/sci-mathematics/Macaulay2/Manifest
index 1cab329..0ee77b1 100644
--- a/sci-mathematics/Macaulay2/Manifest
+++ 

[gentoo-commits] repo/gentoo:master commit in: dev-go/beego/

2016-02-07 Thread Zac Medico
commit: e9618c1a8bfbb4d7d8447070ddc640657ad3698f
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Feb  7 16:57:02 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Feb  7 16:57:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9618c1a

dev-go/beego: new package

Package-Manager: portage-2.2.27

 dev-go/beego/Manifest | 21 
 dev-go/beego/beego-1.6.0_p20160126.ebuild | 79 +++
 dev-go/beego/metadata.xml | 10 
 3 files changed, 110 insertions(+)

diff --git a/dev-go/beego/Manifest b/dev-go/beego/Manifest
new file mode 100644
index 000..c76d2a8
--- /dev/null
+++ b/dev-go/beego/Manifest
@@ -0,0 +1,21 @@
+DIST beego-1.6.0_p20160126.tar.gz 222634 SHA256 
135daab69c9c65453a1337b1b67db02991d0956f1edf9cdab2aebefc9fd904da SHA512 
2f2a434456e68fa89f99c5d165323cf54a1d5a28d85d301a1b62374dd5f349e7797a914eae7ccdbf056476b3b3560e5359cc75e0515e749b05fd4c7494a62c5d
 WHIRLPOOL 
7315e0794ab902be33c20c6c363b81bd5c5c08ac758d58decfa037c082153d76dfbf63f5263cd93b780b68cc4049733ddcf01c5d832c68eb4696ac3cc2ad38d9
+DIST bolt-2f846c3551b76d7710f159be840d66c3d064abbe.tar.gz 78184 SHA256 
4358157d83f88a3e0fdd5b2faa810ce0e8569ce5594ce893634f0042b2dfcdab SHA512 
429391842ac0ed04fb73587a1d21c2bf03a3c41f79fa192cc601ad4748a02ecd9a5ed024779a7267278f4c7a7152b1cf6d4e48ae1ceb31e52179506792ac4b51
 WHIRLPOOL 
f0d5eabcd2936897124bc7bfc1c5e616c79d7deb0f465e9cbd2b28c6d45173e26c71303afc1a9f6e1ef513548d192d9e8c6e5addba4af4ef40edc564f82245f0
+DIST errors-f66c77a7882b399795a8987ebf87ef64a427417e.tar.gz 1071 SHA256 
7a23eac61fd1795eebb1c3fd654142411d96d3a0f30960ec4c41198c1664fba2 SHA512 
2a3232f544c061e945b37d1735337c7268363af8004a46a4cb7d13414b89115aedbd848f25f328d429ba57a3b40e58e61f0cbdfec0b99f6e7d1562181444cc49
 WHIRLPOOL 
f07201b56ddfc99f6648207297a7f86393f5667255bc89fbc532f2e1f087ce95fa7a050bb488404ac1ffa851384565c1e23497881f3e4a59be937906c4b74bda
+DIST go-couchbase-8cefc09994885b63d45e506861277e9743addd37.tar.gz 67462 SHA256 
62dcbfe854ec019903fbab767bde6448f53ef3c74f048c9de137cd471bc2f9b3 SHA512 
4255d087893f0e52c306f8f5003ed1dc5d477011181d9834a9b704d02f4841fe78facb9e638a00a0745161950e656092a507f0689f92c8299c7af1b8ab70f62b
 WHIRLPOOL 
6dcef598f3a4d74f7e3fcc252bfcdd3c74947ab2a7e5e0a9a9f8676a7b1e48416f6249e9c81e5e791fa490d9ae1dcb05474c867b52a3454b6c55636f0a573660
+DIST go-mysql-267b128680c46286b9ca13475c3cca5de8f79bd7.tar.gz 56401 SHA256 
3aa79d9b80b92e7ed08436f82915ece3d211c86d41ba6fdfe56643448dcbe706 SHA512 
0c7158e94e0034ce19de5c3cab4dff55bc808b47bd2ec0ddc282a18d971de2362ae72746217d9621a37435cb2fe32dd2f91a0e3ee125303d268a46f765b363e7
 WHIRLPOOL 
155ec234f9d39be381851530d7280fc6cb03e09f6ec5580e7e61333e1657fbdf4e4b31116363ef3fb87b27658e87c60f239ee26fc57bb0f550c232d85f547a7a
+DIST go-sqlite3-1.1.0_p20160131.tar.gz 1847546 SHA256 
d743a044d7ee88b2783f5a15f22b47ffdaa478c0b258babc3c621ce347955bb8 SHA512 
9596012111b23865191904b7b0817ddbd88fc61383a3dfcf737d3d1be95c1a1d57b779ffbb9fa83303245a992c56e427396ffccb759a440822fffa516cae0b3d
 WHIRLPOOL 
a54021a0b8deb4fd28f44e45e8c78b896ef1121e4a23eb5fe6877b259c37456a6fb4fad77300a079fc3357a14b52d0b0750286a6f15431bdfefd17a99791c7c4
+DIST goes-e54d722c3aff588e4c737fe11c07359019240824.tar.gz 11987 SHA256 
29f97acd4071e20060d6dc3a8ca6e1b220d5bafc2a789357e0de2881a19197f6 SHA512 
d492e9befa49c595cf4be22d77fcca61e1395c828e7e916dda1b2cf7d4577ce30b0d953aeede50b2f541d2a5a14b44c00f7537348f887f79d8ff2e75899fb1c6
 WHIRLPOOL 
dc202dbfbe3e1e4395927125a2252da86e461bed4546c0eef52b0ecaf639a85ec4e32440433440ea3289293509b850c13fa51f6f908c058518f6a876b208f1a5
+DIST golang-snappy-894fd4616c897c201d223c3c0c128e8c648c96a2.tar.gz 10122 
SHA256 98053fd8f085c0f613604459840cc03326f8f80240c27e6d810aa38c9e55911f SHA512 
d01c2a6f0d8b339aed8248192605a2c82ad8aa56d5bd6fe547f095e560f14a1e5cd873be89fbb0ad8f046fb9e04e639f1c0133481fc5e8f481dc9f004c5b54a7
 WHIRLPOOL 
ff05c7b369b515c54c8fbbea29aa92dc32311e9c745e7fabacce5ba4776ab4b49c08e63248a613e4c839a56160e9f0302cc9896ab271af4ab9476fe8918840f9
+DIST goleveldb-36d2ead1e477af53df038bdde5f7b5b3790c93dd.tar.gz 130540 SHA256 
665eb89ae64e1204b726efdf85e879b4235c522312712bccb115be52f67a9574 SHA512 
2907fbb83c835782db62d8f23dd6861015e1220388e1c0b4796b198b7752f8fd768a77df72046eb2b218cad13a32789da99bbb0fb12728d0ddd11270f6283578
 WHIRLPOOL 
22f296891c875eeb83f651e00a5f4192c260b997296024d28ea990c7e05cb69b4b9baa1565db1c58e8c156bb7303af6dd2150707eb73d87fd6c006cf6436f84c
+DIST gomemcache-fb1f79c6b65acda83063cbc69f6bba1522558bfc.tar.gz 12347 SHA256 
ffc8722619a34a6bdcea8de0c2eefa5cf2bb59482149b8ad44e2768070139f53 SHA512 
22534a62143f6cec2189ec6045bcc8602b02c48bdaa180f4b2503576af4ac74806ee636d8fe0278070399f75973763fe8f725063f538945c2224c0e1bbd97df1
 WHIRLPOOL 
c33e376e2bc2a577c3205bd0641a42bca5340abbc5123fd146a632873833e103e25219e763742817f8abbd3621ed49ee19c31fb2f9f276aae9b8b0a67d8060fc
+DIST gomemcached-eb29b2e515a50fded2382cbd79a369c0cb3abf41.tar.gz 29903 SHA256 

[gentoo-commits] repo/gentoo:master commit in: games-roguelike/tome/files/, games-roguelike/tome/

2016-02-07 Thread Alfredo Tupone
commit: 5f92ae8e4d41a37d01d1dd0c05cc88fdac74b040
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Sun Feb  7 19:25:48 2016 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sun Feb  7 19:26:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f92ae8e

games-roguelike/tome: Fix format-security. Bug #539230

Package-Manager: portage-2.2.26

 games-roguelike/tome/files/tome-2.3.5-format.patch | 88 ++
 games-roguelike/tome/tome-2.3.5.ebuild |  3 +-
 2 files changed, 90 insertions(+), 1 deletion(-)

diff --git a/games-roguelike/tome/files/tome-2.3.5-format.patch 
b/games-roguelike/tome/files/tome-2.3.5-format.patch
new file mode 100644
index 000..f3ce1cc
--- /dev/null
+++ b/games-roguelike/tome/files/tome-2.3.5-format.patch
@@ -0,0 +1,88 @@
+--- dungeon.c.old  2016-02-07 20:12:39.258150130 +0100
 dungeon.c  2016-02-07 20:12:58.239805610 +0100
+@@ -1489,7 +1489,7 @@
+   {
+   char buf[20];
+ 
+-  sprintf(buf, get_day(bst(YEAR, turn) + START_YEAR));
++  sprintf(buf, "%s", get_day(bst(YEAR, turn) + START_YEAR));
+   cmsg_format(TERM_L_GREEN,
+   "Today it is %s of the %s year of the third age.",
+   get_month_name(bst(DAY, turn), wizard, FALSE), buf);
+--- files.c.old2016-02-07 20:15:07.736451417 +0100
 files.c2016-02-07 20:15:27.595089867 +0100
+@@ -4856,7 +4856,7 @@
+ 
+   /* Terminate */
+   tmp[k] = '\0';
+-  sprintf(player_base, tmp);
++  sprintf(player_base, "%s", tmp);
+ 
+   /* Require a "base" name */
+   if (!player_base[0]) strcpy(player_base, "PLAYER");
+--- lua_bind.c.old 2016-02-07 20:09:29.071592178 +0100
 lua_bind.c 2016-02-07 20:10:48.094164373 +0100
+@@ -490,7 +490,7 @@
+ /* Files */
+ void lua_print_hook(cptr str)
+ {
+-  fprintf(hook_file, str);
++  fprintf(hook_file, "%s", str);
+ }
+ 
+ 
+--- plots.c.old2016-02-07 20:11:35.389308152 +0100
 plots.c2016-02-07 20:12:19.247513152 +0100
+@@ -93,7 +93,7 @@
+   {
+   MAKE(new, hooks_chain);
+   new->hook = hook;
+-  sprintf(new->name, name);
++  sprintf(new->name, "%s", name);
+ #ifdef DEBUG_HOOK
+   if (wizard) cmsg_format(TERM_VIOLET, "HOOK ADD: %s", name);
+   if (take_notes) add_note(format("HOOK ADD: %s", name), 'D');
+--- spells1.c.old  2016-02-07 20:15:47.277731397 +0100
 spells1.c  2016-02-07 20:16:03.373438169 +0100
+@@ -7312,7 +7312,7 @@
+ 
+   if (who == -2)
+   {
+-  sprintf(killer, t_name + 
t_info[cave[p_ptr->py][p_ptr->px].t_idx].name);
++  sprintf(killer, "%s", t_name + 
t_info[cave[p_ptr->py][p_ptr->px].t_idx].name);
+   }
+ 
+   /* Analyze the damage */
+--- squeltch.c.old 2016-02-07 20:13:11.872558078 +0100
 squeltch.c 2016-02-07 20:13:42.707997918 +0100
+@@ -399,7 +399,7 @@
+ 
+   if (!max) continue;
+ 
+-  sprintf(name, string_exec_lua(format("return 
__rules[%d].table.args.name", sel)));
++  sprintf(name, "%s", 
string_exec_lua(format("return __rules[%d].table.args.name", sel)));
+   if (input_box("New name?", hgt / 2, wid / 2, 
name, 15))
+   {
+   
exec_lua(format("auto_aux:rename_rule(%d, '%s')", sel, name));
+--- util.c.old 2016-02-07 20:14:22.786269296 +0100
 util.c 2016-02-07 20:16:44.227693551 +0100
+@@ -4468,7 +4468,7 @@
+   {
+   char buf2[20];
+ 
+-  sprintf(buf2, get_day(day + 1));
++  sprintf(buf2, "%s", get_day(day + 1));
+   if (full) sprintf(buf, "%s (%s day)", month_name[i], 
buf2);
+   else sprintf(buf, "%s", month_name[i]);
+   break;
+@@ -4479,8 +4479,8 @@
+   char buf2[20];
+   char buf3[20];
+ 
+-  sprintf(buf2, get_day(day + 1 - month_day[i]));
+-  sprintf(buf3, get_day(day + 1));
++  sprintf(buf2, "%s", get_day(day + 1 - month_day[i]));
++  sprintf(buf3, "%s", get_day(day + 1));
+ 
+   if (full) sprintf(buf, "%s day of %s (%s day)", buf2, 
month_name[i], buf3);
+   else if (compact) sprintf(buf, "%s day of %s", buf2, 
month_name[i]);

diff --git a/games-roguelike/tome/tome-2.3.5.ebuild 
b/games-roguelike/tome/tome-2.3.5.ebuild
index ef87c3c..4257566 100644
--- a/games-roguelike/tome/tome-2.3.5.ebuild
+++ b/games-roguelike/tome/tome-2.3.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -32,6 +32,7 @@ 

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/activeresource/

2016-02-07 Thread Hans de Graaff
commit: ab3967773ceef6f4cbcaaaf5f27c448ebaf05030
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:43:06 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:43:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab396777

dev-ruby/activeresource: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/activeresource/Manifest   |  1 -
 .../activeresource/activeresource-3.2.22.ebuild| 44 --
 2 files changed, 45 deletions(-)

diff --git a/dev-ruby/activeresource/Manifest b/dev-ruby/activeresource/Manifest
index 748a362..a2f7bef 100644
--- a/dev-ruby/activeresource/Manifest
+++ b/dev-ruby/activeresource/Manifest
@@ -1,3 +1,2 @@
 DIST activeresource-4.0.0.tgz 69142 SHA256 
b2f8094b56c589193fa9c275e4a970fdcd4eb7e7885c8a7a12c86eda6c8d2f37 SHA512 
bad94922b7125f79988fb8c6694d6a0370ff1271b47d031e1c249441079e98f75a8069602c1eebf2ec8d7e28aab21b0ca42502c79fe06f46dfa5d42659ff79ab
 WHIRLPOOL 
04120c0a81e140435194ae28a98b4c2ba69e3ef663b7fbf02783839b842c92db70742e4c5d204168dfe4a28caac8d3a8d4c2aea81842959819590544b648d867
 DIST rails-3.2.22.1.tgz 3570617 SHA256 
0678ec5677e6f70a20aa398b323a3d926531e1da266734ec90c34e111512b0fc SHA512 
29b9e7aca818ed08111cc6306edfcbf88969ab2cbb0f36b9a189f8a29c2dec966e3a453d7b9ee9fc0cf06f0786aa493839440a2d6fb338b13b801978b08f4656
 WHIRLPOOL 
b797311ab5420c4663b1617e5fabdc30a66619f1b6a16aa68ed96f5e38f4daff89cecc8bf9f3d7a702f17ae7da6bedf128adad2a3120f50a25ff85aff5cb6527
-DIST rails-3.2.22.tgz 3569215 SHA256 
a14fbd69cd1750589cb6f4a79926058595de832dab89372fb479feadc99f0aba SHA512 
7321e5fa12cc3f7d6e7c2284f37c183c9bcbe1c9f067c2be5ebdd10f550b0eff561b20558cf885f30b24951bfa88287b3e0fb421eee14579a88a2bcffeaff3ce
 WHIRLPOOL 
de54798cbcbf9a0c6d66346267cfbb15991478cc6b4982f9e3a3a80db734af6553f9749b18188c4dc5fa82c60c0294312f648a0e4b5bcb46896bfee75be4dbc0

diff --git a/dev-ruby/activeresource/activeresource-3.2.22.ebuild 
b/dev-ruby/activeresource/activeresource-3.2.22.ebuild
deleted file mode 100644
index 96de5c5..000
--- a/dev-ruby/activeresource/activeresource-3.2.22.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
-
-RUBY_FAKEGEM_GEMSPEC="activeresource.gemspec"
-
-inherit ruby-fakegem versionator
-
-DESCRIPTION="Think Active Record for web resources"
-HOMEPAGE="https://github.com/rails/rails;
-SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-RUBY_S="rails-${PV}/${PN}"
-
-ruby_add_rdepend "~dev-ruby/activesupport-${PV}
-   dev-ruby/builder:3"
-ruby_add_bdepend "
-   test? (
-   dev-ruby/test-unit:2
-   >=dev-ruby/mocha-0.13.0:0.13
-   )"
-
-all_ruby_prepare() {
-   # Set test environment to our hand.
-   rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
-   sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to 
remove load paths"
-
-   # Make sure we use the test-unit gem since ruby18 does not provide
-   # all the test-unit features needed.
-   sed -i -e '1igem "test-unit"' test/abstract_unit.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/actionview/

2016-02-07 Thread Hans de Graaff
commit: 3884938b9914d5c2e03352ccb14bacba21ff8a90
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:45:09 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:45:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3884938b

dev-ruby/actionview: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/actionview/Manifest|  4 --
 dev-ruby/actionview/actionview-4.1.13-r1.ebuild | 49 ---
 dev-ruby/actionview/actionview-4.1.13.ebuild| 47 --
 dev-ruby/actionview/actionview-4.1.14.ebuild| 47 --
 dev-ruby/actionview/actionview-4.2.4-r1.ebuild  | 52 -
 dev-ruby/actionview/actionview-4.2.4.ebuild | 50 
 dev-ruby/actionview/actionview-4.2.5.ebuild | 50 
 7 files changed, 299 deletions(-)

diff --git a/dev-ruby/actionview/Manifest b/dev-ruby/actionview/Manifest
index 1f35f1f..8273380 100644
--- a/dev-ruby/actionview/Manifest
+++ b/dev-ruby/actionview/Manifest
@@ -1,6 +1,2 @@
-DIST rails-4.1.13.tgz 3726822 SHA256 
94112f3398c5ffd5e53ce959969c133b35386ade0a9d845eaead4237a5546335 SHA512 
8fef27cfbe898fc691562d9a6d543816c3e5c08c4c114b01115024e573b6d49568bca13da9d4574cfe0b76cc778c734e4a24def7047c90fb1c6d1c78553bcee3
 WHIRLPOOL 
321e60e7f51026e6c79c9f1cf128b349dbab08ed17d8f20fb034f1317c8498edcdaebf166fa30995abc80c6a4cd691408b3b4046adf11086899cd995e94c7d0a
 DIST rails-4.1.14.1.tgz 3728574 SHA256 
1b094a1d1f242c19d2fad0b4f0708d117fce281162d7550535a79c2919246179 SHA512 
1ffb3d7f1f5b6db34bbae2015c220945fd780e42bc69242fdcadc6bd59b74c32f16cf54e153b9c3c2aa065d20b1231c19c7ebfe8f8d5f52a1048b8e0f1b7782a
 WHIRLPOOL 
31eb9281d9e0b0e0c07807b14d7b1e52b1a08adc612da9c9c272a5eacb6b095d74b80400eb99818d37371963775942b9d85f38c18446d75de996595528fdf84d
-DIST rails-4.1.14.tgz 3727638 SHA256 
c3e8c22e05287f98271dafb7dc512fa25878b65c5bd5d5719216b30e653a3a05 SHA512 
94643cef73c0bb0cb8d30295d155a2dece9b2d9a547f7814dffa5e618bc76b7910cb369ac33538fb7be8efb728ea4dd87f6bdf30d2b7cbea2c401509e6de5b71
 WHIRLPOOL 
4d5bce5a73ecb71f2d4244076295b5ad1a04bc67c7b488bd0145127e26bb7fcc31f4de74307e3ace2756d809c44c7ddbd79411fdad40f5a65e1e79a2a861a67b
-DIST rails-4.2.4.tgz 4166672 SHA256 
cc6618eaa2c640932e803dfac6bbde135fad3a6874dfc4e547712ec9182241d4 SHA512 
7ce9fabdd302ce8fd1077147e6e45926ba12aa4177d2e1b78775a8fb3b80420f09c4076ecf726f410610a38187f2a8abeaff3d2b1de25e8386685db998bd2308
 WHIRLPOOL 
0e7bce539ba3c20f5c7de965af478505d76ebad0fd42498b13cb9a9c576304ad9694dd218bc6debf7a02cb437bebc5f75425c104956d32f4afefd1cc2c020d8d
 DIST rails-4.2.5.1.tgz 4175926 SHA256 
713da4f88244101457b4de5d08007f4b373cb43c3982d72de70bb5c5145afb46 SHA512 
3c74d825f35a71dd80a0e1d3959cc6d9e52da0f2eb43bfb869da22a8117ba4f66df1de183851b7cd9e3c2cc8a0b5a8ae4e6902d3b43afd52ccdd20470b49801d
 WHIRLPOOL 
dfb4f925468cfbadd73fd54eb146e377df8e4d67aa094076dd928c616d6cfddb9084cee2adb220490df0c34627a99b150118bc7827b2ca5f6d0751611993b53f
-DIST rails-4.2.5.tgz 4174680 SHA256 
adda75f10fc4b7eb498ae9a2b04cb92bd69568fc1a9d6ace27cc1ab203af5a2e SHA512 
808d7eaf135f3f6b4b504372615b42e4b7c7f9fa0acdd2c425c9548852d24f143ad3abb38aa95d99212f9198f5a04dda2a6312f3e2d5e9a63173388cb30736e1
 WHIRLPOOL 
f1e8af458b6a922bdb4a214476b145a5e743603ae0ad7b977a8917f9204028cce4da3ee1780118b555924af74319f81d83c42390fc35d010ba881fa03bb30d55

diff --git a/dev-ruby/actionview/actionview-4.1.13-r1.ebuild 
b/dev-ruby/actionview/actionview-4.1.13-r1.ebuild
deleted file mode 100644
index 0cfc7c9..000
--- a/dev-ruby/actionview/actionview-4.1.13-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem versionator
-
-DESCRIPTION="Simple, battle-tested conventions and helpers for building web 
pages"
-HOMEPAGE="https://github.com/rails/rails/;
-SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
-IUSE=""
-
-RUBY_S="rails-${PV}/${PN}"
-
-RUBY_PATCHES=( ${P}-url-helper.patch )
-
-ruby_add_rdepend "
-   ~dev-ruby/activesupport-${PV}
-   >=dev-ruby/builder-3.1:* =dev-ruby/builder-3*:*
-   >=dev-ruby/erubis-2.7.0
-"
-
-ruby_add_bdepend "
-   test? (
-   dev-ruby/mocha:0.14
-   ~dev-ruby/actionpack-${PV}
-   ~dev-ruby/activemodel-${PV}
-   )"
-
-all_ruby_prepare() {
-   # Remove items from the common Gemfile that we don't need for this
-   # test run. This also requires handling some gemspecs.
-   sed -i -e 

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/activemodel/

2016-02-07 Thread Hans de Graaff
commit: bf80c794f35e77d670f3475e46aa4f0349be2679
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:41:33 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:41:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf80c794

dev-ruby/activemodel: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/activemodel/Manifest  |  5 ---
 dev-ruby/activemodel/activemodel-3.2.22.ebuild | 45 
 dev-ruby/activemodel/activemodel-4.1.13.ebuild | 47 --
 dev-ruby/activemodel/activemodel-4.1.14.ebuild | 47 --
 dev-ruby/activemodel/activemodel-4.2.4.ebuild  | 44 
 dev-ruby/activemodel/activemodel-4.2.5.ebuild  | 44 
 6 files changed, 232 deletions(-)

diff --git a/dev-ruby/activemodel/Manifest b/dev-ruby/activemodel/Manifest
index e9c9dc0..1b70cb2 100644
--- a/dev-ruby/activemodel/Manifest
+++ b/dev-ruby/activemodel/Manifest
@@ -1,9 +1,4 @@
 DIST rails-3.2.22.1.tgz 3570617 SHA256 
0678ec5677e6f70a20aa398b323a3d926531e1da266734ec90c34e111512b0fc SHA512 
29b9e7aca818ed08111cc6306edfcbf88969ab2cbb0f36b9a189f8a29c2dec966e3a453d7b9ee9fc0cf06f0786aa493839440a2d6fb338b13b801978b08f4656
 WHIRLPOOL 
b797311ab5420c4663b1617e5fabdc30a66619f1b6a16aa68ed96f5e38f4daff89cecc8bf9f3d7a702f17ae7da6bedf128adad2a3120f50a25ff85aff5cb6527
-DIST rails-3.2.22.tgz 3569215 SHA256 
a14fbd69cd1750589cb6f4a79926058595de832dab89372fb479feadc99f0aba SHA512 
7321e5fa12cc3f7d6e7c2284f37c183c9bcbe1c9f067c2be5ebdd10f550b0eff561b20558cf885f30b24951bfa88287b3e0fb421eee14579a88a2bcffeaff3ce
 WHIRLPOOL 
de54798cbcbf9a0c6d66346267cfbb15991478cc6b4982f9e3a3a80db734af6553f9749b18188c4dc5fa82c60c0294312f648a0e4b5bcb46896bfee75be4dbc0
 DIST rails-4.0.13.tgz 3761572 SHA256 
a693a8c5f767d153e765634cecb6356855ca51b6554b3af1a3023a204a51 SHA512 
3f2cca90187f800d1ec57fc6cbc58c1f3213113a94d1dee7d9cfd3dc0264b7f3a9c6cfc6dd95ef2fb3aa7d8ca5d6da50cedecc288ff8ff7e5305dc0309b4365d
 WHIRLPOOL 
a5b3f7f828a88d04b5687b3217b40903192ccea5eca36ca58cbb2baeec7471241fe5529f13688bd1f6396a384cf282c94bfaf54ee1cfafdf5ef400707dee7d01
-DIST rails-4.1.13.tgz 3726822 SHA256 
94112f3398c5ffd5e53ce959969c133b35386ade0a9d845eaead4237a5546335 SHA512 
8fef27cfbe898fc691562d9a6d543816c3e5c08c4c114b01115024e573b6d49568bca13da9d4574cfe0b76cc778c734e4a24def7047c90fb1c6d1c78553bcee3
 WHIRLPOOL 
321e60e7f51026e6c79c9f1cf128b349dbab08ed17d8f20fb034f1317c8498edcdaebf166fa30995abc80c6a4cd691408b3b4046adf11086899cd995e94c7d0a
 DIST rails-4.1.14.1.tgz 3728574 SHA256 
1b094a1d1f242c19d2fad0b4f0708d117fce281162d7550535a79c2919246179 SHA512 
1ffb3d7f1f5b6db34bbae2015c220945fd780e42bc69242fdcadc6bd59b74c32f16cf54e153b9c3c2aa065d20b1231c19c7ebfe8f8d5f52a1048b8e0f1b7782a
 WHIRLPOOL 
31eb9281d9e0b0e0c07807b14d7b1e52b1a08adc612da9c9c272a5eacb6b095d74b80400eb99818d37371963775942b9d85f38c18446d75de996595528fdf84d
-DIST rails-4.1.14.tgz 3727638 SHA256 
c3e8c22e05287f98271dafb7dc512fa25878b65c5bd5d5719216b30e653a3a05 SHA512 
94643cef73c0bb0cb8d30295d155a2dece9b2d9a547f7814dffa5e618bc76b7910cb369ac33538fb7be8efb728ea4dd87f6bdf30d2b7cbea2c401509e6de5b71
 WHIRLPOOL 
4d5bce5a73ecb71f2d4244076295b5ad1a04bc67c7b488bd0145127e26bb7fcc31f4de74307e3ace2756d809c44c7ddbd79411fdad40f5a65e1e79a2a861a67b
-DIST rails-4.2.4.tgz 4166672 SHA256 
cc6618eaa2c640932e803dfac6bbde135fad3a6874dfc4e547712ec9182241d4 SHA512 
7ce9fabdd302ce8fd1077147e6e45926ba12aa4177d2e1b78775a8fb3b80420f09c4076ecf726f410610a38187f2a8abeaff3d2b1de25e8386685db998bd2308
 WHIRLPOOL 
0e7bce539ba3c20f5c7de965af478505d76ebad0fd42498b13cb9a9c576304ad9694dd218bc6debf7a02cb437bebc5f75425c104956d32f4afefd1cc2c020d8d
 DIST rails-4.2.5.1.tgz 4175926 SHA256 
713da4f88244101457b4de5d08007f4b373cb43c3982d72de70bb5c5145afb46 SHA512 
3c74d825f35a71dd80a0e1d3959cc6d9e52da0f2eb43bfb869da22a8117ba4f66df1de183851b7cd9e3c2cc8a0b5a8ae4e6902d3b43afd52ccdd20470b49801d
 WHIRLPOOL 
dfb4f925468cfbadd73fd54eb146e377df8e4d67aa094076dd928c616d6cfddb9084cee2adb220490df0c34627a99b150118bc7827b2ca5f6d0751611993b53f
-DIST rails-4.2.5.tgz 4174680 SHA256 
adda75f10fc4b7eb498ae9a2b04cb92bd69568fc1a9d6ace27cc1ab203af5a2e SHA512 
808d7eaf135f3f6b4b504372615b42e4b7c7f9fa0acdd2c425c9548852d24f143ad3abb38aa95d99212f9198f5a04dda2a6312f3e2d5e9a63173388cb30736e1
 WHIRLPOOL 
f1e8af458b6a922bdb4a214476b145a5e743603ae0ad7b977a8917f9204028cce4da3ee1780118b555924af74319f81d83c42390fc35d010ba881fa03bb30d55

diff --git a/dev-ruby/activemodel/activemodel-3.2.22.ebuild 
b/dev-ruby/activemodel/activemodel-3.2.22.ebuild
deleted file mode 100644
index b8dd5c9..000
--- a/dev-ruby/activemodel/activemodel-3.2.22.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_DOCDIR=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md 

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/railties/

2016-02-07 Thread Hans de Graaff
commit: e6100831d78a8cd5e409df1753a41a12c585dbd7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:38:29 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:38:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6100831

dev-ruby/railties: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/railties/Manifest   |  5 --
 dev-ruby/railties/railties-3.2.22.ebuild | 82 
 dev-ruby/railties/railties-4.1.13.ebuild | 72 
 dev-ruby/railties/railties-4.1.14.ebuild | 72 
 dev-ruby/railties/railties-4.2.4.ebuild  | 72 
 dev-ruby/railties/railties-4.2.5.ebuild  | 72 
 6 files changed, 375 deletions(-)

diff --git a/dev-ruby/railties/Manifest b/dev-ruby/railties/Manifest
index e9c9dc0..1b70cb2 100644
--- a/dev-ruby/railties/Manifest
+++ b/dev-ruby/railties/Manifest
@@ -1,9 +1,4 @@
 DIST rails-3.2.22.1.tgz 3570617 SHA256 
0678ec5677e6f70a20aa398b323a3d926531e1da266734ec90c34e111512b0fc SHA512 
29b9e7aca818ed08111cc6306edfcbf88969ab2cbb0f36b9a189f8a29c2dec966e3a453d7b9ee9fc0cf06f0786aa493839440a2d6fb338b13b801978b08f4656
 WHIRLPOOL 
b797311ab5420c4663b1617e5fabdc30a66619f1b6a16aa68ed96f5e38f4daff89cecc8bf9f3d7a702f17ae7da6bedf128adad2a3120f50a25ff85aff5cb6527
-DIST rails-3.2.22.tgz 3569215 SHA256 
a14fbd69cd1750589cb6f4a79926058595de832dab89372fb479feadc99f0aba SHA512 
7321e5fa12cc3f7d6e7c2284f37c183c9bcbe1c9f067c2be5ebdd10f550b0eff561b20558cf885f30b24951bfa88287b3e0fb421eee14579a88a2bcffeaff3ce
 WHIRLPOOL 
de54798cbcbf9a0c6d66346267cfbb15991478cc6b4982f9e3a3a80db734af6553f9749b18188c4dc5fa82c60c0294312f648a0e4b5bcb46896bfee75be4dbc0
 DIST rails-4.0.13.tgz 3761572 SHA256 
a693a8c5f767d153e765634cecb6356855ca51b6554b3af1a3023a204a51 SHA512 
3f2cca90187f800d1ec57fc6cbc58c1f3213113a94d1dee7d9cfd3dc0264b7f3a9c6cfc6dd95ef2fb3aa7d8ca5d6da50cedecc288ff8ff7e5305dc0309b4365d
 WHIRLPOOL 
a5b3f7f828a88d04b5687b3217b40903192ccea5eca36ca58cbb2baeec7471241fe5529f13688bd1f6396a384cf282c94bfaf54ee1cfafdf5ef400707dee7d01
-DIST rails-4.1.13.tgz 3726822 SHA256 
94112f3398c5ffd5e53ce959969c133b35386ade0a9d845eaead4237a5546335 SHA512 
8fef27cfbe898fc691562d9a6d543816c3e5c08c4c114b01115024e573b6d49568bca13da9d4574cfe0b76cc778c734e4a24def7047c90fb1c6d1c78553bcee3
 WHIRLPOOL 
321e60e7f51026e6c79c9f1cf128b349dbab08ed17d8f20fb034f1317c8498edcdaebf166fa30995abc80c6a4cd691408b3b4046adf11086899cd995e94c7d0a
 DIST rails-4.1.14.1.tgz 3728574 SHA256 
1b094a1d1f242c19d2fad0b4f0708d117fce281162d7550535a79c2919246179 SHA512 
1ffb3d7f1f5b6db34bbae2015c220945fd780e42bc69242fdcadc6bd59b74c32f16cf54e153b9c3c2aa065d20b1231c19c7ebfe8f8d5f52a1048b8e0f1b7782a
 WHIRLPOOL 
31eb9281d9e0b0e0c07807b14d7b1e52b1a08adc612da9c9c272a5eacb6b095d74b80400eb99818d37371963775942b9d85f38c18446d75de996595528fdf84d
-DIST rails-4.1.14.tgz 3727638 SHA256 
c3e8c22e05287f98271dafb7dc512fa25878b65c5bd5d5719216b30e653a3a05 SHA512 
94643cef73c0bb0cb8d30295d155a2dece9b2d9a547f7814dffa5e618bc76b7910cb369ac33538fb7be8efb728ea4dd87f6bdf30d2b7cbea2c401509e6de5b71
 WHIRLPOOL 
4d5bce5a73ecb71f2d4244076295b5ad1a04bc67c7b488bd0145127e26bb7fcc31f4de74307e3ace2756d809c44c7ddbd79411fdad40f5a65e1e79a2a861a67b
-DIST rails-4.2.4.tgz 4166672 SHA256 
cc6618eaa2c640932e803dfac6bbde135fad3a6874dfc4e547712ec9182241d4 SHA512 
7ce9fabdd302ce8fd1077147e6e45926ba12aa4177d2e1b78775a8fb3b80420f09c4076ecf726f410610a38187f2a8abeaff3d2b1de25e8386685db998bd2308
 WHIRLPOOL 
0e7bce539ba3c20f5c7de965af478505d76ebad0fd42498b13cb9a9c576304ad9694dd218bc6debf7a02cb437bebc5f75425c104956d32f4afefd1cc2c020d8d
 DIST rails-4.2.5.1.tgz 4175926 SHA256 
713da4f88244101457b4de5d08007f4b373cb43c3982d72de70bb5c5145afb46 SHA512 
3c74d825f35a71dd80a0e1d3959cc6d9e52da0f2eb43bfb869da22a8117ba4f66df1de183851b7cd9e3c2cc8a0b5a8ae4e6902d3b43afd52ccdd20470b49801d
 WHIRLPOOL 
dfb4f925468cfbadd73fd54eb146e377df8e4d67aa094076dd928c616d6cfddb9084cee2adb220490df0c34627a99b150118bc7827b2ca5f6d0751611993b53f
-DIST rails-4.2.5.tgz 4174680 SHA256 
adda75f10fc4b7eb498ae9a2b04cb92bd69568fc1a9d6ace27cc1ab203af5a2e SHA512 
808d7eaf135f3f6b4b504372615b42e4b7c7f9fa0acdd2c425c9548852d24f143ad3abb38aa95d99212f9198f5a04dda2a6312f3e2d5e9a63173388cb30736e1
 WHIRLPOOL 
f1e8af458b6a922bdb4a214476b145a5e743603ae0ad7b977a8917f9204028cce4da3ee1780118b555924af74319f81d83c42390fc35d010ba881fa03bb30d55

diff --git a/dev-ruby/railties/railties-3.2.22.ebuild 
b/dev-ruby/railties/railties-3.2.22.ebuild
deleted file mode 100644
index 2574d23..000
--- a/dev-ruby/railties/railties-3.2.22.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_TEST="test:regular"
-RUBY_FAKEGEM_TASK_DOC="generate_guides"
-RUBY_FAKEGEM_DOCDIR="guides/output"

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/activejob/

2016-02-07 Thread Hans de Graaff
commit: 79fd153a2068342dc7756c7e8ba925ec83d5cdbb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:45:42 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:45:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79fd153a

dev-ruby/activejob: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/activejob/Manifest   |  2 --
 dev-ruby/activejob/activejob-4.2.4.ebuild | 44 ---
 dev-ruby/activejob/activejob-4.2.5.ebuild | 44 ---
 3 files changed, 90 deletions(-)

diff --git a/dev-ruby/activejob/Manifest b/dev-ruby/activejob/Manifest
index 2085b2c..770ab93 100644
--- a/dev-ruby/activejob/Manifest
+++ b/dev-ruby/activejob/Manifest
@@ -1,3 +1 @@
-DIST rails-4.2.4.tgz 4166672 SHA256 
cc6618eaa2c640932e803dfac6bbde135fad3a6874dfc4e547712ec9182241d4 SHA512 
7ce9fabdd302ce8fd1077147e6e45926ba12aa4177d2e1b78775a8fb3b80420f09c4076ecf726f410610a38187f2a8abeaff3d2b1de25e8386685db998bd2308
 WHIRLPOOL 
0e7bce539ba3c20f5c7de965af478505d76ebad0fd42498b13cb9a9c576304ad9694dd218bc6debf7a02cb437bebc5f75425c104956d32f4afefd1cc2c020d8d
 DIST rails-4.2.5.1.tgz 4175926 SHA256 
713da4f88244101457b4de5d08007f4b373cb43c3982d72de70bb5c5145afb46 SHA512 
3c74d825f35a71dd80a0e1d3959cc6d9e52da0f2eb43bfb869da22a8117ba4f66df1de183851b7cd9e3c2cc8a0b5a8ae4e6902d3b43afd52ccdd20470b49801d
 WHIRLPOOL 
dfb4f925468cfbadd73fd54eb146e377df8e4d67aa094076dd928c616d6cfddb9084cee2adb220490df0c34627a99b150118bc7827b2ca5f6d0751611993b53f
-DIST rails-4.2.5.tgz 4174680 SHA256 
adda75f10fc4b7eb498ae9a2b04cb92bd69568fc1a9d6ace27cc1ab203af5a2e SHA512 
808d7eaf135f3f6b4b504372615b42e4b7c7f9fa0acdd2c425c9548852d24f143ad3abb38aa95d99212f9198f5a04dda2a6312f3e2d5e9a63173388cb30736e1
 WHIRLPOOL 
f1e8af458b6a922bdb4a214476b145a5e743603ae0ad7b977a8917f9204028cce4da3ee1780118b555924af74319f81d83c42390fc35d010ba881fa03bb30d55

diff --git a/dev-ruby/activejob/activejob-4.2.4.ebuild 
b/dev-ruby/activejob/activejob-4.2.4.ebuild
deleted file mode 100644
index 6622bbe..000
--- a/dev-ruby/activejob/activejob-4.2.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_DOCDIR=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem versionator
-
-DESCRIPTION="Job framework with pluggable queues"
-HOMEPAGE="https://github.com/rails/rails;
-SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
-IUSE=""
-
-RUBY_S="rails-${PV}/${PN}"
-
-ruby_add_rdepend "
-   ~dev-ruby/activesupport-${PV}
-   >=dev-ruby/globalid-0.3.0
-"
-
-ruby_add_bdepend "
-   test? (
-   >=dev-ruby/mocha-0.14.0:0.14
-   )"
-
-all_ruby_prepare() {
-   # Set test environment to our hand.
-   sed -i -e '/load_paths/d' test/helper.rb || die "Unable to remove load 
paths"
-
-   # Remove all currently unpackaged queues.
-   sed -i -e 's/delayed_job qu que queue_classic resque sidekiq sneakers 
sucker_punch backburner//' Rakefile || die
-}

diff --git a/dev-ruby/activejob/activejob-4.2.5.ebuild 
b/dev-ruby/activejob/activejob-4.2.5.ebuild
deleted file mode 100644
index 7ec4606..000
--- a/dev-ruby/activejob/activejob-4.2.5.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_DOCDIR=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem versionator
-
-DESCRIPTION="Job framework with pluggable queues"
-HOMEPAGE="https://github.com/rails/rails;
-SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64"
-IUSE=""
-
-RUBY_S="rails-${PV}/${PN}"
-
-ruby_add_rdepend "
-   ~dev-ruby/activesupport-${PV}
-   >=dev-ruby/globalid-0.3.0
-"
-
-ruby_add_bdepend "
-   test? (
-   >=dev-ruby/mocha-0.14.0:0.14
-   )"
-
-all_ruby_prepare() {
-   # Set test environment to our hand.
-   sed -i -e '/load_paths/d' test/helper.rb || die "Unable to remove load 
paths"
-
-   # Remove all currently unpackaged queues.
-   sed -i -e 's/delayed_job qu que queue_classic resque sidekiq sneakers 
sucker_punch backburner//' Rakefile || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/actionpack/

2016-02-07 Thread Hans de Graaff
commit: 97fc00deffd033477e25b066d98608350e531cf6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:39:56 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:39:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97fc00de

dev-ruby/actionpack: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/actionpack/Manifest |  5 --
 dev-ruby/actionpack/actionpack-3.2.22.ebuild | 78 
 dev-ruby/actionpack/actionpack-4.1.13.ebuild | 48 -
 dev-ruby/actionpack/actionpack-4.1.14.ebuild | 48 -
 dev-ruby/actionpack/actionpack-4.2.4.ebuild  | 52 ---
 dev-ruby/actionpack/actionpack-4.2.5.ebuild  | 52 ---
 6 files changed, 283 deletions(-)

diff --git a/dev-ruby/actionpack/Manifest b/dev-ruby/actionpack/Manifest
index e9c9dc0..1b70cb2 100644
--- a/dev-ruby/actionpack/Manifest
+++ b/dev-ruby/actionpack/Manifest
@@ -1,9 +1,4 @@
 DIST rails-3.2.22.1.tgz 3570617 SHA256 
0678ec5677e6f70a20aa398b323a3d926531e1da266734ec90c34e111512b0fc SHA512 
29b9e7aca818ed08111cc6306edfcbf88969ab2cbb0f36b9a189f8a29c2dec966e3a453d7b9ee9fc0cf06f0786aa493839440a2d6fb338b13b801978b08f4656
 WHIRLPOOL 
b797311ab5420c4663b1617e5fabdc30a66619f1b6a16aa68ed96f5e38f4daff89cecc8bf9f3d7a702f17ae7da6bedf128adad2a3120f50a25ff85aff5cb6527
-DIST rails-3.2.22.tgz 3569215 SHA256 
a14fbd69cd1750589cb6f4a79926058595de832dab89372fb479feadc99f0aba SHA512 
7321e5fa12cc3f7d6e7c2284f37c183c9bcbe1c9f067c2be5ebdd10f550b0eff561b20558cf885f30b24951bfa88287b3e0fb421eee14579a88a2bcffeaff3ce
 WHIRLPOOL 
de54798cbcbf9a0c6d66346267cfbb15991478cc6b4982f9e3a3a80db734af6553f9749b18188c4dc5fa82c60c0294312f648a0e4b5bcb46896bfee75be4dbc0
 DIST rails-4.0.13.tgz 3761572 SHA256 
a693a8c5f767d153e765634cecb6356855ca51b6554b3af1a3023a204a51 SHA512 
3f2cca90187f800d1ec57fc6cbc58c1f3213113a94d1dee7d9cfd3dc0264b7f3a9c6cfc6dd95ef2fb3aa7d8ca5d6da50cedecc288ff8ff7e5305dc0309b4365d
 WHIRLPOOL 
a5b3f7f828a88d04b5687b3217b40903192ccea5eca36ca58cbb2baeec7471241fe5529f13688bd1f6396a384cf282c94bfaf54ee1cfafdf5ef400707dee7d01
-DIST rails-4.1.13.tgz 3726822 SHA256 
94112f3398c5ffd5e53ce959969c133b35386ade0a9d845eaead4237a5546335 SHA512 
8fef27cfbe898fc691562d9a6d543816c3e5c08c4c114b01115024e573b6d49568bca13da9d4574cfe0b76cc778c734e4a24def7047c90fb1c6d1c78553bcee3
 WHIRLPOOL 
321e60e7f51026e6c79c9f1cf128b349dbab08ed17d8f20fb034f1317c8498edcdaebf166fa30995abc80c6a4cd691408b3b4046adf11086899cd995e94c7d0a
 DIST rails-4.1.14.1.tgz 3728574 SHA256 
1b094a1d1f242c19d2fad0b4f0708d117fce281162d7550535a79c2919246179 SHA512 
1ffb3d7f1f5b6db34bbae2015c220945fd780e42bc69242fdcadc6bd59b74c32f16cf54e153b9c3c2aa065d20b1231c19c7ebfe8f8d5f52a1048b8e0f1b7782a
 WHIRLPOOL 
31eb9281d9e0b0e0c07807b14d7b1e52b1a08adc612da9c9c272a5eacb6b095d74b80400eb99818d37371963775942b9d85f38c18446d75de996595528fdf84d
-DIST rails-4.1.14.tgz 3727638 SHA256 
c3e8c22e05287f98271dafb7dc512fa25878b65c5bd5d5719216b30e653a3a05 SHA512 
94643cef73c0bb0cb8d30295d155a2dece9b2d9a547f7814dffa5e618bc76b7910cb369ac33538fb7be8efb728ea4dd87f6bdf30d2b7cbea2c401509e6de5b71
 WHIRLPOOL 
4d5bce5a73ecb71f2d4244076295b5ad1a04bc67c7b488bd0145127e26bb7fcc31f4de74307e3ace2756d809c44c7ddbd79411fdad40f5a65e1e79a2a861a67b
-DIST rails-4.2.4.tgz 4166672 SHA256 
cc6618eaa2c640932e803dfac6bbde135fad3a6874dfc4e547712ec9182241d4 SHA512 
7ce9fabdd302ce8fd1077147e6e45926ba12aa4177d2e1b78775a8fb3b80420f09c4076ecf726f410610a38187f2a8abeaff3d2b1de25e8386685db998bd2308
 WHIRLPOOL 
0e7bce539ba3c20f5c7de965af478505d76ebad0fd42498b13cb9a9c576304ad9694dd218bc6debf7a02cb437bebc5f75425c104956d32f4afefd1cc2c020d8d
 DIST rails-4.2.5.1.tgz 4175926 SHA256 
713da4f88244101457b4de5d08007f4b373cb43c3982d72de70bb5c5145afb46 SHA512 
3c74d825f35a71dd80a0e1d3959cc6d9e52da0f2eb43bfb869da22a8117ba4f66df1de183851b7cd9e3c2cc8a0b5a8ae4e6902d3b43afd52ccdd20470b49801d
 WHIRLPOOL 
dfb4f925468cfbadd73fd54eb146e377df8e4d67aa094076dd928c616d6cfddb9084cee2adb220490df0c34627a99b150118bc7827b2ca5f6d0751611993b53f
-DIST rails-4.2.5.tgz 4174680 SHA256 
adda75f10fc4b7eb498ae9a2b04cb92bd69568fc1a9d6ace27cc1ab203af5a2e SHA512 
808d7eaf135f3f6b4b504372615b42e4b7c7f9fa0acdd2c425c9548852d24f143ad3abb38aa95d99212f9198f5a04dda2a6312f3e2d5e9a63173388cb30736e1
 WHIRLPOOL 
f1e8af458b6a922bdb4a214476b145a5e743603ae0ad7b977a8917f9204028cce4da3ee1780118b555924af74319f81d83c42390fc35d010ba881fa03bb30d55

diff --git a/dev-ruby/actionpack/actionpack-3.2.22.ebuild 
b/dev-ruby/actionpack/actionpack-3.2.22.ebuild
deleted file mode 100644
index a545bfb..000
--- a/dev-ruby/actionpack/actionpack-3.2.22.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-# The default test task tries to test activerecord with SQLite as well.
-RUBY_FAKEGEM_TASK_TEST="test_action_pack"
-

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/activerecord/

2016-02-07 Thread Hans de Graaff
commit: 2e0f316d33df9a9c215e2e258c71116eb3a7eb18
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:39:01 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:39:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0f316d

dev-ruby/activerecord: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/activerecord/Manifest   |  5 --
 dev-ruby/activerecord/activerecord-3.2.22.ebuild | 69 --
 dev-ruby/activerecord/activerecord-4.1.13.ebuild | 72 ---
 dev-ruby/activerecord/activerecord-4.1.14.ebuild | 72 ---
 dev-ruby/activerecord/activerecord-4.2.4.ebuild  | 74 
 dev-ruby/activerecord/activerecord-4.2.5.ebuild  | 74 
 6 files changed, 366 deletions(-)

diff --git a/dev-ruby/activerecord/Manifest b/dev-ruby/activerecord/Manifest
index e9c9dc0..1b70cb2 100644
--- a/dev-ruby/activerecord/Manifest
+++ b/dev-ruby/activerecord/Manifest
@@ -1,9 +1,4 @@
 DIST rails-3.2.22.1.tgz 3570617 SHA256 
0678ec5677e6f70a20aa398b323a3d926531e1da266734ec90c34e111512b0fc SHA512 
29b9e7aca818ed08111cc6306edfcbf88969ab2cbb0f36b9a189f8a29c2dec966e3a453d7b9ee9fc0cf06f0786aa493839440a2d6fb338b13b801978b08f4656
 WHIRLPOOL 
b797311ab5420c4663b1617e5fabdc30a66619f1b6a16aa68ed96f5e38f4daff89cecc8bf9f3d7a702f17ae7da6bedf128adad2a3120f50a25ff85aff5cb6527
-DIST rails-3.2.22.tgz 3569215 SHA256 
a14fbd69cd1750589cb6f4a79926058595de832dab89372fb479feadc99f0aba SHA512 
7321e5fa12cc3f7d6e7c2284f37c183c9bcbe1c9f067c2be5ebdd10f550b0eff561b20558cf885f30b24951bfa88287b3e0fb421eee14579a88a2bcffeaff3ce
 WHIRLPOOL 
de54798cbcbf9a0c6d66346267cfbb15991478cc6b4982f9e3a3a80db734af6553f9749b18188c4dc5fa82c60c0294312f648a0e4b5bcb46896bfee75be4dbc0
 DIST rails-4.0.13.tgz 3761572 SHA256 
a693a8c5f767d153e765634cecb6356855ca51b6554b3af1a3023a204a51 SHA512 
3f2cca90187f800d1ec57fc6cbc58c1f3213113a94d1dee7d9cfd3dc0264b7f3a9c6cfc6dd95ef2fb3aa7d8ca5d6da50cedecc288ff8ff7e5305dc0309b4365d
 WHIRLPOOL 
a5b3f7f828a88d04b5687b3217b40903192ccea5eca36ca58cbb2baeec7471241fe5529f13688bd1f6396a384cf282c94bfaf54ee1cfafdf5ef400707dee7d01
-DIST rails-4.1.13.tgz 3726822 SHA256 
94112f3398c5ffd5e53ce959969c133b35386ade0a9d845eaead4237a5546335 SHA512 
8fef27cfbe898fc691562d9a6d543816c3e5c08c4c114b01115024e573b6d49568bca13da9d4574cfe0b76cc778c734e4a24def7047c90fb1c6d1c78553bcee3
 WHIRLPOOL 
321e60e7f51026e6c79c9f1cf128b349dbab08ed17d8f20fb034f1317c8498edcdaebf166fa30995abc80c6a4cd691408b3b4046adf11086899cd995e94c7d0a
 DIST rails-4.1.14.1.tgz 3728574 SHA256 
1b094a1d1f242c19d2fad0b4f0708d117fce281162d7550535a79c2919246179 SHA512 
1ffb3d7f1f5b6db34bbae2015c220945fd780e42bc69242fdcadc6bd59b74c32f16cf54e153b9c3c2aa065d20b1231c19c7ebfe8f8d5f52a1048b8e0f1b7782a
 WHIRLPOOL 
31eb9281d9e0b0e0c07807b14d7b1e52b1a08adc612da9c9c272a5eacb6b095d74b80400eb99818d37371963775942b9d85f38c18446d75de996595528fdf84d
-DIST rails-4.1.14.tgz 3727638 SHA256 
c3e8c22e05287f98271dafb7dc512fa25878b65c5bd5d5719216b30e653a3a05 SHA512 
94643cef73c0bb0cb8d30295d155a2dece9b2d9a547f7814dffa5e618bc76b7910cb369ac33538fb7be8efb728ea4dd87f6bdf30d2b7cbea2c401509e6de5b71
 WHIRLPOOL 
4d5bce5a73ecb71f2d4244076295b5ad1a04bc67c7b488bd0145127e26bb7fcc31f4de74307e3ace2756d809c44c7ddbd79411fdad40f5a65e1e79a2a861a67b
-DIST rails-4.2.4.tgz 4166672 SHA256 
cc6618eaa2c640932e803dfac6bbde135fad3a6874dfc4e547712ec9182241d4 SHA512 
7ce9fabdd302ce8fd1077147e6e45926ba12aa4177d2e1b78775a8fb3b80420f09c4076ecf726f410610a38187f2a8abeaff3d2b1de25e8386685db998bd2308
 WHIRLPOOL 
0e7bce539ba3c20f5c7de965af478505d76ebad0fd42498b13cb9a9c576304ad9694dd218bc6debf7a02cb437bebc5f75425c104956d32f4afefd1cc2c020d8d
 DIST rails-4.2.5.1.tgz 4175926 SHA256 
713da4f88244101457b4de5d08007f4b373cb43c3982d72de70bb5c5145afb46 SHA512 
3c74d825f35a71dd80a0e1d3959cc6d9e52da0f2eb43bfb869da22a8117ba4f66df1de183851b7cd9e3c2cc8a0b5a8ae4e6902d3b43afd52ccdd20470b49801d
 WHIRLPOOL 
dfb4f925468cfbadd73fd54eb146e377df8e4d67aa094076dd928c616d6cfddb9084cee2adb220490df0c34627a99b150118bc7827b2ca5f6d0751611993b53f
-DIST rails-4.2.5.tgz 4174680 SHA256 
adda75f10fc4b7eb498ae9a2b04cb92bd69568fc1a9d6ace27cc1ab203af5a2e SHA512 
808d7eaf135f3f6b4b504372615b42e4b7c7f9fa0acdd2c425c9548852d24f143ad3abb38aa95d99212f9198f5a04dda2a6312f3e2d5e9a63173388cb30736e1
 WHIRLPOOL 
f1e8af458b6a922bdb4a214476b145a5e743603ae0ad7b977a8917f9204028cce4da3ee1780118b555924af74319f81d83c42390fc35d010ba881fa03bb30d55

diff --git a/dev-ruby/activerecord/activerecord-3.2.22.ebuild 
b/dev-ruby/activerecord/activerecord-3.2.22.ebuild
deleted file mode 100644
index 68b8c1b..000
--- a/dev-ruby/activerecord/activerecord-3.2.22.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-# this is not null so that the dependencies will actually be filled

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/actionmailer/

2016-02-07 Thread Hans de Graaff
commit: 66598298fe4ac5e99e98a6a5f9faf9a4c8d4b483
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:39:28 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:39:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66598298

dev-ruby/actionmailer: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/actionmailer/Manifest   |  5 ---
 dev-ruby/actionmailer/actionmailer-3.2.22.ebuild | 42 --
 dev-ruby/actionmailer/actionmailer-4.1.13.ebuild | 38 
 dev-ruby/actionmailer/actionmailer-4.1.14.ebuild | 38 
 dev-ruby/actionmailer/actionmailer-4.2.4.ebuild  | 45 
 dev-ruby/actionmailer/actionmailer-4.2.5.ebuild  | 45 
 6 files changed, 213 deletions(-)

diff --git a/dev-ruby/actionmailer/Manifest b/dev-ruby/actionmailer/Manifest
index e9c9dc0..1b70cb2 100644
--- a/dev-ruby/actionmailer/Manifest
+++ b/dev-ruby/actionmailer/Manifest
@@ -1,9 +1,4 @@
 DIST rails-3.2.22.1.tgz 3570617 SHA256 
0678ec5677e6f70a20aa398b323a3d926531e1da266734ec90c34e111512b0fc SHA512 
29b9e7aca818ed08111cc6306edfcbf88969ab2cbb0f36b9a189f8a29c2dec966e3a453d7b9ee9fc0cf06f0786aa493839440a2d6fb338b13b801978b08f4656
 WHIRLPOOL 
b797311ab5420c4663b1617e5fabdc30a66619f1b6a16aa68ed96f5e38f4daff89cecc8bf9f3d7a702f17ae7da6bedf128adad2a3120f50a25ff85aff5cb6527
-DIST rails-3.2.22.tgz 3569215 SHA256 
a14fbd69cd1750589cb6f4a79926058595de832dab89372fb479feadc99f0aba SHA512 
7321e5fa12cc3f7d6e7c2284f37c183c9bcbe1c9f067c2be5ebdd10f550b0eff561b20558cf885f30b24951bfa88287b3e0fb421eee14579a88a2bcffeaff3ce
 WHIRLPOOL 
de54798cbcbf9a0c6d66346267cfbb15991478cc6b4982f9e3a3a80db734af6553f9749b18188c4dc5fa82c60c0294312f648a0e4b5bcb46896bfee75be4dbc0
 DIST rails-4.0.13.tgz 3761572 SHA256 
a693a8c5f767d153e765634cecb6356855ca51b6554b3af1a3023a204a51 SHA512 
3f2cca90187f800d1ec57fc6cbc58c1f3213113a94d1dee7d9cfd3dc0264b7f3a9c6cfc6dd95ef2fb3aa7d8ca5d6da50cedecc288ff8ff7e5305dc0309b4365d
 WHIRLPOOL 
a5b3f7f828a88d04b5687b3217b40903192ccea5eca36ca58cbb2baeec7471241fe5529f13688bd1f6396a384cf282c94bfaf54ee1cfafdf5ef400707dee7d01
-DIST rails-4.1.13.tgz 3726822 SHA256 
94112f3398c5ffd5e53ce959969c133b35386ade0a9d845eaead4237a5546335 SHA512 
8fef27cfbe898fc691562d9a6d543816c3e5c08c4c114b01115024e573b6d49568bca13da9d4574cfe0b76cc778c734e4a24def7047c90fb1c6d1c78553bcee3
 WHIRLPOOL 
321e60e7f51026e6c79c9f1cf128b349dbab08ed17d8f20fb034f1317c8498edcdaebf166fa30995abc80c6a4cd691408b3b4046adf11086899cd995e94c7d0a
 DIST rails-4.1.14.1.tgz 3728574 SHA256 
1b094a1d1f242c19d2fad0b4f0708d117fce281162d7550535a79c2919246179 SHA512 
1ffb3d7f1f5b6db34bbae2015c220945fd780e42bc69242fdcadc6bd59b74c32f16cf54e153b9c3c2aa065d20b1231c19c7ebfe8f8d5f52a1048b8e0f1b7782a
 WHIRLPOOL 
31eb9281d9e0b0e0c07807b14d7b1e52b1a08adc612da9c9c272a5eacb6b095d74b80400eb99818d37371963775942b9d85f38c18446d75de996595528fdf84d
-DIST rails-4.1.14.tgz 3727638 SHA256 
c3e8c22e05287f98271dafb7dc512fa25878b65c5bd5d5719216b30e653a3a05 SHA512 
94643cef73c0bb0cb8d30295d155a2dece9b2d9a547f7814dffa5e618bc76b7910cb369ac33538fb7be8efb728ea4dd87f6bdf30d2b7cbea2c401509e6de5b71
 WHIRLPOOL 
4d5bce5a73ecb71f2d4244076295b5ad1a04bc67c7b488bd0145127e26bb7fcc31f4de74307e3ace2756d809c44c7ddbd79411fdad40f5a65e1e79a2a861a67b
-DIST rails-4.2.4.tgz 4166672 SHA256 
cc6618eaa2c640932e803dfac6bbde135fad3a6874dfc4e547712ec9182241d4 SHA512 
7ce9fabdd302ce8fd1077147e6e45926ba12aa4177d2e1b78775a8fb3b80420f09c4076ecf726f410610a38187f2a8abeaff3d2b1de25e8386685db998bd2308
 WHIRLPOOL 
0e7bce539ba3c20f5c7de965af478505d76ebad0fd42498b13cb9a9c576304ad9694dd218bc6debf7a02cb437bebc5f75425c104956d32f4afefd1cc2c020d8d
 DIST rails-4.2.5.1.tgz 4175926 SHA256 
713da4f88244101457b4de5d08007f4b373cb43c3982d72de70bb5c5145afb46 SHA512 
3c74d825f35a71dd80a0e1d3959cc6d9e52da0f2eb43bfb869da22a8117ba4f66df1de183851b7cd9e3c2cc8a0b5a8ae4e6902d3b43afd52ccdd20470b49801d
 WHIRLPOOL 
dfb4f925468cfbadd73fd54eb146e377df8e4d67aa094076dd928c616d6cfddb9084cee2adb220490df0c34627a99b150118bc7827b2ca5f6d0751611993b53f
-DIST rails-4.2.5.tgz 4174680 SHA256 
adda75f10fc4b7eb498ae9a2b04cb92bd69568fc1a9d6ace27cc1ab203af5a2e SHA512 
808d7eaf135f3f6b4b504372615b42e4b7c7f9fa0acdd2c425c9548852d24f143ad3abb38aa95d99212f9198f5a04dda2a6312f3e2d5e9a63173388cb30736e1
 WHIRLPOOL 
f1e8af458b6a922bdb4a214476b145a5e743603ae0ad7b977a8917f9204028cce4da3ee1780118b555924af74319f81d83c42390fc35d010ba881fa03bb30d55

diff --git a/dev-ruby/actionmailer/actionmailer-3.2.22.ebuild 
b/dev-ruby/actionmailer/actionmailer-3.2.22.ebuild
deleted file mode 100644
index 71b98f9..000
--- a/dev-ruby/actionmailer/actionmailer-3.2.22.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
-

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/activesupport/

2016-02-07 Thread Hans de Graaff
commit: 265bdf2616e91d47b3bddf4246e6a8a152188551
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:42:18 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:42:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=265bdf26

dev-ruby/activesupport: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/activesupport/Manifest|  5 --
 dev-ruby/activesupport/activesupport-3.2.22.ebuild | 60 -
 dev-ruby/activesupport/activesupport-4.1.13.ebuild | 61 --
 dev-ruby/activesupport/activesupport-4.1.14.ebuild | 61 --
 dev-ruby/activesupport/activesupport-4.2.4.ebuild  | 61 --
 dev-ruby/activesupport/activesupport-4.2.5.ebuild  | 61 --
 6 files changed, 309 deletions(-)

diff --git a/dev-ruby/activesupport/Manifest b/dev-ruby/activesupport/Manifest
index e9c9dc0..1b70cb2 100644
--- a/dev-ruby/activesupport/Manifest
+++ b/dev-ruby/activesupport/Manifest
@@ -1,9 +1,4 @@
 DIST rails-3.2.22.1.tgz 3570617 SHA256 
0678ec5677e6f70a20aa398b323a3d926531e1da266734ec90c34e111512b0fc SHA512 
29b9e7aca818ed08111cc6306edfcbf88969ab2cbb0f36b9a189f8a29c2dec966e3a453d7b9ee9fc0cf06f0786aa493839440a2d6fb338b13b801978b08f4656
 WHIRLPOOL 
b797311ab5420c4663b1617e5fabdc30a66619f1b6a16aa68ed96f5e38f4daff89cecc8bf9f3d7a702f17ae7da6bedf128adad2a3120f50a25ff85aff5cb6527
-DIST rails-3.2.22.tgz 3569215 SHA256 
a14fbd69cd1750589cb6f4a79926058595de832dab89372fb479feadc99f0aba SHA512 
7321e5fa12cc3f7d6e7c2284f37c183c9bcbe1c9f067c2be5ebdd10f550b0eff561b20558cf885f30b24951bfa88287b3e0fb421eee14579a88a2bcffeaff3ce
 WHIRLPOOL 
de54798cbcbf9a0c6d66346267cfbb15991478cc6b4982f9e3a3a80db734af6553f9749b18188c4dc5fa82c60c0294312f648a0e4b5bcb46896bfee75be4dbc0
 DIST rails-4.0.13.tgz 3761572 SHA256 
a693a8c5f767d153e765634cecb6356855ca51b6554b3af1a3023a204a51 SHA512 
3f2cca90187f800d1ec57fc6cbc58c1f3213113a94d1dee7d9cfd3dc0264b7f3a9c6cfc6dd95ef2fb3aa7d8ca5d6da50cedecc288ff8ff7e5305dc0309b4365d
 WHIRLPOOL 
a5b3f7f828a88d04b5687b3217b40903192ccea5eca36ca58cbb2baeec7471241fe5529f13688bd1f6396a384cf282c94bfaf54ee1cfafdf5ef400707dee7d01
-DIST rails-4.1.13.tgz 3726822 SHA256 
94112f3398c5ffd5e53ce959969c133b35386ade0a9d845eaead4237a5546335 SHA512 
8fef27cfbe898fc691562d9a6d543816c3e5c08c4c114b01115024e573b6d49568bca13da9d4574cfe0b76cc778c734e4a24def7047c90fb1c6d1c78553bcee3
 WHIRLPOOL 
321e60e7f51026e6c79c9f1cf128b349dbab08ed17d8f20fb034f1317c8498edcdaebf166fa30995abc80c6a4cd691408b3b4046adf11086899cd995e94c7d0a
 DIST rails-4.1.14.1.tgz 3728574 SHA256 
1b094a1d1f242c19d2fad0b4f0708d117fce281162d7550535a79c2919246179 SHA512 
1ffb3d7f1f5b6db34bbae2015c220945fd780e42bc69242fdcadc6bd59b74c32f16cf54e153b9c3c2aa065d20b1231c19c7ebfe8f8d5f52a1048b8e0f1b7782a
 WHIRLPOOL 
31eb9281d9e0b0e0c07807b14d7b1e52b1a08adc612da9c9c272a5eacb6b095d74b80400eb99818d37371963775942b9d85f38c18446d75de996595528fdf84d
-DIST rails-4.1.14.tgz 3727638 SHA256 
c3e8c22e05287f98271dafb7dc512fa25878b65c5bd5d5719216b30e653a3a05 SHA512 
94643cef73c0bb0cb8d30295d155a2dece9b2d9a547f7814dffa5e618bc76b7910cb369ac33538fb7be8efb728ea4dd87f6bdf30d2b7cbea2c401509e6de5b71
 WHIRLPOOL 
4d5bce5a73ecb71f2d4244076295b5ad1a04bc67c7b488bd0145127e26bb7fcc31f4de74307e3ace2756d809c44c7ddbd79411fdad40f5a65e1e79a2a861a67b
-DIST rails-4.2.4.tgz 4166672 SHA256 
cc6618eaa2c640932e803dfac6bbde135fad3a6874dfc4e547712ec9182241d4 SHA512 
7ce9fabdd302ce8fd1077147e6e45926ba12aa4177d2e1b78775a8fb3b80420f09c4076ecf726f410610a38187f2a8abeaff3d2b1de25e8386685db998bd2308
 WHIRLPOOL 
0e7bce539ba3c20f5c7de965af478505d76ebad0fd42498b13cb9a9c576304ad9694dd218bc6debf7a02cb437bebc5f75425c104956d32f4afefd1cc2c020d8d
 DIST rails-4.2.5.1.tgz 4175926 SHA256 
713da4f88244101457b4de5d08007f4b373cb43c3982d72de70bb5c5145afb46 SHA512 
3c74d825f35a71dd80a0e1d3959cc6d9e52da0f2eb43bfb869da22a8117ba4f66df1de183851b7cd9e3c2cc8a0b5a8ae4e6902d3b43afd52ccdd20470b49801d
 WHIRLPOOL 
dfb4f925468cfbadd73fd54eb146e377df8e4d67aa094076dd928c616d6cfddb9084cee2adb220490df0c34627a99b150118bc7827b2ca5f6d0751611993b53f
-DIST rails-4.2.5.tgz 4174680 SHA256 
adda75f10fc4b7eb498ae9a2b04cb92bd69568fc1a9d6ace27cc1ab203af5a2e SHA512 
808d7eaf135f3f6b4b504372615b42e4b7c7f9fa0acdd2c425c9548852d24f143ad3abb38aa95d99212f9198f5a04dda2a6312f3e2d5e9a63173388cb30736e1
 WHIRLPOOL 
f1e8af458b6a922bdb4a214476b145a5e743603ae0ad7b977a8917f9204028cce4da3ee1780118b555924af74319f81d83c42390fc35d010ba881fa03bb30d55

diff --git a/dev-ruby/activesupport/activesupport-3.2.22.ebuild 
b/dev-ruby/activesupport/activesupport-3.2.22.ebuild
deleted file mode 100644
index 1bc9798..000
--- a/dev-ruby/activesupport/activesupport-3.2.22.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rails/

2016-02-07 Thread Hans de Graaff
commit: 32ceaa154d0be03172b5039261b81f04133705cd
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 17:37:43 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 17:37:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32ceaa15

dev-ruby/rails: cleanup for security bug 572946

Package-Manager: portage-2.2.26

 dev-ruby/rails/Manifest|  5 -
 dev-ruby/rails/rails-3.2.22.ebuild | 37 ---
 dev-ruby/rails/rails-4.1.13.ebuild | 44 -
 dev-ruby/rails/rails-4.1.14.ebuild | 44 -
 dev-ruby/rails/rails-4.2.4.ebuild  | 45 --
 dev-ruby/rails/rails-4.2.5.ebuild  | 45 --
 6 files changed, 220 deletions(-)

diff --git a/dev-ruby/rails/Manifest b/dev-ruby/rails/Manifest
index 931e2e8..b41bf8f 100644
--- a/dev-ruby/rails/Manifest
+++ b/dev-ruby/rails/Manifest
@@ -1,9 +1,4 @@
 DIST rails-3.2.22.1.gem 4608 SHA256 
55bc070a05d583ffc0028bfc6b1c5be60e9d5fc7655ebada06c5c83ae38249e9 SHA512 
31129f6d83c3027ae1876729a94d9053409d69ea7f3d9a0775cb9b4ea2a5d72c0aef38b9b2d809d910689708ed8b6e607396b7aaf417d90f3004abf275d11623
 WHIRLPOOL 
5d4805724ad85400c4aa19cf6320dd5118e9c096a28e475e56dc105ebb777218689646a8f632254140a6a745e09709c951434b0d40bffbad16e3b2d0feab3244
-DIST rails-3.2.22.gem 4608 SHA256 
4e6341bbab6d88aa0578034474699c3793448dfbaa09d89f708304591f3b8a21 SHA512 
21c160be3988820520d87160e8918ccce265029753dbb188f0ef6c0a8e6a89697d3eb1e5511aa7e7510953e5f619320272dcbf147ae63352c786dcc6e9167b46
 WHIRLPOOL 
df6da9c66a8301bf5e9a6ef4e6bc108d22fd810b36bdf7d6d5272f8411384334d3d29b6779d54c772085b1ddfa543aed9132675fa9849de3d44cade452b58461
 DIST rails-4.0.13.gem 1550848 SHA256 
d4b3ca8517b394459fd31773c5c6877b4aded8f2c84e6f5422061d231b2af9f6 SHA512 
49cba0e9b06034ce6311f0e76255ed1a95fbd0f0349ac16d6390c730837fd9a5ae6e00e376f51fdeb69f2dde9d6d7a993cfa859d3e22404f5a1a4e19ad0a3af0
 WHIRLPOOL 
f121ea09122b5464c5d2c8ff0e8710be4a5fa846fcf450a52c16a47c67ee9925a7927fe5d38d2e7bfc644f63a9bc1dd73a5adeb64ff8b9e1d07ced8670434c0b
-DIST rails-4.1.13.gem 1437696 SHA256 
d11d1a3ca07f1494f2abb634677f390f897bb5ae4b818e1612aa6a6412837d1b SHA512 
f18a91b829137af3e5487c627bf2b6cb677cdcda511671c42c59732a68f27e2416d671914fcd116f6d95f52ba181e7a07c3a5aea15b54ceeac39b5026a679902
 WHIRLPOOL 
eddd0f8617e8a7201f7a5a4be820bfa440148ad42f369853adc2e0bb34f2a88945f4afa3cb132ae3e81b3fd63a421ff20d742602d8ddc3d107c178560c216936
 DIST rails-4.1.14.1.gem 1437696 SHA256 
bde7704f906e5cf7dd4b098231a6e6471ac1b13ce1ac4940a320144be37f778d SHA512 
cc73e8b91a105ad12b81f5f854096d03e26a356227e0e0d03430b4d2c55aace1d5ea044d5c2e6482249977e6b48c57686ecc8b2cc3f5dfdf1191549a70d90b0e
 WHIRLPOOL 
b930b0a54600ca737886ebc2e855f50d1fc10b485ec4ab77ce62bcaee99463a5fd8f68e55e5fd1ae4c7bba6c14987d7e0708eb07f0e31b69b798f6f0f162d17b
-DIST rails-4.1.14.gem 1437696 SHA256 
b617d83abc53f51a053a73678b6a5bc9357e6ae8348fadcc1461986b3deb59b9 SHA512 
c84c5e829ee2c8e78f68209e92862994e071cb9952c0aa56706c05bff2420575b2de6ec9a9b047bfe969da93055b3b28fd11a21e84626294f3312080462e5982
 WHIRLPOOL 
f63bd51ba77d557e80eb06da58cdd551e3b64d68da30e20cd9625a48f98bd94f15b0287aa911e5b0863fef5331c8df2ab032a3edcbe8e527e1a134250e1399fa
-DIST rails-4.2.4.gem 1475584 SHA256 
1c33dd7c280d1c5dc4235509f774d673bac1d3f2e8c53b1353f677e7578ffc5a SHA512 
72af0371ab30b3d4fb5dc87a116273f8ba188e7f0dcecd1d5162aa25cfa0f2e2b6b8ab2d4494da4d24b4e6ca2eef4b65d002710a722effd3107d6b8a4d4d94b7
 WHIRLPOOL 
bede6cf350880c44f3ada26cf6484019693b02ebe6d27f6520137089655e32d99f4f1f13e5b5e3642feee9ad287ba20595d368f31b14e567cf215d20551b6120
 DIST rails-4.2.5.1.gem 1475584 SHA256 
0bb3795fc6d971522f2681dea730b49be880809012939a8a570bd086b583460e SHA512 
96109852cb559b2548f9d7fd4dbad36eecfbe3620b134be8b50e857c3e255056d3b8130b8e78e45fbae8d3a6e654e9692703268f520bd9d66bc705bf4b242cad
 WHIRLPOOL 
b05b2d51802acb3f92c42dce50e57d937f150e4d479f20554d398b4d461a3acd9cdc779e6f10c4d0898e88ecef9efbfde04fb78327bc9e42166ecce61b847741
-DIST rails-4.2.5.gem 1475584 SHA256 
6248f75d4ecbcaa004166aa2b1484f87b7e956013853e905e49b68f29397b565 SHA512 
62d5290d2aa7e52eb25fa86c7313f1d43c0444b6c8faa6fd6c0fdfa9965f688cd82c1245767c1488ba34e6f8f189bbb2b0927c58da07e79bce063f833873938d
 WHIRLPOOL 
50edde5070f8ca175c15dff39beec6bb4443d6bf8aa1275b3acca1ccbd0e67f83c104224704a4e64321d561ce9407a7e6de950b7a2b8074889bf410f3cb1b73a

diff --git a/dev-ruby/rails/rails-3.2.22.ebuild 
b/dev-ruby/rails/rails-3.2.22.ebuild
deleted file mode 100644
index 10eadc9..000
--- a/dev-ruby/rails/rails-3.2.22.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-RUBY_FAKEGEM_BINWRAP=""
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_TASK_TEST=""
-
-inherit ruby-fakegem versionator
-
-DESCRIPTION="ruby on rails is a web-application and 

[gentoo-commits] repo/gentoo:master commit in: dev-java/bcprov/

2016-02-07 Thread Patrice Clement
commit: 5fcc87627a278b3ae0374a4f28fb71a0fead5450
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Feb  7 19:24:24 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Feb  7 19:25:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fcc8762

dev-java/bcprov: Version bump. Fixes bug 573438.

Package-Manager: portage-2.2.26
Signed-off-by: Patrice Clement  gentoo.org>

 dev-java/bcprov/Manifest   |  1 +
 dev-java/bcprov/bcprov-1.54.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/dev-java/bcprov/Manifest b/dev-java/bcprov/Manifest
index 32e4da0..e46aba2 100644
--- a/dev-java/bcprov/Manifest
+++ b/dev-java/bcprov/Manifest
@@ -2,6 +2,7 @@ DIST bcprov-jdk15on-148.tar.gz 4070349 SHA256 
e3fc3dab563e52939c7fa22f93a051a819
 DIST bcprov-jdk15on-149.tar.gz 4329897 SHA256 
a22ca93539a34bdbce793a0093dd3f7f8c313e318368772806fa5db3f0603ac6 SHA512 
123b2c7063b8a1fe068571d8227269fd77b6d07163aec35dca2219b5a2e0ad970995a74027cc515ecaa6112ccb395fcc4db6fa323f9eadab2c4d6e62991c9143
 WHIRLPOOL 
9c4057cbf11254a7d99d492840b7921dbe296bc5675a5527b917a1b4496c027fbf5db60a555e4abe05f03d528836c6512d4241d4a1a7425750957c3a43680103
 DIST bcprov-jdk15on-150.tar.gz 4629743 SHA256 
468259c9166fbcf87ad284ae46fae45408cb7cfc9c406862ea75d5b8696f4f2a SHA512 
95400c338a65cbb7d1e80c776de41d3d372b4237aee91526a06774c3d4beb735dcfb4c1ed182a12f2ccac8204b9c546863d79eb99723394d48c415fa32b6ee0e
 WHIRLPOOL 
4f0db66b6e7cc4faf7fbd09a9c4ba7618123657d86e4552157d998e5ae8bb21843fe5ebfa8a9e622b1d9697a0e6e9637a55501fefda238c91a0bbd5be7010c38
 DIST bcprov-jdk15on-152.tar.gz 6334971 SHA256 
b798e67553ff77aaaf42bfdf06a2560cd1b550aa6270a7cd3155f6f13534c2b6 SHA512 
df769d2647c1c0b535b1f6922df3f02ed7e13c941f8d954256fddb2ff31d5682924fedf2f2908bc09ebd20058413f40a4c2d62190b63542aa7840b860aeab07c
 WHIRLPOOL 
29475be8ff0ee5bdf8212526510600eec9d1c1613a629ebcadd90a9ec8de27973336a55c3e2cd5b880d6adac5eab4521f3ad1cc3ca3672c840720be8603af2e6
+DIST bcprov-jdk15on-154.tar.gz 6903567 SHA256 
6b8fb02c1bca77472459e81382152da87d96ba468f8dcb876211938910ad7146 SHA512 
3d3bf2a1d174a40941a99d1ac6ac6696e9866964bde0cb23e987e3fbd51e3dca220e16f609c29ef9e761faac670164fa9cccf90e1e0f795c33a3ce80e2783151
 WHIRLPOOL 
d1544690ef586803c53dde940c4a83e64709a5843fc7e53fa62d512dd0e872045e58530a5374c6db1d1deef86373ddeef20d21989a0ade5bfde3d96a142d0c04
 DIST bcprov-jdk16-1.38-sources.jar 1197644 SHA256 
f2faec59d32f01b76f1c675d286f96721f76a7325e492c11aae03c6ed288fe3a SHA512 
e8ab0b6f47b9737f19ee548dfc6cf09087d1b9339bc48b599fac05d0eb3b00d355f203787a84ee3a504eff2dffd707237a0cc5e26c64a672a362b9161077326f
 WHIRLPOOL 
ce3f685669fd31689284d7ad0cc0dbafb496808b6c56d1b6f0a9abb8741585000ad54b18577d608ff4f917dfdd4a25c5332f493d60e90e8b4c27cf1f464fb292
 DIST bcprov-jdk16-1.40-sources.jar 1221202 SHA256 
583d7e045e7022107453d218240afc3db17461ccbd34ace0ec7f54df1ce153c2 SHA512 
ed94e54cd7a53b5219d0eebb1651f93201c177faf26724613a520e045987e74c462e7adde491bda5bd092fd651b9a7abef93bfac2fd6f0765fb7651525c199ce
 WHIRLPOOL 
f387cfe7181d189df08ab2c8c932b777c03cfeb57dac7a95995a1c8a915dc113dd79b8291b3ce3f20f590f9b79a853c7b6113d3eff7bd2c16ec1c5c5d1ffbe0e
 DIST bcprov-jdk16-1.45-sources.jar 1286663 SHA256 
fe4f8a7b78515e69f48145f172f698f5d6f8433ac8388cf97e3791aae021eb87 SHA512 
541b390efafba17c21a25bdf84725fd0f9808555eec9c4db51b0642c348d552417d9ba8d584d54690146f3e72fe3b348ab49f92ca263ea8a7a8f7b27bb7b8e5d
 WHIRLPOOL 
65243c247fd68000368d16446c6bd9079af101faae6d011c4c455c9b1b833ebc7e5484eb899a7b195764e3d00058a33bedb05a8584a217084a583f8f16ef0cc7

diff --git a/dev-java/bcprov/bcprov-1.54.ebuild 
b/dev-java/bcprov/bcprov-1.54.ebuild
new file mode 100644
index 000..b75768b
--- /dev/null
+++ b/dev-java/bcprov/bcprov-1.54.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+JAVA_PKG_IUSE="doc source test"
+
+inherit java-pkg-2 java-pkg-simple
+
+MY_P="${PN}-jdk15on-${PV/./}"
+
+DESCRIPTION="Java cryptography APIs"
+HOMEPAGE="http://www.bouncycastle.org/java.html;
+SRC_URI="http://www.bouncycastle.org/download/${MY_P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="1.54"
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x64-macos"
+
+DEPEND=">=virtual/jdk-1.6
+   app-arch/unzip"
+
+RDEPEND=">=virtual/jre-1.6"
+
+S="${WORKDIR}/${MY_P}"
+
+JAVA_ENCODING="ISO-8859-1"
+
+# Package can't be build with test as bcprov and bcpkix can't be built with 
test.
+RESTRICT="test"
+
+src_unpack() {
+   default
+   cd "${S}" || die
+   unpack ./src.zip
+}
+
+java_prepare() {
+   if ! use test; then
+   # There are too many files to delete so we won't be using 
JAVA_RM_FILES
+   # (it produces a lot of output).
+   local RM_TEST_FILES=()
+   while read -d $'\0' -r file; do
+   RM_TEST_FILES+=("${file}")
+   done < <(find . -name 

[gentoo-commits] repo/gentoo:master commit in: dev-lang/ruby/

2016-02-07 Thread Hans de Graaff
commit: 0cbbf13c21a144ceae18716b4f4647add409d081
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Feb  7 18:04:05 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Feb  7 18:04:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cbbf13c

dev-lang/ruby: fix bug 569974

Fix eselect-ruby dependency to a new enough version that can handle ruby 2.3.

Package-Manager: portage-2.2.26

 dev-lang/ruby/ruby-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/ruby/ruby-2.3.0.ebuild b/dev-lang/ruby/ruby-2.3.0.ebuild
index 8de3d23..385a6f3 100644
--- a/dev-lang/ruby/ruby-2.3.0.ebuild
+++ b/dev-lang/ruby/ruby-2.3.0.ebuild
@@ -48,7 +48,7 @@ RDEPEND="
dev-libs/libyaml
virtual/libffi
sys-libs/zlib
-   >=app-eselect/eselect-ruby-20141227
+   >=app-eselect/eselect-ruby-20151229
!

[gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/

2016-02-07 Thread Dirkjan Ochtman
commit: 964575f8faa45a7feed074617d26461c5bb7e015
Author: Dirkjan Ochtman  gentoo  org>
AuthorDate: Sun Feb  7 18:09:55 2016 +
Commit: Dirkjan Ochtman  gentoo  org>
CommitDate: Sun Feb  7 18:11:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=964575f8

net-p2p/syncthing: initial version in the portage tree

Package-Manager: portage-2.2.26

 net-p2p/syncthing/Manifest |  1 +
 net-p2p/syncthing/metadata.xml | 11 
 net-p2p/syncthing/syncthing-0.12.17.ebuild | 40 ++
 3 files changed, 52 insertions(+)

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
new file mode 100644
index 000..2e98805
--- /dev/null
+++ b/net-p2p/syncthing/Manifest
@@ -0,0 +1 @@
+DIST syncthing-0.12.17.tar.gz 4046320 SHA256 
e9ac76e28423ac9d01c29b560ea6c4c61e881dd706676eb07d66aa5993310c60 SHA512 
9c0e3bc0e23d2ec8ef9c888dc66cdc1aeac07bbffd03d4eae00539215cf0798db83da2b607b6570880bc941a8eac0b07c9b0257ad16546ebf63056a37807186b
 WHIRLPOOL 
055a799cf5d544c11167fa11c1304a3a2978557578052a1392efa19ad363182a310401e3024317a7101859fa83647e79e6cc3559c12e79371a1135a22708d810

diff --git a/net-p2p/syncthing/metadata.xml b/net-p2p/syncthing/metadata.xml
new file mode 100644
index 000..eee05c3
--- /dev/null
+++ b/net-p2p/syncthing/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+d...@gentoo.org
+Dirkjan Ochtman
+  
+  
+syncthing/syncthing
+  
+

diff --git a/net-p2p/syncthing/syncthing-0.12.17.ebuild 
b/net-p2p/syncthing/syncthing-0.12.17.ebuild
new file mode 100644
index 000..605263a
--- /dev/null
+++ b/net-p2p/syncthing/syncthing-0.12.17.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+EGO_PN="github.com/syncthing/syncthing"
+EGIT_COMMIT=v${PV}
+
+inherit golang-vcs-snapshot
+
+DESCRIPTION="Syncthing is an open, trustworthy and decentralized cloud storage 
system"
+HOMEPAGE="http://syncthing.net;
+SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+src_compile() {
+   export GOPATH="${S}:$(get_golibdir_gopath)"
+   cd src/${EGO_PN}
+   go run build.go || die "build failed"
+}
+
+#go test: -race is only supported on amd64 platforms
+#src_test() {
+#  cd src/${EGO_PN}
+#  go run build.go test || die "test failed"
+#}
+
+src_install() {
+   cd src/${EGO_PN}
+   dobin bin/*
+   dodoc README.md AUTHORS  CONTRIBUTING.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/maybe/

2016-02-07 Thread Justin Lecher
commit: 9c92e6b0c1723c0e501fd819ca3702ed42f81ee7
Author: Justin Lecher  gentoo  org>
AuthorDate: Sun Feb  7 18:32:19 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Sun Feb  7 18:32:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c92e6b0

dev-python/maybe: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/maybe/Manifest   | 2 +-
 dev-python/maybe/{maybe-0.2.1.ebuild => maybe-0.3.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/maybe/Manifest b/dev-python/maybe/Manifest
index 475b919..2401d3c 100644
--- a/dev-python/maybe/Manifest
+++ b/dev-python/maybe/Manifest
@@ -1 +1 @@
-DIST maybe-0.2.1.tar.gz 5722 SHA256 
d7286b458ad1eb2546401614871e8b2b5c34cd75b5ab95dde73db928c4eaa74f SHA512 
490f1bc31f9f1cc196c4359292270724ececacde4ba2047b5b709a8d4713fa5a730fb6a39ed2c2f2073827e484992568f0a6630a0078be1bbe473568606f7479
 WHIRLPOOL 
806e2eee1a28468462857a940889d6981c0fb06d271ec59b1f367a2ffadfbbf12350009ec5b4ef3801a05aa50395fc8daf185cee1354d37bbedc55480aa144fc
+DIST maybe-0.3.0.tar.gz 5738 SHA256 
214dc0bbf35e1174103711f068840b998f6f4fcd93d65957b9087906308fb45b SHA512 
512b7b5251c27a64891bd105599b5625331cb21d40dbf7d1b88b56375a5ead484f02f87da6410c01682c180218cae7b0df7a9f92ad7a69a862b333ee36265152
 WHIRLPOOL 
4d6fdbc58b95a9e8ef9dd27404b17d70e84d38ee0e5f905de2dcee2cc33cfcedddca97fef2109141a42111688c0ff5a5ce407d81057b7d7d9c53fd83237a23df

diff --git a/dev-python/maybe/maybe-0.2.1.ebuild 
b/dev-python/maybe/maybe-0.3.0.ebuild
similarity index 100%
rename from dev-python/maybe/maybe-0.2.1.ebuild
rename to dev-python/maybe/maybe-0.3.0.ebuild



[gentoo-commits] proj/portage:repoman commit in: pym/repoman/modules/vcs/cvs/, pym/repoman/modules/vcs/, ...

2016-02-07 Thread Brian Dolbec
commit: f8198d98b7d195b0b42fecf648022fd5bcd4e4a8
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sun Feb  7 18:32:59 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Sun Feb  7 18:32:59 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=f8198d98

repoman: Migrate thick_manifest to the vcs Changes classes

 pym/repoman/actions.py | 53 ++
 pym/repoman/modules/vcs/changes.py |  5 
 pym/repoman/modules/vcs/cvs/changes.py | 19 
 pym/repoman/modules/vcs/svn/changes.py | 42 +++
 4 files changed, 68 insertions(+), 51 deletions(-)

diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py
index 15a0d04..20116db 100644
--- a/pym/repoman/actions.py
+++ b/pym/repoman/actions.py
@@ -131,7 +131,8 @@ class Actions(object):
print()
elif not self.repo_settings.repo_config.thin_manifest:
logging.debug("perform: Calling thick_manifest()")
-   self.thick_manifest(myupdates, myheaders, no_expansion, 
expansion)
+   self.vcs_settings.changes.thick_manifest(myupdates, 
myheaders,
+   no_expansion, expansion)
 
logging.info("myupdates: %s", myupdates)
logging.info("myheaders: %s", myheaders)
@@ -570,56 +571,6 @@ class Actions(object):
pass
 
 
-   def thick_manifest(self, myupdates, myheaders, no_expansion, expansion):
-   if self.vcs_settings.vcs == 'cvs':
-   headerstring = "'\$(Header|Id).*\$'"
-   elif self.vcs_settings.vcs == "svn":
-   svn_keywords = dict((k.lower(), k) for k in [
-   "Rev",
-   "Revision",
-   "LastChangedRevision",
-   "Date",
-   "LastChangedDate",
-   "Author",
-   "LastChangedBy",
-   "URL",
-   "HeadURL",
-   "Id",
-   "Header",
-   ])
-
-   for myfile in myupdates:
-
-   # for CVS, no_expansion contains files that are 
excluded from expansion
-   if self.vcs_settings.vcs == "cvs":
-   if myfile in no_expansion:
-   continue
-
-   # for SVN, expansion contains files that are included 
in expansion
-   elif self.vcs_settings.vcs == "svn":
-   if myfile not in expansion:
-   continue
-
-   # Subversion keywords are case-insensitive
-   # in svn:keywords properties,
-   # but case-sensitive in contents of files.
-   enabled_keywords = []
-   for k in expansion[myfile]:
-   keyword = svn_keywords.get(k.lower())
-   if keyword is not None:
-   enabled_keywords.append(keyword)
-
-   headerstring = "'\$(%s).*\$'" % 
"|".join(enabled_keywords)
-
-   myout = repoman_getstatusoutput(
-   "egrep -q %s %s" % (headerstring, 
portage._shell_quote(myfile)))
-   if myout[0] == 0:
-   myheaders.append(myfile)
-
-   print("%s have headers that will change." % 
green(str(len(myheaders
-   print(
-   "* Files with headers will"
-   " cause the manifests to be changed and committed 
separately.")
 
 
def clear_attic(self, myheaders):

diff --git a/pym/repoman/modules/vcs/changes.py 
b/pym/repoman/modules/vcs/changes.py
index 76ad591..77d7dc1 100644
--- a/pym/repoman/modules/vcs/changes.py
+++ b/pym/repoman/modules/vcs/changes.py
@@ -69,3 +69,8 @@ class ChangesBase(object):
def expansion(self):
'''Override this function as needed'''
return {}
+
+   def thick_manifest(self, myupdates, myheaders, no_expansion, expansion):
+   '''Create a thick manifest'''
+   pass
+

diff --git a/pym/repoman/modules/vcs/cvs/changes.py 
b/pym/repoman/modules/vcs/cvs/changes.py
index 3ef91cc..6accd4a 100644
--- a/pym/repoman/modules/vcs/cvs/changes.py
+++ b/pym/repoman/modules/vcs/cvs/changes.py
@@ -41,3 +41,22 @@ class Changes(ChangesBase):
return self._unadded
self._unadded = portage.cvstree.findunadded(self._tree, 
recursive=1, basedir="./")
   

  1   2   >