From b978157ffd06afa5862cbd50b6f154dbaa9f6db0 Mon Sep 17 00:00:00 2001 From: Alexey Kurov Date: Tue, 27 Jan 2015 17:56:56 +0100 Subject: [PATCH 01/18] Use python byte compiler --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 32 ++++++++++++++++++++++++-------- 3 files changed, 28 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 8cc2ff3..9144a77 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,5 @@ /youtube-dl-2015.01.11.tar.gz.sig /youtube-dl-2015.01.15.1.tar.gz /youtube-dl-2015.01.15.1.tar.gz.sig +/youtube-dl-2015.01.25.tar.gz +/youtube-dl-2015.01.25.tar.gz.sig diff --git a/sources b/sources index 422c6ba..4e6b0d4 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -06279e030cf27542671ffcc30afce19e youtube-dl-2015.01.15.1.tar.gz -79597b5e99ebecb416bdc5bf88e78dfc youtube-dl-2015.01.15.1.tar.gz.sig +880a10563d31942f3b54f48f167a875f youtube-dl-2015.01.25.tar.gz +99be5d335925e4ff081250abbc86583f youtube-dl-2015.01.25.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index 03d9282..bdc6833 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.01.15.1 +Version: 2015.01.25 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -8,10 +8,9 @@ Source0: https://yt-dl.org/downloads/%{version}/%{name}-%{version}.tar.gz Source1: https://yt-dl.org/downloads/%{version}/youtube-dl-%{version}.tar.gz.sig Source2: gpgkey-7D33D762FD6C35130481347FDB4B54CBA4826A18.gpg Source3: %{name}.conf -BuildRequires: python2 +BuildRequires: python-devel # Tests failed because of no connection in Koji. # BuildRequires: python-nose -Requires: python BuildArch: noarch # For source verification with gpgv BuildRequires: gpg @@ -23,15 +22,24 @@ Small command-line program to download videos from YouTube and other sites. gpgv --quiet --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0} %setup -qn %{name} +cp -a setup.py setup.py.installpath +# Remove files that are installed to the wrong path +sed -i '/youtube-dl.bash-completion/d' setup.py +sed -i '/youtube-dl.fish/d' setup.py +sed -i '/README.txt/d' setup.py + %build -make %{?_smp_mflags} +%{__python2} setup.py build %install -%make_install PREFIX=%{_prefix} \ - MANDIR=%{_mandir} \ - PYTHON=%{__python2} +%{__python2} setup.py install --root=%{buildroot} + mkdir -p %{buildroot}%{_sysconfdir} install -pm644 %{S:3} %{buildroot}%{_sysconfdir} +mkdir -p %{buildroot}%{_sysconfdir}/bash_completion.d/ +install -pm644 youtube-dl.bash-completion %{buildroot}%{_sysconfdir}/bash_completion.d/youtube-dl +mkdir -p %{buildroot}%{_datadir}/zsh/site-functions/ +install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtube-dl %check #make test @@ -42,16 +50,24 @@ install -pm644 %{S:3} %{buildroot}%{_sysconfdir} %{_mandir}/man1/%{name}.1* %config(noreplace) %{_sysconfdir}/%{name}.conf %{_sysconfdir}/bash_completion.d/%{name} -%exclude %{_sysconfdir}/fish/completions/youtube-dl.fish %{_datadir}/zsh/site-functions/_youtube-dl +%{python_sitelib}/youtube_dl/ +%{python_sitelib}/youtube_dl*.egg-info %changelog +* Tue Jan 27 2015 Till Maas - 2015.01.25-1 +- Update to new release + +* Tue Jan 27 2015 Alexey Kurov - 2015.01.25.1-1 +- Python 2.7 byte compile + * Fri Jan 16 2015 Matej Cepl - 2015.01.15.1-1 - Update to new release. * Wed Jan 14 2015 Till Maas - 2015.01.11-1 - Update to new release + * Sat Dec 13 2014 Till Maas - 2014.12.10.3-1 - Update to new release From cf4c22aa60b606a54accd641f1ed37a95025f580 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Sat, 31 Jan 2015 15:29:45 +0100 Subject: [PATCH 02/18] Update to new release - Use %license --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 9 +++++++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9144a77..d93b156 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,5 @@ /youtube-dl-2015.01.15.1.tar.gz.sig /youtube-dl-2015.01.25.tar.gz /youtube-dl-2015.01.25.tar.gz.sig +/youtube-dl-2015.01.30.2.tar.gz +/youtube-dl-2015.01.30.2.tar.gz.sig diff --git a/sources b/sources index 4e6b0d4..c5c4b0b 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -880a10563d31942f3b54f48f167a875f youtube-dl-2015.01.25.tar.gz -99be5d335925e4ff081250abbc86583f youtube-dl-2015.01.25.tar.gz.sig +bcdae32ecea8e4a57d1f7a43b2a2dbd5 youtube-dl-2015.01.30.2.tar.gz +73ab08dd5dae0b331751566ce255dce7 youtube-dl-2015.01.30.2.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index bdc6833..310c1df 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.01.25 +Version: 2015.01.30.2 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -45,7 +45,8 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub #make test %files -%doc LICENSE README.md +%doc README.md +%license LICENSE %{_bindir}/%{name} %{_mandir}/man1/%{name}.1* %config(noreplace) %{_sysconfdir}/%{name}.conf @@ -55,6 +56,10 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl*.egg-info %changelog +* Sat Jan 31 2015 Till Maas - 2015.01.30.1-1 +- Update to new release +- Use %%license + * Tue Jan 27 2015 Till Maas - 2015.01.25-1 - Update to new release From 5766e335b0d4f8a55854599b96aaa681f2d14918 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Tue, 10 Feb 2015 12:36:22 +0100 Subject: [PATCH 03/18] Update to latest release - remove pre-built file in %setup --- youtube-dl.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/youtube-dl.spec b/youtube-dl.spec index 310c1df..b2dc7f0 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.01.30.2 +Version: 2015.02.10.2 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -22,6 +22,9 @@ Small command-line program to download videos from YouTube and other sites. gpgv --quiet --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0} %setup -qn %{name} +# remove pre-built file +rm youtube-dl + cp -a setup.py setup.py.installpath # Remove files that are installed to the wrong path sed -i '/youtube-dl.bash-completion/d' setup.py @@ -56,6 +59,10 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl*.egg-info %changelog +* Tue Feb 10 2015 Till Maas - 2015.02.10.2-1 +- Update to latest release +- remove pre-built file in %%setup + * Sat Jan 31 2015 Till Maas - 2015.01.30.1-1 - Update to new release - Use %%license From 33a4f4552d0d5bb6a3577db58c18f1dda993222f Mon Sep 17 00:00:00 2001 From: Till Maas Date: Tue, 10 Feb 2015 12:47:39 +0100 Subject: [PATCH 04/18] Update sources --- .gitignore | 2 ++ sources | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d93b156..a8182d5 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,5 @@ /youtube-dl-2015.01.25.tar.gz.sig /youtube-dl-2015.01.30.2.tar.gz /youtube-dl-2015.01.30.2.tar.gz.sig +/youtube-dl-2015.02.10.2.tar.gz +/youtube-dl-2015.02.10.2.tar.gz.sig diff --git a/sources b/sources index c5c4b0b..df0824a 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -bcdae32ecea8e4a57d1f7a43b2a2dbd5 youtube-dl-2015.01.30.2.tar.gz -73ab08dd5dae0b331751566ce255dce7 youtube-dl-2015.01.30.2.tar.gz.sig +d408043ae46fc5e13d7c80373957a87e youtube-dl-2015.02.10.2.tar.gz +01ec8e1090849df875c8c80891c30f49 youtube-dl-2015.02.10.2.tar.gz.sig From b9d2fb21dab0e863ae6a9480cb6b1339877d5e8e Mon Sep 17 00:00:00 2001 From: Till Maas Date: Tue, 10 Feb 2015 13:11:39 +0100 Subject: [PATCH 05/18] Update to latest release --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 5 ++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a8182d5..b4100f8 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,5 @@ /youtube-dl-2015.01.30.2.tar.gz.sig /youtube-dl-2015.02.10.2.tar.gz /youtube-dl-2015.02.10.2.tar.gz.sig +/youtube-dl-2015.02.10.4.tar.gz +/youtube-dl-2015.02.10.4.tar.gz.sig diff --git a/sources b/sources index df0824a..01f01d3 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -d408043ae46fc5e13d7c80373957a87e youtube-dl-2015.02.10.2.tar.gz -01ec8e1090849df875c8c80891c30f49 youtube-dl-2015.02.10.2.tar.gz.sig +0b9e7f93a039ff439060ba3a7e3b73f2 youtube-dl-2015.02.10.4.tar.gz +4f9c6adf130eab4b6043a1a65bf857bb youtube-dl-2015.02.10.4.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index b2dc7f0..cbebd10 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.02.10.2 +Version: 2015.02.10.4 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -59,6 +59,9 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl*.egg-info %changelog +* Tue Feb 10 2015 Till Maas - 2015.02.10.4-1 +- Update to latest release + * Tue Feb 10 2015 Till Maas - 2015.02.10.2-1 - Update to latest release - remove pre-built file in %%setup From 98f337e986c491a4ed4257b5a6c27063f7c0336f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Mon, 16 Feb 2015 12:37:46 +0100 Subject: [PATCH 06/18] Show must go on! --- .gitignore | 1 + sources | 3 +-- youtube-dl.spec | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b4100f8..2722a5c 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ /youtube-dl-2015.02.10.2.tar.gz.sig /youtube-dl-2015.02.10.4.tar.gz /youtube-dl-2015.02.10.4.tar.gz.sig +/youtube-dl-2015.02.11.tar.gz diff --git a/sources b/sources index 01f01d3..23dd44b 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -0b9e7f93a039ff439060ba3a7e3b73f2 youtube-dl-2015.02.10.4.tar.gz -4f9c6adf130eab4b6043a1a65bf857bb youtube-dl-2015.02.10.4.tar.gz.sig +8922f062c1bae78997e08274fdf35d35 youtube-dl-2015.02.11.tar.gz diff --git a/youtube-dl.spec b/youtube-dl.spec index cbebd10..329678f 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.02.10.4 +Version: 2015.02.11 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -59,6 +59,9 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl*.egg-info %changelog +* Mon Feb 16 2015 Matej Cepl - 2015.02.11-1 +- Show must go on! + * Tue Feb 10 2015 Till Maas - 2015.02.10.4-1 - Update to latest release From 936061e7f6e92a23d1c3c932eb7be55c4ca78b39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Mon, 16 Feb 2015 12:45:09 +0100 Subject: [PATCH 07/18] Add .sig file (fix RHBZ #1191520) --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2722a5c..30ace4d 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ /youtube-dl-2015.02.10.4.tar.gz /youtube-dl-2015.02.10.4.tar.gz.sig /youtube-dl-2015.02.11.tar.gz +/youtube-dl-2015.02.11.tar.gz.sig diff --git a/sources b/sources index 23dd44b..5822874 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8922f062c1bae78997e08274fdf35d35 youtube-dl-2015.02.11.tar.gz +43ecbbe6d932d55ed768ec170eb5b0fe youtube-dl-2015.02.11.tar.gz.sig From bde6780e82e1ebf1513376d793a8afbb582958c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Mon, 16 Feb 2015 12:48:51 +0100 Subject: [PATCH 08/18] Add .sig file (RHBZ #1191520) --- youtube-dl-2015.02.11.tar.gz.sig | Bin 0 -> 543 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 youtube-dl-2015.02.11.tar.gz.sig diff --git a/youtube-dl-2015.02.11.tar.gz.sig b/youtube-dl-2015.02.11.tar.gz.sig new file mode 100644 index 0000000000000000000000000000000000000000..24f2e6f60634b9a304742394ddb0179a3f273db6 GIT binary patch literal 543 zcmV+)0^t3L0vrSY0RjL91p-vtng0L^2@u;$RLi7-Y8Z?25CG32-mo}zovSlIAw}!j zkTw~WkZm#9=_OmJ-s);e63ufY=ZFK+L|vW?Urj>$g>%?#DbwT-kr(r2Pa)dFk8<^;T*#aYrJM=^N^>NGs5v%_dQ-MBC&8uvipec`Z(;91 z=P0ELP`X1_8C5j-;8O~UH=Hfq5??0b*bt;=c!0n_-nvx^p)o#_?8Xmdy{_aMP=4Uo zMqWDEoRU?OP{{Y{3(EEv`XjNs&@J}Fl3p35nWrc~e9tlvth5)L2Y^Ok0E36Th}EMb zqErsA9W^@vMN2W9Fv4R0dn)zQvo0mrciz)9_x%GA@OD{Tzu6PK53CDwr1P|xH28&7d5i&6@Ut`nr1V8`) literal 0 HcmV?d00001 From 92f0d4272e9038c7ec0e6170c96f651d922a0a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Mon, 16 Feb 2015 12:48:51 +0100 Subject: [PATCH 09/18] Add .sig file (RHBZ #1191520) --- .gitignore | 1 + sources | 3 ++- youtube-dl-2015.02.11.tar.gz.sig | Bin 0 -> 543 bytes 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 youtube-dl-2015.02.11.tar.gz.sig diff --git a/.gitignore b/.gitignore index 2722a5c..30ace4d 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ /youtube-dl-2015.02.10.4.tar.gz /youtube-dl-2015.02.10.4.tar.gz.sig /youtube-dl-2015.02.11.tar.gz +/youtube-dl-2015.02.11.tar.gz.sig diff --git a/sources b/sources index 23dd44b..d7c4434 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ -8922f062c1bae78997e08274fdf35d35 youtube-dl-2015.02.11.tar.gz +43ecbbe6d932d55ed768ec170eb5b0fe youtube-dl-2015.02.11.tar.gz.sig +43ecbbe6d932d55ed768ec170eb5b0fe youtube-dl-2015.02.11.tar.gz.sig diff --git a/youtube-dl-2015.02.11.tar.gz.sig b/youtube-dl-2015.02.11.tar.gz.sig new file mode 100644 index 0000000000000000000000000000000000000000..24f2e6f60634b9a304742394ddb0179a3f273db6 GIT binary patch literal 543 zcmV+)0^t3L0vrSY0RjL91p-vtng0L^2@u;$RLi7-Y8Z?25CG32-mo}zovSlIAw}!j zkTw~WkZm#9=_OmJ-s);e63ufY=ZFK+L|vW?Urj>$g>%?#DbwT-kr(r2Pa)dFk8<^;T*#aYrJM=^N^>NGs5v%_dQ-MBC&8uvipec`Z(;91 z=P0ELP`X1_8C5j-;8O~UH=Hfq5??0b*bt;=c!0n_-nvx^p)o#_?8Xmdy{_aMP=4Uo zMqWDEoRU?OP{{Y{3(EEv`XjNs&@J}Fl3p35nWrc~e9tlvth5)L2Y^Ok0E36Th}EMb zqErsA9W^@vMN2W9Fv4R0dn)zQvo0mrciz)9_x%GA@OD{Tzu6PK53CDwr1P|xH28&7d5i&6@Ut`nr1V8`) literal 0 HcmV?d00001 From 9f1bcdbb8f9ac636f92e4587bc6ab1cea10bb5ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Mon, 16 Feb 2015 13:38:20 +0100 Subject: [PATCH 10/18] Fix sources --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index d7c4434..e101851 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ 43ecbbe6d932d55ed768ec170eb5b0fe youtube-dl-2015.02.11.tar.gz.sig -43ecbbe6d932d55ed768ec170eb5b0fe youtube-dl-2015.02.11.tar.gz.sig +8922f062c1bae78997e08274fdf35d35 youtube-dl-2015.02.11.tar.gz From 9234726ba844a9f0b14f89cb2b1476a450ec0142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Wed, 18 Feb 2015 14:41:49 +0100 Subject: [PATCH 11/18] Update to latest release --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 5 ++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 30ace4d..e80ffcf 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,5 @@ /youtube-dl-2015.02.10.4.tar.gz.sig /youtube-dl-2015.02.11.tar.gz /youtube-dl-2015.02.11.tar.gz.sig +/youtube-dl-2015.02.18.1.tar.gz +/youtube-dl-2015.02.18.1.tar.gz.sig diff --git a/sources b/sources index e101851..d8fc47b 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -43ecbbe6d932d55ed768ec170eb5b0fe youtube-dl-2015.02.11.tar.gz.sig -8922f062c1bae78997e08274fdf35d35 youtube-dl-2015.02.11.tar.gz +b158966a8596ddfff8b8286feb4e43dc youtube-dl-2015.02.18.1.tar.gz +6ae5cc4b3df4aba3e42aa8ed0b23c01a youtube-dl-2015.02.18.1.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index 329678f..35ef09a 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.02.11 +Version: 2015.02.18.1 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -59,6 +59,9 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl*.egg-info %changelog +* Wed Feb 18 2015 Matej Cepl - 2015.02.18.1-1 +- Update to latest release + * Mon Feb 16 2015 Matej Cepl - 2015.02.11-1 - Show must go on! From b78eb2a4657e70b44ae86dbbe3b893810772e39d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Sun, 22 Feb 2015 09:11:59 +0100 Subject: [PATCH 12/18] Update to latest release --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 5 ++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e80ffcf..d3172fc 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,5 @@ /youtube-dl-2015.02.11.tar.gz.sig /youtube-dl-2015.02.18.1.tar.gz /youtube-dl-2015.02.18.1.tar.gz.sig +/youtube-dl-2015.02.21.tar.gz +/youtube-dl-2015.02.21.tar.gz.sig diff --git a/sources b/sources index d8fc47b..3ec6369 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -b158966a8596ddfff8b8286feb4e43dc youtube-dl-2015.02.18.1.tar.gz -6ae5cc4b3df4aba3e42aa8ed0b23c01a youtube-dl-2015.02.18.1.tar.gz.sig +4ea83fd4b99654470fdc6935ab147ce7 youtube-dl-2015.02.21.tar.gz +e4429a4bfe78425d150cb0dd35ecfb22 youtube-dl-2015.02.21.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index 35ef09a..c3fd6a2 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.02.18.1 +Version: 2015.02.21 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -59,6 +59,9 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl*.egg-info %changelog +* Sun Feb 22 2015 Matej Cepl - 2015.02.21-1 +- Update to latest release + * Wed Feb 18 2015 Matej Cepl - 2015.02.18.1-1 - Update to latest release From ae6d0854c08a026461211a886a9c5c194d225e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Thu, 5 Mar 2015 16:13:57 +0100 Subject: [PATCH 13/18] Update to latest release (# 1195539, 1195779) --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 5 ++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d3172fc..52a1dac 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,5 @@ /youtube-dl-2015.02.18.1.tar.gz.sig /youtube-dl-2015.02.21.tar.gz /youtube-dl-2015.02.21.tar.gz.sig +/youtube-dl-2015.03.03.1.tar.gz +/youtube-dl-2015.03.03.1.tar.gz.sig diff --git a/sources b/sources index 3ec6369..a2f2fc4 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -4ea83fd4b99654470fdc6935ab147ce7 youtube-dl-2015.02.21.tar.gz -e4429a4bfe78425d150cb0dd35ecfb22 youtube-dl-2015.02.21.tar.gz.sig +17042c2b78c0250333d594e6f41a20c1 youtube-dl-2015.03.03.1.tar.gz +82f28eea24fd899544743cc1cbcf9923 youtube-dl-2015.03.03.1.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index c3fd6a2..16d6caa 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.02.21 +Version: 2015.03.03.1 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -59,6 +59,9 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl*.egg-info %changelog +* Thu Mar 05 2015 Matej Cepl - 2015.03.03.1-1 +- Update to latest release (# 1195539, 1195779) + * Sun Feb 22 2015 Matej Cepl - 2015.02.21-1 - Update to latest release From 8f973da177df61815b9ef74e9f6b92996aff5929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Thu, 19 Mar 2015 17:03:29 +0100 Subject: [PATCH 14/18] Update to latest release (# 1201585) --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 5 ++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 52a1dac..94642da 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,5 @@ /youtube-dl-2015.02.21.tar.gz.sig /youtube-dl-2015.03.03.1.tar.gz /youtube-dl-2015.03.03.1.tar.gz.sig +/youtube-dl-2015.03.18.tar.gz +/youtube-dl-2015.03.18.tar.gz.sig diff --git a/sources b/sources index a2f2fc4..dce099b 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -17042c2b78c0250333d594e6f41a20c1 youtube-dl-2015.03.03.1.tar.gz -82f28eea24fd899544743cc1cbcf9923 youtube-dl-2015.03.03.1.tar.gz.sig +84170cf8ecb4d9734a9d26336b1784cf youtube-dl-2015.03.18.tar.gz +878582bcfb85ac4a0375ccaf226aa954 youtube-dl-2015.03.18.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index 16d6caa..84421df 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.03.03.1 +Version: 2015.03.18 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -59,6 +59,9 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl*.egg-info %changelog +* Thu Mar 19 2015 Matej Cepl - 2015.03.18-1 +- Update to latest release (# 1201585) + * Thu Mar 05 2015 Matej Cepl - 2015.03.03.1-1 - Update to latest release (# 1195539, 1195779) From 289f972ff1e2f7837a1069687fb3a3ee422eca35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Sat, 4 Apr 2015 13:19:07 +0200 Subject: [PATCH 15/18] Update to the latest release (#1205700) --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 5 ++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 94642da..99183cd 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,5 @@ /youtube-dl-2015.03.03.1.tar.gz.sig /youtube-dl-2015.03.18.tar.gz /youtube-dl-2015.03.18.tar.gz.sig +/youtube-dl-2015.04.03.tar.gz +/youtube-dl-2015.04.03.tar.gz.sig diff --git a/sources b/sources index dce099b..d8e6322 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -84170cf8ecb4d9734a9d26336b1784cf youtube-dl-2015.03.18.tar.gz -878582bcfb85ac4a0375ccaf226aa954 youtube-dl-2015.03.18.tar.gz.sig +37b68876c3a4b9218a4b77e023eca722 youtube-dl-2015.04.03.tar.gz +1a10a242ae4fca9debc4d69584ecbd11 youtube-dl-2015.04.03.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index 84421df..a324a7d 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.03.18 +Version: 2015.04.03 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -59,6 +59,9 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl*.egg-info %changelog +* Sat Apr 04 2015 Matej Cepl - 2015.04.03-1 +- Update to the latest release (#1205700) + * Thu Mar 19 2015 Matej Cepl - 2015.03.18-1 - Update to latest release (# 1201585) From 0b9d8b220ee0c67e2f306375202890c003c8e55b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Wed, 29 Apr 2015 18:14:28 +0200 Subject: [PATCH 16/18] Update to the latest release (#1210132) --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 12 +++++++++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 99183cd..1f493b6 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,5 @@ /youtube-dl-2015.03.18.tar.gz.sig /youtube-dl-2015.04.03.tar.gz /youtube-dl-2015.04.03.tar.gz.sig +/youtube-dl-2015.04.28.tar.gz +/youtube-dl-2015.04.28.tar.gz.sig diff --git a/sources b/sources index d8e6322..4e4e57a 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -37b68876c3a4b9218a4b77e023eca722 youtube-dl-2015.04.03.tar.gz -1a10a242ae4fca9debc4d69584ecbd11 youtube-dl-2015.04.03.tar.gz.sig +20fac1e1a31caf544741a98c21991e52 youtube-dl-2015.04.28.tar.gz +a857db6df338045754d1aef10174e5a4 youtube-dl-2015.04.28.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index a324a7d..978f615 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.04.03 +Version: 2015.04.28 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -15,9 +15,11 @@ BuildArch: noarch # For source verification with gpgv BuildRequires: gpg + %description Small command-line program to download videos from YouTube and other sites. + %prep gpgv --quiet --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0} %setup -qn %{name} @@ -31,9 +33,11 @@ sed -i '/youtube-dl.bash-completion/d' setup.py sed -i '/youtube-dl.fish/d' setup.py sed -i '/README.txt/d' setup.py + %build %{__python2} setup.py build + %install %{__python2} setup.py install --root=%{buildroot} @@ -44,9 +48,11 @@ install -pm644 youtube-dl.bash-completion %{buildroot}%{_sysconfdir}/bash_comple mkdir -p %{buildroot}%{_datadir}/zsh/site-functions/ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtube-dl + %check #make test + %files %doc README.md %license LICENSE @@ -58,7 +64,11 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %{python_sitelib}/youtube_dl/ %{python_sitelib}/youtube_dl*.egg-info + %changelog +* Wed Apr 29 2015 Matej Cepl - 2015.04.28-1 +- Update to the latest release (#1210132) + * Sat Apr 04 2015 Matej Cepl - 2015.04.03-1 - Update to the latest release (#1205700) From 0f250a06f667c0dc9b61e8d273a360ee023ae4fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Fri, 15 May 2015 10:32:08 +0200 Subject: [PATCH 17/18] Update to the latest release (#1218015, 1200569, 1206484) --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 5 ++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1f493b6..7750bca 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,5 @@ /youtube-dl-2015.04.03.tar.gz.sig /youtube-dl-2015.04.28.tar.gz /youtube-dl-2015.04.28.tar.gz.sig +/youtube-dl-2015.05.10.tar.gz +/youtube-dl-2015.05.10.tar.gz.sig diff --git a/sources b/sources index 4e4e57a..75d0147 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -20fac1e1a31caf544741a98c21991e52 youtube-dl-2015.04.28.tar.gz -a857db6df338045754d1aef10174e5a4 youtube-dl-2015.04.28.tar.gz.sig +214ed869da7a442f8faadb463339a645 youtube-dl-2015.05.10.tar.gz +c41b63b78accea9ee02ca04bfbd9c434 youtube-dl-2015.05.10.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index 978f615..af1deb6 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.04.28 +Version: 2015.05.10 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -66,6 +66,9 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %changelog +* Fri May 15 2015 Matej Cepl - 2015.05.10-1 +- Update to the latest release (#1218015, 1200569, 1206484) + * Wed Apr 29 2015 Matej Cepl - 2015.04.28-1 - Update to the latest release (#1210132) From 8b41b1420b2d4a9c2a2d4fe56f11987dca62469c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Fri, 5 Jun 2015 11:14:10 +0200 Subject: [PATCH 18/18] Update to the latest release (#1222017) --- .gitignore | 2 ++ sources | 4 ++-- youtube-dl.spec | 5 ++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7750bca..f4a6297 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,5 @@ /youtube-dl-2015.04.28.tar.gz.sig /youtube-dl-2015.05.10.tar.gz /youtube-dl-2015.05.10.tar.gz.sig +/youtube-dl-2015.06.04.1.tar.gz +/youtube-dl-2015.06.04.1.tar.gz.sig diff --git a/sources b/sources index 75d0147..c00f503 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -214ed869da7a442f8faadb463339a645 youtube-dl-2015.05.10.tar.gz -c41b63b78accea9ee02ca04bfbd9c434 youtube-dl-2015.05.10.tar.gz.sig +7e6fab7bfd246c8a414ca368edf81394 youtube-dl-2015.06.04.1.tar.gz +c267c40a9cd1a1487f3bfc0aaca4150d youtube-dl-2015.06.04.1.tar.gz.sig diff --git a/youtube-dl.spec b/youtube-dl.spec index af1deb6..a61e1a3 100644 --- a/youtube-dl.spec +++ b/youtube-dl.spec @@ -1,5 +1,5 @@ Name: youtube-dl -Version: 2015.05.10 +Version: 2015.06.04.1 Release: 1%{?dist} Summary: A small command-line program to download online videos License: Public Domain @@ -66,6 +66,9 @@ install -pm644 youtube-dl.zsh %{buildroot}%{_datadir}/zsh/site-functions/_youtub %changelog +* Fri Jun 05 2015 Matej Cepl - 2015.06.04.1-1 +- Update to the latest release (#1222017) + * Fri May 15 2015 Matej Cepl - 2015.05.10-1 - Update to the latest release (#1218015, 1200569, 1206484)