Skip to content

Commit

Permalink
Fix duplicate explicit target name
Browse files Browse the repository at this point in the history
- Pypi requires strict reStructuredText syntax
- New make target `doc-check`
  • Loading branch information
ymattw committed Mar 24, 2013
1 parent 04ac895 commit 850cfd1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGES
Expand Up @@ -37,7 +37,7 @@ Version 0.5 (2013-02-18)
- Support read output from ``svn diff --log`` and ``hg log -p``
- Streamline reading large patch set
- New ``--log (-l)`` option to read revision control diff log (thanks to
`Steven Myint <https://github.com/myint>`_)
`Steven Myint`_)

Version 0.4 (2013-02-16)

Expand All @@ -64,5 +64,6 @@ Version 0.0.4 (2013-02-04)
Version 0.0.3 (2013-02-04)

- Publish on PyPI, supports read patch from file, pipe and diff output from
revision tools (thanks to `Steven Myint <https://github.com/myint>`_)
revision tools (thanks to `Steven Myint`_)

.. _Steven Myint: https://github.com/myint
8 changes: 7 additions & 1 deletion Makefile
Expand Up @@ -3,13 +3,19 @@
TESTPYPI = http://testpypi.python.org/pypi
PYPI = http://pypi.python.org/pypi

.PHONY: dogfood clean build dist-test dist \
.PHONY: dogfood doc-check clean build dist-test dist \
test test3 cov cov3 html reg reg3 profile profile3

dogfood:
./cdiff.py
git diff | ./cdiff.py -s

doc-check:
./setup.py --long-description | rst2html.py --strict > output.html
python -m webbrowser -n "file://$(shell pwd)/output.html"
sleep 1
rm -f output.html

test: cov reg

test3: cov3 reg3
Expand Down

0 comments on commit 850cfd1

Please sign in to comment.