From f66a06e8f9736ea679bc3e95d8c8e90ff7c3f466 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 22 Sep 2023 17:17:39 +0100 Subject: gentoo auto-resync : 22:09:2023 - 17:17:39 --- dev-dotnet/coco/Manifest | 2 +- dev-dotnet/coco/coco-2014.12.24-r1.ebuild | 36 ++++++++++++++++++++++++++ dev-dotnet/coco/coco-2014.12.24.ebuild | 43 ------------------------------- 3 files changed, 37 insertions(+), 44 deletions(-) create mode 100644 dev-dotnet/coco/coco-2014.12.24-r1.ebuild delete mode 100644 dev-dotnet/coco/coco-2014.12.24.ebuild (limited to 'dev-dotnet/coco') diff --git a/dev-dotnet/coco/Manifest b/dev-dotnet/coco/Manifest index 7de74936e957..1d4c49b008a6 100644 --- a/dev-dotnet/coco/Manifest +++ b/dev-dotnet/coco/Manifest @@ -1,4 +1,4 @@ AUX coco-2014.12.24-Coco-csproj.patch 375 BLAKE2B 1acdf15002c0ca2aff84731c5fbc124acd751c842498a1e755dc14bbe5a95146c0675cf1fb2a7af6db7f97e31aca42c733ca05f8c7173c04eda6390658b3e561 SHA512 0879c975c30b555c150128fdc9aa51b2210af2fa6512097b4dd2a4352d1736239baa02116e554c888145c3856e302bcb56fb3643cd3508b8625f9f47f738f9e9 DIST coco-2014.12.24.tar.gz 37670 BLAKE2B acd2299e3452d4dac495a0a7f897694791b4abcc0dd7c243771fe8c7084cd9909110c655788844e11fbb576bd95e3596cb890c0ec930c3e4587fd3313082b5cb SHA512 d3b5af1b73b233a8c4b4572db8d65b1c1ffec36e455e4d5fadf1002125433551c833b9574ae03edbe2cd3978fedef41c85667fce82ff2d6ee155c16f778f970e -EBUILD coco-2014.12.24.ebuild 839 BLAKE2B 8507e6b87f42b686feb601f742d9919e2d6a56fcb4ab0dade3c2365b9aa1d4b411640609282038869c74530d699a5f7fc61ec0394ac6ba17353591ca7ae7937a SHA512 a232c2d2e87316a5b903953fe8626fc2e6be35c18d306e6e9325cacb5912b87f9cb8866603d07b4fcec0eee19a3f533e2d452ed8e75d0034895e57eeb53fb404 +EBUILD coco-2014.12.24-r1.ebuild 719 BLAKE2B 4728323e68db96e7d809073705a56ee26b3c6daccedc3cca4a2eaa1a97c37866f592789813e7a997cacaaccd2049b11bb1a95fddcaa0e80a58ceef9b908bff21 SHA512 77d6470415e29bbe38a12ba5c80b4d4fbe8c6f95719f65c39956caf1c85ebd3e4fdfd5bbf555e1ba76bb06672f49edb67ab26bad13f75dbf75b2af5f67333364 MISC metadata.xml 413 BLAKE2B b2aa9bf31ee00f8e566e236cf74bcb8f66ffba5e17f2d6d59cea01508e1dbdea6096c68af3aa0342035dd173987a7b2466d7ba78bf3ebb92121f026581c95c60 SHA512 465c0da3ea75035edba3f11725dad039b397dcce3e2fb66afcd52f585ed977500af1b2ee0e031ab815ce68ad097d8a4b4ae9a5d26087ec8316f704efd0463a88 diff --git a/dev-dotnet/coco/coco-2014.12.24-r1.ebuild b/dev-dotnet/coco/coco-2014.12.24-r1.ebuild new file mode 100644 index 000000000000..11dab3e015e6 --- /dev/null +++ b/dev-dotnet/coco/coco-2014.12.24-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DOTNET_PKG_COMPAT=6.0 +unset NUGET_PACKAGES + +inherit dotnet-pkg + +DESCRIPTION="The compiler generator Coco/R for C#" +HOMEPAGE="https://github.com/boogie-org/coco/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/boogie-org/${PN}.git" +else + SRC_URI="https://github.com/boogie-org/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-2+" +SLOT="0" + +DOTNET_PKG_PROJECTS=( "${S}/Coco.csproj" ) +PATCHES=( "${FILESDIR}/${P}-Coco-csproj.patch" ) + +src_unpack() { + dotnet-pkg_src_unpack + + if [[ -n ${EGIT_REPO_URI} ]] ; then + git-r3_src_unpack + fi +} diff --git a/dev-dotnet/coco/coco-2014.12.24.ebuild b/dev-dotnet/coco/coco-2014.12.24.ebuild deleted file mode 100644 index 22b9b0c2c043..000000000000 --- a/dev-dotnet/coco/coco-2014.12.24.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DOTNET_PKG_COMPAT=6.0 -unset NUGET_PACKAGES - -inherit dotnet-pkg - -DESCRIPTION="The compiler generator Coco/R for C#" -HOMEPAGE="https://github.com/boogie-org/coco/" - -if [[ "${PV}" == *9999* ]] ; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/boogie-org/${PN}.git" -else - SRC_URI="https://github.com/boogie-org/${PN}/archive/${PV}.tar.gz - -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-2+" -SLOT="0" - -DOTNET_PKG_PROJECTS=( "${S}/Coco.csproj" ) -PATCHES=( "${FILESDIR}/${P}-Coco-csproj.patch" ) - -src_unpack() { - dotnet-pkg_src_unpack - - if [[ -n ${EGIT_REPO_URI} ]] ; then - git-r3_src_unpack - fi -} - -src_install() { - dotnet-pkg-base_install - dotnet-pkg-base_dolauncher "/usr/share/${P}/${PN^}" "${PN}" - - einstalldocs -} -- cgit v1.2.3