diff options
author | Aric Belsito <lluixhi@gmail.com> | 2018-01-30 19:03:08 -0800 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-02-18 18:22:53 +0100 |
commit | 827b3e7e9e4ac0f2878148102e83bf3adb064f27 (patch) | |
tree | a8ffa3b637dfd9a3b5c62575663d8d772b9d160e /app-misc | |
parent | app-misc/openastro: version bump to 1.8. (diff) | |
download | gentoo-827b3e7e9e4ac0f2878148102e83bf3adb064f27.tar.gz gentoo-827b3e7e9e4ac0f2878148102e83bf3adb064f27.tar.bz2 gentoo-827b3e7e9e4ac0f2878148102e83bf3adb064f27.zip |
app-misc/openastro: version bump to 1.1.56.
Now uses gobject-introspection and python 3.5+
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/openastro/Manifest | 1 | ||||
-rw-r--r-- | app-misc/openastro/openastro-1.1.56.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/app-misc/openastro/Manifest b/app-misc/openastro/Manifest index d83a29a4b4a0..81e1b2ebb4c0 100644 --- a/app-misc/openastro/Manifest +++ b/app-misc/openastro/Manifest @@ -1,3 +1,4 @@ DIST openastro.org_1.1.48.orig.tar.gz 205879 BLAKE2B a1550c4afd022408bbef1d44f8ad73370a93e2a8d2f4ff0f43c05269d5865a5cdf10aa487c9e1b62f5367afc771c4a92565e414534bde37612290f2afebdddc6 SHA512 996e503a8dd2504da252ad2b20ac185301e81523629cbcf05fcf37ec4ca3859ef513a194feb2d05bd7c4cbe796bf514afa4eb242b8cd51c65d134b51165f97d3 DIST openastro.org_1.1.49.orig.tar.gz 213256 BLAKE2B c313877c481439d2e7cda6de0442c8205ae824aeb5e7ddf22d7f0fc6eed2171addb4075786479c4efbb3523aba5fd7e05cb49f1754d4771ffa127e17a20304ec SHA512 1028807d2a84850699f47a03ad74a851873b9b448f87169bee7d142e5ca750aafe33313b6181b9ee0ed6ccb66c3a867e86bd56648ebe67f4a7a9e1b914b77cec DIST openastro.org_1.1.50.orig.tar.gz 217959 BLAKE2B 9c1f35178afa63911d83a781771705d0de525710928ff91e25ec509099e44b3933bfa69e6db0506c3f696b00376a220cfba63ac86f59248f07a14dc01cf5e908 SHA512 39004f78c8dd098e2f018147b581608e22718fc844dc5abe5d97124662882d2ca6bd0a49fd4a003284cadfe31ab8c7a9343ecfa4fd990b7b3af0eb9d5ad18fa4 +DIST openastro.org_1.1.56.orig.tar.gz 212271 BLAKE2B d0252ae7f3c4c4f255ab1e402f3491b2b61e295f2d2064bd6a25ba07424526cbba01f2fe9f255eced0037b4d05edd1b0cde2e0fdae5c0fd7849652d5f8bfb1c7 SHA512 0446575bde71ca5bc88177bf1d5b8088cd1bb8e29ecfbd83ff15ebc4da4f07534c987f8a00b555a0af85c613e5d6bd2cec60898b586110c2230570446e4b7f2d diff --git a/app-misc/openastro/openastro-1.1.56.ebuild b/app-misc/openastro/openastro-1.1.56.ebuild new file mode 100644 index 000000000000..1a0a8770f703 --- /dev/null +++ b/app-misc/openastro/openastro-1.1.56.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_5 python3_6 ) + +inherit distutils-r1 + +MY_PN=${PN}.org + +DESCRIPTION="A fully-featured Open Source Astrology Program" +HOMEPAGE="http://openastro.org" +SRC_URI="http://ppa.launchpad.net/pellesimon/ubuntu/pool/main/o/${MY_PN}/${MY_PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="jpeg png" + +DEPEND=" + app-misc/openastro-data[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/pycairo[svg(+),${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/pyswisseph[${PYTHON_USEDEP}] + gnome-base/librsvg:2[introspection] + x11-libs/gtk+:3[introspection]" +RDEPEND="${DEPEND} + jpeg? ( media-gfx/imagemagick[jpeg,svg] ) + png? ( media-gfx/imagemagick[png,svg] )" + +S=${WORKDIR}/${MY_PN}-${PV} |