]> git.phdru.name Git - m_librarian.git/commitdiff
Include docs in sdist
authorOleg Broytman <phd@phdru.name>
Tue, 10 May 2016 21:42:00 +0000 (00:42 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 10 May 2016 21:56:35 +0000 (00:56 +0300)
MANIFEST.in
mk-distr

index 8858236aee521704c31a5c3ecf493961cb1fb861..c132e576d17cdf253980c2efc11fc4ff1ed5c369 100644 (file)
@@ -1,7 +1,4 @@
-include docs/genapidocs
-include sample/m_librarian.conf
-include COPYING ChangeLog MANIFEST.in
-include TODO mk-distr
-include Makefile *.py *.rst *.txt *.css *.js *.html *.gif *.png
-recursive-include docs* *.txt
-recursive-include m_librarian *.mo
+include docs/genapidocs sample/m_librarian.conf
+include COPYING ChangeLog MANIFEST.in Makefile TODO mk-distr *.txt
+recursive-include docs* Makefile *.py *.rst *.txt *.css *.js *.html *.gif *.png
+recursive-include m_librarian/translations Makefile *.mo *.po
index 8efe00095ef813a3aec9774b3972700c775f5fb2..ff80c4cb418a9ac16652503ca13f28bc67e1289f 100755 (executable)
--- a/mk-distr
+++ b/mk-distr
@@ -5,6 +5,8 @@ umask 022 &&
 git archive --format=tar --prefix=m_librarian/ "${1:-HEAD}" |
    (cd "$HOME/tmp" && exec tar xf -) &&
 
+cp -ap docs* "$HOME/tmp/m_librarian" &&
+
 cd "$HOME/tmp/m_librarian" &&
 python setup.py sdist --formats=bztar &&
 cd dist && mv m_librarian-*.tar.bz2 ../.. && cd ../.. && exec rm -rf m_librarian