Skip to content

Commit

Permalink
rename requirements files
Browse files Browse the repository at this point in the history
  • Loading branch information
areski committed Sep 28, 2015
1 parent eeadaca commit b4a703d
Show file tree
Hide file tree
Showing 14 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
install:
# - pip install -q Django==$DJANGO --use-mirrors
- sudo apt-get install flite
- bash install/requirements/install-requirements.sh
- bash install/requirements/install.sh
# - pip install pep8 --use-mirrors
# - pip install https://github.com/dcramer/pyflakes/tarball/master
before_script:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Newfies is a django based application, so the major requirements are :
All the requirements can easily be installed with PIP
(http://pypi.python.org/pypi/pip) :

- https://github.com/newfies-dialer/newfies-dialer/blob/master/install/requirements/all-requirements.txt
- https://github.com/newfies-dialer/newfies-dialer/blob/master/requirements/all.txt


Installation Script
Expand Down
2 changes: 1 addition & 1 deletion install/install-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#TODO: Move BRANCH to Environement variable

#Set branch to install develop / master
BRANCH='master'
BRANCH="develop"

SCRIPT_NOTICE="This script is only intended to run on Debian 64bits 7.X or 8.X"

Expand Down
2 changes: 1 addition & 1 deletion install/install-freeswitch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#

#Set branch to install develop / master
BRANCH='master'
BRANCH="develop"

FS_CONF_PATH=https://raw.github.com/newfies-dialer/newfies-dialer/$BRANCH/install/freeswitch-conf
FS_INIT_PATH=https://raw.github.com/newfies-dialer/newfies-dialer/$BRANCH/install/freeswitch-init
Expand Down
2 changes: 1 addition & 1 deletion install/install-newfies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#

#Set branch to install develop / master
BRANCH='master'
BRANCH="develop"

#Get Scripts dependencies
cd /usr/src/
Expand Down
8 changes: 4 additions & 4 deletions install/newfies-dialer-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#

#Set branch to install develop / master
BRANCH="master"
BRANCH="develop"

DATETIME=$(date +"%Y%m%d%H%M%S")
INSTALL_DIR='/usr/share/newfies'
Expand Down Expand Up @@ -493,19 +493,19 @@ func_install_pip_deps(){
pip install importlib

echo "Install Basic requirements..."
for line in $(cat /usr/src/newfies-dialer/install/requirements/basic-requirements.txt | grep -v \#)
for line in $(cat /usr/src/newfies-dialer/requirements/basic.txt | grep -v \#)
do
echo "pip install $line"
pip install $line
done
echo "Install Django requirements..."
for line in $(cat /usr/src/newfies-dialer/install/requirements/django-requirements.txt | grep -v \#)
for line in $(cat /usr/src/newfies-dialer/requirements/django.txt | grep -v \#)
do
echo "pip install $line"
pip install $line --allow-all-external --allow-unverified django-admin-tools
done
echo "Install Test requirements..."
for line in $(cat /usr/src/newfies-dialer/install/requirements/test-requirements.txt | grep -v \#)
for line in $(cat /usr/src/newfies-dialer/requirements/test.txt | grep -v \#)
do
echo "pip install $line"
pip install $line
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def parse_dependency_links(file_name):
package_dir={'newfies': 'newfies'},
packages=find_packages(),
package_data={},
# install_requires=parse_requirements('install/requirements/rtd-requirements.txt'),
# dependency_links=parse_dependency_links('install/requirements/rtd-requirements.txt'),
# install_requires=parse_requirements('requirements/rtd.txt'),
# dependency_links=parse_dependency_links('requirements/rtd.txt'),
license='MPL 2.0 License',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit b4a703d

Please sign in to comment.