Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/PeakUtils/
Date: Tue, 08 Dec 2015 15:06:33
Message-Id: 1449587171.384ab10750a6d3b4b15d41574e1b26f66c058424.marbre@gentoo
1 commit: 384ab10750a6d3b4b15d41574e1b26f66c058424
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Tue Dec 8 15:06:11 2015 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Tue Dec 8 15:06:11 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=384ab107
7
8 dev-python/PeakUtils: New package, ebuild written by me
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-python/PeakUtils/ChangeLog | 9 +++++++++
13 dev-python/PeakUtils/PeakUtils-1.0.1.ebuild | 24 ++++++++++++++++++++++++
14 dev-python/PeakUtils/metadata.xml | 15 +++++++++++++++
15 3 files changed, 48 insertions(+)
16
17 diff --git a/dev-python/PeakUtils/ChangeLog b/dev-python/PeakUtils/ChangeLog
18 new file mode 100644
19 index 0000000..e32d639
20 --- /dev/null
21 +++ b/dev-python/PeakUtils/ChangeLog
22 @@ -0,0 +1,9 @@
23 +# ChangeLog for dev-python/PeakUtils
24 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
25 +# $Id$
26 +
27 +*PeakUtils-1.0.1 (08 Dec 2015)
28 +
29 + 08 Dec 2015; Marius Brehler <marbre@××××××××××××××.de>
30 + +PeakUtils-1.0.1.ebuild, +metadata.xml:
31 + dev-python/PeakUtils: New package, ebuild written by me
32
33 diff --git a/dev-python/PeakUtils/PeakUtils-1.0.1.ebuild b/dev-python/PeakUtils/PeakUtils-1.0.1.ebuild
34 new file mode 100644
35 index 0000000..06cb5aa
36 --- /dev/null
37 +++ b/dev-python/PeakUtils/PeakUtils-1.0.1.ebuild
38 @@ -0,0 +1,24 @@
39 +# Copyright 1999-2015 Gentoo Foundation
40 +# Distributed under the terms of the GNU General Public License v2
41 +# $Id$
42 +
43 +EAPI=5
44 +PYTHON_COMPAT=( python3_{4,5} )
45 +
46 +inherit distutils-r1
47 +
48 +MY_PN="pyFFTW"
49 +
50 +DESCRIPTION="Peak detection utilities for 1D data"
51 +HOMEPAGE="https://bitbucket.org/lucashnegri/peakutils"
52 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
53 +
54 +LICENSE="MIT"
55 +SLOT="0"
56 +KEYWORDS="~amd64"
57 +
58 +RDEPEND="
59 + >=dev-python/numpy-1.8.0[${PYTHON_USEDEP}]
60 + sci-libs/scipy[${PYTHON_USEDEP}]
61 + "
62 +DEPEND="${RDEPEND}"
63
64 diff --git a/dev-python/PeakUtils/metadata.xml b/dev-python/PeakUtils/metadata.xml
65 new file mode 100644
66 index 0000000..a07f5e4
67 --- /dev/null
68 +++ b/dev-python/PeakUtils/metadata.xml
69 @@ -0,0 +1,15 @@
70 +<?xml version="1.0" encoding="UTF-8"?>
71 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
72 +<pkgmetadata>
73 + <herd>sci</herd>
74 + <longdescription>
75 + As the name implies, this package provides utilities related to the
76 + detection of peaks on 1D data. Includes functions to perform
77 + baseline estimation, to find the indexes of the peaks in the data
78 + and performing Gaussian fitting or centroid computation to further
79 + increase the resolution of the peak detection.
80 + </longdescription>
81 + <upstream>
82 + <remote-id type="pypi">PeakUtils</remote-id>
83 + </upstream>
84 +</pkgmetadata>