Merge updates from master

This commit is contained in:
Repository mirror & CI
2020-12-19 20:05:03 +00:00
2 changed files with 72 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST komikku-0.12.0.tar.gz 769028 BLAKE2B f2304f2faff4df5ecb0d45ba51bed35093a4e2eb539603060da279d1fce14753f85fa3262e971f3dec0e17ea65d17560f92ad84510f1a0519ab9a7f443e59c92 SHA512 ba9af4c5eff5b9814e8262e8e325ba2d64cbcc73faa53133fdfc839b0e1b558538c08acf26c981cf417a313f5d36c981afb3b9cd5c7a57f899fa774aa51f138c
DIST komikku-0.15.0.tar.gz 1393312 BLAKE2B a9eba44119226c1e2de4403432cdf35758e41919a763e669592616ced82a530319b531dfa97844b14b189e75df84a16d3748b294dac72aefc1546d87f3c689bb SHA512 a819a95b8726929b78837ea0bedd12860ce30aa01616a54bab71efbc5216bd135cd96c717aa1a629ea4e9c29a176307039c22244ffee205e25db28ce0ddf08b4
DIST komikku-0.24.0.tar.gz 1585185 BLAKE2B 5d41162c9cfb1ecdc5127d3dd71789ef6e9688c2ca0eb201964362eb8d8c74b0b85ecd05841eb70834cebefcabc269f1c0659944d9e47447055a9a2bc0a23373 SHA512 aaa98f6e4e736ca8185c734885f3b9ae741f5656d090ae9647c7c4eb0815f28801907044b2107df4a5d1d05a1a85c738c1220aa4434f8c7529d1f70644d82666

View File

@@ -0,0 +1,71 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PN="Komikku"
MY_P="${MY_PN}-${PV}"
PYTHON_COMPAT=( python3_{7,8} )
inherit python-single-r1 meson gnome2-utils xdg
DESCRIPTION="An online/offline manga reader for GNOME"
HOMEPAGE="https://gitlab.com/valos/Komikku"
SRC_URI="https://gitlab.com/valos/${MY_PN}/-/archive/v${PV}/${MY_PN}-v${PV}.tar.gz -> ${P}.tar.gz"
RESTRICT="test"
KEYWORDS="~amd64"
LICENSE="GPL-3"
SLOT="0"
DEPEND="
>=gui-libs/libhandy-1.0.2
>=x11-libs/gtk+-3.24.10
$(python_gen_cond_dep '
dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
dev-python/cloudscraper[${PYTHON_USEDEP}]
dev-python/dateparser[${PYTHON_USEDEP}]
dev-python/keyring[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pure-protobuf[${PYTHON_USEDEP}]
dev-python/python-magic[${PYTHON_USEDEP}]
dev-python/unidecode[${PYTHON_USEDEP}]
')
"
RDEPEND="
${DEPEND}
"
S="${WORKDIR}/${MY_PN}-v${PV}"
pkg_setup() {
python-single-r1_pkg_setup
}
src_install() {
meson_src_install
python_optimize
# Dirty hack (python_doscript doesn't work)
echo "#!/usr/bin/${EPYTHON}
$(cat ${D}/usr/bin/${PN})" > "${D}/usr/bin/${PN}"
}
pkg_preinst() {
gnome2_schemas_savelist
xdg_pkg_preinst
}
pkg_postinst() {
gnome2_gconf_install
gnome2_schemas_update
xdg_pkg_postinst
}
pkg_postrm() {
gnome2_gconf_uninstall
gnome2_schemas_update
xdg_pkg_postrm
}