Skip to content

Instantly share code, notes, and snippets.

@zeldin
Created April 2, 2023 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeldin/cecd3034aa6373ce673238b0683e00f2 to your computer and use it in GitHub Desktop.
Save zeldin/cecd3034aa6373ce673238b0683e00f2 to your computer and use it in GitHub Desktop.
Recipe for reproducing breezy bug on Debian
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