Skip to content

Commit

Permalink
Fix checkinstall command
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kus committed Nov 20, 2019
1 parent 76cfc82 commit 41277a4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
10 changes: 1 addition & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,7 @@ before_deploy:
- cd $TRAVIS_BUILD_DIR/build
- export XFIFT_VERSION=$(bash ../scripts/xfift_version.sh)
- echo "Jupyter kernel for the Fift language\n" > description-pak
- sudo checkinstall \
--arch="amd64" \
--pkgname="xeus-fift" \
--pkgversion=$XFIFT_VERSION \
--pkgrelease="1" \
--pkglicense="GPL-3" \
--pkgsource="https://github.com/atomex-me/xeus-fift" \
--maintainer="mz@atomex.me" \
--install=no -y -D -d2 make install
- sudo checkinstall --arch="amd64" --pkgname="xeus-fift" --pkgversion=$XFIFT_VERSION --pkgrelease="1" --pkglicense="GPL-3" --pkgsource="https://github.com/atomex-me/xeus-fift" --maintainer="mz@atomex.me" --install=no -y -D -d2 make install

deploy:
provider: releases
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ USER jupyter
WORKDIR /home/jupyter

EXPOSE 8888
CMD jupyter notebook --port=8888 --ip=0.0.0.0 --no-browser --no-mathjax
ENTRYPOINT [ "jupyter", "notebook", "--port=8888", "--ip=0.0.0.0", "--no-browser", "--no-mathjax"]
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Xeus-Fift
[![Build Status](https://travis-ci.org/atomex-me/xeus-fift.svg?branch=master)](https://travis-ci.org/atomex-me/xeus-fift)
[![Docker Build Status](https://img.shields.io/docker/cloud/build/atomex/xeus-fift)](https://hub.docker.com/r/atomex/xeus-fift)
[![made_with xeus](https://github.com/QuantStack/xeus)](https://img.shields.io/badge/made_with-xeus-yellowgreen.svg)
[![made_with xeus](https://img.shields.io/badge/made_with-xeus-yellowgreen.svg)](https://github.com/QuantStack/xeus)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Jupyter kernel for the Fift language (and TVM assembler)
Expand All @@ -14,6 +14,10 @@ Jupyter kernel for the Fift language (and TVM assembler)

### Pull docker image

```
docker run --rm -p 127.0.0.1:8888:8888 -v $(pwd):/home/jupyter/notebooks atomex/xeus-fift
```

### Install .deb package

### Build from sources

0 comments on commit 41277a4

Please sign in to comment.