From 7bc75028c8c59750bbf66befac2580f502569f7d Mon Sep 17 00:00:00 2001 From: Vitaly Zdanevich Date: Mon, 27 Mar 2023 03:26:45 +0400 Subject: [PATCH] Add gui-apps/nixnote-bin Signed-off-by: Vitaly Zdanevich --- gui-apps/nixnote-bin/Manifest | 1 + gui-apps/nixnote-bin/metadata.xml | 12 +++++++++ gui-apps/nixnote-bin/nixnote-bin-9999.ebuild | 27 ++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 gui-apps/nixnote-bin/Manifest create mode 100644 gui-apps/nixnote-bin/metadata.xml create mode 100644 gui-apps/nixnote-bin/nixnote-bin-9999.ebuild diff --git a/gui-apps/nixnote-bin/Manifest b/gui-apps/nixnote-bin/Manifest new file mode 100644 index 0000000000..8879f4d265 --- /dev/null +++ b/gui-apps/nixnote-bin/Manifest @@ -0,0 +1 @@ +DIST NixNote2-x86_64.AppImage 54973632 BLAKE2B 4d3e2e92734dc95f27f7240cb940d20a8eb253ccd79210f08407724c012fdbd2dec81916906bddf85ff72cd30997adb6bd9c57c634d2392c1b422109aa4ed2b8 SHA512 821959221aaa9605f854bfaecb29801f3ed386e62c83d76a09accb4899bcdf6f8c3fa55d04a1d045ef56aa96aeea84266050f027d0d155b5ccfb09cc1787c441 diff --git a/gui-apps/nixnote-bin/metadata.xml b/gui-apps/nixnote-bin/metadata.xml new file mode 100644 index 0000000000..59b728cfaa --- /dev/null +++ b/gui-apps/nixnote-bin/metadata.xml @@ -0,0 +1,12 @@ + + + + + Vitaly Zdanevich + zdanevich.vitaly@ya.ru + + + robert7/nixnote2 + https://github.com/robert7/nixnote2/issues + + diff --git a/gui-apps/nixnote-bin/nixnote-bin-9999.ebuild b/gui-apps/nixnote-bin/nixnote-bin-9999.ebuild new file mode 100644 index 0000000000..0bb0bb74d2 --- /dev/null +++ b/gui-apps/nixnote-bin/nixnote-bin-9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Free and open source note taking app, compatible with Evernote sync server" +HOMEPAGE="https://github.com/robert7/nixnote2" + +SRC_URI="https://github.com/robert7/nixnote2/releases/download/continuous-develop/NixNote2-x86_64.AppImage" +KEYWORDS="~amd64" + +LICENSE="GPL-3" +SLOT="0" +IUSE="" +RESTRICT="strip" + +RDEPEND="sys-fs/fuse:0" + +S="${WORKDIR}" + +QA_PREBUILT="*" +S="${WORKDIR}" + +src_install() { + cp "${DISTDIR}/NixNote2-x86_64.AppImage" nixnote-bin || die + dobin nixnote-bin +}