85645d1
%if 0%{?rhel} && 0%{?rhel} <= 6
85645d1
%{!?__python2: %global __python2 /usr/bin/python2}
85645d1
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
85645d1
%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
85645d1
%{!?__python2: %global __python2 /usr/bin/python2}
85645d1
%endif
85645d1
Krzysztof Kurzawski 992376b
Name:           youtube-dl
5ac1440
Version:        2015.12.05
0baccbe
Release:        1%{?dist}
root e133e75
Summary:        A small command-line program to download online videos
85645d1
License:        Unlicense
Koji 71a4179
URL:            https://yt-dl.org
Koji 71a4179
Source0:        https://yt-dl.org/downloads/%{version}/%{name}-%{version}.tar.gz
9a0da09
Source1:        https://yt-dl.org/downloads/%{version}/youtube-dl-%{version}.tar.gz.sig
9a0da09
Source2:        gpgkey-7D33D762FD6C35130481347FDB4B54CBA4826A18.gpg
9a0da09
Source3:        %{name}.conf
4c6bd1d
%if 0%{?fedora}
4c6bd1d
BuildRequires:  python3-devel
4c6bd1d
%else
4c6bd1d
BuildRequires:  python2-devel
4c6bd1d
%endif
Koji 71a4179
# Tests failed because of no connection in Koji.
Christopher Meng 801bd70
# BuildRequires:  python-nose
Koji 983ef37
BuildArch:      noarch
9a0da09
# For source verification with gpgv
9a0da09
BuildRequires:  gpg
Krzysztof Kurzawski 992376b
0b9d8b2
Krzysztof Kurzawski 992376b
%description
root e133e75
Small command-line program to download videos from YouTube and other sites.
Krzysztof Kurzawski 992376b
0b9d8b2
Krzysztof Kurzawski 992376b
%prep
9a0da09
gpgv --quiet --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
root e133e75
%setup -qn %{name}
2145153
5766e33
# remove pre-built file
5766e33
rm youtube-dl
5766e33
b978157
cp -a setup.py setup.py.installpath
b978157
# Remove files that are installed to the wrong path
b978157
sed -i '/youtube-dl.bash-completion/d' setup.py
b978157
sed -i '/youtube-dl.fish/d' setup.py
b978157
sed -i '/README.txt/d' setup.py
b978157
0b9d8b2
Krzysztof Kurzawski 992376b
%build
4c6bd1d
%if 0%{?fedora}
4c6bd1d
%{__python3} setup.py build
4c6bd1d
%else
4c6bd1d
%{__python2} setup.py install --root=%{buildroot}
4c6bd1d
%endif
Krzysztof Kurzawski 992376b
0b9d8b2
Krzysztof Kurzawski 992376b
%install
4c6bd1d
%if 0%{?fedora}
4c6bd1d
%{__python3} setup.py install --root=%{buildroot}
4c6bd1d
%else
b978157
%{__python2} setup.py install --root=%{buildroot}
4c6bd1d
%endif
b978157
Christopher Meng c3bfaae
mkdir -p %{buildroot}%{_sysconfdir}
9a0da09
install -pm644 %{S:3} %{buildroot}%{_sysconfdir}
b978157
mkdir -p %{buildroot}%{_sysconfdir}/bash_completion.d/
b978157
install -pm644 youtube-dl.bash-completion %{buildroot}%{_sysconfdir}/bash_completion.d/youtube-dl
b978157
mkdir -p %{buildroot}%{_datadir}/zsh/site-functions/
b978157
install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtube-dl
root e133e75
0b9d8b2
root e133e75
%check
Christopher Meng cd4add8
#make test
Krzysztof Kurzawski 992376b
0b9d8b2
Krzysztof Kurzawski 992376b
%files
cf4c22a
%doc README.md
4c6bd1d
%{!?_licensedir:%global license %%doc}
4c6bd1d
%if 0%{?fedora}
4c6bd1d
%{python3_sitelib}/youtube_dl/
4c6bd1d
%{python3_sitelib}/youtube_dl*.egg-info
85645d1
%else
4c6bd1d
%{python2_sitelib}/youtube_dl/
4c6bd1d
%{python2_sitelib}/youtube_dl*.egg-info
85645d1
%endif
4c6bd1d
%license LICENSE
Krzysztof Kurzawski 992376b
%{_bindir}/%{name}
2145153
%{_mandir}/man1/%{name}.1*
218cfb1
%config(noreplace) %{_sysconfdir}/%{name}.conf
2145153
%{_sysconfdir}/bash_completion.d/%{name}
9a0da09
%{_datadir}/zsh/site-functions/_youtube-dl
Krzysztof Kurzawski 992376b
0b9d8b2
Krzysztof Kurzawski 992376b
%changelog
5ac1440
* Sun Dec 06 2015 Till Maas <opensource@till.name> - - 2015.12.05-1
5ac1440
- Update to latest release
5ac1440
2e30074
* Tue Dec 01 2015 Jon Ciesla <limburgher@gmail.com> - 2015.11.27.1-1
2e30074
- Update to latest release.
2e30074
2d5f652
* Sun Nov 22 2015 Till Maas <opensource@till.name> - 2015.11.21-1
2d5f652
- Update to new release
2d5f652
0baccbe
* Mon Nov 16 2015 Matěj Cepl <mcepl@redhat.com> - 2015.11.15-1
0baccbe
- Update to new release.
0baccbe
4c6bd1d
* Sun Nov 15 2015 Till Maas <opensource@till.name> - 2015.11.13-2
4c6bd1d
- Use python3 on Fedora (#1282086)
4c6bd1d
8223d7f
* Fri Nov 13 2015 Till Maas <opensource@till.name> - 2015.11.13-1
8223d7f
- Update to new release
8223d7f
85e20d3
* Sun Oct 18 2015 Matěj Cepl <mcepl@redhat.com> - 2015.10.16-1
85e20d3
- Update to the latest release (#1270800)
85e20d3
5c9e81f
* Fri Oct 09 2015 Matěj Cepl <mcepl@redhat.com> - 2015.10.09-1
5c9e81f
- Update to the latest release (#1265448)
5c9e81f
4130f24
* Sun Sep 20 2015 Matěj Cepl <mcepl@redhat.com> - 2015.09.09-1
4130f24
- Update to the latest release (#1251785)
4130f24
bbf3d34
* Sat Aug 08 2015 Matej Cepl <mcepl@redhat.com> - 2015.08.06.1-1
bbf3d34
- Update to the latest release (#1240646)
bbf3d34
6d48c69
* Sat Jul 04 2015 Matej Cepl <mcepl@redhat.com> - 2015.07.04-1
6d48c69
- Update to the latest release (#1231593)
6d48c69
6632e4d
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2015.06.04.1-3
6632e4d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
6632e4d
85645d1
* Fri Jun 05 2015 Matej Cepl <mcepl@redhat.com> - 2015.06.04.1-2
85645d1
- Fix the License: field to Unlicense.
85645d1
8b41b14
* Fri Jun 05 2015 Matej Cepl <mcepl@redhat.com> - 2015.06.04.1-1
8b41b14
- Update to the latest release (#1222017)
8b41b14
0f250a0
* Fri May 15 2015 Matej Cepl <mcepl@redhat.com> - 2015.05.10-1
0f250a0
- Update to the latest release (#1218015, 1200569, 1206484)
0f250a0
0b9d8b2
* Wed Apr 29 2015 Matej Cepl <mcepl@redhat.com> - 2015.04.28-1
0b9d8b2
- Update to the latest release (#1210132)
0b9d8b2
289f972
* Sat Apr 04 2015 Matej Cepl <mcepl@redhat.com> - 2015.04.03-1
289f972
- Update to the latest release (#1205700)
289f972
8f973da
* Thu Mar 19 2015 Matej Cepl <mcepl@redhat.com> - 2015.03.18-1
8f973da
- Update to latest release (# 1201585)
8f973da
ae6d085
* Thu Mar 05 2015 Matej Cepl <mcepl@redhat.com> - 2015.03.03.1-1
ae6d085
- Update to latest release (# 1195539, 1195779)
ae6d085
b78eb2a
* Sun Feb 22 2015 Matej Cepl <mcepl@redhat.com> - 2015.02.21-1
b78eb2a
- Update to latest release
b78eb2a
9234726
* Wed Feb 18 2015 Matej Cepl <mcepl@redhat.com> - 2015.02.18.1-1
9234726
- Update to latest release
9234726
98f337e
* Mon Feb 16 2015 Matej Cepl <mcepl@redhat.com> - 2015.02.11-1
98f337e
- Show must go on!
98f337e
b9d2fb2
* Tue Feb 10 2015 Till Maas <opensource@till.name> - 2015.02.10.4-1
b9d2fb2
- Update to latest release
b9d2fb2
5766e33
* Tue Feb 10 2015 Till Maas <opensource@till.name> - 2015.02.10.2-1
5766e33
- Update to latest release
5766e33
- remove pre-built file in %%setup
5766e33
cf4c22a
* Sat Jan 31 2015 Till Maas <opensource@till.name> - 2015.01.30.1-1
cf4c22a
- Update to new release
cf4c22a
- Use %%license
cf4c22a
b978157
* Tue Jan 27 2015 Till Maas <opensource@till.name> - 2015.01.25-1
b978157
- Update to new release
b978157
b978157
* Tue Jan 27 2015 Alexey Kurov <nucleo@fedoraproject.org> - 2015.01.25.1-1
b978157
- Python 2.7 byte compile
b978157
58db9ae
* Fri Jan 16 2015 Matej Cepl <mcepl@redhat.com> - 2015.01.15.1-1
58db9ae
- Update to new release.
58db9ae
5275c35
* Wed Jan 14 2015 Till Maas <opensource@till.name> - 2015.01.11-1
5275c35
- Update to new release
5275c35
b978157
280d1ae
* Sat Dec 13 2014 Till Maas <opensource@till.name> - 2014.12.10.3-1
280d1ae
- Update to new release
280d1ae
e42d91c
* Thu Nov 13 2014 Jon Ciesla <limburgher@gmail.com> - 2014.11.13-1
e42d91c
- Update to latest release.
e42d91c
9a0da09
* Mon Nov 03 2014 Till Maas <opensource@till.name> - 2014.11.02.1-1
9a0da09
- Update to latest release
9a0da09
- Add zsh completion file
9a0da09
- Add GPG key verification
9a0da09
002d25d
* Tue Sep 23 2014 Till Maas <opensource@till.name> - 2014.09.22.1-1
002d25d
- Update to latest release
002d25d
- Exclude fish completion script
002d25d
269c3b7
* Sun Sep 07 2014 Till Maas <opensource@till.name> - 2014.09.06-1
269c3b7
- Update to 2014-09-06
269c3b7
- Add GPG signature
269c3b7
d63a3cc
* Sun Aug 31 2014 Till Maas <opensource@till.name> - 2014.08.29-1
d63a3cc
- Update to 2014.08.29
d63a3cc
3ed20da
* Tue Jul 29 2014 Christopher Meng <rpm@cicku.me> - 2014.07.25.1-1
3ed20da
- Update to 2014.07.25.1
3ed20da
c8e3d45
* Mon Jul 21 2014 Matěj Cepl <mcepl@redhat.com> - 2014.07.20.2-1
c8e3d45
- Update to 2014.07.20.2
c8e3d45
83cfdf8
* Sat Jul 12 2014 Christopher Meng <rpm@cicku.me> - 2014.07.11.3-1
83cfdf8
- Update to 2014.07.11.3
83cfdf8
dd50ead
* Tue Jun 24 2014 Christopher Meng <rpm@cicku.me> - 2014.06.24.1-1
dd50ead
- Update to 2014.06.24.1
dd50ead
d30af13
* Mon Jun 09 2014 Christopher Meng <rpm@cicku.me> - 2014.06.07-1
d30af13
- Update to 2014.06.07
d30af13
d30af13
* Tue May 06 2014 Christopher Meng <rpm@cicku.me> - 2014.05.05-1
b3b9acb
- Update to 2014.05.05
b3b9acb
fcb5b62
* Fri Apr 11 2014 Christopher Meng <rpm@cicku.me> - 2014.04.11.1-1
fcb5b62
- Update to 2014.04.11.1
fcb5b62
43230b4
* Mon Mar 17 2014 Matěj Cepl <mcepl@redhat.com> - 2014.03.12-1
43230b4
- Update to 2014.03.12
43230b4
5fd9cb5
* Sat Mar 08 2014 Christopher Meng <rpm@cicku.me> - 2014.03.07.1-1
5fd9cb5
- Update to 2014.03.07.1
5fd9cb5
b641ed3
* Tue Feb 25 2014 Christopher Meng <rpm@cicku.me> - 2014.02.25-1
b641ed3
- Update to 2014.02.25
b641ed3
d505aa6
* Thu Feb 20 2014 Christopher Meng <rpm@cicku.me> - 2014.02.19.1-1
d505aa6
- Update to 2014.02.19.1
d505aa6
fef23fe
* Tue Feb 11 2014 Christopher Meng <rpm@cicku.me> - 2014.02.10-1
fef23fe
- Update to 2014.02.10
fef23fe
10b1b8d
* Fri Feb 07 2014 Christopher Meng <rpm@cicku.me> - 2014.02.06.3-1
10b1b8d
- Update to 2014.02.06.3
10b1b8d
b98a9d5
* Thu Jan 23 2014 Christopher Meng <rpm@cicku.me> - 2014.01.23-1
b98a9d5
- Update to 2014.01.23
b98a9d5
05f7f5a
* Mon Jan 20 2014 Christopher Meng <rpm@cicku.me> - 2014.01.17.2-1
05f7f5a
- Update to 2014.01.17.2
05f7f5a
0984333
* Thu Jan 09 2014 Christopher Meng <rpm@cicku.me> - 2014.01.08-1
0984333
- Update to 2014.01.08
0984333
356680d
* Sat Jan 04 2014 Christopher Meng <rpm@cicku.me> - 2014.01.03-1
356680d
- Update to 2014.01.03
356680d
781efbb
* Fri Dec 27 2013 Christopher Meng <rpm@cicku.me> - 2013.12.26-1
781efbb
- Update to 2013.12.26
781efbb
ec7c14f
* Sun Dec 22 2013 Christopher Meng <rpm@cicku.me> - 2013.12.20-1
ec7c14f
- Update to 2013.12.20
ec7c14f
c2bedf5
* Thu Dec 19 2013 Christopher Meng <rpm@cicku.me> - 2013.12.17.2-1
c2bedf5
- Update to 2013.12.17.2
c2bedf5
a0157ca
* Tue Dec 03 2013 Christopher Meng <rpm@cicku.me> - 2013.12.09.4-1
a0157ca
- Update to 2013.12.09.4
a0157ca
Christopher Meng 50a07ff
* Tue Dec 03 2013 Christopher Meng <rpm@cicku.me> - 2013.12.04-1
a0157ca
- Update to 2013.12.04
Christopher Meng 50a07ff
Christopher Meng ff76942
* Tue Dec 03 2013 Christopher Meng <rpm@cicku.me> - 2013.12.02-1
a0157ca
- Update to 2013.12.02
Christopher Meng ff76942
Christopher Meng dca5fb8
* Fri Nov 29 2013 Christopher Meng <rpm@cicku.me> - 2013.11.29-1
a0157ca
- Update to 2013.11.29(BZ#1035738)
Christopher Meng dca5fb8
Christopher Meng e7d3f3a
* Tue Nov 26 2013 Christopher Meng <rpm@cicku.me> - 2013.11.25.3-1
a0157ca
- Update to 2013.11.25.3(BZ#1034138)
Christopher Meng e7d3f3a
Christopher Meng 3752687
* Sun Nov 24 2013 Christopher Meng <rpm@cicku.me> - 2013.11.22.2-1
a0157ca
- Update to 2013.11.22
Christopher Meng 3752687
Christopher Meng a700618
* Thu Nov 21 2013 Christopher Meng <rpm@cicku.me> - 2013.11.20-1
a0157ca
- Update to 2013.11.20
Christopher Meng a700618
Christopher Meng d2f114a
* Wed Nov 20 2013 Christopher Meng <rpm@cicku.me> - 2013.11.19-1
a0157ca
- Update to 2013.11.19
Christopher Meng d2f114a
Christopher Meng df5b7c0
* Mon Nov 18 2013 Christopher Meng <rpm@cicku.me> - 2013.11.18.1-1
a0157ca
- Update to 2013.11.18.1
Christopher Meng df5b7c0
Christopher Meng 89f8aec
* Fri Nov 15 2013 Christopher Meng <rpm@cicku.me> - 2013.11.15-1
a0157ca
- Update to 2013.11.15
Christopher Meng 89f8aec
Christopher Meng b5eb2c1
* Thu Nov 14 2013 Christopher Meng <rpm@cicku.me> - 2013.11.13-1
a0157ca
- Update to 2013.11.13
Christopher Meng b5eb2c1
Christopher Meng d80a59a
* Tue Nov 12 2013 Christopher Meng <rpm@cicku.me> - 2013.11.11-1
a0157ca
- Update to 2013.11.11
Christopher Meng d80a59a
Christopher Meng ed60249
* Fri Nov 08 2013 Christopher Meng <rpm@cicku.me> - 2013.11.07-1
a0157ca
- Update to 2013.11.07(BZ#1027822)
Christopher Meng ed60249
Christopher Meng 27c163f
* Thu Oct 31 2013 Christopher Meng <rpm@cicku.me> - 2013.11.02-1
a0157ca
- Update to 2013.11.02(BZ#1026034)
Christopher Meng 27c163f
Christopher Meng 499d57f
* Thu Oct 31 2013 Christopher Meng <rpm@cicku.me> - 2013.10.30-1
a0157ca
- Update to 2013.10.30(BZ#1024948)
Christopher Meng 499d57f
Christopher Meng a8e3f3d
* Mon Oct 28 2013 Christopher Meng <rpm@cicku.me> - 2013.10.28-1
a0157ca
- Update to 2013.10.28(BZ#1022706)
Christopher Meng a8e3f3d
Christopher Meng 98a614a
* Wed Oct 23 2013 Christopher Meng <rpm@cicku.me> - 2013.10.23-1
a0157ca
- Update to 2013.10.23
Christopher Meng 98a614a
Christopher Meng 801bd70
* Sun Oct 20 2013 Christopher Meng <rpm@cicku.me> - 2013.10.18.2-1
a0157ca
- Update to 2013.10.18.2(BZ#1020787)
Christopher Meng 801bd70
Christopher Meng 7697ff5
* Thu Oct 17 2013 Christopher Meng <rpm@cicku.me> - 2013.10.17-1
a0157ca
- Update to 2013.10.17(BZ#1019694)
Christopher Meng 7697ff5
Christopher Meng bd32939
* Thu Oct 10 2013 Christopher Meng <rpm@cicku.me> - 2013.10.09-1
a0157ca
- Update to 2013.10.09(BZ#1017630)
Christopher Meng bd32939
Christopher Meng f54e41a
* Mon Oct 07 2013 Christopher Meng <rpm@cicku.me> - 2013.10.07-1
a0157ca
- Update to 2013.10.07(BZ#1014266)
Christopher Meng f54e41a
Christopher Meng 669b8f5
* Mon Sep 30 2013 Christopher Meng <rpm@cicku.me> - 2013.09.29-1
a0157ca
- Update to 2013.09.29(BZ#1013394)
Christopher Meng 669b8f5
Christopher Meng 978448b
* Wed Sep 25 2013 Christopher Meng <rpm@cicku.me> - 2013.09.24.2-1
a0157ca
- Update to 2013.09.24.2(BZ#1011845)
Christopher Meng 978448b
Christopher Meng 978448b
* Sat Sep 21 2013 Christopher Meng <rpm@cicku.me> - 2013.09.20.1-1
a0157ca
- Update to 2013.09.20.1(BZ#1009593)
Christopher Meng 26f2651
Christopher Meng 47c3e8d
* Mon Sep 16 2013 Christopher Meng <rpm@cicku.me> - 2013.09.16-1
a0157ca
- Update to 2013.09.16(BZ#1006829)
Christopher Meng 47c3e8d
Christopher Meng 4c15b62
* Wed Sep 11 2013 Christopher Meng <rpm@cicku.me> - 2013.09.10-1
a0157ca
- Update to 2013.09.10(BZ#1006334)
Christopher Meng 4c15b62
Christopher Meng 4ecef66
* Mon Sep 09 2013 Christopher Meng <rpm@cicku.me> - 2013.09.07-1
a0157ca
- Update to 2013.09.07
Christopher Meng 4ecef66
Christopher Meng 8f7f774
* Thu Sep 05 2013 Christopher Meng <rpm@cicku.me> - 2013.09.04-1
a0157ca
- Update to 2013.09.04
Christopher Meng 8f7f774
Christopher Meng be78407
* Mon Sep 02 2013 Christopher Meng <rpm@cicku.me> - 2013.08.30-1
a0157ca
- Update to 2013.08.30
Christopher Meng be78407
Christopher Meng 87f39ff
* Fri Aug 30 2013 Christopher Meng <rpm@cicku.me> - 2013.08.29-1
a0157ca
- Update to 2013.08.29
Christopher Meng 87f39ff
Koji 71a4179
* Tue Aug 27 2013 Christopher Meng <rpm@cicku.me> - 2013.08.27-1
a0157ca
- Update to 2013.08.27
Koji 71a4179
Koji 780ff19
* Sat Aug 24 2013 Christopher Meng <rpm@cicku.me> - 2013.08.23-1
a0157ca
- Update to 2013.08.23
Koji 780ff19
Koji 53c8157
* Sun Aug 18 2013 Christopher Meng <rpm@cicku.me> - 2013.08.17-1
a0157ca
- Update to 2013.08.17
Koji 53c8157
Koji 983ef37
* Tue Aug 13 2013 Christopher Meng <rpm@cicku.me> - 2013.08.09-1
a0157ca
- Update to 2013.08.09
Koji 983ef37
Christopher Meng 7bae54b
* Sat Aug 03 2013 Christopher Meng <rpm@cicku.me> - 2013.08.02-1
a0157ca
- Update to 2013.08.02
Christopher Meng 7bae54b
Christopher Meng 7f704c1
* Mon Jul 22 2013 Christopher Meng <rpm@cicku.me> - 2013.07.25.2-1
a0157ca
- Update to 2013.07.25.2
Christopher Meng 7f704c1
Christopher Meng 9819260
* Mon Jul 22 2013 Christopher Meng <rpm@cicku.me> - 2013.07.19-1
a0157ca
- Update to 2013.07.19
Christopher Meng 9819260
Christopher Meng c9b9a8e
* Thu Jul 18 2013 Christopher Meng <rpm@cicku.me> - 2013.07.17.1-1
a0157ca
- Update to 2013.07.17.1
Christopher Meng c9b9a8e
Christopher Meng 1672ab5
* Tue Jul 16 2013 Christopher Meng <rpm@cicku.me> - 2013.07.12-1
a0157ca
- Update to 2013.07.12
Christopher Meng 1672ab5
Christopher Meng db8d0ff
* Thu Jul 11 2013 Christopher Meng <rpm@cicku.me> - 2013.07.10-1
a0157ca
- Update to 2013.07.10
Christopher Meng db8d0ff
root e133e75
* Tue Jul 02 2013 Christopher Meng <rpm@cicku.me> - 2013.07.02-1
a0157ca
- Update to 2013.07.02
root e133e75
- SPEC cleanup.
root e133e75
Christopher Meng a4a3049
* Wed Jun 26 2013 Christopher Meng <rpm@cicku.me> - 2013.06.31-1
a0157ca
- Update to 2013.06.31
Christopher Meng a4a3049
Christopher Meng c3bfaae
* Mon Jun 17 2013 Christopher Meng <rpm@cicku.me> - 2013.05.23-1
a0157ca
- Update to 2013.05.23 and cleanup the spec
Christopher Meng c3bfaae
Christopher Meng a6a59ef
* Tue May 14 2013 Christopher Meng <rpm@cicku.me> - 2013.05.14-1
a0157ca
- Update to 2013.05.14
Christopher Meng a6a59ef
Christopher Meng 181aea8
* Wed May 08 2013 Christopher Meng <rpm@cicku.me> - 2013.05.07-1
a0157ca
- Update to 2013.05.07
Christopher Meng 181aea8
616e093
* Thu Apr 18 2013 Till Maas <opensource@till.name> - 2013.04.18-1
Christopher Meng c3bfaae
- Update to new release.
616e093
de801fb
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2013.01.13-2
de801fb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
de801fb
26ddb6a
* Tue Jan 15 2013 Till Maas <opensource@till.name> - 2013.01.13-1
Christopher Meng c3bfaae
- Update to new release.
26ddb6a
deb92ec
* Sun Jan 06 2013 Matěj Cepl <mcepl@redhat.com> - 2013.01.02-1
Christopher Meng c3bfaae
- Update to new release (fix #880270).
deb92ec
2145153
* Tue Oct 23 2012 Till Maas <opensource@till.name> - 2012.10.09-1
Christopher Meng c3bfaae
- Update to new release.
Christopher Meng c3bfaae
- Update BR: add pandoc.
Christopher Meng c3bfaae
- install make target.
2145153
c3d6261
* Tue Oct 02 2012 Till Maas <opensource@till.name> - 2012.09.27-3
Christopher Meng c3bfaae
- Add BR: python >= 2.6.
c3d6261
218cfb1
* Tue Oct 02 2012 Till Maas <opensource@till.name> - 2012.09.27-2
Christopher Meng c3bfaae
- Use noreplace for config file.
Christopher Meng c3bfaae
- Add BR: zip.
218cfb1
218cfb1
* Tue Oct  2 2012 Tim Landscheidt <tim@tim-landscheidt.de> - 2012.09.27-1
218cfb1
- Bump Python requirement to 2.6.
218cfb1
- Update to new release and GitHub tarballs.
218cfb1
6d6272b
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012.02.27-2
6d6272b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6d6272b
94d1973
* Sat Apr 21 2012 Till Maas <opensource@till.name> - 2012.02.27-1
Christopher Meng c3bfaae
- Update to new release.
94d1973
8449097
* Thu Jan 26 2012 Till Maas <opensource@till.name> - 2011.12.08-3
8449097
- Provide --prefer-free-formats in %%{_sysconfdir}/%%{name}.conf (RH #757577)
8449097
  (Patch by Jan Kratochvil)
8449097
3b5ef5d
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2011.12.08-2
3b5ef5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3b5ef5d
3cae609
* Sat Dec 10 2011 Till Maas <opensource@till.name> - 2011.12.08-1
Christopher Meng c3bfaae
- Update to new release.
3cae609
d73ead7
* Thu Dec 08 2011 Till Maas <opensource@till.name> - 2011.11.23-1
Christopher Meng c3bfaae
- Update to new release (fixed Red Hat Bug #758679).
d73ead7
c80d53a
* Fri Oct 21 2011 Till Maas <opensource@till.name> - 2011.10.19-1
Christopher Meng c3bfaae
- Update to latest release.
c80d53a
a9d5b62
* Thu Aug 04 2011 Till Maas <opensource@till.name> - 2011.08.04-1
a9d5b62
- Update to latest release to adjust to backend changes (Red Hat Bug
Christopher Meng c3bfaae
  #728378).
a9d5b62
b2f9dc0
* Fri May 13 2011 Till Maas <opensource@till.name> - 2011.03.29-1
Christopher Meng c3bfaae
- Update to latest release.
b2f9dc0
f9d6d1b
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2011.01.30-2
f9d6d1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f9d6d1b
af7dea0
* Mon Jan 31 2011 Till Maas <opensource@till.name> - 2010.01.30-1
Christopher Meng c3bfaae
- Update to latest release.
af7dea0
817631c
* Sun Dec 12 2010 Till Maas <opensource@till.name> - 2010.12.09-1
Christopher Meng c3bfaae
- Update to latest release to adjust with youtube changes.
817631c
6e724a5
* Sat Nov 06 2010 Till Maas <opensource@till.name> - 2010.10.24-1
Christopher Meng c3bfaae
- Update to latest release.
Christopher Meng c3bfaae
- Adjust to new upstream location at github instead of bitbucket.
Christopher Meng c3bfaae
- add -p to install.
6e724a5
- remove index.html
6e724a5
8632882
* Thu Oct 07 2010 Till Maas <opensource@till.name> - 2010.10.03-1
Christopher Meng c3bfaae
- Update to latest release.
8632882
b157c3b
* Thu Aug 05 2010 Till Maas <opensource@till.name> - 2010.08.04-1
Christopher Meng c3bfaae
- Update to latest release.
b157c3b
52d84f4
* Fri Jul 23 2010 Till Maas <opensource@till.name> - 2010.07.22-1
Christopher Meng c3bfaae
- Update to latest release.
67f8220
0da71b4
* Thu Jul 15 2010 Till Maas <opensource@till.name> - 2010.07.14-1
Christopher Meng c3bfaae
- Update to latest release.
0da71b4
1c46e3d
* Mon Jun 07 2010 Till Maas <opensource@till.name> - 2010.06.06-1
Christopher Meng c3bfaae
- Update to latest release.
1c46e3d
0f8a235
* Thu Apr 29 2010 Till Maas <opensource@till.name> - 2010.04.04-1
Christopher Meng c3bfaae
- Update to latest release to fix some download issues RH #582372.
0f8a235
df48d1a
* Fri Oct 09 2009 Rafał Psota <rafalzaq@gmail.com> - 2009.09.13-2
Christopher Meng c3bfaae
- Small fix in %%prep.
df48d1a
df48d1a
* Sun Sep 27 2009 Rafał Psota <rafalzaq@gmail.com> - 2009.09.13-1
Christopher Meng c3bfaae
- Update to 2009.09.13.
Christopher Meng c3bfaae
- License change to Public Domain.
df48d1a
8df9f09
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2008.01.24-3
8df9f09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8df9f09
f31769c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2008.01.24-2
f31769c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f31769c
Krzysztof Kurzawski 992376b
* Sat Jan 26 2008 Krzysztof Kurzawski <kurzawax at gmail.com> 2008.01.24-1
Krzysztof Kurzawski 992376b
- Update to v2008.01.24
Krzysztof Kurzawski 992376b
- Add polish summary and description.
Krzysztof Kurzawski 992376b
Krzysztof Kurzawski 992376b
* Wed Jan 02 2008 Krzysztof Kurzawski <kurzawax at gmail.com> 2007.10.12-5
Krzysztof Kurzawski 992376b
- Correct install.
Krzysztof Kurzawski 992376b
- Correct documentation.
Krzysztof Kurzawski 992376b
Krzysztof Kurzawski 992376b
* Sat Dec 29 2007 Krzysztof Kurzawski <kurzawax at gmail.com> 2007.10.12-4
Krzysztof Kurzawski 992376b
- Correct requires.
Krzysztof Kurzawski 992376b
- Add documentation.
Krzysztof Kurzawski 992376b
Krzysztof Kurzawski 992376b
* Sun Dec 23 2007 Krzysztof Kurzawski <kurzawax at gmail.com> 2007.10.12-3
Krzysztof Kurzawski 992376b
- Correct version tag.
Krzysztof Kurzawski 992376b
Krzysztof Kurzawski 992376b
* Fri Dec 14 2007 Krzysztof Kurzawski <kurzawax at gmail.com> 1-2
Krzysztof Kurzawski 992376b
- Update to v2007.10.12, correct license and update summary.
Krzysztof Kurzawski 992376b
Krzysztof Kurzawski 992376b
* Sun Dec 9 2007 Krzysztof Kurzawski <kurzawax at gmail.com> 1-1
Christopher Meng c3bfaae
- First release.