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

Amazing new feature #2

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.py[co]
__pycache__/
*.class
/build
/tags
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ python:
- 3.4
- pypy
script:
- python -b -Wd pym/portage/tests/runTests
- ./setup.py test
- ./setup.py install --root=/tmp/install-root
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m portage.tests.runTests
19 changes: 19 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# docs
include DEVELOPING
include LICENSE
include TEST-NOTES

# docbook sources
include doc/custom.xsl
include doc/fragment/*
recursive-include doc *.docbook

# extra conf files used in ebuild
include cnf/make.conf.example.*

# extra files for tests
include .portage_not_installed
include cnf/metadata.dtd

# extra scripts
include misc/*
215 changes: 0 additions & 215 deletions Makefile

This file was deleted.

11 changes: 0 additions & 11 deletions doc/Makefile

This file was deleted.

Loading