Logoj0ke.net Open Build Service > Projects > home:jg:playground > yum-fast-downloader > Changes
Sign Up | Log In

Changes of Revision 6

[-] Added yum-fast-downloader.spec
x
 
1
@@ -0,0 +1,79 @@
2
+Summary:   A fast downloader plugin for yum
3
+Name:      yum-fast-downloader
4
+Version:   0.5.10
5
+Release:   1
6
+License:   GPLv2+
7
+Group:     System Environment/Base
8
+Source:        %{name}-%{version}.tar.bz2
9
+BuildArch: noarch
10
+Requires:       aria2
11
+
12
+%description
13
+This plugin intends to speedup yum downloads by using a download manager
14
+application (currently Aria 2) for downloading files instead of URLGrabber
15
+which is used by yum.
16
+Currently, it provides the following features:
17
+* Using fastest mirrors for downloading
18
+* Downloading repository metadata from several mirrors simultaneously
19
+* Downloading multiple packages in parallel from several mirrors
20
+
21
+%prep
22
+%setup -q
23
+
24
+%install
25
+install -d -m 755 $RPM_BUILD_ROOT/usr/lib/yum-plugins \
26
+      $RPM_BUILD_ROOT/etc/yum/pluginconf.d/ $RPM_BUILD_ROOT/usr/libexec/
27
+install -m 644 %{name}.py $RPM_BUILD_ROOT/usr/lib/yum-plugins/
28
+install -m 644 %{name}.conf $RPM_BUILD_ROOT/etc/yum/pluginconf.d/
29
+install -m 755 %{name}-finalize $RPM_BUILD_ROOT/usr/libexec/
30
+
31
+%files
32
+%config(noreplace) /etc/yum/pluginconf.d/%{name}.conf
33
+%doc README COPYING
34
+/usr/lib/yum-plugins/*
35
+/usr/libexec/*
36
+
37
+%changelog
38
+* Wed Jun 27 2012 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.10-1
39
+- Update for the latest urlgrabber options
40
+
41
+* Mon Jun 04 2012 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.9-2
42
+- Bump release, since the previous release was using Fedora 14 code :(
43
+
44
+* Tue May 29 2012 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.9-1
45
+- Make sure that URL line is not too long for aria2
46
+
47
+* Wed Oct 19 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.8-1
48
+- Include repository name in output when downloading metadata files
49
+
50
+* Sat Oct 08 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.7-1
51
+- Fixed a bug in downloading single files which caused repeated downloading of
52
+  metadata files
53
+
54
+* Thu Oct 06 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.6-1
55
+- Try to prevent re-downloading after some package downloads
56
+
57
+* Wed Jul 13 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.5-1
58
+- Make sure that the yfd file is renamed before proceeding
59
+
60
+* Sun Jun 12 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.4-1
61
+- Save intermediate download files with a different name, so that presto
62
+  will not remove aria2c incompletely downloaded files
63
+
64
+* Fri May 13 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.3-1
65
+- Enable split download for aria2-1.11
66
+
67
+* Thu May 12 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.2-1
68
+- Fixed a small bug and add a new config option in 0.5.2
69
+
70
+* Wed May 11 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5.1-1
71
+- Renamed plugin to yum-fast-downloader so that it'll be run after presto
72
+- Added README to the package as doc
73
+- Added COPYING file
74
+
75
+* Wed May 11 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5-2
76
+- Added aria2 as a requirement
77
+
78
+* Wed May 11 2011 Hedayat Vatankhah <hedayat.fwd+rpmchlog@gmail.com> - 0.5-1
79
+- Initial version
80
+
81
Added yum-fast-downloader-0.5.10.tar.bz2 ^