* [gentoo-commits] proj/sci:master commit in: dev-python/PeakUtils/
@ 2015-12-08 15:06 Marius Brehler
0 siblings, 0 replies; 5+ messages in thread
From: Marius Brehler @ 2015-12-08 15:06 UTC (permalink / raw
To: gentoo-commits
commit: 384ab10750a6d3b4b15d41574e1b26f66c058424
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue Dec 8 15:06:11 2015 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Tue Dec 8 15:06:11 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=384ab107
dev-python/PeakUtils: New package, ebuild written by me
Package-Manager: portage-2.2.20.1
dev-python/PeakUtils/ChangeLog | 9 +++++++++
dev-python/PeakUtils/PeakUtils-1.0.1.ebuild | 24 ++++++++++++++++++++++++
dev-python/PeakUtils/metadata.xml | 15 +++++++++++++++
3 files changed, 48 insertions(+)
diff --git a/dev-python/PeakUtils/ChangeLog b/dev-python/PeakUtils/ChangeLog
new file mode 100644
index 0000000..e32d639
--- /dev/null
+++ b/dev-python/PeakUtils/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for dev-python/PeakUtils
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Id$
+
+*PeakUtils-1.0.1 (08 Dec 2015)
+
+ 08 Dec 2015; Marius Brehler <marbre@linux.sungazer.de>
+ +PeakUtils-1.0.1.ebuild, +metadata.xml:
+ dev-python/PeakUtils: New package, ebuild written by me
diff --git a/dev-python/PeakUtils/PeakUtils-1.0.1.ebuild b/dev-python/PeakUtils/PeakUtils-1.0.1.ebuild
new file mode 100644
index 0000000..06cb5aa
--- /dev/null
+++ b/dev-python/PeakUtils/PeakUtils-1.0.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python3_{4,5} )
+
+inherit distutils-r1
+
+MY_PN="pyFFTW"
+
+DESCRIPTION="Peak detection utilities for 1D data"
+HOMEPAGE="https://bitbucket.org/lucashnegri/peakutils"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ >=dev-python/numpy-1.8.0[${PYTHON_USEDEP}]
+ sci-libs/scipy[${PYTHON_USEDEP}]
+ "
+DEPEND="${RDEPEND}"
diff --git a/dev-python/PeakUtils/metadata.xml b/dev-python/PeakUtils/metadata.xml
new file mode 100644
index 0000000..a07f5e4
--- /dev/null
+++ b/dev-python/PeakUtils/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sci</herd>
+ <longdescription>
+ As the name implies, this package provides utilities related to the
+ detection of peaks on 1D data. Includes functions to perform
+ baseline estimation, to find the indexes of the peaks in the data
+ and performing Gaussian fitting or centroid computation to further
+ increase the resolution of the peak detection.
+ </longdescription>
+ <upstream>
+ <remote-id type="pypi">PeakUtils</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/PeakUtils/
@ 2020-01-26 13:25 Benda XU
0 siblings, 0 replies; 5+ messages in thread
From: Benda XU @ 2020-01-26 13:25 UTC (permalink / raw
To: gentoo-commits
commit: 2ba6a2f51c8c1c417eac0aaf8de0544d096df37c
Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 26 12:55:09 2020 +0000
Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
CommitDate: Sun Jan 26 12:55:09 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=2ba6a2f5
dev-python/PeakUtils: drop old and bump to 1.3.3.
Drop python3_{4,5} and bump to EAPI=7.
Bug: https://bugs.gentoo.org/695742
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org>
.../PeakUtils/{PeakUtils-1.0.1.ebuild => PeakUtils-1.3.3.ebuild} | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/PeakUtils/PeakUtils-1.0.1.ebuild b/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
similarity index 84%
rename from dev-python/PeakUtils/PeakUtils-1.0.1.ebuild
rename to dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
index d92ad67eb..7dc244b68 100644
--- a/dev-python/PeakUtils/PeakUtils-1.0.1.ebuild
+++ b/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-PYTHON_COMPAT=( python3_{4,5} )
+EAPI=7
+PYTHON_COMPAT=( python3_6 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/PeakUtils/
@ 2020-09-22 16:14 Aisha Tammy
0 siblings, 0 replies; 5+ messages in thread
From: Aisha Tammy @ 2020-09-22 16:14 UTC (permalink / raw
To: gentoo-commits
commit: b42fb27ddfe0ff5e2ae98567d74ea91f187bd39d
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 22 15:29:05 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 22 16:14:31 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b42fb27d
dev-python/PeakUtils: add python3_{7,8,9}
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/PeakUtils/PeakUtils-1.3.3.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild b/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
index 7dc244b68..39d4ef096 100644
--- a/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
+++ b/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
@@ -2,12 +2,10 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
-MY_PN="pyFFTW"
-
DESCRIPTION="Peak detection utilities for 1D data"
HOMEPAGE="https://bitbucket.org/lucashnegri/peakutils"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
@@ -21,3 +19,5 @@ RDEPEND="
sci-libs/scipy[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/PeakUtils/
@ 2020-09-22 16:27 Aisha Tammy
0 siblings, 0 replies; 5+ messages in thread
From: Aisha Tammy @ 2020-09-22 16:27 UTC (permalink / raw
To: gentoo-commits
commit: 99e2d0a7b15a8f19056427cb59e29d1878f1946e
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 22 16:26:47 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 22 16:26:47 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=99e2d0a7
dev-python/PeakUtils: fix tests by adding pandas
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/PeakUtils/PeakUtils-1.3.3.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild b/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
index 39d4ef096..24bec2a31 100644
--- a/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
+++ b/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
@@ -19,5 +19,10 @@ RDEPEND="
sci-libs/scipy[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
+BDEPEND="
+ test? (
+ dev-python/pandas
+ )
+"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/PeakUtils/
@ 2020-09-24 15:50 Aisha Tammy
0 siblings, 0 replies; 5+ messages in thread
From: Aisha Tammy @ 2020-09-24 15:50 UTC (permalink / raw
To: gentoo-commits
commit: 332717ba1765725d4c9d3f7d158d366b4386b7b8
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Thu Sep 24 15:50:41 2020 +0000
Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Thu Sep 24 15:50:41 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=332717ba
dev-python/PeakUtils: update scipy dep name
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
dev-python/PeakUtils/PeakUtils-1.3.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild b/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
index 24bec2a31..42a73179d 100644
--- a/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
+++ b/dev-python/PeakUtils/PeakUtils-1.3.3.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~amd64"
RDEPEND="
>=dev-python/numpy-1.8.0[${PYTHON_USEDEP}]
- sci-libs/scipy[${PYTHON_USEDEP}]
+ dev-python/scipy[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-09-24 15:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-22 16:27 [gentoo-commits] proj/sci:master commit in: dev-python/PeakUtils/ Aisha Tammy
-- strict thread matches above, loose matches on Subject: below --
2020-09-24 15:50 Aisha Tammy
2020-09-22 16:14 Aisha Tammy
2020-01-26 13:25 Benda XU
2015-12-08 15:06 Marius Brehler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox