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
989852a
commit fe84232
Showing
3 changed files
with
42 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
include LICENSE | ||
include README.md | ||
include tests/example.ovpn | ||
include share/icons/hicolor/*/apps/eduvpn-client.png | ||
include share/icons/hicolor/*/apps/*.png | ||
include share/applications/* | ||
include share/eduvpn/* | ||
include share/letsconnect/* | ||
include share/eduvpn/builder/* | ||
include doc/* | ||
|
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,39 @@ | ||
FROM centos:7 | ||
|
||
RUN yum install -y yum-plugin-copr epel-release | ||
|
||
RUN yum copr enable -y gijzelaerr/eduvpn-client | ||
|
||
RUN yum install -y \ | ||
rpm-build \ | ||
rpmdevtools \ | ||
gtk3 \ | ||
libnotify \ | ||
pytest \ | ||
dbus-python \ | ||
python-gobject \ | ||
python-pynacl \ | ||
python-repoze-lru \ | ||
python-dateutil \ | ||
python2-devel \ | ||
python2-configparser \ | ||
python2-future \ | ||
python2-requests-oauthlib \ | ||
python2-mock \ | ||
python2-pytest-runner \ | ||
python2-cryptography \ | ||
python-qrcode \ | ||
python-pillow \ | ||
python2-pynacl | ||
|
||
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/letsconnect_centos7.spec | ||
#RUN rpmbuild -bb rpm/letsconnect_centos7.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