forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-perl/Acme-Damn: Bump to version 0.80.0
- EAPI6 - Redo patch - Parallel Tests Upstream: - Perl 5.18+ Compat fixes Package-Manager: portage-2.3.2
- Loading branch information
1 parent
2a374f8
commit abaab04
Showing
3 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=IBB | ||
DIST_VERSION=0.08 | ||
inherit perl-module | ||
|
||
DESCRIPTION="Module, that 'unblesses' Perl objects" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="test" | ||
|
||
RDEPEND="" | ||
DEPEND="${RDEPEND} | ||
virtual/perl-ExtUtils-MakeMaker | ||
test? ( | ||
dev-perl/Test-Exception | ||
virtual/perl-Test-Simple | ||
) | ||
" | ||
PATCHES=( "${FILESDIR}/${PN}-${DIST_VERSION}-respect-cflags.patch" ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST Acme-Damn-0.06.tar.gz 8635 SHA256 7925c932b9f89d2ca413680af68ed9809e7093e4ecd5bc2bd4147bdaee39ee6f SHA512 f225e5f835ce9b054087008d354278356704694147cf8e1027c0bd2c4a8c118ebbdeac2c97634e4c85cf45d29bf38a92861770c35b8423b6f12a1bc6319ff52d WHIRLPOOL 50b288b6a313505238935b0f58d4885407ad6f0c349696c229ad874e6b67f92f7d00eb3a8ace474e47d1f66c321c881d50009b07478d9994e5ba8795d2a02470 | ||
DIST Acme-Damn-0.08.tar.gz 9241 SHA256 310d2d03ff912dcd42e4d946174099f41fe3a2dd57a497d6bd65baf1759b7e0e SHA512 aaded3d7e3a3cdb69f4640623970c62e9491a389eedc0f91c3473764626c45baf89f87695caf1c703a05ce414a0b51e5deac3552b1d3e17f674d3c757f2fb52e WHIRLPOOL e2b8bf8c23175805df609c657c89d9e67954a72d5f71e45d49bc373b709e05657db09fb75ece501d873d62e08b05232e3ffd166f1ec435cea50ecb5fff1d3e97 |
24 changes: 24 additions & 0 deletions
24
dev-perl/Acme-Damn/files/Acme-Damn-0.08-respect-cflags.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
From eaab413d6a3fc448e70c96ff808e48d61c55356f Mon Sep 17 00:00:00 2001 | ||
From: Kent Fredric <[email protected]> | ||
Date: Tue, 6 Dec 2016 05:15:12 +1300 | ||
Subject: [PATCH] Enable CFLAGS optimizations | ||
|
||
--- | ||
Makefile.PL | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/Makefile.PL b/Makefile.PL | ||
index a26cf1c..4407861 100644 | ||
--- a/Makefile.PL | ||
+++ b/Makefile.PL | ||
@@ -27,6 +27,7 @@ WriteMakefile1( | ||
}, | ||
'LIBS' => [''] , | ||
'DEFINE' => '' , | ||
+ 'OPTIMIZE' => '$(CFLAGS)' , | ||
'INC' => '-I.' | ||
); | ||
|
||
-- | ||
2.11.0.rc2 | ||
|