summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2016-07-26 21:36:31 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2016-07-26 21:36:31 (GMT)
commit54706f6f3ff2386d75cbf5911ebffc79922b6580 (patch)
treeb130abfa55b3e7560dbd7385a3450a2ec8a9e9a4
parent779e4988cd4a06d27be4478f3fb20fba2a289dc8 (diff)
downloadmxe-54706f6f3ff2386d75cbf5911ebffc79922b6580.zip
mxe-54706f6f3ff2386d75cbf5911ebffc79922b6580.tar.gz
mxe-54706f6f3ff2386d75cbf5911ebffc79922b6580.tar.bz2
add Issue and Pull Request templates
See https://github.com/mxe/mxe/issues/1235
-rw-r--r--.github/ISSUE_TEMPLATE.md2
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md14
2 files changed, 16 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000..c57a7d8
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,2 @@
+If a package fails to build, upload the log file to
+[Gist](https://gist.github.com/) and put the link here.
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..510ab59
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,14 @@
+Please read the [Guidelines for Creating Packages](http://mxe.cc/#creating-packages).
+
+In particular, make sure that your build rules:
+
+ * do not run target executables with Wine,
+ * do not download anything while building,
+ * install `*.pc` file (if applicable),
+ * install `bin/test-<pkg>.exe` compiled with flags by `pkg-config`
+
+and `*.patch` files are generated by `tools/patch-tool-mxe`.
+
+If you add a package, you can use tool `tools/skeleton.py`.
+
+Thanks!