Created
April 2, 2023 06:41
-
-
Save zeldin/166c88b95af28fe8b2583ee76cb2e470 to your computer and use it in GitHub Desktop.
Recipe for reproducing breezy bug on Ubuntu
This file contains 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 ubuntu:jammy | |
ENV DEBIAN_FRONTEND=noninteractive | |
RUN sed -i -e '/deb-src/s/^#//' /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