annotate python/py-daemon/py-daemon.sh @ 512:8e6c29fbd8fc

lib/pcre2: initial import, closes #1587
author David Demelier <markand@malikania.fr>
date Tue, 09 Apr 2019 20:10:00 +0200
parents 329cad4dc6b0
children 25cecc6dca48
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
67
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
1 #!/bin/sh
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
2 #
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
3 # Copyright (c) 2019 Stéphane Péquignot <contact@stephanepequignot.fr>
143
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
4 # Copyright (c) 2019 David Demelier <markand@malikania.fr>
67
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
5 #
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
6 # Permission to use, copy, modify, and/or distribute this software for any
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
7 # purpose with or without fee is hereby granted, provided that the above
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
8 # copyright notice and this permission notice appear in all copies.
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
9 #
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
17 #
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
18
143
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
19 PKGNAME=py-daemon
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
20 PKGVERSION=2.2.0
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
21 PKGREVISION=1
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
22 PKGLICENSE="APACHE20"
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
23 PKGSUMMARY="Library to implement a well-behaved Unix daemon process"
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
24 PKGDOWNLOAD="https://files.pythonhosted.org/packages/99/2a/75fe6aa7086e838570f29899f674e7896a42be26d9fff33f90d990e599d2/python-daemon-$PKGVERSION.tar.gz"
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
25 PKGDEPENDS="python/python"
67
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
26
143
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
27 build()
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
28 {
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
29 rm -rf python-daemon-$PKGVERSION
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
30 tar xvaf python-daemon-$PKGVERSION.tar.gz
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
31 pushd python-daemon-$PKGVERSION
67
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
32
143
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
33 python setup.py install --root=${DESTDIR:-/} -O1
67
9ac387ca4599 python/py-daemon: initial import, closes #1123
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
34
143
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
35 popd
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
36 rm -rf python-daemon-$PKGVERSION
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 67
diff changeset
37 }