mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-17 15:43:55 +00:00
In accordance with GLEP 31, the DESCRIPTION field of ebuilds should only contain ASCII characters. This commit converts the DESCRIPTION field of all affected ebuilds to ASCII only. Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
20 lines
430 B
Bash
20 lines
430 B
Bash
# Copyright 2024-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MYP=pytorch-rls-v${PV/_p/-}
|
|
DESCRIPTION="Intel Optimization for Chainer"
|
|
HOMEPAGE="https://github.com/intel/ideep"
|
|
SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/${MYP}.tar.gz
|
|
-> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}"/ideep-${MYP}
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
src_install() {
|
|
doheader -r include/*
|
|
}
|