From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/notcurses/
Date: Mon, 17 Oct 2022 22:03:00 +0000 (UTC) [thread overview]
Message-ID: <1666044069.c075797d89f3bf6c2ddbbc681772e346c0ab44c5.sam@gentoo> (raw)
commit: c075797d89f3bf6c2ddbbc681772e346c0ab44c5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 17 22:01:09 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 17 22:01:09 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c075797d
dev-cpp/notcurses: add 3.0.8
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/notcurses/Manifest | 2 ++
dev-cpp/notcurses/notcurses-3.0.8.ebuild | 55 ++++++++++++++++++++++++++++++++
2 files changed, 57 insertions(+)
diff --git a/dev-cpp/notcurses/Manifest b/dev-cpp/notcurses/Manifest
index 7a9da35027f2..cf590785540d 100644
--- a/dev-cpp/notcurses/Manifest
+++ b/dev-cpp/notcurses/Manifest
@@ -1,2 +1,4 @@
DIST notcurses-3.0.5.tar.gz 10135637 BLAKE2B a0ce682dca69de15eb17b153a96e7159ae2ff00f36694dbd72caa6fe0938bf52a5a1e1319ca8f3f011c56fb51fcb23e1b029b6b3307153f8c8768a58fd150aa8 SHA512 81aef639afc78225c4eb81f5576b773a5714476f09062f5ff290c10d4ab6ad3d67646c836556a0404f638684bfc3774897f75408033f447a6a14529c5f9f04b6
+DIST notcurses-3.0.8.tar.gz 10146073 BLAKE2B 82540f37bbb27858692df5cf081f7ebbfebdf3c6024c4967d7402c86bbba4caeb8ff9ab4449c51c83b1a971c92af5dee1c53648ede80d8925c500398513f89ca SHA512 ed019daea4cc462043876d61c7798c7aa6a39e70671158388c8a108426172cefd7fd3dbac90d1a0eee1e26c9c1a7b16c98d49bd8be02fd39650dbdda67e545bb
DIST notcurses-doc-3.0.5.tar.gz 148376 BLAKE2B d899a21e40b5c39ee455326c607301a73fbe63f7e5336323397441bdb127324b50c444de578de08752a735b38476549c54b3902a0f4675722db6667ecd383195 SHA512 88537f912b9044337542d0c2dfa3777f5837a6a9fdbbe9ba2152c2e2874fca1c54a73e9f6459b9bd78784f4b3042845e9dc3ef7018cf9be043c6111eda70a82e
+DIST notcurses-doc-3.0.8.tar.gz 150000 BLAKE2B 8262157c051876302889c74e7986be928d9997e8b5e69028e2edf996df2f93078dcc584e2bb2860a74fecdc8e52c17d3448638f39036fe8acd8b54c0b6af3a39 SHA512 ff2d4a5fddfd775d862b4f1b93131d4600c3e15b1044b73a0b24fe5a6ffe6298960c4caab2848c4dc2ba2872d50fba49f86f34433e36b7e3f3782e920497defb
diff --git a/dev-cpp/notcurses/notcurses-3.0.8.ebuild b/dev-cpp/notcurses/notcurses-3.0.8.ebuild
new file mode 100644
index 000000000000..7966695b02fe
--- /dev/null
+++ b/dev-cpp/notcurses/notcurses-3.0.8.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+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"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="dev-libs/libunistring:=
+ media-video/ffmpeg:=
+ sys-libs/gpm
+ sys-libs/ncurses:="
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TESTING=$(usex test)
+ -DUSE_DEFLATE=OFF
+ -DUSE_DOCTEST=OFF
+ -DUSE_GPM=ON
+ -DUSE_MULTIMEDIA=ffmpeg
+ -DUSE_PANDOC=OFF
+ -DUSE_QRCODEGEN=OFF
+ -DUSE_STATIC=OFF
+ )
+ cmake_src_configure
+}
+
+src_test() {
+ ewarn "Tests will fail if you don't have a UTF8 locale available,"
+ ewarn "or if you're missing the proper terminfo database for your TERM."
+
+ cmake_src_test
+}
+
+src_install() {
+ cmake_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
+}
next reply other threads:[~2022-10-17 22:03 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-17 22:03 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-12 10:14 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/notcurses/ Ionen Wolkens
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-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=1666044069.c075797d89f3bf6c2ddbbc681772e346c0ab44c5.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