Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added python3-dateutil #1

Merged
merged 2 commits into from
Oct 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,18 @@
dest: /etc/aminer/conf-enabled/pytz
state: link

- name: link python3-dateutil
file:
src: /usr/lib/python3/dist-packages/dateutil
dest: /etc/aminer/conf-enabled/dateutil
state: link

- name: link python3-six
file:
src: /usr/lib/python3/dist-packages/six.py
dest: /etc/aminer/conf-enabled/six.py
state: link

- name: create man-page for AMiner
shell:
cmd: xsltproc --output /usr/share/man/man1/AMiner.1 -''-nonet -''-param man.charmap.use.subset "0" -''-param make.year.ranges "1" -''-param make.single.year.ranges "1" /usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl {{aminer_repopath}}/debian/AMiner.1.xml && gzip /usr/share/man/man1/AMiner.1
Expand Down
2 changes: 2 additions & 0 deletions vars/Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ aminer_packages:
- python3-scipy
- python3-pkg-resources
- python3-setuptools
- python3-dateutil
- python3-six
- xsltproc
- docbook-xsl
- gzip
Expand Down