From 8ba5773ae1b8ac7849a66035310afdfd6b16ee05 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Tue, 1 Jan 2019 21:14:17 +0000 Subject: dev-lang/nim: drop old Package-Manager: Portage-2.3.53, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich --- dev-lang/nim/Manifest | 4 --- dev-lang/nim/nim-0.16.0.ebuild | 54 ---------------------------- dev-lang/nim/nim-0.17.0.ebuild | 51 -------------------------- dev-lang/nim/nim-0.17.2-r1.ebuild | 65 --------------------------------- dev-lang/nim/nim-0.17.2.ebuild | 59 ------------------------------ dev-lang/nim/nim-0.18.0.ebuild | 75 --------------------------------------- 6 files changed, 308 deletions(-) delete mode 100644 dev-lang/nim/nim-0.16.0.ebuild delete mode 100644 dev-lang/nim/nim-0.17.0.ebuild delete mode 100644 dev-lang/nim/nim-0.17.2-r1.ebuild delete mode 100644 dev-lang/nim/nim-0.17.2.ebuild delete mode 100644 dev-lang/nim/nim-0.18.0.ebuild (limited to 'dev-lang/nim') diff --git a/dev-lang/nim/Manifest b/dev-lang/nim/Manifest index 7e9b9967b0f8..627679b2b8df 100644 --- a/dev-lang/nim/Manifest +++ b/dev-lang/nim/Manifest @@ -1,6 +1,2 @@ -DIST nim-0.16.0.tar.xz 2907076 BLAKE2B 5f14bb2634da32deb810381edf817e3885382ffce0a35db0ae3faca818bb0f5646b1619609e971fbe93ef383f3c4060029bf51a12ef0b4df75ebf0dde12753b5 SHA512 6be1c00328b7e5bdaa9070e1cd0e3c6e1883c5bc1e44e9c574785f9bce93697f05753f598cf6fdaa6c5a66f08c2ad6f7afb8f6650fc3b1c8e461eb0cf80baabd -DIST nim-0.17.0.tar.xz 25079320 BLAKE2B d01ade93ff299962aeea3dc9c90f0a8fe87acef8c2ee6d7d521d936c680aded0d8383221b7c11c3b2a8d6c28311c939456f271bbc90c1115acaae2c1987fa908 SHA512 90d709b39746fac5582b9df69d3eb9e3b7a39563a98f7a3002f00716b936e4e0d2be47d8b877878318692e6e2b85c08077dfcc20d9059573a1967402c244894b -DIST nim-0.17.2.tar.xz 4083084 BLAKE2B c1a4134592bb6a57bfaf6174becb409e40075c77042964c639b39fe7b30f094bfc8d404d6e1e4e527a95333a8ee4597477f1052da1af58c3216042bb2f85c826 SHA512 7b4ed1eb1e9067ce72b76b95c43ec74eb38f04611776c174ba6a697254a9253fed61258712fb938f15e662bb3b0d36138194fc8fa89bbcb4d22888263e5e2880 -DIST nim-0.18.0.tar.xz 4412632 BLAKE2B f7286542daa4c3502f4edeb9d93e6a69169228a50248f1c5c02421cb8e70c0ab99bc84cc91b35a6227a4974345423eeb3b5ffecdb18e321b0a82eb8fd0879a16 SHA512 8f59cb4a8d44949cdd1154fb44df548005329da8255becf2f54083ce58323ff8d6cf7b2fdd86d4b1f446bd9f977e8eaf4b13c7ca6723da8a10c7b671954de772 DIST nim-0.19.0.tar.xz 3321644 BLAKE2B e1de3b8a4c756315bcd110ddc62c03eb1a379403d8c102eb4d6d131cccabe3dccdfdac33d46037fd8b3b241d727acb42f5cb0b616a4079830ea3abf63089f90a SHA512 f7f3c8e0e9a6509b6404e21da4693ceb279112dd7a7c39edc7e717f21554442914c9cf7d811bb4034ff244e34d77dabf6e09b5e3e77c37314adf99cc0c3b2311 DIST nim-0.19.2.tar.xz 21176300 BLAKE2B 85250ca174c2ef6ee77e8c1a2b35316bb9b21e591438d7d3bf560c0d38f1ba64c811ef99c0c3147acceddd6d27fcd5ff2dfccf65cb92218484649f1029e0dd1b SHA512 fc7ab034dcdf3cb5f1cc379595ee9ae6da7c6256eef4b294e3bf31ff559efd48598a9974ca9a0f41d899f01af6a916feb9c5eb7f888f637287ce357722d41421 diff --git a/dev-lang/nim/nim-0.16.0.ebuild b/dev-lang/nim/nim-0.16.0.ebuild deleted file mode 100644 index 6f4bf09dcfa8..000000000000 --- a/dev-lang/nim/nim-0.16.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_PN=Nim -MY_P=${MY_PN}-${PV} - -DESCRIPTION="compiled, garbage-collected systems programming language" -HOMEPAGE="https://nim-lang.org/" -SRC_URI="https://nim-lang.org/download/${P}.tar.xz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="doc +readline test" - -DEPEND=" - readline? ( sys-libs/readline:0= ) -" -RDEPEND="${DEPEND}" - -nim_use_enable() { - [[ -z $2 ]] && die "usage: nim_use_enable " - use $1 && echo "-d:$2" -} - -src_compile() { - ./build.sh || die "build.sh failed" - - ./bin/nim c koch || die "csources nim failed" - ./koch boot -d:release $(nim_use_enable readline useGnuReadline) || die "koch boot failed" - - if use doc; then - PATH="./bin:$PATH" ./koch web || die "koch web failed" - fi -} - -src_test() { - PATH="./bin:$PATH" ./koch test || die "test suite failed" -} - -src_install() { - ./koch install "${D}/usr" || die "koch install failed" - rm -r "${D}/usr/nim/doc" || die "failed to remove 'doc'" - - dodir /usr/bin - dosym ../nim/bin/nim /usr/bin/nim - - if use doc; then - insinto /usr/share/doc/${PF} - dodoc doc/*.html - fi -} diff --git a/dev-lang/nim/nim-0.17.0.ebuild b/dev-lang/nim/nim-0.17.0.ebuild deleted file mode 100644 index be6d8989a30b..000000000000 --- a/dev-lang/nim/nim-0.17.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="compiled, garbage-collected systems programming language" -HOMEPAGE="https://nim-lang.org/" -SRC_URI="https://nim-lang.org/download/${P}.tar.xz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="doc +readline test" - -DEPEND=" - readline? ( sys-libs/readline:0= ) -" -RDEPEND="${DEPEND}" - -nim_use_enable() { - [[ -z $2 ]] && die "usage: nim_use_enable " - use $1 && echo "-d:$2" -} - -src_compile() { - ./build.sh || die "build.sh failed" - - ./bin/nim c koch || die "csources nim failed" - ./koch boot -d:release $(nim_use_enable readline useGnuReadline) || die "koch boot failed" - - if use doc; then - PATH="./bin:$PATH" ./koch web || die "koch web failed" - fi -} - -src_test() { - PATH="./bin:$PATH" ./koch test || die "test suite failed" -} - -src_install() { - ./koch install "${D}/usr" || die "koch install failed" - rm -r "${D}/usr/nim/doc" || die "failed to remove 'doc'" - - dodir /usr/bin - dosym ../nim/bin/nim /usr/bin/nim - - if use doc; then - insinto /usr/share/doc/${PF} - dodoc doc/*.html - fi -} diff --git a/dev-lang/nim/nim-0.17.2-r1.ebuild b/dev-lang/nim/nim-0.17.2-r1.ebuild deleted file mode 100644 index b5b88357cd22..000000000000 --- a/dev-lang/nim/nim-0.17.2-r1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit bash-completion-r1 - -DESCRIPTION="compiled, garbage-collected systems programming language" -HOMEPAGE="https://nim-lang.org/" -SRC_URI="https://nim-lang.org/download/${P}.tar.xz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="doc +readline test" - -DEPEND=" - readline? ( sys-libs/readline:0= ) -" -RDEPEND="${DEPEND}" - -nim_use_enable() { - [[ -z $2 ]] && die "usage: nim_use_enable " - use $1 && echo "-d:$2" -} - -src_compile() { - ./build.sh || die "build.sh failed" - - ./bin/nim c koch || die "csources nim failed" - ./koch boot -d:release $(nim_use_enable readline useGnuReadline) || die "koch boot failed" - # build nimble and friends - PATH="./bin:$PATH" ./koch tools || die "koch tools failed" - - if use doc; then - PATH="./bin:$PATH" ./koch web || die "koch web failed" - fi -} - -src_test() { - PATH="./bin:$PATH" ./koch test || die "test suite failed" -} - -src_install() { - PATH="./bin:$PATH" ./koch install "${ED}/usr" || die "koch install failed" - rm -r "${ED}/usr/nim/doc" || die "failed to remove 'doc'" - - dodir /usr/bin - exeinto /usr/nim/bin - - local bin_exe - for bin_exe in bin/*; do - # './koch install' installs only 'nim' binary - # but not the rest - doexe "${bin_exe}" - dosym ../nim/"${bin_exe}" /usr/"${bin_exe}" - done - - if use doc; then - insinto /usr/share/doc/${PF} - dodoc doc/*.html - fi - - newbashcomp tools/nim.bash-completion ${PN} -} diff --git a/dev-lang/nim/nim-0.17.2.ebuild b/dev-lang/nim/nim-0.17.2.ebuild deleted file mode 100644 index 3942e4e7b582..000000000000 --- a/dev-lang/nim/nim-0.17.2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit bash-completion-r1 - -DESCRIPTION="compiled, garbage-collected systems programming language" -HOMEPAGE="https://nim-lang.org/" -SRC_URI="https://nim-lang.org/download/${P}.tar.xz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="doc +readline test" - -DEPEND=" - readline? ( sys-libs/readline:0= ) -" -RDEPEND="${DEPEND}" - -nim_use_enable() { - [[ -z $2 ]] && die "usage: nim_use_enable " - use $1 && echo "-d:$2" -} - -src_compile() { - ./build.sh || die "build.sh failed" - - ./bin/nim c koch || die "csources nim failed" - ./koch boot -d:release $(nim_use_enable readline useGnuReadline) || die "koch boot failed" - PATH="./bin:$PATH" ./koch tools || die "koch tools failed" - - if use doc; then - PATH="./bin:$PATH" ./koch web || die "koch web failed" - fi -} - -src_test() { - PATH="./bin:$PATH" ./koch test || die "test suite failed" -} - -src_install() { - ./koch install "${ED}/usr" || die "koch install failed" - rm -r "${ED}/usr/nim/doc" || die "failed to remove 'doc'" - - dodir /usr/bin - local exe - for bin_exe in bin/*; do - dosym ../nim/${bin_exe} /usr/${bin_exe} - done - - if use doc; then - insinto /usr/share/doc/${PF} - dodoc doc/*.html - fi - - newbashcomp tools/nim.bash-completion ${PN} -} diff --git a/dev-lang/nim/nim-0.18.0.ebuild b/dev-lang/nim/nim-0.18.0.ebuild deleted file mode 100644 index 53766c3e8a09..000000000000 --- a/dev-lang/nim/nim-0.18.0.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit bash-completion-r1 multiprocessing - -DESCRIPTION="compiled, garbage-collected systems programming language" -HOMEPAGE="https://nim-lang.org/" -SRC_URI="https://nim-lang.org/download/${P}.tar.xz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="doc +readline test" - -RESTRICT=test # need to sort out depends and numerous failures - -RDEPEND=" - readline? ( sys-libs/readline:0= ) -" -DEPEND=" - ${DEPEND} - test? ( net-libs/nodejs ) -" - -_run() { - echo "$@" - "$@" || die "'$*' failed" -} - -nim_use_enable() { - [[ -z $2 ]] && die "usage: nim_use_enable " - use $1 && echo "-d:$2" -} - -src_compile() { - _run ./build.sh - - _run ./bin/nim --parallelBuild:$(makeopts_jobs) c koch - _run ./koch boot --parallelBuild:$(makeopts_jobs) -d:release $(nim_use_enable readline useGnuReadline) - # build nimble and friends - PATH="./bin:$PATH" _run ./koch tools - - if use doc; then - PATH="./bin:$PATH" _run ./koch web - fi -} - -src_test() { - PATH="./bin:$PATH" _run ./koch test -} - -src_install() { - PATH="./bin:$PATH" _run ./koch install "${ED}/usr" - rm -r "${ED}/usr/nim/doc" || die "failed to remove 'doc'" - - dodir /usr/bin - exeinto /usr/nim/bin - - local bin_exe - for bin_exe in bin/*; do - # './koch install' installs only 'nim' binary - # but not the rest - doexe "${bin_exe}" - dosym ../nim/"${bin_exe}" /usr/"${bin_exe}" - done - - if use doc; then - insinto /usr/share/doc/${PF} - dodoc doc/*.html - fi - - newbashcomp tools/nim.bash-completion ${PN} -} -- cgit v1.2.3-65-gdbad