|
 |
14894dd |
# Pre-release
|
|
 |
14894dd |
#%%global git_tag 2.1.0rc3
|
|
 |
14894dd |
|
|
 |
14894dd |
%global git_tag %{version}
|
|
 |
14894dd |
|
|
 |
14894dd |
Name: gns3-gui
|
|
 |
136e13c |
Version: 2.2.37
|
|
 |
136e13c |
Release: 1%{?dist}
|
|
 |
14894dd |
Summary: GNS3 graphical user interface
|
|
 |
14894dd |
|
|
 |
14894dd |
License: GPLv3+
|
|
 |
14894dd |
URL: http://gns3.com
|
|
 |
14894dd |
Source0: https://github.com/GNS3/%{name}/archive/v%{git_tag}/%{name}-%{git_tag}.tar.gz
|
|
 |
14894dd |
Source3: %{name}.appdata.xml
|
|
 |
14894dd |
|
|
 |
14894dd |
BuildArch: noarch
|
|
 |
14894dd |
|
|
 |
14894dd |
BuildRequires: python3-devel
|
|
 |
f961981 |
BuildRequires: python3-setuptools
|
|
 |
14894dd |
BuildRequires: desktop-file-utils
|
|
 |
14894dd |
BuildRequires: libappstream-glib
|
|
 |
14894dd |
|
|
 |
14894dd |
Requires: telnet
|
|
 |
14894dd |
Requires: cpulimit
|
|
 |
14894dd |
Requires: socat
|
|
 |
14894dd |
Requires: python3-jsonschema
|
|
 |
14894dd |
Requires: python3-raven
|
|
 |
14894dd |
Requires: python3-psutil
|
|
 |
14894dd |
Requires: python3-qt5
|
|
 |
14894dd |
Requires: gns3-net-converter >= 1.3.0
|
|
 |
14894dd |
|
|
 |
14894dd |
%description
|
|
 |
14894dd |
GNS3 is a graphical network simulator that allows you to design complex network
|
|
 |
14894dd |
topologies. You may run simulations or configure devices ranging from simple
|
|
 |
14894dd |
workstations to powerful routers.
|
|
 |
14894dd |
|
|
 |
14894dd |
This package contains the client graphical user interface.
|
|
 |
14894dd |
|
|
 |
14894dd |
%prep
|
|
 |
14894dd |
%autosetup -n %{name}-%{git_tag}
|
|
 |
14894dd |
|
|
 |
14894dd |
# Relax strict reqs
|
|
 |
14894dd |
sed -i -r 's/==/>=/g' requirements.txt
|
|
 |
04bd7ea |
sed -i -r 's/sentry-sdk.*//g' requirements.txt
|
|
 |
3738363 |
sed -i -r '/setuptools/d' requirements.txt
|
|
 |
e21c07d |
# Lower psutil>=5.8.0
|
|
 |
136e13c |
sed -i -r 's/psutil>=5.9.4/psutil>=5.8.0/' requirements.txt
|
|
 |
4e19a70 |
sed -i -r 's/distro>=1.7.*/distro>=1.6.0/' requirements.txt
|
|
 |
136e13c |
sed -i -r 's/jsonschema>=4.17.3/jsonschema>=3.2.0/' requirements.txt
|
|
 |
e21c07d |
|
|
 |
14894dd |
# Disable update alerts
|
|
 |
14894dd |
sed -i 's/"check_for_update": True,/"check_for_update": False,/' gns3/settings.py
|
|
 |
14894dd |
|
|
 |
14894dd |
# Disable anonymous data collection
|
|
 |
14894dd |
sed -i 's/"send_stats": True,/"send_stats": False,/' gns3/settings.py
|
|
 |
14894dd |
|
|
 |
3738363 |
|
|
 |
14894dd |
%build
|
|
 |
14894dd |
%py3_build
|
|
 |
14894dd |
|
|
 |
14894dd |
%install
|
|
 |
