diff --git a/.gitignore b/.gitignore index 59b0f67..a934bbb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,22 @@ -.*.swp -*~ +**/*.rs.bk +*.beam +*.dump +*.egg-info/ +*.ez *.py[co] -*.egg-info -.idea +*.swp +*.tar +*~ +*~ +,* +.fetch/ +.idea/ +.vscode/ +.~lock.* +/build/ +/cover/ +/deps/ +/dist/ +/target/ +__pycache__/ +_build/ diff --git a/AUTHORS b/AUTHORS index 1ce22c2..5dbd90f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,8 +1,8 @@ * euscan Original author: Corentin Chary - Current maintainer: Corentin Chary + Current maintainer: src_prepare group https://gitlab.com/src_prepare * euscanwww Original author: Corentin Chary - Current maintainer: Corentin Chary + Current maintainer: src_prepare group https://gitlab.com/src_prepare diff --git a/README.rst b/README.rst index 5cb70d4..7103c63 100644 --- a/README.rst +++ b/README.rst @@ -1,8 +1,11 @@ -What is euscan ? -================ +What is euscan-ng ? +=================== -dev-portage/euscan -================== +dev-portage/euscan-ng +===================== + +euscan-ng is a fork of Bernard Cafarelli's euscan: https://github.com/voyageur/euscan +which is a fork of Corentin Chary's euscan: https://github.com/iksaif/euscan euscan is available in portage as a dev package (app-portage/euscan-9999). This tool allows to check if a given package/ebuild has new upstream versions diff --git a/setup.py b/setup.py index 22da161..d683957 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,6 @@ #!/usr/bin/env python - import re import sys from distutils import log @@ -15,6 +14,7 @@ import os from os.path import join, dirname import io + sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'pym')) __version__ = os.getenv('VERSION', default='9999') @@ -89,22 +89,29 @@ setup( ), install_requires=[ # Command line utility - 'BeautifulSoup>=3.2.1', + 'beautifulsoup4>=4.8.2', # Web interface - 'Django>=1.4', 'django-annoying>=0.7.6', 'South>=0.7', - 'django-piston>=0.2.3', 'matplotlib>=1.1.0', - 'django-celery>=3.0.1', 'django-registration>=0.8', - 'python-ldap>=2.4.10', 'django-auth-ldap>=1.1', - 'django-recaptcha>=0.0.4', 'ansi2html>=0.9.1', + 'Django>=1.4', + 'South>=0.7', + 'ansi2html>=0.9.1', + 'django-annoying>=0.7.6', + 'django-auth-ldap>=1.1', + 'django-celery>=3.0.1', + 'django-piston>=0.2.3', + 'django-recaptcha>=0.0.4', + 'django-registration>=0.8', + 'matplotlib>=1.1.0', + 'python-ldap>=2.4.10', ], package_dir={'': 'pym'}, packages=packages, package_data={}, scripts=python_scripts, - data_files=( - (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man1'), - glob('man/*')), - ), + # enable user install + # data_files=( + # (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man1'), + # glob('man/*')), + # ), cmdclass={ 'set_version': set_version, },