Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/icnc/, profiles/
Date: Thu, 01 Oct 2020 15:13:19
Message-Id: 1601565177.5853a44d263e575146571e194e104f7a1e0bd703.mgorny@gentoo
1 commit: 5853a44d263e575146571e194e104f7a1e0bd703
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 1 15:11:15 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 1 15:12:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5853a44d
7
8 dev-cpp/icnc: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/735272
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-cpp/icnc/Manifest | 1 -
14 dev-cpp/icnc/icnc-1.0.100.ebuild | 77 ----------------------------------------
15 dev-cpp/icnc/metadata.xml | 11 ------
16 profiles/package.mask | 9 -----
17 4 files changed, 98 deletions(-)
18
19 diff --git a/dev-cpp/icnc/Manifest b/dev-cpp/icnc/Manifest
20 deleted file mode 100644
21 index 7edb8f85b34..00000000000
22 --- a/dev-cpp/icnc/Manifest
23 +++ /dev/null
24 @@ -1 +0,0 @@
25 -DIST icnc-1.0.100.tar.gz 27164070 BLAKE2B 74c9e79b3d8fa0f75ee924910bde79bf0ac1535ce0e7e5e74dcac33a8219f574aadf7382a8d73ae281858ee3ae8f186ca55d33c22dfce223d1bb84c28ca42ddf SHA512 b6c231504ed36676d5c4a9c651c7ce6bee078a415c8d365dbe66208a5226a71c62924ee7bc0b36f8c35bff20ed5f0baf2710f581595d08fe10a1d799b3982a8b
26
27 diff --git a/dev-cpp/icnc/icnc-1.0.100.ebuild b/dev-cpp/icnc/icnc-1.0.100.ebuild
28 deleted file mode 100644
29 index 85a28e528c1..00000000000
30 --- a/dev-cpp/icnc/icnc-1.0.100.ebuild
31 +++ /dev/null
32 @@ -1,77 +0,0 @@
33 -# Copyright 1999-2015 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=5
37 -
38 -PYTHON_COMPAT=( python2_7 )
39 -
40 -inherit cmake-utils multilib python-any-r1
41 -
42 -DESCRIPTION="Intel Concurrent Collections for C++ - Parallelism without the Pain"
43 -HOMEPAGE="https://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc"
44 -
45 -if [[ $PV = 9999 ]]; then
46 - inherit git-r3
47 - EGIT_REPO_URI="https://github.com/icnc/icnc.git"
48 - KEYWORDS=
49 -else
50 - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 - KEYWORDS="~amd64"
52 -fi
53 -
54 -LICENSE="BSD"
55 -SLOT="0"
56 -IUSE="doc examples mpi test"
57 -RESTRICT="test" #currently tests only work if icnc is already installed
58 -
59 -RDEPEND="
60 - >=dev-cpp/tbb-4.2
61 - sys-libs/glibc
62 - mpi? ( virtual/mpi )
63 - "
64 -DEPEND="
65 - ${RDEPEND}
66 - doc? ( app-doc/doxygen )
67 - test? ( ${PYTHON_DEPS} )
68 - "
69 -
70 -src_configure() {
71 - local mycmakeargs=(
72 - $(cmake-utils_use mpi BUILD_LIBS_FOR_MPI)
73 - -DLIB=$(get_libdir)
74 - $(cmake-utils_use_find_package doc Doxygen)
75 - )
76 - cmake-utils_src_configure
77 - if use test ; then
78 - mycmakeargs=( -DRUN_DIST=OFF )
79 - CMAKE_USE_DIR="${S}/tests" \
80 - BUILD_DIR="${WORKDIR}/${P}_tests_build" \
81 - cmake-utils_src_configure
82 - fi
83 -}
84 -
85 -src_compile() {
86 - cmake-utils_src_compile
87 - use test && BUILD_DIR="${WORKDIR}/${P}_tests_build" cmake-utils_src_compile
88 -}
89 -
90 -src_test() {
91 - BUILD_DIR="${WORKDIR}/${P}_tests_build" cmake-utils_src_test
92 -}
93 -
94 -src_install() {
95 - cmake-utils_src_install
96 - if use doc ; then
97 - insinto /usr/share/doc/${P}/html
98 - doins -r "${ED}"/usr/doc/api/*
99 - fi
100 - rm -fr "${ED}"/usr/doc
101 - if use examples ; then
102 - insinto /usr/share/${PN}/examples
103 - doins -r "${ED}"/usr/samples/*
104 - fi
105 - rm -r "${ED}"/usr/samples || die
106 - insinto /usr/share/${PN}/
107 - doins -r "${ED}"/usr/misc/*
108 - rm -r "${ED}"/usr/misc/ || die
109 -}
110
111 diff --git a/dev-cpp/icnc/metadata.xml b/dev-cpp/icnc/metadata.xml
112 deleted file mode 100644
113 index fa8784ee053..00000000000
114 --- a/dev-cpp/icnc/metadata.xml
115 +++ /dev/null
116 @@ -1,11 +0,0 @@
117 -<?xml version="1.0" encoding="UTF-8"?>
118 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
119 -<pkgmetadata>
120 - <maintainer type="person">
121 - <email>junghans@g.o</email>
122 - <name>Christoph Junghans</name>
123 - </maintainer>
124 - <upstream>
125 - <remote-id type="github">icnc/icnc</remote-id>
126 - </upstream>
127 -</pkgmetadata>
128
129 diff --git a/profiles/package.mask b/profiles/package.mask
130 index 39c56161339..b96ce70b3a9 100644
131 --- a/profiles/package.mask
132 +++ b/profiles/package.mask
133 @@ -593,15 +593,6 @@ app-i18n/scim-wijesekera
134 # Removal in 30 days. Bug #732130.
135 dev-go/siphash
136
137 -# Michał Górny <mgorny@g.o> (2020-09-01)
138 -# The following packages are Python 2 only. All but sys-boot/udk have
139 -# no reverse dependencies; sys-boot/udk's only revdep is sys-boot/refind
140 -# and it removed support for udk in its newest version. Their
141 -# maintainers have either not replied or requested removing the package.
142 -# Please do not remove the mask unless you port the package to py3.7+.
143 -# Removal in 30 days. Package bugs found blocking tracker bug #694800.
144 -dev-cpp/icnc
145 -
146 # Piotr Karbowski <slashbeast@g.o> (2020-08-28)
147 # Temporary mask due to multiple reports of segfaults at startup, bug #739056
148 =x11-base/xorg-server-1.20.9