diff --git a/MANIFEST.in b/MANIFEST.in index cf3139e..61b84c2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,7 @@ include AUTHORS include COPYING include NEWS -include README +include README.rst include TODO include setup.py recursive-include bin * diff --git a/README b/README.rst similarity index 98% rename from README rename to README.rst index 378e6a4..b6a5ead 100644 --- a/README +++ b/README.rst @@ -5,12 +5,12 @@ dev-portage/euscan ------------------ euscan is available in portage as a dev package (app-portage/euscan-9999). -This tool allow to check if a given package/ebuild has new upstream versions +This tool allows to check if a given package/ebuild has new upstream versions or not. It will use different heuristic to scan upstream and grab new versions and related urls. This tool was designed to mimic debian's uscan, but there is a major -difference between the two: uscan uses a specific "watch" file that describe +difference between the two: uscan uses a specific "watch" file that describes how it should scan packages, while euscan uses only what can already be found in ebuilds. Of course, we could later add some informations in metadata.xml to help euscan do its job more efficiently. @@ -242,4 +242,3 @@ This one uses rubygems's json API ### Pypy Uses pypy's XML rpc API. - diff --git a/euscanwww/djeuscan/tests.py b/euscanwww/djeuscan/tests.py deleted file mode 100644 index 6b60485..0000000 --- a/euscanwww/djeuscan/tests.py +++ /dev/null @@ -1,23 +0,0 @@ -""" -This file demonstrates two different styles of tests (one doctest and one -unittest). These will both pass when you run "manage.py test". - -Replace these with more appropriate tests for your application. -""" - -from django.test import TestCase - - -class SimpleTest(TestCase): - def test_basic_addition(self): - """ - Tests that 1 + 1 always equals 2. - """ - self.failUnlessEqual(1 + 1, 2) - -__test__ = {"doctest": """ -Another way to test that 1 + 1 is equal to 2. - ->>> 1 + 1 == 2 -True -"""} diff --git a/euscanwww/euscanwww/urls.py b/euscanwww/euscanwww/urls.py index 9472001..10abd70 100644 --- a/euscanwww/euscanwww/urls.py +++ b/euscanwww/euscanwww/urls.py @@ -21,4 +21,4 @@ if settings.DEBUG: url(r'^static/(?P.*)$', 'django.views.static.serve', { 'document_root': os.path.join(settings.EUSCAN_ROOT, 'htdocs'), }), - ) + )