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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B354A13835A for ; Tue, 4 Aug 2020 14:37:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1E49E0BCB; Tue, 4 Aug 2020 14:37:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92414E0BCB for ; Tue, 4 Aug 2020 14:37:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9922134F215 for ; Tue, 4 Aug 2020 14:37:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DA3E304 for ; Tue, 4 Aug 2020 14:37:16 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1596551791.20a39376e55a9a9778e391d9b050c3b9acea087f.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: app-editors/femto/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: app-editors/femto/Manifest app-editors/femto/femto-2.10_pre20191107.ebuild app-editors/femto/metadata.xml X-VCS-Directories: app-editors/femto/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 20a39376e55a9a9778e391d9b050c3b9acea087f X-VCS-Branch: master Date: Tue, 4 Aug 2020 14:37:16 +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: ad7515aa-4289-4540-8dd3-256323f74010 X-Archives-Hash: 6c5f751b17cb2b7babfc84ed52472701 commit: 20a39376e55a9a9778e391d9b050c3b9acea087f Author: Ulrich Müller gentoo org> AuthorDate: Tue Aug 4 14:36:31 2020 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Aug 4 14:36:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=20a39376 app-editors/femto: Initial import. Ebuild contributed by me. Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Ulrich Müller gentoo.org> app-editors/femto/Manifest | 1 + app-editors/femto/femto-2.10_pre20191107.ebuild | 34 +++++++++++++++++++++++++ app-editors/femto/metadata.xml | 11 ++++++++ 3 files changed, 46 insertions(+) diff --git a/app-editors/femto/Manifest b/app-editors/femto/Manifest new file mode 100644 index 0000000..32c74a9 --- /dev/null +++ b/app-editors/femto/Manifest @@ -0,0 +1 @@ +DIST femto-2.10_pre20191107.tar.gz 578713 BLAKE2B 18951dc30c23ca3ae89e07af60a284f2d47d560b4ccd9076b86df834916f2148885b00d82da54a16f07444fd4121c428c9161a7cd445afbb9669f6cc93e0fb8b SHA512 6364ed29d8b98904dab42a0ebb7e12442ae095fafbb6ba2265f4909fd91d5f0e47950e04a2e2775020e45aab69c88cb5927b62883417e36bac0f94dea6441411 diff --git a/app-editors/femto/femto-2.10_pre20191107.ebuild b/app-editors/femto/femto-2.10_pre20191107.ebuild new file mode 100644 index 0000000..b2086fa --- /dev/null +++ b/app-editors/femto/femto-2.10_pre20191107.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +COMMIT="282ca3c04dba54f180021388102c2e319300cd07" +DESCRIPTION="Extended version of Atto Emacs with a Tiny Lisp extension language" +HOMEPAGE="https://github.com/hughbarney/femto" +SRC_URI="https://github.com/hughbarney/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-libs/ncurses:0=" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-${COMMIT}" + +src_compile() { + emake CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + LD="$(tc-getCC)" \ + LDFLAGS="${LDFLAGS} -o" \ + LIBS="$("$(tc-getPKG_CONFIG)" --libs ncursesw)" +} + +src_install() { + dobin femto + dodoc README*.md CHANGE.LOG.md docs/*.txt docs/hltest.c + dodoc -r examples +} diff --git a/app-editors/femto/metadata.xml b/app-editors/femto/metadata.xml new file mode 100644 index 0000000..45aec74 --- /dev/null +++ b/app-editors/femto/metadata.xml @@ -0,0 +1,11 @@ + + + + + emacs@gentoo.org + Gentoo Emacs project + + + hughbarney/femto + +