14894dd |
%py3_install
|
|
 |
14894dd |
|
|
 |
14894dd |
# Remove shebang
|
|
 |
14894dd |
for lib in `find %{buildroot}/%{python3_sitelib}/ -name '*.py'`; do
|
|
 |
14894dd |
echo $lib
|
|
 |
14894dd |
sed -i '1{\@^#!/usr/bin/env python@d}' $lib
|
|
 |
14894dd |
done
|
|
 |
14894dd |
|
|
 |
14894dd |
# Remove empty files
|
|
 |
14894dd |
find %{buildroot}/%{python3_sitelib}/ -name '.keep' -type f -delete
|
|
 |
14894dd |
|
|
 |
14894dd |
# Remove exec perm
|
|
 |
14894dd |
find %{buildroot}/%{python3_sitelib}/ -type f -exec chmod -x {} \;
|
|
 |
14894dd |
|
|
 |
14894dd |
# AppData
|
|
 |
14894dd |
mkdir -p %{buildroot}/%{_datadir}/appdata/
|
|
 |
14894dd |
install -m 644 %{SOURCE3} %{buildroot}/%{_datadir}/appdata/
|
|
 |
14894dd |
|
|
 |
7013ce8 |
|
|
 |
14894dd |
%check
|
|
 |
14894dd |
appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/appdata/%{name}.appdata.xml
|
|
 |
7013ce8 |
desktop-file-validate %{buildroot}%{_datadir}/applications/gns3*.desktop
|
|
 |
14894dd |
|
|
 |
14894dd |
|
|
 |
14894dd |
%files
|
|
 |
14894dd |
%license LICENSE
|
|
 |
136e13c |
%doc README.md AUTHORS CHANGELOG
|
|
 |
14894dd |
%{python3_sitelib}/gns3/
|
|
 |
14894dd |
%{python3_sitelib}/gns3_gui*.egg-info/
|
|
 |
14894dd |
%{_bindir}/gns3
|
|
 |
95cbc4e |
%{_datadir}/applications/gns3*.desktop
|
|
 |
