summaryrefslogtreecommitdiffstats
path: root/python-template.SlackBuild
Commit message (Collapse)AuthorAgeFilesLines
* *.SlackBuild: Add arch specific handling for aarch6415.0 Heinz Wiesinger2023-05-131-0/+3
| | | | Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
* python-template.SlackBuild: Add build instructions for PEP 517/PEP 660 based ↵ Heinz Wiesinger2022-03-141-2/+10
| | | | projects
* *.SlackBuild: Support $PRINT_PACKAGE_NAME env var Heinz Wiesinger2021-07-031-1/+10
| | | | Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
* *.SlackBuild: SlackBuilds run in the directory they are in Heinz Wiesinger2021-07-031-1/+2
| | | | Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
* *.SlackBuild: Change shebang to /bin/bash Heinz Wiesinger2021-07-031-1/+1
| | | | Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
* python-template.SlackBuild: Explicitly state which python. Willy Sudiarto Raharjo2021-06-241-5/+5
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* python-template: Add python3 support. Willy Sudiarto Raharjo2020-01-261-2/+7
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* *.SlackBuild: Remove Whitespaces. Markus Rinne2017-09-201-1/+1
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* *.SlackBuild: Switch to i586. Willy Sudiarto Raharjo2016-07-091-3/+3
| | | | Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
* templates: Small whitespace fixup to calm the OCD. dsomero2013-12-071-1/+1
|
* templates: check for mode 750 in permissions Robby Workman2013-11-111-2/+2
| | | | Thanks to Nick Warne <nick@linicks.net> for the suggestion.
* *-template.SlackBuild: Fix "find -L ." usage Robby Workman2013-11-031-1/+1
| | | | Thanks to willysr for pointing out my thinko.
* *.SlackBuild: Add "-L" to the permissions-fixing find invocation Robby Workman2013-10-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From: Serg Bormant <bormant@gmail.com> Subject: [Slackbuilds-users] [BUG] SlackBuild templates Date: Fri, 21 Dec 2012 11:58:32 +0400 Hi, Consider something like this in source tarball: $ mkdir test; cd test $ mkdir docs; touch docs/README docs/COPYING $ ln -s docs/* . $ ls -o * lrwxrwxrwx 1 user 12 Dec 21 11:45 COPYING -> docs/COPYING lrwxrwxrwx 1 user 11 Dec 21 11:45 README -> docs/README docs: total 0 -rw-r--r-- 1 user 0 Dec 21 11:45 COPYING -rw-r--r-- 1 user 0 Dec 21 11:45 README *.SlackBuild templates offer this to sanitize permissions: find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; But -perm 777 will fire on symlinks and will set eXecutable permissions to docs/COPYING and docs/README. Using "find -L ..." or "... ! -type l ..." can help to avoid this.
* templates: check for mode 640 in permissions Robby Workman2013-10-301-2/+2
| | | | Thanks to Nick Warne <nick@linicks.net> for the suggestion.
* *.SlackBuild: strongly suggest BSD/MIT license Robby Workman2012-09-181-10/+24
|
* python-template: xargs -0 expects -print0 option from find Heinz Wiesinger2010-10-021-1/+1
|
* python-template: fix stripping files with single quotes in filename Heinz Wiesinger2010-10-021-1/+1
|
* python-template.SlackBuild: Minor tweaks. Robby Workman2010-06-011-2/+1
|
* Added python example template. dsomero2010-05-301-0/+120