fork
This commit is contained in:
parent
fff319bd8b
commit
0ffb357689
25
.gitignore
vendored
25
.gitignore
vendored
@ -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/
|
||||
|
4
AUTHORS
4
AUTHORS
@ -1,8 +1,8 @@
|
||||
* euscan
|
||||
Original author: Corentin Chary <corentin.chary@gmail.com>
|
||||
Current maintainer: Corentin Chary <corentin.chary@gmail.com>
|
||||
Current maintainer: src_prepare group https://gitlab.com/src_prepare
|
||||
|
||||
* euscanwww
|
||||
Original author: Corentin Chary <corentin.chary@gmail.com>
|
||||
Current maintainer: Corentin Chary <corentin.chary@gmail.com>
|
||||
Current maintainer: src_prepare group https://gitlab.com/src_prepare
|
||||
|
||||
|
11
README.rst
11
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
|
||||
|
29
setup.py
29
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,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user