Skip to content

Commit

Permalink
remove all mrkd references from project
Browse files Browse the repository at this point in the history
  • Loading branch information
niftynei committed Sep 22, 2022
1 parent 838400c commit 8e6ad75
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 11 deletions.
1 change: 0 additions & 1 deletion .github/workflows/bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ jobs:
blinker \
flake8 \
mako \
mrkd \
pytest-sentry \
pytest-test-groups==1.0.3 \
pytest-custom-exit-code==0.3.0 \
Expand Down
1 change: 0 additions & 1 deletion contrib/docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ COPY . lightning
RUN cd lightning && \
git submodule update --init --recursive && \
./configure && \
pip3 install mrkd mistune==0.8.4 && \
make -j$(nproc) && \
make install

Expand Down
3 changes: 1 addition & 2 deletions contrib/docker/Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,4 @@ RUN pip3 install --upgrade pip && \
tqdm==4.26.0 \
pytest-test-groups==1.0.3 \
flake8==3.5.0 \
pytest-rerunfailures==3.1 \
mrkd==0.1.6
pytest-rerunfailures==3.1
2 changes: 1 addition & 1 deletion contrib/docker/Dockerfile.builder.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ RUN wget https://bitcoin.org/bin/bitcoin-core-$BITCOIN_VERSION/bitcoin-$BITCOIN_
rm -rf bitcoin.tar.gz bitcoin-$BITCOIN_VERSION

RUN python3 -m pip install --upgrade pip && \
python3 -m pip install python-bitcoinlib==0.10.2 pytest==3.0.5 setuptools==36.6.0 pytest-test-groups==1.0.3 flake8==3.5.0 pytest-rerunfailures==3.1 ephemeral-port-reserve==1.1.0 mrkd==0.1.6
python3 -m pip install python-bitcoinlib==0.10.2 pytest==3.0.5 setuptools==36.6.0 pytest-test-groups==1.0.3 flake8==3.5.0 pytest-rerunfailures==3.1 ephemeral-port-reserve==1.1.0
1 change: 0 additions & 1 deletion contrib/docker/linuxarm32v7.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ RUN git clone --recursive /tmp/lightning . && \

ARG DEVELOPER=0
ENV PYTHON_VERSION=3
RUN pip3 install mrkd
RUN ./configure --prefix=/tmp/lightning_install --enable-static && make -j3 DEVELOPER=${DEVELOPER} && make install

FROM arm32v7/debian:buster-slim as final
Expand Down
1 change: 0 additions & 1 deletion contrib/docker/linuxarm64v8.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ RUN git clone --recursive /tmp/lightning . && \

ARG DEVELOPER=0
ENV PYTHON_VERSION=3
RUN pip3 install mrkd
RUN ./configure --prefix=/tmp/lightning_install --enable-static && make -j3 DEVELOPER=${DEVELOPER} && make install

FROM arm64v8/debian:buster-slim as final
Expand Down
7 changes: 4 additions & 3 deletions doc/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ There are two ways to build core lightning, and this depends on how you want use
To build cln to just install a tagged or master version you can use the following commands:

pip3 install --upgrade pip
pip3 install mako mistune==0.8.4 mrkd
./configure
make
sudo make install
Expand Down Expand Up @@ -175,7 +174,7 @@ fiddle with compile time options:

# cd /usr/ports/net-p2p/c-lightning && make install

mrkd is required to build man pages from markdown files (not done by the port):
Install the python dependencies.

# cd /usr/ports/devel/py-pip && make install
$ pip install --user poetry
Expand Down Expand Up @@ -210,7 +209,9 @@ pkg_add git python gmake py3-pip libtool gmp
pkg_add automake # (select highest version, automake1.16.2 at time of writing)
pkg_add autoconf # (select highest version, autoconf-2.69p2 at time of writing)
```
Install `mako` and `mrkd` otherwise we run into build errors:

Install python dependencies with `poetry`

```
pip3.7 install --user poetry
poetry install
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ python = "^3.7"
pyln-client = { path = "./contrib/pyln-client", develop = true }
pyln-proto = { path = "./contrib/pyln-proto", develop = true }
Mako = "^1.1.6"
mrkd = { git = "https://github.com/refi64/mrkd.git", rev = "781f05eb9898ca652f18eed29b3c956389e6a2a7" }
websocket-client = "^1.2.3"
grpcio-tools = "1.47.0"
grpcio = "1.47.0"
Expand Down

0 comments on commit 8e6ad75

Please sign in to comment.