Created
April 2, 2023 07:29
-
-
Save zeldin/cecd3034aa6373ce673238b0683e00f2 to your computer and use it in GitHub Desktop.
Recipe for reproducing breezy bug on Debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:11.6 | |
ENV DEBIAN_FRONTEND=noninteractive | |
RUN echo 'deb-src http://deb.debian.org/debian bullseye main' >> \ | |
/etc/apt/sources.list && apt-get update | |
RUN apt-get install -y --no-install-recommends dpkg-dev | |
WORKDIR /tmp | |
RUN apt-get source breezy | |
RUN apt-get build-dep -y --no-install-recommends breezy | |
# for faster build | |
ENV DEB_BUILD_OPTIONS="nocheck nodocs" | |
RUN cd breezy-*/ && DEB_CFLAGS_MAINT_APPEND=-UNDEBUG dpkg-buildpackage -b | |
RUN dpkg -i python3-breezy_*.deb brz_*.deb | |
RUN brz branch http://mc.pp.se/bzr/amiwm | |
RUN cd amiwm && brz status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment