Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/pyfa/
Date: Wed, 29 Apr 2020 10:16:05
Message-Id: 1588155339.bc73707999bf978e03b3b19139218ea060d496d7.juippis@gentoo
1 commit: bc73707999bf978e03b3b19139218ea060d496d7
2 Author: Andreas Zuber <a.zuber <AT> gmx <DOT> ch>
3 AuthorDate: Tue Apr 28 08:00:32 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 29 10:15:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc737079
7
8 games-util/pyfa: version bump to 2.20.3
9
10 This also adds support for python 3.7 and 3.8.
11
12 Closes: https://bugs.gentoo.org/719080
13 Package-Manager: Portage-2.3.89, Repoman-2.3.20
14 Signed-off-by: Andreas Zuber <a.zuber <AT> gmx.ch>
15 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
16
17 games-util/pyfa/Manifest | 1 +
18 games-util/pyfa/pyfa-2.20.3.ebuild | 101 +++++++++++++++++++++++++++++++++++++
19 2 files changed, 102 insertions(+)
20
21 diff --git a/games-util/pyfa/Manifest b/games-util/pyfa/Manifest
22 index 7cb29a67471..6593e77bfa3 100644
23 --- a/games-util/pyfa/Manifest
24 +++ b/games-util/pyfa/Manifest
25 @@ -2,3 +2,4 @@ DIST pyfa-2.17.0.tar.gz 12348275 BLAKE2B fd670a6d34760285561ed07e82c3c54eb9a74ca
26 DIST pyfa-2.19.0.tar.gz 11822419 BLAKE2B 7aaa9d8fc7de7ab9fb246bdf1dd61aa4aac6035d37cc6ecf9e32b03e67baada7d3dc765d02a7d9ed75f5933ccd76f92c4ae79c822c0562f8658dd1b52dfdba4d SHA512 5083f125cfd7f5d32e76029a836089cb79c5c6c93397712d37054518ed9bd77092d0c610cecdb1d0afce40753276431cdec72699ffc04088162158b55c04bac8
27 DIST pyfa-2.20.1.tar.gz 11834967 BLAKE2B 6caf4abb5ff543aa0dc4747a853775a03e20fe8fce5f174d791429ad021ecf955895e108127182f1872f23ccad862892a1afa2e22af27aafd198100604993d62 SHA512 6e6e04f9cd6e3dd127d51c666cf88eb700cc783b02d0b31220196925bc64bb1d88ea2c6a36bc45d71ba62cc53074bd509b46edd175f02e7b1fc736af13ce41ef
28 DIST pyfa-2.20.2.tar.gz 11835308 BLAKE2B 3482ba068720ca735a5f794ede38dffda61ff571552c57a268263820b5b9085c6059be64c739d4ce67a9c95a1c4ba44136cb6aaa2ee7454514924e8c2de7e128 SHA512 14066b81ae77e600367255fa9ba079192f79a8d01d0194b894ba616d7a225e58141b9c2b980e99bfdf17403e665d1968e62a805f845c5065f8ed47de7950e44c
29 +DIST pyfa-2.20.3.tar.gz 11835182 BLAKE2B 0a298f565317a4a8894fda64dc01175080bf2d6b3d118168f0015dee5988742ddca4170faa72565e5b08bbb66752668e081b142e8d8d19b5fea019dc874e5306 SHA512 0971da1b3f6db6c8e4a0d5b24c5a7f267bbf10531ea0cf98263e779c86cbea419a783088f37a7f5d2b18b7f498f525d5c80724ebaf2cff1ae1e5290e2fac5704
30
31 diff --git a/games-util/pyfa/pyfa-2.20.3.ebuild b/games-util/pyfa/pyfa-2.20.3.ebuild
32 new file mode 100644
33 index 00000000000..254447e150c
34 --- /dev/null
35 +++ b/games-util/pyfa/pyfa-2.20.3.ebuild
36 @@ -0,0 +1,101 @@
37 +# Copyright 1999-2020 Gentoo Authors
38 +# Distributed under the terms of the GNU General Public License v2
39 +
40 +EAPI="7"
41 +
42 +PYTHON_COMPAT=( python3_{6,7,8} )
43 +PYTHON_REQ_USE="sqlite"
44 +
45 +inherit desktop eutils python-single-r1 xdg-utils
46 +
47 +DESCRIPTION="Python Fitting Assistant - a ship fitting application for EVE Online"
48 +HOMEPAGE="https://github.com/pyfa-org/Pyfa"
49 +
50 +LICENSE="GPL-3+ all-rights-reserved"
51 +SLOT="0"
52 +if [[ ${PV} = 9999 ]]; then
53 + EGIT_REPO_URI="https://github.com/pyfa-org/Pyfa.git"
54 + inherit git-r3
55 +else
56 + SRC_URI="https://github.com/pyfa-org/Pyfa/archive/v${PV}.tar.gz -> ${P}.tar.gz"
57 + KEYWORDS="~amd64 ~x86"
58 + S="${WORKDIR}/Pyfa-${PV}"
59 +fi
60 +
61 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
62 +RESTRICT="mirror bindist"
63 +
64 +DEPEND="
65 + $(python_gen_cond_dep '
66 + >=dev-python/cryptography-2.3[${PYTHON_MULTI_USEDEP}]
67 + >=dev-python/logbook-1.0.0[${PYTHON_MULTI_USEDEP}]
68 + >=dev-python/pyyaml-5.1[${PYTHON_MULTI_USEDEP}]
69 + >=dev-python/sqlalchemy-1.3.0[${PYTHON_MULTI_USEDEP}]
70 + >=dev-python/wxpython-4.0.4[webkit,${PYTHON_MULTI_USEDEP}]
71 + ')
72 + ${PYTHON_DEPS}"
73 +RDEPEND="${DEPEND}
74 + $(python_gen_cond_dep '
75 + >=dev-python/beautifulsoup-4.6.0[${PYTHON_MULTI_USEDEP}]
76 + >=dev-python/markdown2-2.3.0[${PYTHON_MULTI_USEDEP}]
77 + >=dev-python/packaging-16.8[${PYTHON_MULTI_USEDEP}]
78 + dev-python/python-dateutil[${PYTHON_MULTI_USEDEP}]
79 + >=dev-python/requests-2.0.0[${PYTHON_MULTI_USEDEP}]
80 + >=dev-python/roman-2.0.0[${PYTHON_MULTI_USEDEP}]
81 + >=dev-python/matplotlib-3.1.2[wxwidgets,${PYTHON_MULTI_USEDEP}]
82 + dev-python/numpy[${PYTHON_MULTI_USEDEP}]
83 + ')"
84 +BDEPEND="app-arch/zip"
85 +
86 +PATCHES=(
87 + # fix import path in the main script for systemwide installation
88 + "${FILESDIR}/${PN}-2.9.3-import-pyfa.patch"
89 +)
90 +
91 +src_prepare() {
92 + # get rid of CRLF line endings introduced in 1.1.10 so patches work
93 + edos2unix config.py pyfa.py gui/bitmap_loader.py service/settings.py
94 +
95 + default
96 +
97 + # make python recognize pyfa as a package
98 + touch __init__.py || die
99 +
100 + sed -e "s:%%SITEDIR%%:$(python_get_sitedir):" \
101 + -e "s:%%EPREFIX%%:${EPREFIX}:" \
102 + "${FILESDIR}/configforced-1.15.1.py" > configforced.py || die
103 + sed -e "s:%%SITEDIR%%:$(python_get_sitedir):" \
104 + pyfa.py > pyfa || die
105 +}
106 +
107 +src_install() {
108 + python_moduleinto ${PN}
109 + python_domodule eos gui service utils graphs
110 + python_domodule config*.py __init__.py version.yml configforced.py db_update.py
111 + python_doscript pyfa
112 +
113 + insinto /usr/share/${PN}
114 +
115 + einfo "Creating database ..."
116 + python ./db_update.py || die
117 + doins eve.db
118 +
119 + einfo "Compressing images ..."
120 + pushd imgs > /dev/null || die
121 + zip -r imgs.zip * || die "zip failed"
122 + doins imgs.zip
123 + popd > /dev/null || die
124 +
125 + dodoc README.md
126 + doicon -s 32 imgs/gui/pyfa.png
127 + newicon -s 64 imgs/gui/pyfa64.png pyfa.png
128 + domenu "${FILESDIR}/${PN}.desktop"
129 +}
130 +
131 +pkg_postinst() {
132 + xdg_icon_cache_update
133 +}
134 +
135 +pkg_postrm() {
136 + xdg_icon_cache_update
137 +}