mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-23 12:12:47 +00:00
Move to python-blessed
As python-blessings is unmaintained nowadays and is not packaged for EPEL 8, it might be good to move to an active fork. Related: https://bugzilla.redhat.com/show_bug.cgi?id=1777377
This commit is contained in:
parent
fbef7d7f02
commit
3a79fdde9f
9 changed files with 11 additions and 12 deletions
|
@ -25,7 +25,7 @@ RUN yum -y install \
|
||||||
docbook-style-xsl \
|
docbook-style-xsl \
|
||||||
libxslt \
|
libxslt \
|
||||||
rpmdevtools \
|
rpmdevtools \
|
||||||
python-blessings \
|
python-blessed \
|
||||||
; yum clean all
|
; yum clean all
|
||||||
|
|
||||||
RUN useradd sandbox
|
RUN useradd sandbox
|
||||||
|
|
|
@ -18,7 +18,7 @@ RUN yum -y install \
|
||||||
docbook-style-xsl \
|
docbook-style-xsl \
|
||||||
libxslt \
|
libxslt \
|
||||||
rpmdevtools \
|
rpmdevtools \
|
||||||
python-blessings \
|
python-blessed \
|
||||||
&& yum clean all
|
&& yum clean all
|
||||||
|
|
||||||
RUN useradd sandbox
|
RUN useradd sandbox
|
||||||
|
|
|
@ -8,14 +8,14 @@ RUN dnf -y install \
|
||||||
python2-devel \
|
python2-devel \
|
||||||
python-mock \
|
python-mock \
|
||||||
python-nose \
|
python-nose \
|
||||||
python-blessings \
|
python-blessed \
|
||||||
python-pep8 \
|
python-pep8 \
|
||||||
python-setuptools \
|
python-setuptools \
|
||||||
python-bugzilla \
|
python-bugzilla \
|
||||||
python2-rpm \
|
python2-rpm \
|
||||||
python3-mock \
|
python3-mock \
|
||||||
python3-nose \
|
python3-nose \
|
||||||
python3-blessings \
|
python3-blessed \
|
||||||
python3-pep8 \
|
python3-pep8 \
|
||||||
rsync \
|
rsync \
|
||||||
createrepo_c
|
createrepo_c
|
||||||
|
|
|
@ -14,14 +14,13 @@ RUN dnf -y install \
|
||||||
python2-devel \
|
python2-devel \
|
||||||
python-mock \
|
python-mock \
|
||||||
python-nose \
|
python-nose \
|
||||||
python-blessings \
|
|
||||||
python-pep8 \
|
python-pep8 \
|
||||||
python-setuptools \
|
python-setuptools \
|
||||||
python-bugzilla \
|
python-bugzilla \
|
||||||
python2-rpm \
|
python2-rpm \
|
||||||
python3-mock \
|
python3-mock \
|
||||||
python3-nose \
|
python3-nose \
|
||||||
python3-blessings \
|
python3-blessed \
|
||||||
python3-pep8 \
|
python3-pep8 \
|
||||||
rsync \
|
rsync \
|
||||||
createrepo_c
|
createrepo_c
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
blessings
|
blessed
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -34,7 +34,7 @@ setup(
|
||||||
packages=find_packages('src'),
|
packages=find_packages('src'),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'blessings'
|
'blessed'
|
||||||
],
|
],
|
||||||
|
|
||||||
# non-python scripts go here
|
# non-python scripts go here
|
||||||
|
|
|
@ -28,7 +28,7 @@ import shlex
|
||||||
import shutil
|
import shutil
|
||||||
import tempfile
|
import tempfile
|
||||||
|
|
||||||
from blessings import Terminal
|
from blessed import Terminal
|
||||||
|
|
||||||
from bugzilla.rhbugzilla import RHBugzilla
|
from bugzilla.rhbugzilla import RHBugzilla
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ from mock import Mock, patch, call
|
||||||
from tempfile import NamedTemporaryFile
|
from tempfile import NamedTemporaryFile
|
||||||
from textwrap import dedent
|
from textwrap import dedent
|
||||||
from unit import open_mock, Capture
|
from unit import open_mock, Capture
|
||||||
from blessings import Terminal
|
from blessed import Terminal
|
||||||
|
|
||||||
|
|
||||||
class CommonTests(unittest.TestCase):
|
class CommonTests(unittest.TestCase):
|
||||||
|
|
|
@ -31,14 +31,14 @@ BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
Requires: python3-setuptools
|
Requires: python3-setuptools
|
||||||
Requires: python3-bugzilla
|
Requires: python3-bugzilla
|
||||||
Requires: python3-blessings
|
Requires: python3-blessed
|
||||||
Requires: rpm-python3
|
Requires: rpm-python3
|
||||||
%else
|
%else
|
||||||
BuildRequires: python2-devel
|
BuildRequires: python2-devel
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: python-setuptools
|
||||||
Requires: python-setuptools
|
Requires: python-setuptools
|
||||||
Requires: python-bugzilla
|
Requires: python-bugzilla
|
||||||
Requires: python-blessings
|
Requires: python-blessed
|
||||||
Requires: rpm-python
|
Requires: rpm-python
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: asciidoc
|
BuildRequires: asciidoc
|
||||||
|
|
Loading…
Add table
Reference in a new issue