-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The build script is not being replaced because stdeb does not support custom changelogs
- Loading branch information
Showing
6 changed files
with
67 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
Package: pyhp | ||
Version: {0} | ||
Package: python3-pyhp-core | ||
Source: pyhp-core | ||
Version: {0}-1 | ||
Architecture: all | ||
Maintainer: Eric Wolf <[email protected]> | ||
Installed-Size: {1} | ||
Maintainer: {1} <{2}> | ||
Installed-Size: {3} | ||
Depends: python3:any (>= 3.7) | ||
Suggests: apache2 | ||
Section: web | ||
Recommends: python3-toml (>= 0.10.0), python3-werkzeug (>= 0.14.0) | ||
Section: python | ||
Priority: optional | ||
Homepage: https://github.com/Deric-W/PyHP | ||
Description: Application for embedding and using python code like php | ||
PyHP is a application/python package for embedding python code in text files like HTML, | ||
Homepage: {4} | ||
Description: {5} | ||
PyHP is a application/python package for embedding python code in text files like HTML, | ||
with several PHP functions available. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: pyhp | ||
Upstream-Contact: Eric Wolf <[email protected]> | ||
Source: https://github.com/Deric-W/PyHP | ||
Upstream-Name: python3-pyhp-core | ||
Upstream-Contact: {0} <{1}> | ||
Source: {2} | ||
Copyright: 2021 Eric Wolf | ||
License: GPLv3 | ||
License: {3} | ||
|
||
Files: * | ||
Copyright: 2021 Eric Wolf | ||
License: GPLv3 | ||
License: {3} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
#!/usr/bin/python3 | ||
# format stdin with cli arguments | ||
|
||
"""format stdin with cli arguments""" | ||
|
||
import sys | ||
|
||
data = sys.stdin.read() | ||
data = data.format(*sys.argv[1:]) | ||
sys.stdout.write(data) | ||
|
||
sys.stdout.write( | ||
sys.stdin.read().format(*sys.argv[1:]) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,10 +73,3 @@ enable = true | |
|
||
# how many files can be uploaded at once | ||
max_files = 20 | ||
|
||
|
||
|
||
|
||
|
||
|
||
|