forked from eduvpn/python-eduvpn-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe84232
commit 5f582b0
Showing
22 changed files
with
114 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
FROM fedora:27 | ||
|
||
RUN dnf install -y \ | ||
fedora-packager \ | ||
fedora-review \ | ||
gtk3 \ | ||
libnotify \ | ||
python2-devel \ | ||
python-gobject \ | ||
python2-configparser \ | ||
python2-future \ | ||
python2-pynacl \ | ||
python2-requests-oauthlib \ | ||
python2-cryptography \ | ||
python2-pillow \ | ||
python2-mock \ | ||
python-qrcode \ | ||
python-repoze-lru \ | ||
dbus-python \ | ||
pytest \ | ||
python3-devel \ | ||
python3-future \ | ||
python3-gobject \ | ||
python3-pynacl \ | ||
python3-requests-oauthlib \ | ||
python3-dbus \ | ||
python3-repoze-lru \ | ||
python3-mock \ | ||
python2-pytest-runner \ | ||
python3-pytest-runner \ | ||
python3-cryptography \ | ||
python3-qrcode \ | ||
python3-pillow | ||
|
||
RUN rpmdev-setuptree | ||
|
||
ADD . /code | ||
WORKDIR /code | ||
|
||
RUN python setup_letsconnect.py sdist | ||
RUN cp dist/*.tar.gz /root/rpmbuild/SOURCES/. | ||
RUN rpmbuild -bs rpm/lets_connect_fedora.spec | ||
RUN rpmbuild -bb rpm/lets_connect_fedora.spec | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
FROM fedora:28 | ||
|
||
RUN dnf install -y \ | ||
fedora-packager \ | ||
fedora-review \ | ||
gtk3 \ | ||
libnotify \ | ||
python2-devel \ | ||
python-gobject \ | ||
python2-configparser \ | ||
python2-future \ | ||
python2-pynacl \ | ||
python2-requests-oauthlib \ | ||
python2-cryptography \ | ||
python2-qrcode \ | ||
python2-pillow \ | ||
python-repoze-lru \ | ||
dbus-python \ | ||
python3-devel \ | ||
python3-future \ | ||
python3-gobject \ | ||
python3-pynacl \ | ||
python3-requests-oauthlib \ | ||
python3-dbus \ | ||
python3-repoze-lru \ | ||
pytest \ | ||
python2-mock \ | ||
python3-mock \ | ||
python2-pytest-runner \ | ||
python3-pytest-runner \ | ||
python3-cryptography \ | ||
python3-qrcode \ | ||
python3-pillow | ||
|
||
RUN rpmdev-setuptree | ||
|
||
ADD . /code | ||
WORKDIR /code | ||
|
||
RUN python setup_letsconnect.py sdist | ||
RUN cp dist/*.tar.gz /root/rpmbuild/SOURCES/. | ||
RUN rpmbuild -bs rpm/lets_connect_fedora.spec | ||
RUN rpmbuild -bb rpm/lets_connect_fedora.spec | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.