aboutsummaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-15 22:49:00 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-15 22:49:00 -0500
commitdf2fbdc9bd4387ee72d2b38df9abf0778175c2d4 (patch)
tree763dae2b1480e10e82427c476434802523474d27 /debian/patches
parentsuppress useless stuff from auth (diff)
downloadstackbin-df2fbdc9bd4387ee72d2b38df9abf0778175c2d4.tar.gz
stackbin-df2fbdc9bd4387ee72d2b38df9abf0778175c2d4.tar.bz2
stackbin-df2fbdc9bd4387ee72d2b38df9abf0778175c2d4.zip
add initial debian package recipe
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/series2
-rw-r--r--debian/patches/wsgi-ini-fix.patch13
2 files changed, 15 insertions, 0 deletions
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..411aacf
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+# You must remove unused comment lines for the released package.
+wsgi-ini-fix.patch
diff --git a/debian/patches/wsgi-ini-fix.patch b/debian/patches/wsgi-ini-fix.patch
new file mode 100644
index 0000000..7823ca6
--- /dev/null
+++ b/debian/patches/wsgi-ini-fix.patch
@@ -0,0 +1,13 @@
+--- a/stackbin.wsgi.ini.example
++++ b/stackbin.wsgi.ini.example
+@@ -1,8 +1,8 @@
+ [uwsgi]
+ # CentOS 7 uwsgi needs "python36" added to this list.
+-plugins = logfile, python36
++#plugins = logfile, python36
+ # Devuan Ceres does not.
+-#plugins = logfile
++plugins = logfile
+ http-socket = 127.0.0.1:4680
+ wsgi-file = /usr/libexec/stackbin/stackbin.py
+ callable = app
bgstack15