From 7fd57088f467e7230937cd63923365459c616cea Mon Sep 17 00:00:00 2001 From: chn Date: Wed, 28 Sep 2022 09:56:00 +0800 Subject: [PATCH] app-editors/typora: bump version to 1.4.4 --- app-editors/typora/Manifest | 1 + app-editors/typora/typora-1.4.4.ebuild | 43 ++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 app-editors/typora/typora-1.4.4.ebuild diff --git a/app-editors/typora/Manifest b/app-editors/typora/Manifest index 3d060a957..aa6d35a75 100644 --- a/app-editors/typora/Manifest +++ b/app-editors/typora/Manifest @@ -1,2 +1,3 @@ DIST typora_0.11.18_amd64.deb 70282052 BLAKE2B a41621a76b0b8c40a500728c0bd74a6b279b7f8b515c5e3c818ad9b493469d3925fb530502c434c996a576b70eeed21f0cbf2fd534efb2bfe853b01c6860542a SHA512 8933cb4eab13a37719a3771d14a7a3f5951f6bbce06381ffe37ad5bc3029efed3878723427a4e97b83dbc1d7ccc43b31551b0c336663c843f0e685f8a4e2390e DIST typora_1.3.6_amd64.deb 79893096 BLAKE2B 8dc380a3b97b1c24588cc90eb4eaf7e2a25d26bb6e2715f68576e7d361cfd20c3314e23d8ecb7c6e8db10da17ebc7664a5f23f4c8d5c6202f4f782e74630a707 SHA512 cae9c1ab90da1e40e35f8bc6f28433c75d0cf9cc720142aeedfbaf7199376b4b89d261746945c93c89a62a400208bfeec57d9b83d6716bd42ef167ef3deb9320 +DIST typora_1.4.4_amd64.deb 79762616 BLAKE2B 0f67e8603fc2aeddf9617e73c267026cb8db6637e60d1199222333415aaa1b734a9fb7e0203988cd8c0c966eb7cfa4222f1dd1011ab5a179821f178c8786128e SHA512 b316fb571eb37845ea665ab2a14c7dc6f36192c40f45da7fb8498b01423df897f0c93691d31d35dcc8b682206a37a9d69e85b0a70a2aec409b3056e1e89aee70 diff --git a/app-editors/typora/typora-1.4.4.ebuild b/app-editors/typora/typora-1.4.4.ebuild new file mode 100644 index 000000000..402eebd30 --- /dev/null +++ b/app-editors/typora/typora-1.4.4.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop unpacker + +DESCRIPTION="A truely minimal markdown editor." +HOMEPAGE="https://typora.io" +SRC_URI="https://www.typora.io/linux/typora_${PV}_amd64.deb" + +LICENSE="typora" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RESTRICT="mirror splitdebug" + +DEPEND="" +RDEPEND=" + x11-libs/libXScrnSaver + net-print/cups + ${DEPEND}" +BDEPEND="" + +QA_PREBUILT="*" + +src_unpack() { + unpack_deb typora_${PV}_amd64.deb + S="${WORKDIR}" +} + +src_install() { + mv "${S}/usr" "${D}" + + pushd "${D}/usr/share/doc" > /dev/null || die + mv ${PN} ${P} + popd > /dev/null || die +} + +pkg_postinst() { + update-desktop-database +} -- 2.11.4.GIT