annotate python/py-editorconfig/py-editorconfig.sh @ 1216:6710613b88b9

misc: remove build function
author David Demelier <markand@malikania.fr>
date Wed, 29 Sep 2021 13:49:32 +0200
parents 297b5eef115e
children 57dc83a39b13
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1115
297b5eef115e vanilla: change shebangs to /bin/sh
David Demelier <markand@malikania.fr>
parents: 1019
diff changeset
1 #!/bin/sh
65
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
2 #
60cc583e02cd python/py-editorconfig: initial import, closes #1130
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: 65
diff changeset
4 # Copyright (c) 2019 David Demelier <markand@malikania.fr>
65
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
5 #
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
6 # Permission to use, copy, modify, and/or distribute this software for any
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
7 # purpose with or without fee is hereby granted, provided that the above
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
8 # copyright notice and this permission notice appear in all copies.
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
9 #
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
17 #
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
18
143
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 65
diff changeset
19 PKGNAME=py-editorconfig
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 65
diff changeset
20 PKGVERSION=0.12.2
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 65
diff changeset
21 PKGREVISION=1
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 65
diff changeset
22 PKGLICENSE="BSD PSF"
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 65
diff changeset
23 PKGSUMMARY="EditorConfig File Locator and Interpreter for Python"
329cad4dc6b0 python: merge .sh and .info
David Demelier <markand@malikania.fr>
parents: 65
diff changeset
24 PKGDOWNLOAD="https://pypi.io/packages/source/E/EditorConfig/EditorConfig-$PKGVERSION.tar.gz"
902
a133976e0783 vanilla: remove all origins, closes #2203
David Demelier <markand@malikania.fr>
parents: 612
diff changeset
25 PKGDEPENDS="python"
65
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
26
1216
6710613b88b9 misc: remove build function
David Demelier <markand@malikania.fr>
parents: 1115
diff changeset
27 rm -rf EditorConfig-$PKGVERSION
6710613b88b9 misc: remove build function
David Demelier <markand@malikania.fr>
parents: 1115
diff changeset
28 tar xvf EditorConfig-$PKGVERSION.tar.gz
6710613b88b9 misc: remove build function
David Demelier <markand@malikania.fr>
parents: 1115
diff changeset
29 cd EditorConfig-$PKGVERSION
65
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
30
1216
6710613b88b9 misc: remove build function
David Demelier <markand@malikania.fr>
parents: 1115
diff changeset
31 python setup.py install --root=$DESTDIR --prefix=/.
65
60cc583e02cd python/py-editorconfig: initial import, closes #1130
Stéphane Péquignot <contact@stephanepequignot.fr>
parents:
diff changeset
32
1216
6710613b88b9 misc: remove build function
David Demelier <markand@malikania.fr>
parents: 1115
diff changeset
33 cd ..
6710613b88b9 misc: remove build function
David Demelier <markand@malikania.fr>
parents: 1115
diff changeset
34 rm -rf EditorConfig-$PKGVERSION