public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/notcurses/
Date: Tue,  8 Jun 2021 07:39:28 +0000 (UTC)	[thread overview]
Message-ID: <1623137929.bdd497f5df935e2a60afcd1ecab978fcd8e24557.sam@gentoo> (raw)

commit:     bdd497f5df935e2a60afcd1ecab978fcd8e24557
Author:     nick black <dankamongmen <AT> gmail <DOT> com>
AuthorDate: Sun May 23 09:29:34 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  8 07:38:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdd497f5

dev-cpp/notcurses: add 2.3.1

Signed-off-by: nick black <nickblack <AT> linux.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-cpp/notcurses/Manifest               |  2 ++
 dev-cpp/notcurses/notcurses-2.3.1.ebuild | 50 ++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-cpp/notcurses/Manifest b/dev-cpp/notcurses/Manifest
index 1534de2f89c..4ce90b84601 100644
--- a/dev-cpp/notcurses/Manifest
+++ b/dev-cpp/notcurses/Manifest
@@ -1,2 +1,4 @@
 DIST notcurses-2.2.8.tar.gz 11255362 BLAKE2B d56f48ecfcfc107d696bb1da029afba8c8a29ea6f0d6317ccdd42d895d890c0cc1d46120566c2f60bd554c2a57aa60409276632216608b29469421a1c22cecf2 SHA512 7455ad1dfbeda68a0b2c35ba3bb28eab3bc0be1ca4db12ce0e3662cf12f1e541dec506c9896624f77ef8032ae6b644ee85ac5abf2272f54fb1c9038b33214892
+DIST notcurses-2.3.1.tar.gz 11744925 BLAKE2B f0b64b70aa898f083383150690a00ddee0355dab6208548c43c44fda5ae2ad96ec2ce63035321813b9f1dfc6c18ee29611917d84a118c84ccbbf39c823a50119 SHA512 2faecd40cce48e24af85049eeb2fc319e48d3a5710a72f72fca1804f4275c5c8cf36906a3f8297966452b6d11c4ef7029b713994d8455ef10ea90f258d06e2ce
 DIST notcurses-doc-2.2.8.tar.gz 115654 BLAKE2B c770f81a3ad4071f75e84caaa4370f26e68ced2489586ae857a8e3c2cf998e0d7b5d84b8fd09150ace51898731150e499f648ad2e6d5be442df11c648ba58ccd SHA512 1a2c8931bd4f68dfdd2fa921d06b639d5fa382d826d5c9e0186b4d0160f220f3f32b1eb19f17136c4d452c8afd9f6fff1b4f463a11d847ef9216ddb94b5c8ab8
+DIST notcurses-doc-2.3.1.tar.gz 120206 BLAKE2B f0e82cde6f5f9f6274c07ebb582a74f81b4fbff0340e5f83f5a3d19a6608b3a264ed6eecaff9a5497099ad32328da3c3e894f9157fd073deb560f8c5a58012e7 SHA512 89b18f316b50962e9f0e46cfde07e93f8f581130ce0ba7f19c3f800a7262bc7a30144765f765e0a852f35e6a8fe88805cc19c7e868ed8514a465611fd42aae6f

diff --git a/dev-cpp/notcurses/notcurses-2.3.1.ebuild b/dev-cpp/notcurses/notcurses-2.3.1.ebuild
new file mode 100644
index 00000000000..db8a559116e
--- /dev/null
+++ b/dev-cpp/notcurses/notcurses-2.3.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_ECLASS="cmake"
+inherit cmake-multilib
+
+DESCRIPTION="Blingful TUIs and character graphics"
+HOMEPAGE="https://notcurses.com"
+SRC_URI="https://github.com/dankamongmen/notcurses/archive/v${PV}.tar.gz -> ${P}.tar.gz
+	https://github.com/dankamongmen/notcurses/releases/download/v${PV}/notcurses-doc-${PV}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-libs/libunistring
+	media-video/ffmpeg
+	>=sys-libs/readline-8.0"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DUSE_DOCTEST=OFF
+		-DUSE_MULTIMEDIA=ffmpeg
+		-DUSE_PANDOC=OFF
+		-DUSE_QRCODEGEN=OFF
+		-DUSE_STATIC=OFF
+	)
+	cmake-multilib_src_configure
+}
+
+src_compile() {
+	cmake-multilib_src_compile
+}
+
+src_test() {
+	multilib_src_test
+}
+
+src_install() {
+	cmake-multilib_src_install
+
+	# we use this tortured form lest we try, every time we release a
+	# x.y.1 or x.y.3, to install the source dir as a man page.
+	# exploit the fact that there's a bijection from html<>man.
+	for i in ../*.html ; do
+		doman ../$(basename ${i} .html || die)
+	done
+}


             reply	other threads:[~2021-06-08  7:39 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-08  7:39 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-10-17 22:03 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/notcurses/ Sam James
2022-07-28 14:09 Sam James
2022-02-18  4:57 Sam James
2022-02-18  3:06 Sam James
2021-12-04 12:38 Joonas Niilola
2021-12-04 11:34 Joonas Niilola
2021-11-30  7:27 Joonas Niilola
2021-11-30  7:27 Joonas Niilola
2021-10-20  2:42 Sam James
2021-10-20  2:42 Sam James
2021-09-28  6:17 Joonas Niilola
2021-09-28  6:17 Joonas Niilola
2021-09-04  6:26 Joonas Niilola
2021-09-04  6:26 Joonas Niilola
2021-09-04  6:26 Joonas Niilola
2021-07-31  7:58 Joonas Niilola
2021-07-31  7:58 Joonas Niilola
2021-07-31  7:58 Joonas Niilola
2021-06-25  0:31 Sam James
2021-06-25  0:31 Sam James
2021-06-08 11:08 Joonas Niilola
2021-06-08  7:39 Sam James
2021-06-08  7:39 Sam James
2021-04-29  7:15 Joonas Niilola
2021-04-29  7:15 Joonas Niilola
2021-04-29  7:15 Joonas Niilola
2021-03-21  8:24 Joonas Niilola
2021-03-21  8:08 Joonas Niilola
2021-03-21  8:08 Joonas Niilola

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1623137929.bdd497f5df935e2a60afcd1ecab978fcd8e24557.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox