From de59eb4554f5fe0d506a66bb96630a35f99c09f7 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 23 Sep 2024 01:25:12 +0100 Subject: gentoo auto-resync : 23:09:2024 - 01:25:12 --- sys-devel/crosstool-ng/Manifest | 4 +- .../crosstool-ng/crosstool-ng-1.26.0-r1.ebuild | 76 ++++++++++++++++++++++ sys-devel/crosstool-ng/crosstool-ng-1.26.0.ebuild | 75 --------------------- sys-devel/crosstool-ng/crosstool-ng-9999.ebuild | 1 + 4 files changed, 79 insertions(+), 77 deletions(-) create mode 100644 sys-devel/crosstool-ng/crosstool-ng-1.26.0-r1.ebuild delete mode 100644 sys-devel/crosstool-ng/crosstool-ng-1.26.0.ebuild (limited to 'sys-devel/crosstool-ng') diff --git a/sys-devel/crosstool-ng/Manifest b/sys-devel/crosstool-ng/Manifest index 801db3954e33..3953be23c181 100644 --- a/sys-devel/crosstool-ng/Manifest +++ b/sys-devel/crosstool-ng/Manifest @@ -1,4 +1,4 @@ DIST crosstool-ng-1.26.0.tar.xz 1144720 BLAKE2B 68c38dca58a239bd2a7a4e0f0adfa0069d97aba632c8a8a70594a67bf1049f0576db2d20b8a6ac90b170c1a3d8245f952a949e4fd006abe1d5e54effbb8e100b SHA512 7834184ae5792fd347455f9f48fee826248dcb82d271954ed4304b1a18f63995ff8a2c3b817564dcf147ac7e16e02d779195b26d97eb57db27f1118a1837002a -EBUILD crosstool-ng-1.26.0.ebuild 1699 BLAKE2B 6389f927f91df9492ef8da4c1fe8eefb8f4a1168059c6af5350a9b5846a7f5150f66e2656bcf9964619ea06c59676fa6ea3a12a4f753fa4db70c5f6830782c25 SHA512 fa7169a3bf950a388893051f95aec734c5b6c29334a6b471303895adc5ca5f4aa6ac0e87cae8ce50dfe0fcac88b7d182cc0cd0d4182111d94bcdde947ab2c5e2 -EBUILD crosstool-ng-9999.ebuild 1699 BLAKE2B 6389f927f91df9492ef8da4c1fe8eefb8f4a1168059c6af5350a9b5846a7f5150f66e2656bcf9964619ea06c59676fa6ea3a12a4f753fa4db70c5f6830782c25 SHA512 fa7169a3bf950a388893051f95aec734c5b6c29334a6b471303895adc5ca5f4aa6ac0e87cae8ce50dfe0fcac88b7d182cc0cd0d4182111d94bcdde947ab2c5e2 +EBUILD crosstool-ng-1.26.0-r1.ebuild 1715 BLAKE2B 13d4fc08a83bc2bfed5f7f20fb11c81c20c0e1e584798a37953037f909dd954cc7ffb34e04b782be07fb8cdd83a0a88b0cdaf6751cd170c06ef5ce8244b7dd5c SHA512 495b9002de96e19b98b9cc635d7d86ac16d2ad04e1a73aaf088ea25530a175625add3940cc45f9f1514edb400f03f744f2e53ee818e0c3c2e8b5764cbc2dfd0d +EBUILD crosstool-ng-9999.ebuild 1715 BLAKE2B 13d4fc08a83bc2bfed5f7f20fb11c81c20c0e1e584798a37953037f909dd954cc7ffb34e04b782be07fb8cdd83a0a88b0cdaf6751cd170c06ef5ce8244b7dd5c SHA512 495b9002de96e19b98b9cc635d7d86ac16d2ad04e1a73aaf088ea25530a175625add3940cc45f9f1514edb400f03f744f2e53ee818e0c3c2e8b5764cbc2dfd0d MISC metadata.xml 973 BLAKE2B e910f49277500ae3bebdd7307c8e6bce9cf8b16e968790c308c08678da2742ce04aae68b6fef00af59c4f56ecfbf6a1ed1a7a255d7c78925af30e0ecd22195a1 SHA512 012a54cb5bac5775dd0f7ea8980a8422a108d3447ec34386ca5c1d2fd5bb996e22e2a683a66b401822ccf59aee864580066c97d3d6b85c797373223c68e47379 diff --git a/sys-devel/crosstool-ng/crosstool-ng-1.26.0-r1.ebuild b/sys-devel/crosstool-ng/crosstool-ng-1.26.0-r1.ebuild new file mode 100644 index 000000000000..f0aa3dfbe151 --- /dev/null +++ b/sys-devel/crosstool-ng/crosstool-ng-1.26.0-r1.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +inherit python-single-r1 + +DESCRIPTION="Versatile (cross-)toolchain generator" +HOMEPAGE="https://crosstool-ng.github.io/" + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://github.com/crosstool-ng/crosstool-ng.git" + inherit git-r3 +else + SRC_URI=" + https://github.com/crosstool-ng/crosstool-ng/releases/download/${PN}-${PV/_rc/-rc}/${P}.tar.xz + http://crosstool-ng.org/download/crosstool-ng/${P}.tar.xz + " + + if [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~amd64 ~x86" + fi +fi + +LICENSE="GPL-2 doc? ( CC-BY-SA-2.5 )" +SLOT="0" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +IUSE="curl cvs doc dtc git lzip meson ninja python rsync subversion wget" + +# TODO: Consider dropping these USE (optfeature), but configure does check for them +BDEPEND=" + app-arch/unzip + >=app-shells/bash-3.1 + sys-apps/help2man + >=sys-apps/sed-4.0 + sys-apps/gawk + sys-apps/texinfo + sys-apps/which + sys-devel/bison + sys-devel/flex + curl? ( net-misc/curl ) + cvs? ( dev-vcs/cvs ) + dtc? ( sys-apps/dtc ) + git? ( dev-vcs/git ) + lzip? ( app-arch/lzip ) + meson? ( dev-build/meson ) + python? ( ${PYTHON_DEPS} ) + ninja? ( app-alternatives/ninja ) + rsync? ( net-misc/rsync ) + subversion? ( dev-vcs/subversion ) + wget? ( net-misc/wget ) +" +RDEPEND=" + ${BDEPEND} +" + +src_configure() { + # Needs bison+flex + unset YACC LEX + + default +} + +src_install() { + emake DESTDIR="${D}" install + + if use doc ; then + mv "${ED}"/usr/share/doc/crosstool-ng/crosstool-ng-${PVR} "${ED}"/usr/share/doc/ || die + fi + + rm -rf "${ED}"/usr/share/doc/crosstool-ng || die + rm -rf "${ED}"/usr/share/man/man1/ct-ng.1.gz || die + doman docs/ct-ng.1 +} diff --git a/sys-devel/crosstool-ng/crosstool-ng-1.26.0.ebuild b/sys-devel/crosstool-ng/crosstool-ng-1.26.0.ebuild deleted file mode 100644 index 943dbb3f1893..000000000000 --- a/sys-devel/crosstool-ng/crosstool-ng-1.26.0.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -inherit python-single-r1 - -DESCRIPTION="Versatile (cross-)toolchain generator" -HOMEPAGE="https://crosstool-ng.github.io/" - -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/crosstool-ng/crosstool-ng.git" - inherit git-r3 -else - SRC_URI=" - https://github.com/crosstool-ng/crosstool-ng/releases/download/${PN}-${PV/_rc/-rc}/${P}.tar.xz - http://crosstool-ng.org/download/crosstool-ng/${P}.tar.xz - " - - if [[ ${PV} != *_rc* ]] ; then - KEYWORDS="~amd64 ~x86" - fi -fi - -LICENSE="GPL-2 doc? ( CC-BY-SA-2.5 )" -SLOT="0" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" -IUSE="curl cvs doc dtc git lzip meson ninja python rsync subversion wget" - -# TODO: Consider dropping these USE (optfeature), but configure does check for them -BDEPEND=" - app-arch/unzip - >=app-shells/bash-3.1 - sys-apps/help2man - >=sys-apps/sed-4.0 - sys-apps/gawk - sys-apps/texinfo - sys-devel/bison - sys-devel/flex - curl? ( net-misc/curl ) - cvs? ( dev-vcs/cvs ) - dtc? ( sys-apps/dtc ) - git? ( dev-vcs/git ) - lzip? ( app-arch/lzip ) - meson? ( dev-build/meson ) - python? ( ${PYTHON_DEPS} ) - ninja? ( app-alternatives/ninja ) - rsync? ( net-misc/rsync ) - subversion? ( dev-vcs/subversion ) - wget? ( net-misc/wget ) -" -RDEPEND=" - ${BDEPEND} -" - -src_configure() { - # Needs bison+flex - unset YACC LEX - - default -} - -src_install() { - emake DESTDIR="${D}" install - - if use doc ; then - mv "${ED}"/usr/share/doc/crosstool-ng/crosstool-ng-${PVR} "${ED}"/usr/share/doc/ || die - fi - - rm -rf "${ED}"/usr/share/doc/crosstool-ng || die - rm -rf "${ED}"/usr/share/man/man1/ct-ng.1.gz || die - doman docs/ct-ng.1 -} diff --git a/sys-devel/crosstool-ng/crosstool-ng-9999.ebuild b/sys-devel/crosstool-ng/crosstool-ng-9999.ebuild index 943dbb3f1893..f0aa3dfbe151 100644 --- a/sys-devel/crosstool-ng/crosstool-ng-9999.ebuild +++ b/sys-devel/crosstool-ng/crosstool-ng-9999.ebuild @@ -37,6 +37,7 @@ BDEPEND=" >=sys-apps/sed-4.0 sys-apps/gawk sys-apps/texinfo + sys-apps/which sys-devel/bison sys-devel/flex curl? ( net-misc/curl ) -- cgit v1.2.3