95cbc4e |
%{_datadir}/icons/hicolor/*/apps/*gns3*
|
|
 |
95cbc4e |
%{_datadir}/icons/hicolor/*/mimetypes/*-gns3*
|
|
 |
95cbc4e |
%{_datadir}/mime/packages/gns3-gui.xml
|
|
 |
14894dd |
%{_datadir}/appdata/%{name}.appdata.xml
|
|
 |
14894dd |
|
|
 |
14894dd |
%changelog
|
|
 |
136e13c |
* Tue Jan 31 2023 Alexey Kurov <nucleo@fedoraproject.org> - 2.2.37-1
|
|
 |
136e13c |
- Update to 2.2.37
|
|
 |
136e13c |
|
|
 |
b5223b2 |
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.34-2
|
|
 |
b5223b2 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
 |
b5223b2 |
|
|
 |
c238d70 |
* Thu Nov 03 2022 Nicolas Chauvet <kwizart@gmail.com> - 2.2.34-1
|
|
 |
c238d70 |
- Update to 2.2.34
|
|
 |
c238d70 |
|
|
 |
b465764 |
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.33.1-3
|
|
 |
b465764 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
 |
b465764 |
|
|
 |
ed220ff |
* Tue Jul 12 2022 Nicolas Chauvet <kwizart@gmail.com> - 2.2.33.1-2
|
|
 |
ed220ff |
- Lower distro requirement
|
|
 |
ed220ff |
|
|
 |
82ac169 |
* Mon Jun 27 2022 Nicolas Chauvet <kwizart@gmail.com> - 2.2.33.1-1
|
|
 |
82ac169 |
- Update to 2.2.33.1
|
|
 |
82ac169 |
|
|
 |
c6cc52f |
* Tue Jun 21 2022 Nicolas Chauvet <kwizart@gmail.com> - 2.2.33-1
|
|
 |
c6cc52f |
- Update to 2.2.33
|
|
 |
c6cc52f |
|
|
 |
dbf3913 |
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 2.2.32-2
|
|
 |
dbf3913 |
- Rebuilt for Python 3.11
|
|
 |
dbf3913 |
|
|
 |
e5c65e8 |
* Thu May 05 2022 Nicolas Chauvet <kwizart@gmail.com> - 2.2.32-1
|
|
 |
e5c65e8 |
- Update to 2.2.32
|
|
 |
e5c65e8 |
|
|
 |
40dc3d7 |
* Tue Mar 15 2022 Nicolas Chauvet <kwizart@gmail.com> - 2.2.31-2
|
|
 |
40dc3d7 |
- Relax requirements
|
|
 |
40dc3d7 |
|
|
 |
e2f9bc2 |
* Fri Mar 04 2022 Nicolas Chauvet <kwizart@gmail.com> - 2.2.31-1
|
|
 |
e2f9bc2 |
- Update to 2.2.31
|
|
 |
e2f9bc2 |
|
|
 |
1acebab |
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.29-2
|
|
 |
1acebab |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
 |
1acebab |
|
|
 |
64bb91a |
* Mon Jan 10 2022 Nicolas Chauvet <kwizart@gmail.com> - 2.2.29-1
|
|
 |
64bb91a |
- Update to 2.2.29
|
|
 |
64bb91a |
|
|
 |
546b16f |
* Thu Dec 16 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.28-1
|
|
 |
546b16f |
- Update to 2.2.28
|
|
 |
546b16f |
|
|
 |
1431551 |
* Fri Dec 03 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.27-1
|
|
 |
1431551 |
- Update to 2.2.27
|
|
 |
1431551 |
|
|
 |
bc8cb21 |
* Thu Nov 04 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.26-1
|
|
 |
bc8cb21 |
- Update to 2.2.26
|
|
 |
bc8cb21 |
|
|
 |
b0bd23a |
* Wed Sep 15 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.25-1
|
|
 |
b0bd23a |
- Update to 2.2.25
|
|
 |
b0bd23a |
|
|
 |
415fd1b |
* Thu Aug 26 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.24-1
|
|
 |
415fd1b |
- Update to 2.2.24
|
|
 |
415fd1b |
|
|
 |
a20c8c1 |
* Sat Aug 07 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.23-1
|
|
 |
a20c8c1 |
- Update to 2.2.23
|
|
 |
a20c8c1 |
|
|
 |
771abd8 |
* Sat Jul 31 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.22-1
|
|
 |
771abd8 |
- Update to 2.2.22
|
|
 |
771abd8 |
|
|
 |
0bb615a |
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.21-3
|
|
 |
0bb615a |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
 |
0bb615a |
|
|
 |
113ed42 |
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.2.21-2
|
|
 |
113ed42 |
- Rebuilt for Python 3.10
|
|
 |
113ed42 |
|
|
 |
76ddcc6 |
* Wed Jun 02 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.21-1
|
|
 |
76ddcc6 |
- Update to 2.2.21
|
|
 |
76ddcc6 |
|
|
 |
7b185cc |
* Fri Apr 23 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.20-2
|
|
 |
7b185cc |
- lower psutil requirements
|
|
 |
7b185cc |
|
|
 |
d003a7e |
* Fri Apr 09 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.20-1
|
|
 |
d003a7e |
- Update to 2.2.20
|
|
 |
d003a7e |
|
|
 |
53aeeb1 |
* Mon Mar 08 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.19-1
|
|
 |
53aeeb1 |
- Update to 2.2.19
|
|
 |
53aeeb1 |
|
|
 |
9e2e9d6 |
* Thu Mar 04 2021 Nicolas Chauvet <kwizart@gmail.com> - 2.2.18-1
|
|
 |
9e2e9d6 |
- Update to 2.2.18
|
|
 |
9e2e9d6 |
|
|
 |
abb7c78 |
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.17-2
|
|
 |
abb7c78 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
 |
abb7c78 |
|
|
 |
7d95d4f |
* Wed Dec 16 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.17-1
|
|
 |
7d95d4f |
- Update to 2.2.17
|
|
 |
7d95d4f |
|
|
 |
3722b23 |
* Mon Nov 09 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.16-1
|
|
 |
3722b23 |
- Update to 2.2.16
|
|
 |
3722b23 |
|
|
 |
f6ff2ca |
* Wed Oct 07 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.15-1
|
|
 |
f6ff2ca |
- Update to 2.2.15
|
|
 |
f6ff2ca |
|
|
 |
116a84c |
* Fri Sep 25 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.14-1
|
|
 |
116a84c |
- Update to 2.2.14
|
|
 |
116a84c |
|
|
 |
d302f19 |
* Wed Aug 26 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.12-1
|
|
 |
d302f19 |
- Update to 2.2.12
|
|
 |
d302f19 |
|
|
 |
2cf5408 |
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.11-2
|
|
 |
2cf5408 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
 |
2cf5408 |
|
|
 |
b09d091 |
* Wed Jul 22 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.11-1
|
|
 |
b09d091 |
- Update to 2.2.11
|
|
 |
b09d091 |
|
|
 |
e81132b |
* Tue Jun 30 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.10-1
|
|
 |
e81132b |
- Update to 2.2.10
|
|
 |
e81132b |
|
|
 |
11227a2 |
* Fri Jun 05 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.9-1
|
|
 |
11227a2 |
- Update to 2.2.9
|
|
 |
11227a2 |
|
|
 |
b13fc46 |
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.2.7-2
|
|
 |
b13fc46 |
- Rebuilt for Python 3.9
|
|
 |
b13fc46 |
|
|
 |
f8d32a4 |
* Fri Apr 10 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.7-1
|
|
 |
f8d32a4 |
- Update to 2.2.7
|
|
 |
f8d32a4 |
|
|
 |
7013ce8 |
* Thu Mar 26 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.6-1
|
|
 |
7013ce8 |
- Update to 2.2.6
|
|
 |
7013ce8 |
- Drop duplicate desktop entry
|
|
 |
7013ce8 |
|
|
 |
a862e3c |
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.5-2
|
|
 |
a862e3c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
 |
a862e3c |
|
|
 |
95cbc4e |
* Mon Jan 20 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.2.5-1
|
|
 |
95cbc4e |
- Update to 2.2.5
|
|
 |
95cbc4e |
|
|
 |
fa4ec3f |
* Thu Jan 09 2020 Nicolas Chauvet <kwizart@gmail.com> - 2.1.20-1
|
|
 |
fa4ec3f |
- Update to 2.1.20
|
|
 |
fa4ec3f |
|
|
 |
14894dd |
* Wed Sep 18 2019 Rex Dieter <rdieter@fedoraproject.org> - 2.1.16-5
|
|
 |
14894dd |
- drop dep on python3-sip
|
|
 |
14894dd |
|
|
 |
14894dd |
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.1.16-4
|
|
 |
14894dd |
- Rebuilt for Python 3.8
|
|
 |
14894dd |
|
|
 |
14894dd |
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.16-3
|
|
 |
14894dd |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat Apr 27 2019 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.16-2
|
|
 |
14894dd |
- Relax strict reqs
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat Apr 27 2019 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.16-1
|
|
 |
14894dd |
- Update to 2.1.16 (rhbz #1668653 #1668654)
|
|
 |
14894dd |
|
|
 |
14894dd |
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.11-3
|
|
 |
14894dd |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat Nov 17 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.11-2
|
|
 |
14894dd |
- Add missing PyQt dep
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat Nov 17 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.112.1.11-11
|
|
 |
14894dd |
- Update to 2.1.11 (rhbz #1581506)
|
|
 |
14894dd |
|
|
 |
14894dd |
* Wed Jul 18 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.8-1
|
|
 |
14894dd |
- Update to 2.1.8 (rhbz #1581506)
|
|
 |
14894dd |
|
|
 |
14894dd |
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.5-3
|
|
 |
14894dd |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
 |
14894dd |
|
|
 |
14894dd |
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.1.5-2
|
|
 |
14894dd |
- Rebuilt for Python 3.7
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat Apr 21 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.5-1
|
|
 |
14894dd |
- Update to 2.1.5 (rhbz #1569275)
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sun Mar 18 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.4-1
|
|
 |
14894dd |
- Update to 2.1.4 (rhbz #1554315)
|
|
 |
14894dd |
|
|
 |
14894dd |
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.3-2
|
|
 |
14894dd |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sun Jan 21 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.3-1
|
|
 |
14894dd |
- Update to 2.1.3 (rhbz #1536428)
|
|
 |
14894dd |
|
|
 |
14894dd |
* Thu Jan 18 2018 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.2-1
|
|
 |
14894dd |
- Update to 2.1.2 (rhbz #1532421)
|
|
 |
14894dd |
- Disable anonymous data collection
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat Dec 30 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.1-1
|
|
 |
14894dd |
- Update to 2.1.1 (rhbz #1528825)
|
|
 |
14894dd |
|
|
 |
14894dd |
* Mon Nov 20 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.0-1
|
|
 |
14894dd |
- Update to 2.1.0 final
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat Nov 04 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.0-0.rc3
|
|
 |
14894dd |
- Update to 2.1.0-0.rc3
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sun Oct 15 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 2.1.0-0.rc1
|
|
 |
14894dd |
- Update to 2.1.0 RC1
|
|
 |
14894dd |
- Fix appdata
|
|
 |
14894dd |
|
|
 |
14894dd |
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-3
|
|
 |
14894dd |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sun Jul 23 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 2.0.3-2
|
|
 |
14894dd |
- Disable update alert
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat Jul 15 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 2.0.3-1
|
|
 |
14894dd |
- Update to 2.0.3
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat May 13 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 2.0.0-2
|
|
 |
14894dd |
- Update files section
|
|
 |
14894dd |
|
|
 |
14894dd |
* Fri May 12 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 2.0.0-1
|
|
 |
14894dd |
- Update to 2.0.0
|
|
 |
14894dd |
|
|
 |
14894dd |
* Fri Apr 14 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 1.5.4-1
|
|
 |
14894dd |
- Update to 1.5.4
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sat Apr 01 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 1.5.3-1
|
|
 |
14894dd |
- Update to 1.5.3
|
|
 |
14894dd |
|
|
 |
14894dd |
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-3
|
|
 |
14894dd |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
 |
14894dd |
|
|
 |
14894dd |
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.5.2-2
|
|
 |
14894dd |
- Rebuild for Python 3.6
|
|
 |
14894dd |
|
|
 |
14894dd |
* Sun Sep 11 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.5.2-1
|
|
 |
14894dd |
- Update to 1.5.2
|
|
 |
14894dd |
|
|
 |
14894dd |
* Fri Aug 05 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.5.1-2
|
|
 |
14894dd |
- Fix appdata
|
|
 |
14894dd |
|
|
 |
14894dd |
* Tue Aug 02 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.5.1-1
|
|
 |
14894dd |
- Update to 1.5.1
|
|
 |
14894dd |
- Fix the url
|
|
 |
14894dd |
|
|
 |
14894dd |
* Tue Aug 02 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.5.0-2
|
|
 |
14894dd |
- Minor spec fixes
|
|
 |
14894dd |
- Provide AppData
|
|
 |
14894dd |
|
|
 |
14894dd |
* Tue Jul 05 2016 Athmane Madjoudj <athmane@fedoraproject.org> - 1.5.0-1
|
|
 |
14894dd |
- Initial spec
|