Author: cito
Date: Fri Jan 15 13:03:24 2016
New Revision: 755

Log:
Some more improvements in mkdocs and mktar

Modified:
   branches/4.x/MANIFEST.in
   branches/4.x/mkdocs
   branches/4.x/mktar
   trunk/MANIFEST.in
   trunk/mkdocs
   trunk/mktar

Modified: branches/4.x/MANIFEST.in
==============================================================================
--- branches/4.x/MANIFEST.in    Fri Jan 15 12:46:53 2016        (r754)
+++ branches/4.x/MANIFEST.in    Fri Jan 15 13:03:24 2016        (r755)
@@ -2,6 +2,8 @@
 include *.h
 include *.py
 include *.cfg
+include *.rst
+include *.txt
 recursive-include tests *.py
 recursive-include docs *.html *.css *.txt *.js *.gif *.png *.ico *.py Makefile 
*.bat *.rst *.css_t
 

Modified: branches/4.x/mkdocs
==============================================================================
--- branches/4.x/mkdocs Fri Jan 15 12:46:53 2016        (r754)
+++ branches/4.x/mkdocs Fri Jan 15 13:03:24 2016        (r755)
@@ -15,3 +15,4 @@
 cd docs
 ${MAKE} clean
 ${MAKE} html
+rm -f build/html/.buildinfo

Modified: branches/4.x/mktar
==============================================================================
--- branches/4.x/mktar  Fri Jan 15 12:46:53 2016        (r754)
+++ branches/4.x/mktar  Fri Jan 15 13:03:24 2016        (r755)
@@ -40,8 +40,9 @@
 
 MODFILES="pg.py pgdb.py pgmodule.c
           pgfs.h pgtypes.h
-          setup.py setup.cfg"
-DOCFILES="docs/Makefile docs/make.bat docs/*.rst
+          setup.py setup.cfg
+          LICENSE.txt README.rst MANIFEST.in"
+DOCFILES="docs/Makefile docs/make.bat docs/*.rst docs/*.py
           docs/contents docs/download docs/community
           docs/_static docs/_templates"
 HTMLFILES="docs/_build/html"

Modified: trunk/MANIFEST.in
==============================================================================
--- trunk/MANIFEST.in   Fri Jan 15 12:46:53 2016        (r754)
+++ trunk/MANIFEST.in   Fri Jan 15 13:03:24 2016        (r755)
@@ -2,11 +2,21 @@
 include *.h
 include *.py
 include *.cfg
+include *.rst
+include *.txt
 recursive-include tests *.py
-recursive-include docs *.html *.css *.txt *.js *.gif *.png *.ico *.py Makefile 
*.bat *.rst *.css_t
-
+include docs/Makefile
+include docs/make.bat
+include docs *.py *.rst
+recursive-include docs/community *.rst
+recursive-include docs/contents *.rst
+recursive-include docs/download *.rst
+recursive-include docs/_static *.css_t *.ico *.png
+recursive-include docs/_template *.html
+recursive-include docs/_build/html *.css *.gif *.html *.ico *.js *.png *.txt
+global-exclude *.pyd
 global-exclude *.pyc
 global-exclude *.pyo
 global-exclude *.o
 global-exclude *.so
-global-exclude _pg.*
\ No newline at end of file
+global-exclude _pg.*

Modified: trunk/mkdocs
==============================================================================
--- trunk/mkdocs        Fri Jan 15 12:46:53 2016        (r754)
+++ trunk/mkdocs        Fri Jan 15 13:03:24 2016        (r755)
@@ -1,5 +1,8 @@
 #! /bin/sh
 
+MAKE=make
+which gmake && MAKE=gmake
+
 # small safety test
 if [ ! -f pgmodule.c ]
 then
@@ -10,4 +13,6 @@
 echo "Making Sphinx docs..."
 
 cd docs
-make html
+${MAKE} clean
+${MAKE} html
+rm -f build/html/.buildinfo

Modified: trunk/mktar
==============================================================================
--- trunk/mktar Fri Jan 15 12:46:53 2016        (r754)
+++ trunk/mktar Fri Jan 15 13:03:24 2016        (r755)
@@ -40,8 +40,9 @@
 
 MODFILES="pg.py pgdb.py pgmodule.c
           pgtypes.h py3c.h
-          setup.py setup.cfg"
-DOCFILES="docs/Makefile docs/make.bat docs/*.rst
+          setup.py setup.cfg
+          LICENSE.txt README.rst MANIFEST.inq "
+DOCFILES="docs/Makefile docs/make.bat docs/*.rst docs/*.py
           docs/contents docs/download docs/community
           docs/_static docs/_templates"
 HTMLFILES="docs/_build/html"
_______________________________________________
PyGreSQL mailing list
[email protected]
https://mail.vex.net/mailman/listinfo.cgi/pygresql

Reply via email to