diff options
author | Kent Fredric <kentnl@gentoo.org> | 2017-11-02 04:12:47 +1300 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2017-11-02 07:25:56 +1300 |
commit | ceb056b8050a4c589f2cf249e4247a81d9a8eb91 (patch) | |
tree | 1465c49613a7f189c74ebd80cc6d18a3bfae2cca /dev-perl/Math-Derivative | |
parent | dev-perl/Math-Utils: Add w/ version 1.10.0 (diff) | |
download | gentoo-ceb056b8050a4c589f2cf249e4247a81d9a8eb91.tar.gz gentoo-ceb056b8050a4c589f2cf249e4247a81d9a8eb91.tar.bz2 gentoo-ceb056b8050a4c589f2cf249e4247a81d9a8eb91.zip |
dev-perl/Math-Derivative: Bump to version 1.10.0
Upstream:
- Add export tag :all
- Add forward difference approximation method
- Add seconddx
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'dev-perl/Math-Derivative')
-rw-r--r-- | dev-perl/Math-Derivative/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/Math-Derivative/Math-Derivative-1.10.0.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/dev-perl/Math-Derivative/Manifest b/dev-perl/Math-Derivative/Manifest index 30149af8bd72..7356283c38ef 100644 --- a/dev-perl/Math-Derivative/Manifest +++ b/dev-perl/Math-Derivative/Manifest @@ -1 +1,2 @@ DIST Math-Derivative-0.04.tar.gz 11893 SHA256 9bce9db7d8ee4ab0cd42aa9aff33f0601fef180d534037d45eaa705bffb85bca SHA512 36cc39024300063a34d8df5c896670625a30561bfcd29f13eab57a2ca3f6b9b3c6b8a14675aefcf41c1f17ec4e2e58d77664c28d621fb36f61006681dcd58f96 WHIRLPOOL d0c798ff25fb6962fc0a9f07ab9534820e6cbe44dacba1e111f008ff2fed539bdc608320a0095295e56cc90bcaa8f3e3952e77c6701c56bb966aaed07d01d54b +DIST Math-Derivative-1.01.tar.gz 14413 SHA256 14c0b3fa05dcb74a44a9de6b4b08c3e58e672826b5f8e47535325b64f6ee69e6 SHA512 8fb13bb64b205892f39ba732f864010971cb08eef26987e9ef31e43c2b0eae2758992cbb719d38cbbb0858c0e55067a0d009322e65f31817d713a84d157e7805 WHIRLPOOL f073a101b8779698f55ff36de52da099a06d5060c79191a969a02249b810f86bd1885b9262dbec9f4b481619c1367fc1790d5b30df8e8941fc94e5612685df61 diff --git a/dev-perl/Math-Derivative/Math-Derivative-1.10.0.ebuild b/dev-perl/Math-Derivative/Math-Derivative-1.10.0.ebuild new file mode 100644 index 000000000000..f10b94206139 --- /dev/null +++ b/dev-perl/Math-Derivative/Math-Derivative-1.10.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=JGAMBLE +DIST_VERSION=1.01 +inherit perl-module + +DESCRIPTION="1st and 2nd order differentiation of data" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RDEPEND="" +DEPEND="dev-perl/Module-Build + test? ( + >=dev-perl/Math-Utils-1.10.0 + virtual/perl-Test-Simple + ) +" +src_test() { + perl_rm_files t/manifest.t t/pod.t + perl-module_src_test +} |