diff -Nru elixir-lang-1.1.0/debian/changelog elixir-lang-1.1.0/debian/changelog --- elixir-lang-1.1.0/debian/changelog 2015-09-28 16:24:54.000000000 +0200 +++ elixir-lang-1.1.0/debian/changelog 2016-05-13 21:04:24.000000000 +0200 @@ -1,3 +1,13 @@ +elixir-lang (1.1.0-1.1) unstable; urgency=medium + + [ Anton Gladky ] + * Non-maintainer upload. + + [ Sergei Golovan ] + * Kill daemon after test phase. (Closes: #819122) + + -- Anton Gladky Fri, 13 May 2016 21:02:10 +0200 + elixir-lang (1.1.0-1) unstable; urgency=medium [ Evgeny Golyshev ] diff -Nru elixir-lang-1.1.0/debian/patches/10_kill_after_build.patch elixir-lang-1.1.0/debian/patches/10_kill_after_build.patch --- elixir-lang-1.1.0/debian/patches/10_kill_after_build.patch 1970-01-01 01:00:00.000000000 +0100 +++ elixir-lang-1.1.0/debian/patches/10_kill_after_build.patch 2016-05-13 20:59:58.000000000 +0200 @@ -0,0 +1,25 @@ +Description: Starts epmd as a daemon during test phase and kills it afterwards +Author: Sergei Golovan +Reviewed-By: Anton Gladky +Bug-Debian: https://bugs.debian.org/819122 +Last-Updated: 2016-05-13 + +Index: elixir-lang-1.1.0/Makefile +=================================================================== +--- elixir-lang-1.1.0.orig/Makefile ++++ elixir-lang-1.1.0/Makefile +@@ -223,12 +223,13 @@ test_doc_test: compile + + test_stdlib: compile + @ echo "==> elixir (exunit)" +- $(Q) exec epmd & exit ++ $(Q) epmd -daemon + $(Q) if [ "$(OS)" = "Windows_NT" ]; then \ + cd lib/elixir && cmd //C call ../../bin/elixir.bat -r "test/elixir/test_helper.exs" -pr "test/elixir/**/*_test.exs"; \ + else \ + cd lib/elixir && ../../bin/elixir -r "test/elixir/test_helper.exs" -pr "test/elixir/**/*_test.exs"; \ + fi ++ $(Q) epmd -kill + + #==> Dialyzer tasks + diff -Nru elixir-lang-1.1.0/debian/patches/series elixir-lang-1.1.0/debian/patches/series --- elixir-lang-1.1.0/debian/patches/series 1970-01-01 01:00:00.000000000 +0100 +++ elixir-lang-1.1.0/debian/patches/series 2016-05-13 15:58:01.000000000 +0200 @@ -0,0 +1 @@ +10_kill_after_build.patch