From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/scdoc/
Date: Tue, 15 Dec 2020 03:58:51 +0000 (UTC) [thread overview]
Message-ID: <1608004568.499814d3acbf660d98ba64d790191b03f1fdd3c2.sam@gentoo> (raw)
commit: 499814d3acbf660d98ba64d790191b03f1fdd3c2
Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sun Dec 6 17:23:41 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 03:56:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=499814d3
app-text/scdoc: version bump to 1.11.1
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/18535
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-text/scdoc/Manifest | 1 +
app-text/scdoc/scdoc-1.11.1.ebuild | 44 ++++++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/app-text/scdoc/Manifest b/app-text/scdoc/Manifest
index 6f23811e6c7..98042e8d750 100644
--- a/app-text/scdoc/Manifest
+++ b/app-text/scdoc/Manifest
@@ -1,4 +1,5 @@
DIST scdoc-1.10.0.tar.gz 12414 BLAKE2B 3111b3ace102aca2f7da86e510e00f552874817b6b9d754770bd94f9482e4e444a4bc4d44a8317376a6c374bb7363eae96a49281fefd95dd663134087123034b SHA512 546743376380d84aa9c8be65529dbbe1634e574203220ce1c057341436bd3a15297f393ca79d29372cb125bf457cfc00f64ba2867b8d2e910ca6531acb552e97
DIST scdoc-1.10.1.tar.gz 12422 BLAKE2B 4aa5b28994cd03f5d3fc9fff253a02f1052653d25d41225665219ebb6322ebe69f2671d91c5cfe201fd7f9b1ac06f38db3dd126492da06fef0b692fc040300d5 SHA512 356aee85c4676a1fbd7367c6087dd7f6f4d33793be0f3fef74803ceb93c0a9e45c78022d219dc08a7d79d71c393849fa3113c36a85d5d60ed474b62bf5f89743
DIST scdoc-1.11.0.tar.gz 12616 BLAKE2B 3aec60e51b949dc94e8339e400c366428a217c1bd44f79716cbd6993a7f8051a0796dc96163e071db4808c0edde071408e3eb1ee0ae3bb8ccd718479960ab8f3 SHA512 4c8248a12e69e53cc2182af5375912f7af64f3807163dbe3c52e85d817b1bfa7e461d02a627c73d93bdaa96e49668ff894d37817ceb70ee3186da9e3f8372d49
+DIST scdoc-1.11.1.tar.gz 12482 BLAKE2B 2632da654730a373f03955f0b3bb190c8d6beb2fd4e4b05c88a4c86d384b26c51a8f032e6b2ef8d4d795638c1981a4d5500384f3103411869c7097a2ba1466ff SHA512 28b676a2ba69a101034c47378c4b66c94bfb9903d680a1871020fd8772d0990a4c91678738f71d37bfca06e27991ef782047c6503d375ce69df744caf6b459de
DIST scdoc-1.9.3.tar.gz 11479 BLAKE2B 79aa3f18104e06722f087e9c2fa047f6e19fe8eb47ba0b4e6fa86f7abdc52b06a2dfcfd632b16dc7bce6e5ef3b0dbb40ce9170e678bc17c0a4e43dcc0099a1dc SHA512 77be81f042e2099de7fc84b0161bc8a95d5c3dde662284613d84a1e249fa0aa51dad73f53f265c833526d40f5e1f19fce99dc5cd6df35efb0a323c3db6084a55
diff --git a/app-text/scdoc/scdoc-1.11.1.ebuild b/app-text/scdoc/scdoc-1.11.1.ebuild
new file mode 100644
index 00000000000..cb634028950
--- /dev/null
+++ b/app-text/scdoc/scdoc-1.11.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Standalone tool for generating man pages with a simple syntax"
+HOMEPAGE="https://git.sr.ht/~sircmpwn/scdoc"
+
+if [[ ${PV} == 9999 ]]; then
+ EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/scdoc"
+ inherit git-r3
+else
+ SRC_URI="https://git.sr.ht/~sircmpwn/scdoc/archive/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+src_prepare() {
+ default
+
+ sed -e 's/-Werror//' \
+ -i Makefile || die 'Failed to patch Makefile'
+}
+
+src_compile() {
+ local MY_HS="./scdoc"
+ if tc-is-cross-compiler; then
+ tc-export_build_env
+ MY_HS="./hostscdoc"
+ emake scdoc HOST_SCDOC="./hostscdoc" OUTDIR="${S}/.build.host" CC="$(tc-getBUILD_CC)" \
+ CFLAGS="${BUILD_CFLAGS} -DVERSION='\"${PV}\"'" LDFLAGS="${BUILD_LDFLAGS}"
+ mv scdoc hostscdoc || die 'Failed to rename host scdoc'
+ fi
+ emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" HOST_SCDOC="${MY_HS}" \
+ PCDIR="${ED}/usr/$(get_libdir)/pkgconfig" install
+}
next reply other threads:[~2020-12-15 3:58 UTC|newest]
Thread overview: 61+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-15 3:58 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-03-08 13:51 [gentoo-commits] repo/gentoo:master commit in: app-text/scdoc/ Arthur Zamarin
2024-03-08 13:48 Arthur Zamarin
2024-03-08 12:15 Arthur Zamarin
2024-03-08 12:11 Arthur Zamarin
2024-03-08 12:10 Arthur Zamarin
2024-03-08 12:09 Arthur Zamarin
2024-02-18 5:37 Arthur Zamarin
2023-09-24 22:26 Sam James
2023-03-19 17:36 Arthur Zamarin
2022-09-28 21:27 Sam James
2022-09-28 19:05 Arthur Zamarin
2022-09-28 16:29 Arthur Zamarin
2022-08-16 17:34 Arthur Zamarin
2022-08-16 17:34 Arthur Zamarin
2022-08-15 7:41 Agostino Sarubbo
2022-08-15 7:40 Agostino Sarubbo
2022-08-14 19:25 Arthur Zamarin
2022-08-14 19:25 Arthur Zamarin
2022-08-14 19:24 Arthur Zamarin
2022-08-14 19:24 Arthur Zamarin
2022-05-17 8:37 WANG Xuerui
2022-05-17 8:37 WANG Xuerui
2022-05-03 18:41 Sam James
2022-05-03 18:41 Sam James
2022-05-03 1:21 Sam James
2022-05-03 1:21 Sam James
2022-04-30 12:06 Arthur Zamarin
2022-04-30 12:00 Arthur Zamarin
2022-04-30 12:00 Arthur Zamarin
2022-04-30 12:00 Arthur Zamarin
2022-04-30 12:00 Arthur Zamarin
2021-03-17 4:31 Sam James
2021-01-25 14:16 Sam James
2020-12-15 3:58 Sam James
2020-10-28 0:04 Sam James
2020-07-25 21:04 Matthew Thode
2020-06-28 22:19 Aaron Bauman
2020-06-11 22:21 Aaron Bauman
2020-06-11 22:21 Aaron Bauman
2020-02-14 16:46 Matthew Thode
2020-02-14 16:46 Matthew Thode
2019-11-21 23:11 Georgy Yakovlev
2019-08-17 2:06 Georgy Yakovlev
2019-08-17 2:06 Georgy Yakovlev
2019-06-10 14:54 Matthew Thode
2019-05-29 20:45 Aaron Bauman
2019-04-24 23:11 Thomas Deutschmann
2019-04-10 5:03 Aaron Bauman
2019-04-10 3:46 Aaron Bauman
2019-04-10 3:01 Aaron Bauman
2019-03-07 0:37 Aaron Bauman
2019-03-01 20:25 Matthew Thode
2019-02-28 15:51 Matthew Thode
2019-02-09 2:23 Matthew Thode
2018-10-22 20:24 Michał Górny
2018-10-22 20:24 Michał Górny
2018-10-22 20:24 Michał Górny
2018-10-22 20:24 Michał Górny
2018-05-16 10:49 Lars Wendler
2018-02-06 9:57 David Seifert
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=1608004568.499814d3acbf660d98ba64d790191b03f1fdd3c2.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