diff options
author | 2024-12-03 21:06:49 +0100 | |
---|---|---|
committer | 2024-12-12 05:39:30 +0000 | |
commit | 06c1738b3d38421a7d55763a0d196582f3eb271e (patch) | |
tree | 2fbb871affeb5e6db151fdc13d3986657b100a44 /app-doc | |
parent | dev-cpp/glibmm: remove method that is not used any where (diff) | |
download | gentoo-06c1738b3d38421a7d55763a0d196582f3eb271e.tar.gz gentoo-06c1738b3d38421a7d55763a0d196582f3eb271e.tar.bz2 gentoo-06c1738b3d38421a7d55763a0d196582f3eb271e.zip |
app-doc/single-unix-specification: add 5
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Closes: https://github.com/gentoo/gentoo/pull/39584
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/single-unix-specification/Manifest | 1 | ||||
-rw-r--r-- | app-doc/single-unix-specification/single-unix-specification-5.ebuild | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/app-doc/single-unix-specification/Manifest b/app-doc/single-unix-specification/Manifest index ab0ab4247268..aad8e510b075 100644 --- a/app-doc/single-unix-specification/Manifest +++ b/app-doc/single-unix-specification/Manifest @@ -1,2 +1,3 @@ DIST susv4-2018.tar.bz2 3352852 BLAKE2B 0f05f2dd6444d35b2d962651643eb8bd0520169c8670072fdb1ce2c671b3bdeed8e4d99dfacceba69f846c107c73c4a60f3f51e48c64499f40a9fa594ac877ba SHA512 2484d24d19b9731808c61219b61d63cdf4d8dff6498fb4655478b76808a583064a5cfbcfcf18f1d27c56e03a6b47cc6833f94483784ec29059bef063724c2567 DIST susv4tc2.tar.bz2 3649434 BLAKE2B c09eb835badec0bf191da4caaa7b35ccedfb1512218d3ebb66d0301bbe6404a30df2e3c51838dcd9f91912f41ce3e39478d2c061ac2f075ef678ae20fcaf0ad6 SHA512 cc86b2b4860b1069cb8712ef7b5a9702510f48d6585b5414ff561f85677974c156d8cc95cf29dfdab360c13ecb884e19e2112fe5c6bc49666417c9a744a816ad +DIST susv5.tar.bz2 3092782 BLAKE2B 1faa75cadf97f73367bec8588206b0cf39975cd7eb9df1860059da8bc731744528cfd8cf3a77decf41d697ea0ff532f46728199d880d59093f870f78317c854b SHA512 fcdd0969f36a58a177187f5ca8ff4308e3875d47978ddbed4ba81510f45ec35fb790e5f9e43df4c26485647f7cbcd45ab22910305da18cb004703097d2bea04b diff --git a/app-doc/single-unix-specification/single-unix-specification-5.ebuild b/app-doc/single-unix-specification/single-unix-specification-5.ebuild new file mode 100644 index 000000000000..dbfb7e329012 --- /dev/null +++ b/app-doc/single-unix-specification/single-unix-specification-5.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="The Single UNIX Specification, Version 5, 2024 Edition" +HOMEPAGE="https://publications.opengroup.org/" +SRC_URI="https://pubs.opengroup.org/onlinepubs/9799919799/download/susv5.tar.bz2" +S="${WORKDIR}/susv5-html" + +LICENSE="sus4-copyright" +SLOT="5" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +RESTRICT="mirror" + +src_install() { + dodoc -r * +} |