diff options
author | Martin Dummer <martin.dummer@gmx.net> | 2024-04-26 23:26:09 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-04-27 08:41:56 +0200 |
commit | 0c3a63163b1e534920a957c63e931508a5115789 (patch) | |
tree | 86fcf2b97d83b710ca608e41a531626356a7ee4d /app-editors | |
parent | app-editors/emacs: Remove -flto from CFLAGS (diff) | |
download | gentoo-0c3a63163b1e534920a957c63e931508a5115789.tar.gz gentoo-0c3a63163b1e534920a957c63e931508a5115789.tar.bz2 gentoo-0c3a63163b1e534920a957c63e931508a5115789.zip |
app-editors/remarkable: drop 1.9.0_pre20210320-r2
Signed-off-by: Martin Dummer <martin.dummer@gmx.net>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/remarkable/remarkable-1.9.0_pre20210320-r2.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/app-editors/remarkable/remarkable-1.9.0_pre20210320-r2.ebuild b/app-editors/remarkable/remarkable-1.9.0_pre20210320-r2.ebuild deleted file mode 100644 index c3b373f0dc21..000000000000 --- a/app-editors/remarkable/remarkable-1.9.0_pre20210320-r2.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit desktop gnome2-utils python-single-r1 readme.gentoo-r1 - -DESCRIPTION="Fully featured markdown editor, supports github markdown dialect" -HOMEPAGE="https://remarkableapp.github.io/ https://github.com/jamiemcg/remarkable" -GIT_COMMIT="7b0b3dacef270a00c28e8852a88d74f72a3544d7" -SRC_URI="https://github.com/jamiemcg/remarkable/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/Remarkable-${GIT_COMMIT}" - -LICENSE="BSD-2 GPL-2+ LGPL-2.1+ MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND=" - ${PYTHON_DEPS} - net-libs/webkit-gtk:4.1[introspection] - x11-libs/gtk+:3[introspection] - x11-libs/gtksourceview:3.0[introspection] - $(python_gen_cond_dep ' - dev-python/beautifulsoup4[${PYTHON_USEDEP}] - dev-python/pycairo[${PYTHON_USEDEP}] - dev-python/pygobject[${PYTHON_USEDEP}] - dev-python/markdown[${PYTHON_USEDEP}] - ')" -RDEPEND="${DEPEND}" -PATCHES=( - "${FILESDIR}"/${P}-disable-spellcheck.patch - "${FILESDIR}"/webkit-version.patch -) - -src_prepare() { - default - sed -i -e "s|import styles|from remarkable import styles|" \ - -e "s|from findBar|from remarkable.findBar|" \ - remarkable/RemarkableWindow.py || die -} - -src_install() { - default - - python_domodule markdown pdfkit remarkable remarkable_lib - python_doscript bin/remarkable - doicon data/ui/remarkable.png - domenu ${PN}.desktop - - insinto /usr/share/${PN} - doins -r data/ui - doins -r data/media - - insinto /usr/share/glib-2.0/schemas - doins data/glib-2.0/schemas/* - - readme.gentoo_create_doc -} - -pkg_postinst() { - gnome2_schemas_update - readme.gentoo_print_elog -} - -pkg_postrm() { - gnome2_schemas_update -} |