sugarlabs / sugar

Sugar GTK shell
GNU General Public License v3.0
253 stars 241 forks source link

make dist command will now add docs folder and README.md file in the output zip #846

Closed sukhdeepg closed 5 years ago

sukhdeepg commented 5 years ago

I've edited the Makefile.am to add docs folder and README.md file in zip that is created after make dist command.

quozl commented 5 years ago

Thanks. Tested. Changes to .tar.xz file were;

--- old 2019-07-18 15:23:52.485607116 +1000
+++ new 2019-07-18 15:23:58.245546253 +1000
@@ -49,6 +48,24 @@
 sugar-0.114/data/sugar-72.gtkrc
 sugar-0.114/data/sugar.desktop
 sugar-0.114/data/sugar.xml.in
+sugar-0.114/docs/
+sugar-0.114/docs/controls.txt
+sugar-0.114/docs/debian.md
+sugar-0.114/docs/debian-packaging-example.md
+sugar-0.114/docs/debian-packaging-example.md.~1~
+sugar-0.114/docs/debian-packaging-example.md.~2~
+sugar-0.114/docs/design.txt
+sugar-0.114/docs/development-environment.md
+sugar-0.114/docs/fedora.md
+sugar-0.114/docs/GPL-C.txt
+sugar-0.114/docs/GPL-python.txt
+sugar-0.114/docs/LGPL-C.txt
+sugar-0.114/docs/LGPL-python.txt
+sugar-0.114/docs/README.md
+sugar-0.114/docs/release_howto.txt
+sugar-0.114/docs/rpi.md
+sugar-0.114/docs/rpi-soas.md
+sugar-0.114/docs/ubuntu.md
 sugar-0.114/extensions/
 sugar-0.114/extensions/cpsection/
 sugar-0.114/extensions/cpsection/aboutcomputer/
@@ -180,6 +197,7 @@
 sugar-0.114/Makefile.am
 sugar-0.114/Makefile.in
 sugar-0.114/missing
+sugar-0.114/NEWS
 sugar-0.114/po/
 sugar-0.114/po/ach.po
 sugar-0.114/po/adh.po
@@ -358,6 +376,7 @@
 sugar-0.114/po/zh_TW.po
 sugar-0.114/po/zu.po
 sugar-0.114/py-compile
+sugar-0.114/README.md
 sugar-0.114/src/
 sugar-0.114/src/jarabe/
 sugar-0.114/src/jarabe/apisocket.py

Inclusion of editor backup files is a minor irritation that I'll have to live with.

Merged by hand with rewrite of commit message, see ba6658894ad2d0bd697ddd72770dc79ff7b25f9d.

In future for automation, please add "fixes #821" to pull request, or "Fixes https://github.com/sugarlabs/sugar/issues/821" to commit message. Please also see making commits for how to write commit messages.

sukhdeepg commented 5 years ago

Understood. Thanks!