From d30ba771c329e26d49867aa4133789114fa9508b Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Tue, 2 Jan 2018 14:47:29 +0530 Subject: [PATCH] Complete some of the pending changing in renaming some files to .md In commit d4b4791, four files were renamed by adding a file extension .md The files are CONTRIBUTING, COPYING, HACKING and INSTALL This commit fixes the pending tasks and especially the bug where HACKING.md is wrongly listed as HACKING in debian/plinth.docs and cause build failure for the Debian package of Plinth Signed-off-by: Joseph Nuthalapati Signed-off-by: Sunil Mohan Adapa Reviewed-by: Sunil Mohan Adapa --- CONTRIBUTING.md | 2 +- HACKING.md | 2 +- README.md | 2 +- debian/plinth.docs | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 767bb2795..43e02a77b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,7 +3,7 @@ The goal is a readable log of code changes, to enhance transparency of their purpose and simplify debugging. Consider these guidelines as best practices, not as absolute rules - we're all learning by doing, and imperfect changes and commits are much better than none at all. For an introduction how to edit and -test the code, have look into the HACKING file. Note that you need some basic +test the code, have look into the HACKING.md file. Note that you need some basic understanding of Git to contribute; there are many tutorials in the Internet that we cannot repeat here. diff --git a/HACKING.md b/HACKING.md index c348208ca..630ff7a4a 100644 --- a/HACKING.md +++ b/HACKING.md @@ -28,7 +28,7 @@ The entire setup is automatic and requires about 4.5 GB of disk space. ## Installing Dependencies -Apart from dependencies listing in INSTALL file, Plinth may have additional +Apart from dependencies listing in INSTALL.md file, Plinth may have additional dependencies required by modules of Plinth. To install these, run: $ sudo apt install -y $(plinth --list-dependencies) diff --git a/README.md b/README.md index 82d375474..64eb934c8 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ the [FreedomBox Wiki](https://wiki.debian.org/FreedomBox/) and the # Getting Started -See the INSTALL file for additional details and dependencies. To install run: +See the INSTALL.md file for additional details and dependencies. To install run: $ sudo python3 setup.py install diff --git a/debian/plinth.docs b/debian/plinth.docs index 408bb2b65..86db8bce2 100644 --- a/debian/plinth.docs +++ b/debian/plinth.docs @@ -1,5 +1,5 @@ README.md -HACKING +HACKING.md doc/*.html doc/*.pdf doc/images diff --git a/setup.py b/setup.py index 32a83d572..69adc3dc2 100755 --- a/setup.py +++ b/setup.py @@ -190,7 +190,7 @@ setuptools.setup( exclude=['*.templates']), scripts=['bin/plinth'], test_suite='plinth.tests.runtests.run_tests', - license='COPYING', + license='COPYING.md', classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Web Environment',