File tree 9 files changed +1
-10
lines changed
9 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ docker exec copr-backend /bin/sh -c 'rm -r /var/lib/copr-keygen/phrases/*'
67
67
# install copr-mocks from sources
68
68
cd $COPRROOTDIR /mocks
69
69
dnf -y install python3-flask
70
- dnf -y install python3-flask-script
71
70
rpkg spec --outdir /tmp/rpkg
72
71
dnf -y builddep /tmp/rpkg/copr-mocks.spec
73
72
rpkg local --outdir /tmp/rpkg
Original file line number Diff line number Diff line change @@ -93,7 +93,6 @@ chown -R git:git /home/git/
93
93
# install copr-mocks deps (why not covered by dnf -y builddep?)
94
94
if ! rpm -qa | grep copr-mocks; then
95
95
dnf -y install python3-flask
96
- dnf -y install python3-flask-script
97
96
dnf -y install python3-devel
98
97
fi
99
98
Original file line number Diff line number Diff line change @@ -81,7 +81,6 @@ BuildRequires: python3-flask
81
81
BuildRequires: python3-flask-cache
82
82
BuildRequires: python3-flask-openid
83
83
BuildRequires: python3-flask-restful
84
- BuildRequires: python3-flask-script
85
84
BuildRequires: python3-flask-sqlalchemy
86
85
BuildRequires: python3-flask-whooshee
87
86
BuildRequires: python3-flask-wtf
@@ -135,7 +134,6 @@ Requires: python3-flask
135
134
Requires: python3-flask-cache
136
135
Requires: python3-flask-openid
137
136
Requires: python3-flask-restful
138
- Requires: python3-flask-script
139
137
Requires: python3-flask-sqlalchemy
140
138
Requires: python3-flask-whooshee
141
139
Requires: python3-flask-wtf
Original file line number Diff line number Diff line change 1
1
import click
2
2
3
- from flask_script import Command , Option
4
3
from coprs import exceptions
5
4
from coprs import db
6
5
from coprs .helpers import chroot_to_branch
Original file line number Diff line number Diff line change 2
2
from sqlalchemy import func
3
3
from sqlalchemy .orm import joinedload
4
4
5
- from flask_script import Command , Option
6
5
from copr_common .enums import StatusEnum
7
6
from coprs import db
8
7
from coprs import models
Original file line number Diff line number Diff line change 35
35
import commands .clean_old_builds
36
36
import commands .delete_orphans
37
37
38
- from flask_script import Manager
39
38
from coprs import app
40
39
41
40
if os .getuid () == 0 :
Original file line number Diff line number Diff line change 1
1
Flask
2
2
Flask-OpenID
3
3
Flask-SQLAlchemy
4
- Flask-Script
5
4
Flask-WTF
6
5
flask-whooshee
7
6
pytest
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ BuildRequires: python3-devel
16
16
BuildRequires: systemd-units
17
17
Requires: python3
18
18
Requires: python3-flask
19
- Requires: python3-flask-script
20
19
21
20
%description
22
21
This package provides mocks for individual copr system components
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ virtualenv _venv -p /usr/bin/python2.7
11
11
source _venv/bin/activate
12
12
13
13
14
- # sphinx flask flask-script SQLAlchemy==0.8.7 flask-whooshee Flask-OpenID Flask-SQLAlchemy==1.0 Flask-WTF blinker pytz markdown pyLibravatar pydns flexmock whoosh decorator
14
+ # sphinx flask SQLAlchemy==0.8.7 flask-whooshee Flask-OpenID Flask-SQLAlchemy==1.0 Flask-WTF blinker pytz markdown pyLibravatar pydns flexmock whoosh decorator
15
15
pip install pytest mock pytest-cov ipdb redis bunch PyYAML setproctitle ansible
16
16
17
17
You can’t perform that action at this time.
0 commit comments