diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-12-12 22:29:51 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-12-12 22:29:51 +0000 |
commit | 8b8e05b2d2055e7b8e2c9a36220de272b37c0da4 (patch) | |
tree | 4e34e0dc8b0eb829b3e129ecb06ab6549a5037be /dev-perl/File-RsyncP | |
parent | Remove old. (diff) | |
download | gentoo-2-8b8e05b2d2055e7b8e2c9a36220de272b37c0da4.tar.gz gentoo-2-8b8e05b2d2055e7b8e2c9a36220de272b37c0da4.tar.bz2 gentoo-2-8b8e05b2d2055e7b8e2c9a36220de272b37c0da4.zip |
Add patch for parallel make bug 262156
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EBE6A336BE19039C!)
Diffstat (limited to 'dev-perl/File-RsyncP')
-rw-r--r-- | dev-perl/File-RsyncP/ChangeLog | 6 | ||||
-rw-r--r-- | dev-perl/File-RsyncP/File-RsyncP-0.700.0.ebuild | 4 | ||||
-rw-r--r-- | dev-perl/File-RsyncP/files/File-RsyncP-0.700.0-make.patch | 19 |
3 files changed, 26 insertions, 3 deletions
diff --git a/dev-perl/File-RsyncP/ChangeLog b/dev-perl/File-RsyncP/ChangeLog index f1663a02536d..eafa4bbe2b10 100644 --- a/dev-perl/File-RsyncP/ChangeLog +++ b/dev-perl/File-RsyncP/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-perl/File-RsyncP # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/File-RsyncP/ChangeLog,v 1.30 2014/06/27 17:20:27 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/File-RsyncP/ChangeLog,v 1.31 2014/12/12 22:29:51 dilfridge Exp $ + + 12 Dec 2014; Andreas K. Huettel <dilfridge@gentoo.org> + File-RsyncP-0.700.0.ebuild, +files/File-RsyncP-0.700.0-make.patch: + Add patch for parallel make bug 262156 27 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> -File-RsyncP-0.68.ebuild, File-RsyncP-0.700.0.ebuild: diff --git a/dev-perl/File-RsyncP/File-RsyncP-0.700.0.ebuild b/dev-perl/File-RsyncP/File-RsyncP-0.700.0.ebuild index 22d02c9acbf8..fafb43c7e00e 100644 --- a/dev-perl/File-RsyncP/File-RsyncP-0.700.0.ebuild +++ b/dev-perl/File-RsyncP/File-RsyncP-0.700.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/File-RsyncP/File-RsyncP-0.700.0.ebuild,v 1.3 2014/06/27 17:20:27 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/File-RsyncP/File-RsyncP-0.700.0.ebuild,v 1.4 2014/12/12 22:29:51 dilfridge Exp $ EAPI=5 @@ -18,7 +18,7 @@ IUSE="" RDEPEND="net-misc/rsync" -MAKEOPTS+=" -j1" +PATCHES=( "${FILESDIR}/${P}-make.patch" ) src_prepare() { perl-module_src_prepare diff --git a/dev-perl/File-RsyncP/files/File-RsyncP-0.700.0-make.patch b/dev-perl/File-RsyncP/files/File-RsyncP-0.700.0-make.patch new file mode 100644 index 000000000000..adbc10294b38 --- /dev/null +++ b/dev-perl/File-RsyncP/files/File-RsyncP-0.700.0-make.patch @@ -0,0 +1,19 @@ +diff -ur File-RsyncP-0.68-orig/FileList/Makefile.PL File-RsyncP-0.68/FileList/Makefile.PL +--- File-RsyncP-0.68-orig/FileList/Makefile.PL 2006-11-19 06:47:34.000000000 +0100 ++++ File-RsyncP-0.68/FileList/Makefile.PL 2009-03-15 12:25:52.000000000 +0100 +@@ -16,7 +16,14 @@ + snprintf$(OBJ_EXT) + wildmatch$(OBJ_EXT) + ], +- 'depend' => { 'FileList.o' => 'config.h' }, ++ 'depend' => { 'FileList.o' => 'config.h' , ++ 'exclude.o' => 'config.h' , ++ 'flist.o' => 'config.h' , ++ 'hlink.o' => 'config.h' , ++ 'pool_alloc.o' => 'config.h' , ++ 'snprintf.o' => 'config.h' , ++ 'wildmatch.o' => 'config.h' ++ }, + 'clean' => {FILES => "configure.in config.log config.status config.h conftest* confdefs*"}, + ); + |