From 18466eb7f8f3cd4ca9a0824074d2ff454939fce6 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Wed, 4 Jan 2012 17:23:13 +0100 Subject: some fixes --- pavement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pavement.py') diff --git a/pavement.py b/pavement.py index ac9a6fa1a..8ebd5bfc5 100644 --- a/pavement.py +++ b/pavement.py @@ -23,7 +23,7 @@ if sys.version_info <= (2, 5): setup( name="pyload", - version="0.4.9", + version="0.5.0", description='Fast, lightweight and full featured download manager.', long_description=open(PROJECT_DIR / "README").read(), keywords = ('pyload', 'download-manager', 'one-click-hoster', 'download'), -- cgit v1.2.3 From 1bb6ebf544b43cacf7c0755c5a8608b79b95e2d6 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sat, 7 Jan 2012 20:11:16 +0100 Subject: MultiHoster plugin type, some fixes, new documentation structure --- pavement.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'pavement.py') diff --git a/pavement.py b/pavement.py index 8ebd5bfc5..f3e8651c5 100644 --- a/pavement.py +++ b/pavement.py @@ -5,6 +5,21 @@ from paver.easy import * from paver.setuputils import setup from paver.doctools import cog +import fnmatch + +# patch to let it support list of patterns +def new_fnmatch(self, pattern): + if type(pattern) == list: + for p in pattern: + if fnmatch.fnmatch(self.name, p): + return True + return False + else: + return fnmatch.fnmatch(self.name, pattern) + +path.fnmatch = new_fnmatch + + import sys import re from urllib import urlretrieve @@ -86,7 +101,7 @@ options( virtual="virtualenv2", ), cog=Bunch( - pattern="*.py", + pattern=["*.py", "*.rst"], ) ) -- cgit v1.2.3 From cda057e979cbdc8022687e1810b876b371c8c11f Mon Sep 17 00:00:00 2001 From: RaNaN Date: Fri, 13 Jan 2012 10:58:51 +0100 Subject: fix info page, removed icons --- pavement.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'pavement.py') diff --git a/pavement.py b/pavement.py index f3e8651c5..4b5ccb883 100644 --- a/pavement.py +++ b/pavement.py @@ -3,7 +3,10 @@ from paver.easy import * from paver.setuputils import setup -from paver.doctools import cog +try: + from paver.doctools import cog +except: + cog = None import fnmatch @@ -162,7 +165,7 @@ def get_source(options): @task -@needs('clean', 'generate_setup', 'minilib', 'get_source', 'setuptools.command.sdist') +@needs('clean', 'generate_setup', 'get_source', 'setuptools.command.sdist') def sdist(): """ Build source code package with distutils """ @@ -257,7 +260,8 @@ def generate_locale(): @task def tests(): - call(["nosetests2"]) + """ Run nosetests """ + call(["tests/nosetests.sh"]) @task def virtualenv(options): @@ -278,7 +282,7 @@ def clean_env(): @task -@needs('generate_setup', 'minilib', 'get_source', 'virtualenv') +@needs('generate_setup', 'get_source', 'virtualenv') def env_install(): """Install pyLoad into the virtualenv""" venv = options.virtualenv -- cgit v1.2.3 From 4df2b77fdf42046fe19bd371be7c7255986b5980 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Tue, 6 Mar 2012 13:36:39 +0100 Subject: renamed hooks to addons, new filemanager and database, many new api methods you will loose ALL your LINKS, webinterface will NOT work --- pavement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pavement.py') diff --git a/pavement.py b/pavement.py index 4b5ccb883..ddb18afa4 100644 --- a/pavement.py +++ b/pavement.py @@ -58,7 +58,7 @@ setup( include_package_data=True, exclude_package_data={'pyload': ['docs*', 'scripts*', 'tests*']}, #exluced from build but not from sdist # 'bottle >= 0.10.0' not in list, because its small and contain little modifications - install_requires=['thrift >= 0.8.0', 'jinja2', 'pycurl', 'Beaker', 'BeautifulSoup>=3.2, <3.3'] + extradeps, + install_requires=['thrift >= 0.8.0', 'jinja2', 'pycurl', 'Beaker >= 1.6', 'BeautifulSoup>=3.2, <3.3'] + extradeps, extras_require={ 'SSL': ["pyOpenSSL"], 'DLC': ['pycrypto'], -- cgit v1.2.3 From ed131ce9fba4b374586885999029d1743e9feefd Mon Sep 17 00:00:00 2001 From: X3n0m0rph59 Date: Sun, 22 Apr 2012 17:18:52 +0200 Subject: Fixed spelling in the source --- pavement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pavement.py') diff --git a/pavement.py b/pavement.py index ddb18afa4..da56fefbb 100644 --- a/pavement.py +++ b/pavement.py @@ -178,7 +178,7 @@ def sdist(): def thrift(options): """ Generate Thrift stubs """ - print "add import for TApplicationException manually as long it is not fixed" + print "add import for TApplicationException manually as long as it is not fixed" outdir = path("module") / "remote" / "thriftbackend" (outdir / "gen-py").rmtree() -- cgit v1.2.3 From 829244a6140763712d50ed046c33f415f2b04301 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Tue, 15 May 2012 19:22:34 +0200 Subject: some multiuser db changes --- pavement.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pavement.py') diff --git a/pavement.py b/pavement.py index da56fefbb..e9d90fb99 100644 --- a/pavement.py +++ b/pavement.py @@ -47,7 +47,7 @@ setup( keywords = ('pyload', 'download-manager', 'one-click-hoster', 'download'), url="http://pyload.org", download_url='http://pyload.org/download', - license='GPL v3', + license='AGPL v3', author="pyLoad Team", author_email="support@pyload.org", platforms = ('Any',), @@ -78,7 +78,7 @@ setup( "Environment :: Console", "Environment :: Web Environment", "Intended Audience :: End Users/Desktop", - "License :: OSI Approved :: GNU General Public License (GPL)", + "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent", "Programming Language :: Python :: 2" ] -- cgit v1.2.3 From ac58037d5dbc9d2ad8dc05cf609f90176aebb2b0 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sun, 19 Aug 2012 11:36:29 +0200 Subject: boilerplate for js code --- pavement.py | 1 - 1 file changed, 1 deletion(-) (limited to 'pavement.py') diff --git a/pavement.py b/pavement.py index e9d90fb99..7597ca9e0 100644 --- a/pavement.py +++ b/pavement.py @@ -226,7 +226,6 @@ def generate_locale(): "setup.py"] makepot("core", path("module"), EXCLUDE, "./pyLoadCore.py\n") - makepot("gui", path("module") / "gui", [], includes="./pyLoadGui.py\n") makepot("cli", path("module") / "cli", [], includes="./pyLoadCli.py\n") makepot("setup", "", [], includes="./module/setup.py\n") -- cgit v1.2.3