From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cdk/
Date: Thu, 27 Oct 2022 05:31:46 +0000 (UTC) [thread overview]
Message-ID: <1666848687.8e242fa9d05bf470af3e6eb2965e0ffce278199a.sam@gentoo> (raw)
commit: 8e242fa9d05bf470af3e6eb2965e0ffce278199a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 05:31:27 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 05:31:27 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e242fa9
dev-libs/cdk: add 5.0.20221025
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/cdk/Manifest | 2 ++
dev-libs/cdk/cdk-5.0.20221025.ebuild | 59 ++++++++++++++++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/dev-libs/cdk/Manifest b/dev-libs/cdk/Manifest
index 922f35793fb8..a69033cc63bc 100644
--- a/dev-libs/cdk/Manifest
+++ b/dev-libs/cdk/Manifest
@@ -1,2 +1,4 @@
DIST cdk-5.0-20210324.tgz 548203 BLAKE2B 7a944f347bf30a6bf602b9ac61fa547c7b4aef073db54272e4a8d2bd7d83093888f2ca9e5ee9c2d067777472d2abb87cca42b2912b0491b81472cfce086640b8 SHA512 72d62307824708858ca4fb3865d332cc81e987d7ef685011cf127c8f77cee3e19fe9dd6a35009d4416769cb00f04e937ebaec686c61ca0ba58655f522a175a59
DIST cdk-5.0-20211216.tgz 552041 BLAKE2B ce82ac22d4ec2ed37079d3de52a4f93a4206e5228aa952a3e45294d260c1ffef7c363b2c290060cc909bb8ab4ae88cbedecf498db7bd0f13e2d2822d87d7e4fa SHA512 622e99681af8468aaf8638833d0821c743667fb9b41716fe16acb8e78e8a3d5ba4eb7aced0bc213697e120dcb6e96067d6b75d53531555c3e6d90e4961cb99aa
+DIST cdk-5.0-20221025.tgz 540925 BLAKE2B 48b37d07630bc71fc5b1a77fa2732c264e61323fc00c60db1436403db46bfc4f870fa897560b705583b07db84b8f812df553780f4bddef4ca88de6b799c31f57 SHA512 408ab61f8110c13d32976896e92f8ded4927eac36435bce6d9fafbe137e693779ffd882829712086868766a252e35e6c592da69c43cfb32d9f4cf7e880c2a593
+DIST cdk-5.0-20221025.tgz.asc 729 BLAKE2B 0e6d0fdfcdb7e8a2139b5050cd2ff79f493edb67a0119baf5b009a00ea9fe715bb85da7980f35dbf688462b8dc07fc1e630101b072111fc626696bb90d318dc8 SHA512 66c52ac973fa6c133ae5a76b1661980b6a32144854c518f9bcddce8bd0b28e60167f8e09f87b99bff59e996275b3844f2c1c4b20d0a40a784700f53394fcbbcc
diff --git a/dev-libs/cdk/cdk-5.0.20221025.ebuild b/dev-libs/cdk/cdk-5.0.20221025.ebuild
new file mode 100644
index 000000000000..c974d478f4bd
--- /dev/null
+++ b/dev-libs/cdk/cdk-5.0.20221025.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${PN}-$(ver_rs 2 -)"
+
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/thomasdickey.asc
+inherit verify-sig
+
+DESCRIPTION="A library of curses widgets"
+HOMEPAGE="https://dickey.his.com/cdk/cdk.html https://github.com/ThomasDickey/cdk-snapshots"
+SRC_URI="https://invisible-island.net/archives/${PN}/${MY_P}.tgz"
+SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/${PN}/${MY_P}.tgz.asc )"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="MIT"
+SLOT="0/6" # subslot = soname version
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="examples unicode"
+
+DEPEND="sys-libs/ncurses:=[unicode(+)?]"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ verify-sig? ( sec-keys/openpgp-keys-thomasdickey )
+"
+
+src_configure() {
+ if [[ ${CHOST} == *-*-darwin* ]] ; then
+ export ac_cv_prog_LIBTOOL=glibtool
+ fi
+
+ # --with-libtool dropped for now because of broken Makefile
+ # bug #790773
+ econf \
+ --disable-rpath-hack \
+ --with-shared \
+ --with-pkg-config \
+ --with-ncurses$(usex unicode "w" "")
+}
+
+src_install() {
+ # parallel make installs duplicate libs
+ emake -j1 \
+ DESTDIR="${D}" \
+ DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" \
+ install
+
+ if use examples ; then
+ local x
+ for x in include c++ demos examples cli cli/utils cli/samples ; do
+ docinto ${x}
+ find ${x} -maxdepth 1 -mindepth 1 -type f -print0 | xargs -0 dodoc || die
+ done
+ fi
+
+ find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete || die
+}
next reply other threads:[~2022-10-27 5:31 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-27 5:31 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-07 3:51 [gentoo-commits] repo/gentoo:master commit in: dev-libs/cdk/ Sam James
2025-04-07 3:48 Sam James
2025-01-18 18:41 Arthur Zamarin
2024-11-23 17:21 Michał Górny
2024-11-23 10:32 Sam James
2024-11-23 10:24 Sam James
2024-11-23 10:24 Sam James
2024-11-23 10:20 Sam James
2024-11-23 10:20 Sam James
2024-04-06 9:11 Sam James
2023-12-06 16:01 Sam James
2023-04-05 12:39 Arthur Zamarin
2023-04-04 23:17 Sam James
2023-04-04 22:52 Sam James
2023-04-04 22:42 Sam James
2023-04-04 22:42 Sam James
2023-02-26 18:35 Arthur Zamarin
2023-02-25 18:21 Arthur Zamarin
2023-02-25 18:20 Arthur Zamarin
2023-02-25 18:18 Arthur Zamarin
2023-02-25 18:18 Arthur Zamarin
2023-02-05 19:54 Sam James
2023-02-05 19:54 Sam James
2022-08-10 20:29 Sam James
2022-01-23 16:23 Jonas Stein
2021-12-20 4:08 Sam James
2021-07-27 3:16 Sam James
2021-07-26 11:17 Sam James
2021-07-18 6:35 Agostino Sarubbo
2021-07-18 6:34 Agostino Sarubbo
2021-07-18 6:33 Agostino Sarubbo
2021-05-19 3:23 Sam James
2021-05-17 22:36 Sam James
2021-05-17 22:36 Sam James
2021-05-09 12:53 David Seifert
2020-08-05 1:03 Sam James
2019-04-06 22:23 Patrice Clement
2019-01-27 11:05 Pacho Ramos
2017-11-08 22:27 Sergei Trofimovich
2017-10-29 21:08 Thomas Deutschmann
2017-10-05 8:37 Sergei Trofimovich
2017-09-15 15:38 Tobias Klausmann
2017-09-10 20:46 Sergei Trofimovich
2017-09-07 20:50 Sergei Trofimovich
2017-09-07 19:24 Sergei Trofimovich
2017-01-29 16:07 Fabian Groffen
2016-10-02 8:13 Jeroen Roovers
2016-08-20 23:23 Tim Harder
2016-08-19 3:13 Tim Harder
2016-05-26 8:34 Tobias Klausmann
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=1666848687.8e242fa9d05bf470af3e6eb2965e0ffce278199a.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