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.
sci-chemistry/nmrdepaker: Introduce nmrdepaker software
Package-Manager: Portage-2.3.43, Repoman-2.3.10
- Loading branch information
Showing
3 changed files
with
41 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 @@ | ||
DIST nmrdepaker-1.0.tar.gz 2233765 BLAKE2B 9b638a36fc50d7c020d56833b6ca78d7079ad357f42431088c4c0735b7e9ce63a0e6318915ec751b42e6628c0da76b93ca16ffea1ffe6b311480e8d278ce1a1a SHA512 9d1a9048a85f85eacaeeb582c5550345efa673b1f517dad121e2b2e19125f93e71a26f2f8240ea9b8a06489814eb833e7b3653f882a46bad699b01fd1aa4299f |
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,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
</maintainer> | ||
</pkgmetadata> |
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,33 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
DISTUTILS_SINGLE_IMPL="yes" | ||
PYTHON_COMPAT=( python2_7 ) | ||
|
||
inherit desktop distutils-r1 | ||
|
||
DESCRIPTION="Program to perform NMR spectra 'De-Pake-ing' and moment calculation" | ||
HOMEPAGE="https://launchpad.net/nmrdepaker" | ||
SRC_URI="https://launchpad.net/${PN}/${PV}/${PV}/+download/${P}.tar.gz" | ||
|
||
SLOT="0" | ||
LICENSE="GPL-3+" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
>=dev-python/matplotlib-0.98.5[gtk2,${PYTHON_USEDEP}] | ||
>=dev-python/numpy-1.2[${PYTHON_USEDEP}] | ||
>=dev-python/pygtk-2.12:2[${PYTHON_USEDEP}] | ||
" | ||
DEPEND="${RDEPEND}" | ||
|
||
S="${WORKDIR}/nmrdpaker-${PV}" | ||
|
||
src_install() { | ||
distutils-r1_src_install | ||
|
||
newicon lib/data/images/unused/nmrfriend-buddy.svg ${PN}.svg | ||
make_desktop_entry ${PN} | ||
} |