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]
|
*.py[co]
|
||||||
*.egg-info
|
*.swp
|
||||||
.idea
|
*.tar
|
||||||
|
*~
|
||||||
|
*~
|
||||||
|
,*
|
||||||
|
.fetch/
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
.~lock.*
|
||||||
|
/build/
|
||||||
|
/cover/
|
||||||
|
/deps/
|
||||||
|
/dist/
|
||||||
|
/target/
|
||||||
|
__pycache__/
|
||||||
|
_build/
|
||||||
|
4
AUTHORS
4
AUTHORS
@ -1,8 +1,8 @@
|
|||||||
* euscan
|
* euscan
|
||||||
Original author: Corentin Chary <corentin.chary@gmail.com>
|
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
|
* euscanwww
|
||||||
Original author: Corentin Chary <corentin.chary@gmail.com>
|
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).
|
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
|
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
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
from distutils import log
|
from distutils import log
|
||||||
@ -15,6 +14,7 @@ import os
|
|||||||
from os.path import join, dirname
|
from os.path import join, dirname
|
||||||
import io
|
import io
|
||||||
|
|
||||||
|
|
||||||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'pym'))
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'pym'))
|
||||||
|
|
||||||
__version__ = os.getenv('VERSION', default='9999')
|
__version__ = os.getenv('VERSION', default='9999')
|
||||||
@ -89,22 +89,29 @@ setup(
|
|||||||
),
|
),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
# Command line utility
|
# Command line utility
|
||||||
'BeautifulSoup>=3.2.1',
|
'beautifulsoup4>=4.8.2',
|
||||||
# Web interface
|
# Web interface
|
||||||
'Django>=1.4', 'django-annoying>=0.7.6', 'South>=0.7',
|
'Django>=1.4',
|
||||||
'django-piston>=0.2.3', 'matplotlib>=1.1.0',
|
'South>=0.7',
|
||||||
'django-celery>=3.0.1', 'django-registration>=0.8',
|
'ansi2html>=0.9.1',
|
||||||
'python-ldap>=2.4.10', 'django-auth-ldap>=1.1',
|
'django-annoying>=0.7.6',
|
||||||
'django-recaptcha>=0.0.4', 'ansi2html>=0.9.1',
|
'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'},
|
package_dir={'': 'pym'},
|
||||||
packages=packages,
|
packages=packages,
|
||||||
package_data={},
|
package_data={},
|
||||||
scripts=python_scripts,
|
scripts=python_scripts,
|
||||||
data_files=(
|
# enable user install
|
||||||
(os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man1'),
|
# data_files=(
|
||||||
glob('man/*')),
|
# (os.path.join(os.sep, EPREFIX.lstrip(os.sep), 'usr/share/man/man1'),
|
||||||
),
|
# glob('man/*')),
|
||||||
|
# ),
|
||||||
cmdclass={
|
cmdclass={
|
||||||
'set_version': set_version,
|
'set_version': set_version,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user