mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-18 02:16:59 +02:00
app-portage/repoman: delete repoman
Delete deprecated ebuild that was pulled in by coreos-devel/sdk-extras.
This commit is contained in:
parent
4e800b6ad0
commit
6848f95797
@ -1 +0,0 @@
|
|||||||
DIST repoman-3.0.2.tar.bz2 88258 BLAKE2B 32c4d6750fd225cf9fc071be0ffbb38563ffdaf50f1f1ac7247ce3733bd781cd699052101df8b6565fd3d32ec6d9a54efb611b815a722b7954d8100ce01de146 SHA512 fd5b4549a0b108ed1ad37fc0766fc73db127bba8b023a74566ee0167e2a9c56c8597b83ead16522aaf84f158a9a5d0d59e4b5bcc908e6024724c087c837e1fa2
|
|
@ -1,3 +0,0 @@
|
|||||||
This is a fork of app-portage/repoman package. The sole reason for
|
|
||||||
having it here is to drop support for python 3.8 and 3.9 we haven't
|
|
||||||
yet packaged.
|
|
@ -1,12 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
|
||||||
<pkgmetadata>
|
|
||||||
<upstream>
|
|
||||||
<bugs-to>mailto:dev-portage@gentoo.org</bugs-to>
|
|
||||||
<changelog>https://gitweb.gentoo.org/proj/portage.git/plain/RELEASE-NOTES</changelog>
|
|
||||||
<doc>https://wiki.gentoo.org/wiki/Handbook:AMD64/Working/Portage</doc>
|
|
||||||
</upstream>
|
|
||||||
<maintainer type="project">
|
|
||||||
<email>dev-portage@gentoo.org</email>
|
|
||||||
</maintainer>
|
|
||||||
</pkgmetadata>
|
|
@ -1,68 +0,0 @@
|
|||||||
# Copyright 1999-2020 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
# Flatcar: Based on repoman-3.0.2.ebuild from commit
|
|
||||||
# 375d601ca5d48a81a2d03d62853fc7b7085f8210 in Gentoo repo (see
|
|
||||||
# https://gitweb.gentoo.org/repo/gentoo.git/plain/app-portage/repoman/repoman-3.0.2.ebuild?id=375d601ca5d48a81a2d03d62853fc7b7085f8210).
|
|
||||||
|
|
||||||
EAPI=7
|
|
||||||
|
|
||||||
DISTUTILS_USE_SETUPTOOLS=no
|
|
||||||
PYTHON_COMPAT=( python3_{6..7} pypy3 )
|
|
||||||
PYTHON_REQ_USE='bzip2(+)'
|
|
||||||
|
|
||||||
inherit distutils-r1
|
|
||||||
|
|
||||||
if [[ ${PV} == *9999 ]]; then
|
|
||||||
inherit git-r3
|
|
||||||
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git"
|
|
||||||
S="${WORKDIR}/${P}/repoman"
|
|
||||||
else
|
|
||||||
SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2"
|
|
||||||
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
|
||||||
fi
|
|
||||||
|
|
||||||
DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds"
|
|
||||||
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage"
|
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
|
||||||
SLOT="0"
|
|
||||||
IUSE=""
|
|
||||||
|
|
||||||
RDEPEND="
|
|
||||||
>=sys-apps/portage-3.0.4[${PYTHON_USEDEP}]
|
|
||||||
>=dev-python/lxml-3.6.0[${PYTHON_USEDEP}]
|
|
||||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
|
||||||
"
|
|
||||||
DEPEND="${RDEPEND}"
|
|
||||||
|
|
||||||
python_test() {
|
|
||||||
esetup.py test
|
|
||||||
}
|
|
||||||
|
|
||||||
python_install() {
|
|
||||||
# Install sbin scripts to bindir for python-exec linking
|
|
||||||
# they will be relocated in pkg_preinst()
|
|
||||||
distutils-r1_python_install \
|
|
||||||
--system-prefix="${EPREFIX}/usr" \
|
|
||||||
--bindir="$(python_get_scriptdir)" \
|
|
||||||
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
|
|
||||||
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
|
|
||||||
--sbindir="$(python_get_scriptdir)" \
|
|
||||||
--sysconfdir="${EPREFIX}/etc" \
|
|
||||||
"${@}"
|
|
||||||
}
|
|
||||||
|
|
||||||
pkg_postinst() {
|
|
||||||
if [[ -z {REPLACING_VERSIONS} ]]; then
|
|
||||||
elog ""
|
|
||||||
elog "This release of repoman is from the new portage/repoman split"
|
|
||||||
elog "release code base."
|
|
||||||
elog "This new repoman code base is still being developed. So its API's"
|
|
||||||
elog "are not to be considered stable and are subject to change."
|
|
||||||
elog "The code released has been tested and considered ready for use."
|
|
||||||
elog "This however does not guarantee it to be completely bug free."
|
|
||||||
elog "Please report any bugs you may encounter."
|
|
||||||
elog ""
|
|
||||||
fi
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user