public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrey Grozin" <grozin@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/veusz/
Date: Sat, 31 Dec 2016 06:08:53 +0000 (UTC)	[thread overview]
Message-ID: <1483164508.abd011cff38562c0eca300426f12721c5b0b00ba.grozin@gentoo> (raw)

commit:     abd011cff38562c0eca300426f12721c5b0b00ba
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 06:07:26 2016 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 06:08:28 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abd011cf

sci-visualization/veusz: bump to 1.25.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sci-visualization/veusz/Manifest            |  1 +
 sci-visualization/veusz/veusz-1.25.1.ebuild | 77 +++++++++++++++++++++++++++++
 2 files changed, 78 insertions(+)

diff --git a/sci-visualization/veusz/Manifest b/sci-visualization/veusz/Manifest
index 9b35829..6830ee8 100644
--- a/sci-visualization/veusz/Manifest
+++ b/sci-visualization/veusz/Manifest
@@ -1,2 +1,3 @@
 DIST veusz-1.11.tar.gz 1579404 SHA256 7ded2b8788f7420ea76dd499a485473fddce1f2587e9c93e453743b194d08e94 SHA512 a22138beeef38093c9ec003731dfb1282aef93ca3d664cc5c2bd42beefc1a0450910622d0c9484b8ca406330ecd49253a5328336eac9846a2937f981844ef901 WHIRLPOOL 942428fcb36196ba0bb401670b990b24a3b4e2aa3648d23a5fad24be6d5adeef3e3d1e95bda0a969926eb466219e2089342b6fc8e7367e6bfbe0b2056b45edda
 DIST veusz-1.24.tar.gz 1856099 SHA256 850240586ad8a97cc31fb2f2caaa6211ba3acf5fb594d8f336b59cf3977b0559 SHA512 a7530c6324d117c5d09e22b6b41c87e4b4e619595cc7487bdb2f2a1a15ffee4c5c822168444f1db7f0c477e81d486510ac1d719480c1aa15983216ea38af0e34 WHIRLPOOL a9ea78e6667cd983efd5a3fa92ecdf6b5f74db99df8f53b89630c01cf651bc1bedf77e6e7675ea4cbde08c0de94025e82768c0071bd570c830bf7a44d3e62137
+DIST veusz-1.25.1.tar.gz 1883416 SHA256 d268df3f92404c0a045a124265f57ebc453069b09729bce8e265401993d56e37 SHA512 0820d2a2d30dd525656b4aad4d39eef1d24c7b98fd93d263974ba2dfb13e4c0d3914f4cb94b016aa1780f20f653df10ce5bf5ee59e9532f26471947565f0a560 WHIRLPOOL 4a03aa40ec8f7ffe187b345be1861818f483cb11036af18d19d3caefa7d98b60dd9de9b4d83ffffb7cc65e369b1269d22fd5c6820b52fcbedce9eccb58103d31

diff --git a/sci-visualization/veusz/veusz-1.25.1.ebuild b/sci-visualization/veusz/veusz-1.25.1.ebuild
new file mode 100644
index 00000000..be17bdd
--- /dev/null
+++ b/sci-visualization/veusz/veusz-1.25.1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
+
+inherit eutils fdo-mime distutils-r1 virtualx
+
+DESCRIPTION="Qt scientific plotting package with good Postscript output"
+HOMEPAGE="http://home.gna.org/veusz/"
+SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="dbus doc emf fits hdf5 minuit vo"
+
+CDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	>=dev-python/PyQt4-4.11.4[compat,X,svg,${PYTHON_USEDEP}]"
+RDEPEND="${CDEPEND}
+	dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
+	emf? ( dev-python/pyemf[$(python_gen_usedep 'python2*')] )
+	fits? ( dev-python/astropy[${PYTHON_USEDEP}] )
+	hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )
+	minuit? ( dev-python/pyminuit[${PYTHON_USEDEP}] )
+	vo? (
+		dev-python/astropy[${PYTHON_USEDEP}]
+		dev-python/sampy[$(python_gen_usedep 'python2*')]
+	)"
+DEPEND="${CDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	dev-python/sip[${PYTHON_USEDEP}]
+	"
+
+python_test() {
+	distutils_install_for_testing
+	cd tests || die
+	VIRTUALX_COMMAND="${EPYTHON}" \
+		VEUSZ_RESOURCE_DIR="${S}" \
+		virtualmake runselftest.py
+}
+
+python_install() {
+	distutils-r1_python_install
+	# symlink the license, bug #341653
+	rm "${D}/$(python_get_sitedir)"/${PN}/{COPYING,AUTHORS,ChangeLog} || die
+	mkdir -p "${D}/$(python_get_sitedir)" || die
+	cat >> "${D}/$(python_get_sitedir)"/${PN}/COPYING <<- EOF
+	Please visit
+
+	https://www.gnu.org/licenses/gpl-2.0.html
+
+	for the full license text.
+	EOF
+}
+
+python_install_all() {
+	distutils-r1_python_install_all
+	use doc && dodoc Documents/manual.pdf && \
+		dohtml -r Documents/{manimages,manual.html}
+
+	doicon icons/veusz.png
+	domenu "${FILESDIR}"/veusz.desktop
+	insinto /usr/share/mime/packages
+	doins "${FILESDIR}"/veusz.xml
+}
+
+pkg_postinst() {
+	fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+	fdo-mime_desktop_database_update
+}


             reply	other threads:[~2016-12-31  6:08 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-31  6:08 Andrey Grozin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-04-18  9:54 [gentoo-commits] repo/gentoo:master commit in: sci-visualization/veusz/ Andrey Grozin
2024-04-18  9:40 Andrey Grozin
2023-04-12 15:18 Andrey Grozin
2023-02-16  6:35 Andrey Grozin
2023-02-16  6:34 Andrey Grozin
2022-10-06 10:08 Andrew Ammerlaan
2021-10-06  8:33 Jakov Smolić
2021-06-02  7:38 Andrew Ammerlaan
2021-05-06 10:43 Andrey Grozin
2021-01-08  0:00 Andreas Sturmlechner
2021-01-01  1:56 Michał Górny
2020-10-14 10:43 Alexey Shvetsov
2020-03-17 15:17 Andrey Grozin
2020-02-09 10:09 Andrey Grozin
2019-12-04 17:15 Michał Górny
2019-11-10 15:27 Michał Górny
2019-11-10 10:34 Andrey Grozin
2018-08-08 13:23 Andrey Grozin
2018-06-13  8:52 Andrey Grozin
2018-04-22 20:51 Andrey Grozin
2018-01-14 16:09 Andreas Sturmlechner
2018-01-04 15:46 Andrey Grozin
2017-07-26 15:14 Andrey Grozin
2017-03-18  7:33 Michał Górny
2017-01-11 16:17 Agostino Sarubbo
2017-01-01 14:20 Michael Palimaka
2016-07-31 15:55 David Seifert
2016-06-09 20:01 Sebastien Fabbro
2016-05-08 11:19 Andrey Grozin
2016-03-04 13:33 Andrey Grozin
2016-03-02  7:44 Andrey Grozin
2015-11-23 10:05 Justin Lecher
2015-10-22  8:32 Justin Lecher
2015-10-22  8:32 Justin Lecher
2015-10-22  8:32 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1483164508.abd011cff38562c0eca300426f12721c5b0b00ba.grozin@gentoo \
    --to=grozin@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox