repoman: Remove pkgcheck.

This commit is contained in:
tastytea 2020-05-05 22:41:41 +02:00
parent 716f92551f
commit 413965ddd3
1 changed files with 5 additions and 4 deletions

View File

@ -12,11 +12,11 @@ RUN cp /workdir/etc/portage/make.conf /etc/portage/make.conf
ENV USE "-curl -idn -net -ssl -webdav"
RUN eselect profile set default/linux/amd64/17.1
RUN mkdir -p /etc/portage/package.accept_keywords
RUN echo -e 'app-portage/repoman\ndev-util/pkgcheck\n sys-apps/pkgcore' >> \
/etc/portage/package.accept_keywords/portage
RUN echo -e 'app-portage/repoman' \
>> /etc/portage/package.accept_keywords/portage
RUN quickpkg --include-config=y @world sys-libs/glibc
RUN emerge --root=/workdir --buildpkg=y --usepkg --quiet \
app-portage/repoman dev-vcs/git dev-util/pkgcheck
app-portage/repoman dev-vcs/git
RUN emerge --root=/workdir --rage-clean --quiet \
app-arch/tar \
app-arch/xz-utils \
@ -35,6 +35,7 @@ RUN rm -r /workdir/var/db/pkg
# Final image.
FROM gentoo/portage:latest
LABEL maintainer="tastytea+docker@tastytea.de"
LABEL description="Latest ~amd64 app-portage/repoman and dev-util/pkgcheck."
LABEL description="Latest ~amd64 app-portage/repoman."
COPY --from=build /workdir /
RUN eselect profile set default/linux/amd64/17.1
ENV LANG "en_DK.utf8"