From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8702C1581E7 for ; Sat, 27 Apr 2024 06:42:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E0F3E29EF; Sat, 27 Apr 2024 06:42:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68D41E29EF for ; Sat, 27 Apr 2024 06:42:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 51042340DE6 for ; Sat, 27 Apr 2024 06:42:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 972D81713 for ; Sat, 27 Apr 2024 06:42:01 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1714200116.0c3a63163b1e534920a957c63e931508a5115789.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/remarkable/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/remarkable/remarkable-1.9.0_pre20210320-r2.ebuild X-VCS-Directories: app-editors/remarkable/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0c3a63163b1e534920a957c63e931508a5115789 X-VCS-Branch: master Date: Sat, 27 Apr 2024 06:42:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7b8b8930-62d6-425c-a8de-6299e5a0ba49 X-Archives-Hash: 81b270fe74bae6a3d6c8e9e0a8932154 commit: 0c3a63163b1e534920a957c63e931508a5115789 Author: Martin Dummer gmx net> AuthorDate: Fri Apr 26 21:26:09 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 27 06:41:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c3a6316 app-editors/remarkable: drop 1.9.0_pre20210320-r2 Signed-off-by: Martin Dummer gmx.net> Signed-off-by: Michał Górny gentoo.org> .../remarkable-1.9.0_pre20210320-r2.ebuild | 69 ---------------------- 1 file changed, 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 -}