Skip to content

Commit 3420eec

Browse files
author
Gabriele Santomaggio
committed
update for 19.1
1 parent ce55edd commit 3420eec

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,29 @@ On Fedora/CentOS
1212

1313
```bash
1414
extract the tar.gz
15-
mkdir -p /usr/lib64/erlang/lib/sd_notify-0.11/priv/
16-
mkdir -p /usr/lib64/erlang/lib/sd_notify-0.11/ebin/
17-
cp priv/* /usr/lib64/erlang/lib/sd_notify-0.11/priv/
18-
cp ebin/* /usr/lib64/erlang/lib/sd_notify-0.11/ebin/
15+
mkdir -p /usr/lib64/erlang/lib/sd_notify-{version}/priv/
16+
mkdir -p /usr/lib64/erlang/lib/sd_notify-{version}/ebin/
17+
cp priv/* /usr/lib64/erlang/lib/sd_notify-{version}/priv/
18+
cp ebin/* /usr/lib64/erlang/lib/sd_notify-{version}/ebin/
1919
```
2020

2121
On Debian/Ubuntu
2222

2323
```bash
24-
dpkg -i erlang-sd-notify_0.11-1_amd64.deb
24+
dpkg -i erlang-sd-notify_{version}-1_amd64.deb
2525
```
2626

2727
Build from source using Docker
2828
===
2929

30-
On Ubuntu
30+
Ubuntu
3131

3232
```bash
3333
docker build -t build_ubuntu_{version} docker/ubuntu_{version}/
3434
docker run -v {sd_notify_dir}:/home/sd/ build_ubuntu_{version} /bin/sh -c "cd /home/sd/; make deb"
3535
```
3636

37-
on Centos
37+
Centos
3838

3939
```bash
4040
docker build -t build_centos_{version} docker/centos_{version}/

docker/.DS_Store

6 KB
Binary file not shown.

docker/centos_19/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ RUN yum install -y \
1313

1414

1515

16-
RUN wget https://github.com/rabbitmq/erlang-rpm/releases/download/v1.4.0/erlang-19.0-1.el7.centos.x86_64.rpm
16+
RUN wget https://github.com/rabbitmq/erlang-rpm/releases/download/v1.4.5/erlang-19.1.0-1.el7.centos.x86_64.rpm
1717

18-
RUN rpm -i erlang-19.0-1.el7.centos.x86_64.rpm
18+
RUN rpm -i erlang-19.1.0-1.el7.centos.x86_64.rpm
1919

2020
RUN wget https://github.com/rebar/rebar/wiki/rebar && chmod +x rebar
2121

docker/ubuntu_19/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ RUN apt-get install -y \
1818
RUN wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb
1919
RUN dpkg -i erlang-solutions_1.0_all.deb
2020
RUN apt-get update -y
21-
RUN apt-get install erlang=1:19.0-1 -y
21+
RUN apt-get install erlang=1:19.1-1 -y
2222
RUN apt-get install -y erlang-dev \
2323
erlang-eunit

packaging/.DS_Store

6 KB
Binary file not shown.

packaging/deb/.DS_Store

6 KB
Binary file not shown.

packaging/deb/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=0.11
1+
VERSION=0.12
22

33
# Directory names
44
DEB_BUILD_DIR=deb-build

packaging/deb/debian/changelog

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
erlang-sd-notify (0.11-1) UNRELEASED; urgency=medium
1+
erlang-sd-notify (0.12-1) UNRELEASED; urgency=medium
22

3-
* Update for 19.0
3+
* Update for 19.1
44

5-
-- Gabriele Santomaggio <g.santomaggio@gmail.com> Tue, 19 Jul 2016 14:12:18 +0000
5+
-- Gabriele Santomaggio <g.santomaggio@gmail.com> Fri, 23 Sep 2016 22:54:18 +0000
66

0 commit comments

Comments
 (0)