1 |
unnilennium |
1.17 |
# $Id: smeserver-yum.spec,v 1.16 2017/03/29 20:26:56 unnilennium Exp $ |
2 |
stephdl |
1.1 |
|
3 |
|
|
%define name smeserver-yum |
4 |
|
|
Summary: YUM, an rpm updater |
5 |
|
|
Name: %{name} |
6 |
|
|
%define version 2.6.0 |
7 |
unnilennium |
1.17 |
%define release 15 |
8 |
stephdl |
1.1 |
Version: %{version} |
9 |
|
|
Release: %{release}%{?dist} |
10 |
|
|
License: GPL |
11 |
|
|
Group: SMEServer/addon |
12 |
|
|
Source: %{name}-%{version}.tar.xz |
13 |
unnilennium |
1.3 |
Patch0: smeserver-yum-2.6.0.SME10.patch |
14 |
unnilennium |
1.5 |
Patch1: smeserver-yum-2.6.0.SME10CentOS7EPEL7Keys.rpm |
15 |
stephdl |
1.6 |
Patch2: smeserver-yum-2.6.0.bz8834.DeltaRpm.patch |
16 |
stephdl |
1.7 |
Patch3: smeserver-yum-2.6.0.bz1502.DownloadOnly.patch |
17 |
unnilennium |
1.8 |
Patch4: smeserver-yum-2.6.0.bz9903.remiGPG.patch |
18 |
stephdl |
1.9 |
Patch5: smeserver-yum-2.6.0.bz8705.avoidReboot.patch |
19 |
unnilennium |
1.11 |
Patch6: smeserver-yum-2.6.0.bz10119.scloGPGkey.patch |
20 |
unnilennium |
1.12 |
Patch7: smeserver-yum-2.6.0.bz10156.remContrib.patch |
21 |
unnilennium |
1.14 |
Patch8: smeserver-yum-2.6.0.bz8705.avoidReboot-fixKeyError.patch |
22 |
unnilennium |
1.16 |
Patch9: smeserver-yum-2.6.0.bz8705.avoidReboot-service-names.patch |
23 |
unnilennium |
1.17 |
Patch10: smeserver-yum-2.6.0.bz8705.smeserver-locale.avoidreboot.patch |
24 |
unnilennium |
1.12 |
|
25 |
stephdl |
1.1 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
26 |
|
|
BuildArchitectures: noarch |
27 |
|
|
Requires: e-smith-formmagick >= 1.4.0-12 |
28 |
|
|
Requires: e-smith-base |
29 |
|
|
Requires: perl(CGI::FormMagick) >= 0.91-26 |
30 |
|
|
Requires: rpm-python >= 4.0.4-7x.18 |
31 |
|
|
Requires: yum >= 1.0.3-1_73 |
32 |
|
|
Provides: yumconf |
33 |
|
|
Obsoletes: check4updates |
34 |
|
|
Provides: check4updates |
35 |
|
|
Obsoletes: rpmdb-CentOS |
36 |
|
|
Requires: yum-plugin-fastestmirror |
37 |
|
|
Obsoletes: yum-plugin-installonlyn |
38 |
|
|
Obsoletes: yum-protect-packages <= 1.1.16 |
39 |
|
|
Requires: mailx |
40 |
stephdl |
1.6 |
Requires: deltarpm |
41 |
stephdl |
1.1 |
BuildRequires: e-smith-devtools >= 1.13.1-03 |
42 |
vip-ire |
1.2 |
BuildRequires: python |
43 |
stephdl |
1.1 |
Conflicts: centos-yumconf |
44 |
|
|
AutoReqProv: no |
45 |
|
|
%description |
46 |
|
|
%name is an implementation of http://linux.duke.edu/projects/yum on SME Server |
47 |
|
|
|
48 |
unnilennium |
1.3 |
%prep |
49 |
|
|
%setup |
50 |
|
|
%patch0 -p1 |
51 |
unnilennium |
1.5 |
%patch1 -p1 |
52 |
stephdl |
1.6 |
%patch2 -p1 |
53 |
stephdl |
1.7 |
%patch3 -p1 |
54 |
unnilennium |
1.8 |
%patch4 -p1 |
55 |
stephdl |
1.9 |
%patch5 -p1 |
56 |
unnilennium |
1.11 |
%patch6 -p1 |
57 |
unnilennium |
1.12 |
%patch7 -p1 |
58 |
unnilennium |
1.14 |
%patch8 -p1 |
59 |
unnilennium |
1.16 |
%patch9 -p1 |
60 |
unnilennium |
1.17 |
%patch10 -p1 |
61 |
unnilennium |
1.3 |
|
62 |
|
|
%build |
63 |
|
|
perl createlinks |
64 |
|
|
ln -s /var/service/yum root/service/yum |
65 |
|
|
mkdir -p root/etc/yum.smerepos.d |
66 |
|
|
|
67 |
|
|
%install |
68 |
|
|
/bin/rm -rf $RPM_BUILD_ROOT |
69 |
|
|
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
70 |
|
|
/bin/rm -f %{name}-%{version}-filelist |
71 |
|
|
/sbin/e-smith/genfilelist \ |
72 |
|
|
--file '/sbin/e-smith/yum_update_dbs' 'attr(0700,root,root)' \ |
73 |
|
|
--file '/sbin/e-smith/yum' 'attr(0755,root,root)' \ |
74 |
|
|
--file '/sbin/e-smith/check4updates' 'attr(0755,root,root)' \ |
75 |
|
|
--file '/sbin/e-smith/check4contribsupdates' 'attr(0755,root,root)' \ |
76 |
stephdl |
1.7 |
--file '/sbin/e-smith/yumdownloadonly' 'attr(0755,root,root)' \ |
77 |
unnilennium |
1.3 |
--file '/etc/cron.daily/smeserver-yum' 'attr(0700,root,root)' \ |
78 |
|
|
--file /var/service/yum/down 'attr(0644,root,root)' \ |
79 |
|
|
--file /var/service/yum/run 'attr(0755,root,root)' \ |
80 |
|
|
--dir /var/service/yum/log 'attr(0755,root,root)' \ |
81 |
|
|
--dir /var/service/yum/log/supervise 'attr(0700,root,root)' \ |
82 |
|
|
--dir /var/service/yum/supervise 'attr(0700,root,root)' \ |
83 |
|
|
--file /var/service/yum/log/run 'attr(0755,root,root)' \ |
84 |
|
|
--dir /var/log/yum 'attr(2750,smelog,smelog)' \ |
85 |
|
|
$RPM_BUILD_ROOT > %{name}-%{version}-%{release}-filelist |
86 |
|
|
|
87 |
|
|
%clean |
88 |
|
|
/bin/rm -rf $RPM_BUILD_ROOT |
89 |
|
|
|
90 |
|
|
%files -f %{name}-%{version}-%{release}-filelist |
91 |
|
|
|
92 |
|
|
%defattr(-,root,root) |
93 |
|
|
|
94 |
|
|
|
95 |
stephdl |
1.1 |
%changelog |
96 |
unnilennium |
1.17 |
* Mon Apr 10 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-15.sme |
97 |
|
|
- avoid reboot for smeserver-locale upgrade [SME: 8705] |
98 |
|
|
- code by stefano zamboni <zamboni@mind-at-work.it> |
99 |
|
|
|
100 |
unnilennium |
1.16 |
* Wed Mar 29 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-14.sme |
101 |
|
|
- correct service names with plugin to avoid reboot [SME: 8705] |
102 |
|
|
- code by stefano zamboni <zamboni@mind-at-work.it> |
103 |
|
|
|
104 |
unnilennium |
1.14 |
* Mon Mar 27 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-13.sme |
105 |
|
|
- fix KeyError with plugin to avoid reboot [SME: 8705] |
106 |
unnilennium |
1.15 |
- code by stefano zamboni <zamboni@mind-at-work.it> |
107 |
unnilennium |
1.14 |
|
108 |
unnilennium |
1.12 |
* Mon Mar 20 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-12.sme |
109 |
|
|
- remove centos contrib repo [SME: 10156] |
110 |
|
|
|
111 |
unnilennium |
1.11 |
* Sat Feb 25 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-11.sme |
112 |
|
|
- added centos SCLo SIG gpg rpm signing key [SME: 10119] |
113 |
|
|
- will allow to install SCL packages directly from smecontribs |
114 |
|
|
|
115 |
stephdl |
1.10 |
* Sat Feb 18 2017 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-10.sme |
116 |
unnilennium |
1.13 |
- Added smeserver-yum-2.6.0.bz8705.avoidReboot.patch [SME: 8705] |
117 |
stephdl |
1.9 |
- code by stefano zamboni <zamboni@mind-at-work.it> |
118 |
|
|
- Avoid to reboot after the installation of a smeserver-* package |
119 |
|
|
|
120 |
unnilennium |
1.8 |
* Fri Jan 06 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-8.sme |
121 |
|
|
- add Remi Collet RPM GPG KEY [SME: 9903] |
122 |
|
|
|
123 |
stephdl |
1.7 |
* Thu Aug 04 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-7.sme |
124 |
|
|
- Rpm updates can be downloaded during the night [SME: 1502] |
125 |
|
|
- Added smeserver-yum-2.6.0.bz1502.DownloadOnly.patch |
126 |
|
|
|
127 |
stephdl |
1.6 |
* Mon Aug 1 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-6.sme |
128 |
|
|
- Deltarpm is now a setting in the yum panel (disabled by default) |
129 |
|
|
- Added smeserver-yum-2.6.0.bz8834.DeltaRpm.patch [SME: 8834] |
130 |
|
|
|
131 |
unnilennium |
1.5 |
* Fri May 27 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-5.sme |
132 |
|
|
- adding Koozali SME10, EPEL7 and Centos7 gpg keys [SME: 9533] |
133 |
|
|
|
134 |
vip-ire |
1.4 |
* Thu May 12 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-4.sme |
135 |
|
|
- Rebuild [SME: 9393] |
136 |
|
|
|
137 |
unnilennium |
1.3 |
* Wed Mar 23 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-3.sme |
138 |
|
|
- yum points now to SME10 mirrors [SME: 9377] |
139 |
|
|
- moved changelog at the end of file |
140 |
|
|
- Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday, |
141 |
|
|
by assuming the date is correct and changing the weekday. |
142 |
|
|
Fri May 31 2005 --> Fri May 27 2005 or Tue May 31 2005 or Fri Jun 03 2005 or .... |
143 |
|
|
Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or .... |
144 |
|
|
Fri Nov 23 2006 --> Fri Nov 17 2006 or Thu Nov 23 2006 or Fri Nov 24 2006 or .... |
145 |
|
|
|
146 |
|
|
|
147 |
vip-ire |
1.2 |
* Sun Feb 7 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-2.sme |
148 |
|
|
- Add python to BuildReq so brp-python-bytecode compiles sme yum plugin |
149 |
|
|
[SME: 9229] |
150 |
|
|
|
151 |
stephdl |
1.1 |
* Sat Feb 06 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-1.sme |
152 |
|
|
- Initial release to sme10 |
153 |
|
|
|
154 |
|
|
* Wed Jan 13 2016 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-12.sme |
155 |
|
|
- Example to update contribs 1 by 1 [SME: 8850] |
156 |
|
|
|
157 |
|
|
* Sat Feb 21 2015 Stephane de Labrusse <stephdl@de-labrusse.fr> 2.4.0-11.sme |
158 |
|
|
- Set the check update frequency of smecontribs through the server-manager |
159 |
|
|
- [SME: 8855] |
160 |
|
|
|
161 |
|
|
* Sat Jan 10 2015 Stephane de Labrusse <stephdl@de-labrusse.fr> 2.4.0-10.sme |
162 |
|
|
- Add a default Yum db property for check4contribsupdates [SME: 8790] |
163 |
|
|
|
164 |
|
|
* Wed Nov 19 2014 Stephane de Labrusse <stephdl@de-labrusse.fr> 2.4.0-9.sme |
165 |
|
|
- Added a check-update for the smecontribs repository [SME: 8672] |
166 |
|
|
|
167 |
|
|
* Mon Jun 30 2014 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-8.sme |
168 |
|
|
- Move protected package list to the correct location [SME: 8476] |
169 |
|
|
|
170 |
|
|
* Fri Mar 22 2013 Ian Wells <esmith@wellsi.com> 2.4.0-7.sme |
171 |
|
|
- Change order of mail options in check4updates [SME: 7504] |
172 |
|
|
|
173 |
|
|
* Sun Mar 17 2013 Ian Wells <esmith@wellsi.com> 2.4.0-6.sme |
174 |
|
|
- Change wording of Software Update button [SME: 7499] |
175 |
|
|
|
176 |
|
|
* Wed Mar 6 2013 Shad L. Lords <slords@mail.com> 2.4.0-5.sme |
177 |
|
|
- Obsolete el5 yum-protect-packages, provided by yum [SME: 7273] |
178 |
|
|
|
179 |
|
|
* Wed Mar 6 2013 Shad L. Lords <slords@mail.com> 2.4.0-4.sme |
180 |
|
|
- Update GPG keys for sme9 [SME: 7465] |
181 |
|
|
|
182 |
|
|
* Wed Feb 27 2013 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-3.sme |
183 |
|
|
- Add fasttrack and remove addons repo [SME: 7385] |
184 |
|
|
|
185 |
|
|
* Tue Feb 5 2013 Shad L. Lords <slords@mail.com> 2.4.0-2.sme |
186 |
|
|
- Add back in missing parts from new stream [SME: 7305] |
187 |
|
|
|
188 |
|
|
* Thu Jan 31 2013 Shad L. Lords <slords@mail.com> 2.4.0-1.sme |
189 |
|
|
- Roll new stream for sme9 |
190 |
|
|
|
191 |
|
|
* Fri Aug 31 2012 Shad L. Lords <slords@mail.com> 2.2.0-20.sme |
192 |
|
|
- Point mirrorlist to mirrorlist.contribs.org [SME: 7087] |
193 |
|
|
|
194 |
|
|
* Tue Mar 1 2011 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-19.sme |
195 |
|
|
- Add random wait timer for check4updates script to distribute load on ibiblio [SME: 6534] |
196 |
|
|
|
197 |
|
|
* Fri Oct 1 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-18.sme |
198 |
|
|
- Trigger post-upgrade and reboot on kernel updates [SME: 6166] |
199 |
|
|
|
200 |
|
|
* Sat Jun 12 2010 Shad L. Lords <slords@mail.com> 2.2.0-17.sme |
201 |
|
|
- Fix migrate fragment to not throw warnings [SME: 5705] |
202 |
|
|
|
203 |
|
|
* Wed Jun 02 2010 Shad L. Lords <slords@mail.com> 2.2.0-16.sme |
204 |
|
|
- Fix yum database removal (missing one) [SME: 5705] |
205 |
|
|
|
206 |
|
|
* Wed Jun 02 2010 Shad L. Lords <slords@mail.com> 2.2.0-15.sme |
207 |
|
|
- Migrate MirrorList properties to sme8 repos [SME: 5705] |
208 |
|
|
- Remove BaseURL properties if migrating to sme8 repos [SME: 5949] |
209 |
|
|
- Remove yum databases and repodata if migrating to sme8 repos [SME: 5998] |
210 |
|
|
|
211 |
|
|
* Mon May 17 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-14.sme |
212 |
|
|
- Revert previous change [SME: 5962] |
213 |
|
|
|
214 |
|
|
* Mon May 17 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-13.sme |
215 |
|
|
- Migrate CentOS Exclude property default values to smeserver-yum [SME: 5962] |
216 |
|
|
|
217 |
|
|
* Thu Nov 5 2009 Shad L. Lords <slords@mail.com> 2.2.0-12.sme |
218 |
|
|
- only unlink file if we created it [SME: 5476] |
219 |
|
|
|
220 |
|
|
* Wed Oct 14 2009 Filipo Carletti <filippo.carletti@gmail.com> 2.2.0-11.sme |
221 |
|
|
- Import only keys not already imported [SME: 5507] |
222 |
|
|
|
223 |
|
|
* Tue Sep 15 2009 Shad L. Lords <slords@mail.com> 2.2.0-10.sme |
224 |
|
|
- set unsaved changes in yum event [SME: 5475] |
225 |
|
|
- move yum warming to sme yum plugin [SME: 5474] |
226 |
|
|
- ensure file exists before unlinking [SME: 5476] |
227 |
|
|
- remove semicolons from yum plugin |
228 |
|
|
|
229 |
|
|
* Tue Sep 15 2009 Shad L. Lords <slords@mail.com> 2.2.0-9.sme |
230 |
|
|
- Add frequency of updates toggle [SME: 3764] |
231 |
|
|
- remove stray file |
232 |
|
|
|
233 |
|
|
* Sat May 30 2009 Shad L. Lords <slords@mail.com> 2.2.0-8.sme |
234 |
|
|
- Add /etc/yum.smerepos.d to package [SME: 5305] |
235 |
|
|
|
236 |
|
|
* Mon May 18 2009 Shad L. Lords <slords@mail.com> 2.2.0-7.sme |
237 |
|
|
- Change SME mirrorlists to point to ibiblio [SME: 5242] |
238 |
|
|
|
239 |
|
|
* Fri Apr 10 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-6.sme |
240 |
|
|
- Require mailx [SME: 5131] |
241 |
|
|
|
242 |
|
|
* Mon Nov 24 2008 Shad L. Lords <slords@mail.com> 2.2.0-5.sme |
243 |
|
|
- Add yum-protect-packages support to prevent removal of |
244 |
|
|
needed pacakges [SME: 3133] |
245 |
|
|
|
246 |
|
|
* Tue Oct 28 2008 Shad L. Lords <slords@mail.com> 2.2.0-4.sme |
247 |
|
|
- Make yum update unbuffered for web interface [SME: 4726] |
248 |
|
|
|
249 |
|
|
* Mon Oct 13 2008 Shad L. Lords <slords@mail.com> 2.2.0-3.sme |
250 |
|
|
- Move repos to repodir to fix yum bug [SME: 3676] |
251 |
|
|
|
252 |
|
|
* Sun Oct 12 2008 Shad L. Lords <slords@mail.com> 2.2.0-2.sme |
253 |
|
|
- Fix name for smeextras [SME: 4585] |
254 |
|
|
|
255 |
|
|
* Tue Oct 7 2008 Shad L. Lords <slords@mail.com> 2.2.0-1.sme |
256 |
|
|
- Roll new stream to separate sme7/sme8 trees [SME: 4633] |
257 |
|
|
|
258 |
|
|
* Tue Oct 7 2008 Shad L. Lords <slords@mail.com> 1.2.0-58 |
259 |
|
|
- Fix mirrorlist for sme8 [SME: 4508] |
260 |
|
|
|
261 |
|
|
* Fri Sep 19 2008 Shad L. Lords <slords@mail.com> 1.2.0-57 |
262 |
|
|
- Add smeextras repo database and information [SME: 4585] |
263 |
|
|
|
264 |
|
|
* Sun Aug 10 2008 Shad L. Lords <slords@mail.com> 1.2.0-56 |
265 |
|
|
- Remove links to crontab in bootstrap-console-save [SME: 4494] |
266 |
|
|
|
267 |
|
|
* Sat Jul 5 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 1.2.0-55 |
268 |
|
|
- Add common <base> tags to e-smith-formmagick's general [SME: 4279] |
269 |
|
|
|
270 |
|
|
* Sun Apr 27 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 1.2.0-54 |
271 |
|
|
- Add common <base> tags to e-smith-formmagick's general [SME: 4290] |
272 |
|
|
|
273 |
|
|
* Mon Mar 31 2008 Shad L. Lords <slords@mail.com> 1.2.0-53 |
274 |
|
|
- Include installonlyn plugin to manage kernels [SME: 2101] |
275 |
|
|
|
276 |
|
|
* Mon Mar 31 2008 Stephen Noble <support@dungog.net> 1.2.0-52 |
277 |
|
|
- Delete dungog repository, reworked [SME: 4097] |
278 |
|
|
|
279 |
|
|
* Fri Mar 14 2008 Shad L. Lords <slords@mail.com> 1.2.0-51 |
280 |
|
|
- Clean up "rpm -qa" warnings in yum wrapper [SME: 4052] |
281 |
|
|
|
282 |
|
|
* Wed Feb 13 2008 Stephen Noble <support@dungog.net> 1.2.0-50 |
283 |
|
|
- Remove <base> tags now in general [SME: 3914] |
284 |
|
|
|
285 |
|
|
* Sun Feb 10 2008 Stephen Noble <support@dungog.net> 1.2.0-49 |
286 |
|
|
- Remove duplicate <base> entries [SME: 3889] |
287 |
|
|
|
288 |
|
|
* Fri Jan 11 2008 Shad L. Lords <slords@mail.com> 1.2.0-48 |
289 |
|
|
- Put check4updates obsoletes & provides in the right place [SME: 3250] |
290 |
|
|
|
291 |
|
|
* Fri Jan 11 2008 Shad L. Lords <slords@mail.com> 1.2.0-47 |
292 |
|
|
- Add check4update script, make cronjob run same as scheduled dirs [SME: 3250] |
293 |
|
|
|
294 |
|
|
* Wed Jan 09 2008 Stephen Noble <support@dungog.net> 1.2.0-46 |
295 |
|
|
- Add server is up to date message on panel [SME: 2512] |
296 |
|
|
|
297 |
|
|
* Mon Jan 7 2008 Stephen Noble <support@dungog.net> 1.2.0-45 |
298 |
|
|
- remove BaseURL property for repos with mirrorlists [SME: 3275] |
299 |
|
|
|
300 |
|
|
* Mon Jan 7 2008 Stephen Noble <support@dungog.net> 1.2.0-44 |
301 |
|
|
- safesymlink yum into local [SME: 3238] |
302 |
|
|
|
303 |
|
|
* Mon Jan 7 2008 Stephen Noble <support@dungog.net> 1.2.0-43 |
304 |
|
|
- add check4updates cronjob, obsolete check4updates rpm [SME: 3250] |
305 |
|
|
|
306 |
|
|
* Mon Jan 7 2008 Stephen Noble <support@dungog.net> 1.2.0-42 |
307 |
|
|
- yum-import-keys action to yum-update event [SME: 3196] |
308 |
|
|
|
309 |
|
|
* Mon Dec 24 2007 Stephen Noble <support@dungog.net> 1.2.0-41 |
310 |
|
|
- add smecontribs repo [SME: 3551] |
311 |
|
|
|
312 |
|
|
* Tue Dec 11 2007 Gavin Weight <gweight@gmail.com> 1.2.0-40 |
313 |
|
|
- Remove bad mirror and add two new mirrors. [SME: 3636] |
314 |
|
|
|
315 |
|
|
* Fri Nov 30 2007 Gavin Weight <gweight@gmail.com> 1.2.0-39 |
316 |
|
|
- Change EnableGroups value to no/yes instead of 0/1. [SME: 3607] |
317 |
|
|
|
318 |
|
|
* Fri Nov 30 2007 Gavin Weight <gweight@gmail.com> 1.2.0-38 |
319 |
|
|
- Fix use of uninitialized value in migrate 10GPG_and_Groups. [SME: 2491] |
320 |
|
|
|
321 |
|
|
* Sat Jul 14 2007 Shad L. Lords <slords@mail.com> 1.2.0-37 |
322 |
|
|
- Add GPG keys for CentOS 5 [SME: 3160] |
323 |
|
|
|
324 |
|
|
* Sun Jun 10 2007 Stephen Noble <support@dungog.net> 1.2.0-36 |
325 |
|
|
- Refine matching of rpms or repos [SME: 2416] |
326 |
|
|
|
327 |
|
|
* Sun Jun 10 2007 Stephen Noble <support@dungog.net> 1.2.0-35 |
328 |
|
|
- Add db values to restrict available rpms or repos [SME: 2416] |
329 |
|
|
|
330 |
|
|
* Sun Jun 10 2007 Stephen Noble <support@dungog.net> 1.2.0-34 |
331 |
|
|
- remove restrictAvailable patch [SME: 2416] |
332 |
|
|
|
333 |
|
|
* Fri Jun 08 2007 Stephen Noble <support@dungog.net> 1.2.0-33 |
334 |
|
|
- Add db value to restrict available rpms [SME: 2416] |
335 |
|
|
|
336 |
|
|
* Fri May 25 2007 Shad L. Lords <slords@mail.com> 1.2.0-32 |
337 |
|
|
- Add rpm key for epel packages |
338 |
|
|
|
339 |
|
|
* Wed May 9 2007 Shad L. Lords <slords@mail.com> 1.2.0-31 |
340 |
|
|
- Updates to support SME Server 8 |
341 |
|
|
|
342 |
|
|
* Sun Apr 29 2007 Shad L. Lords <slords@mail.com> |
343 |
|
|
- Clean up spec so package can be built by koji/plague |
344 |
|
|
|
345 |
|
|
* Mon Apr 09 2007 Stephen Noble <support@dungog.net> 1.2.0-30 |
346 |
|
|
- remove two of them, leaving pacific.net.au [SME: 2763] |
347 |
|
|
|
348 |
|
|
* Mon Apr 09 2007 Stephen Noble <support@dungog.net> 1.2.0-29 |
349 |
|
|
- add three more repositories to yum.repos.d/mirrors-sme* files [SME: 2763] |
350 |
|
|
|
351 |
|
|
* Fri Feb 16 2007 Shad L. Lords <slords@mail.com> 1.2.0-28 |
352 |
|
|
- Change runsvctrl to sv to support runit v1.7.x [SME: 2486] |
353 |
|
|
|
354 |
|
|
* Wed Jan 17 2007 Shad L. Lords <slords@mail.com> 1.2.0-27 |
355 |
|
|
- Only import keys we don't already have [SME: 1174] |
356 |
|
|
|
357 |
|
|
* Wed Jan 03 2007 Shad L. Lords <slords@mail.com> 1.2.0-26 |
358 |
|
|
- Only allow upstream proxies to cache packages not metadata. |
359 |
|
|
|
360 |
|
|
* Thu Dec 07 2006 Shad L. Lords <slords@mail.com> |
361 |
|
|
- Update to new release naming. No functional changes. |
362 |
|
|
- Make Packager generic |
363 |
|
|
|
364 |
|
|
* Fri Dec 1 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-25 |
365 |
|
|
- Remove defaults for CentOS testing repository [SME: 2119] |
366 |
|
|
|
367 |
|
|
* Thu Nov 30 2006 Greg Swallow <greg@runlevel7.ca> 1.2.0-24 |
368 |
|
|
- Change Includepkgs to IncludePkgs [SME: 2049] |
369 |
|
|
|
370 |
|
|
* Thu Nov 30 2006 Greg Swallow <greg@runlevel7.ca> 1.2.0-23 |
371 |
|
|
- Add includepkgs option to repository configuration [SME: 2049] |
372 |
|
|
|
373 |
|
|
* Thu Nov 30 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-22 |
374 |
|
|
- Correct typos in last patch [SME: 2050] |
375 |
|
|
|
376 |
|
|
* Thu Nov 30 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-21 |
377 |
|
|
- Create local SME Server mirrorlists during build of package |
378 |
|
|
- Refer to these mirrorlists from yum.conf |
379 |
|
|
- Comment out baseurl if a MirrorList is defined [SME: 2050] |
380 |
|
|
|
381 |
|
|
* Wed Nov 29 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-20 |
382 |
|
|
- Revert to 10s panel refresh [SME: 2097] |
383 |
|
|
|
384 |
unnilennium |
1.3 |
* Thu Nov 23 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-19 |
385 |
|
|
Fri Nov 23 2006 --> Fri Nov 17 2006 or Thu Nov 23 2006 or Fri Nov 24 2006 or .... |
386 |
stephdl |
1.1 |
- Make CentOS base and updates enabled/Visible by default [SME: 1849] |
387 |
|
|
- Migrate CentOS base and updates to Visible, but leave status [SME: 1849] |
388 |
|
|
|
389 |
unnilennium |
1.3 |
* Thu Nov 23 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-18 |
390 |
|
|
Fri Nov 23 2006 --> Fri Nov 17 2006 or Thu Nov 23 2006 or Fri Nov 24 2006 or .... |
391 |
stephdl |
1.1 |
- Adjust wording on post-upgrade page [SME: 2076] |
392 |
|
|
|
393 |
|
|
* Tue Nov 21 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-17 |
394 |
|
|
- Clean up post-upgrade page LogFile display [SME: 2077] |
395 |
|
|
|
396 |
|
|
* Tue Nov 21 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-16 |
397 |
|
|
- Fix post-upgrade page handling [SME: 2077] |
398 |
|
|
- TODO: Add persistent RebootRequired handling so that the reconfigure |
399 |
|
|
page is displayed from other sessions |
400 |
|
|
- TODO: Re-add display of LogFile prior to reconfigure |
401 |
|
|
|
402 |
unnilennium |
1.3 |
* Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-15 |
403 |
|
|
Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or .... |
404 |
stephdl |
1.1 |
- Add dependency on yum-plugin-fastestmirror [SME: 1163] |
405 |
|
|
- Alpha sort dependencies |
406 |
|
|
|
407 |
unnilennium |
1.3 |
* Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-14 |
408 |
|
|
Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or .... |
409 |
stephdl |
1.1 |
- Add MirrorList options to each of the SME repos [SME: 1163] |
410 |
|
|
|
411 |
unnilennium |
1.3 |
* Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-13 |
412 |
|
|
Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or .... |
413 |
stephdl |
1.1 |
- Put back missed patch for post-upgrade [SME: 2071] |
414 |
|
|
|
415 |
unnilennium |
1.3 |
* Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-12 |
416 |
|
|
Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or .... |
417 |
stephdl |
1.1 |
- Re-add post-upgrade handling [SME: 2071] |
418 |
|
|
- Display yum output |
419 |
|
|
- Lower refresh to 3 seconds from 10 |
420 |
|
|
|
421 |
|
|
* Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-11 |
422 |
|
|
- Add Federico Simoncelli's smeserver plugin for yum [SME: 59] |
423 |
|
|
- TODO: Add post-upgrade page handling |
424 |
|
|
|
425 |
|
|
* Tue Nov 14 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-10 |
426 |
|
|
- Add distroverpkg to set release version for CentOS packages [SME: 1163] |
427 |
|
|
|
428 |
|
|
* Thu Nov 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-09 |
429 |
|
|
- Allow MirrorList property to be optional [SME: 1163] |
430 |
|
|
|
431 |
|
|
* Thu Nov 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-08 |
432 |
|
|
- Add mirrorlist option to CentOS repos via MirrorList db property [SME: 1163] |
433 |
|
|
- TODO: Create mirrorlist for SME repos. |
434 |
|
|
|
435 |
|
|
* Thu Nov 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-07 |
436 |
|
|
- Explicitly unset reposdir so we ignore the CentOS repo files [SME: 1905] |
437 |
|
|
|
438 |
|
|
* Fri Sep 1 2006 Charlie Brady <charlieb@e-smith.com> 1.2.0-06 |
439 |
|
|
- Fix quoting in yum wrapper script. [SME: 1894] |
440 |
|
|
|
441 |
|
|
* Mon May 1 2006 Charlie Brady <charlieb@e-smith.com> 1.2.0-05 |
442 |
|
|
- Remove stray yum.pm.orig file. [SME: 1350] |
443 |
|
|
|
444 |
|
|
* Tue Apr 18 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-04 |
445 |
|
|
- Also display yum output if the yum command fails, e.g. due to an |
446 |
|
|
existing yum lock. [SME: 1110] |
447 |
|
|
|
448 |
|
|
* Tue Apr 18 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-03 |
449 |
|
|
- Update the yum dbs in yum-modify in case the repos have changed [SME: 1261] |
450 |
|
|
|
451 |
|
|
* Tue Apr 18 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-02 |
452 |
|
|
- Capture and display yum output [SME: 1269] |
453 |
|
|
|
454 |
|
|
* Wed Mar 15 2006 Charlie Brady <charlie_brady@mitel.com> 1.2.0-01 |
455 |
|
|
- Roll stable stream version. [SME: 1016] |
456 |
|
|
|
457 |
unnilennium |
1.3 |
* Mon Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-26 |
458 |
stephdl |
1.1 |
- And migrate old SME repo URLs to new paths [SME: 951] |
459 |
|
|
|
460 |
unnilennium |
1.3 |
* Mon Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-25 |
461 |
stephdl |
1.1 |
- Change SME Server repo URLs to match repo names so we avoid confusion |
462 |
|
|
with CentOS repos and can remove the symlinks [SME: 951] |
463 |
|
|
|
464 |
unnilennium |
1.3 |
* Mon Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-24 |
465 |
stephdl |
1.1 |
- Don't force the BaseURL properties - just set defaults [SME: 951] |
466 |
|
|
|
467 |
|
|
* Wed Feb 22 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-23 |
468 |
|
|
- Default smeupdates-testing repository to Visible, disabled [SME: 846] |
469 |
|
|
|
470 |
|
|
* Thu Feb 16 2006 Charlie Brady <charlie_brady@mitel.com> 1.1.2-22 |
471 |
|
|
- Do not suggest post-upgrade/reboot if no rpms were installed or |
472 |
|
|
removed. [SME: 676] |
473 |
|
|
|
474 |
|
|
* Thu Feb 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-21 |
475 |
|
|
- Run post-upgrade and reboot in the background so that the front page |
476 |
|
|
can be displayed without the "Your system needs to be rebooted" |
477 |
|
|
warning - it's already getting one by then. [SME: 611] |
478 |
|
|
- Adjust reconfiguration wording [SME: 611] |
479 |
|
|
|
480 |
|
|
* Thu Feb 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-20 |
481 |
|
|
- And add L10N for newly exposed unlocalised message [SME: 611] |
482 |
|
|
|
483 |
|
|
* Thu Feb 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-19 |
484 |
|
|
- Catch error return status from yum commands [SME: 611] |
485 |
|
|
|
486 |
|
|
* Tue Feb 7 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-18 |
487 |
|
|
- Adjust wording in yum wrapper [SME: 676] |
488 |
|
|
|
489 |
|
|
* Tue Jan 24 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-17 |
490 |
|
|
- And change "A reboot will be required" to |
491 |
|
|
"A reboot will be initiated" in the post-upgrade panel [SME: 199] |
492 |
|
|
|
493 |
|
|
* Tue Jan 24 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-16 |
494 |
|
|
- Bring back post-upgrade page after performing updates [SME: 199] |
495 |
|
|
- Force a reboot after the post-upgrade command [SME: 199] |
496 |
|
|
|
497 |
|
|
* Tue Jan 24 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-15 |
498 |
|
|
- Add wrapper /sbin/e-smith/yum to remind people to |
499 |
|
|
post-upgrade/reboot [SME: 199] |
500 |
|
|
|
501 |
|
|
* Tue Jan 24 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-14 |
502 |
|
|
- Force yum{AutoInstallUpdates} to disabled and remove toggle from |
503 |
|
|
panel for now [SME: 525] |
504 |
|
|
|
505 |
|
|
* Mon Nov 21 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-13 |
506 |
|
|
- And make them Visible=no by default [SF: 1362528] |
507 |
|
|
|
508 |
|
|
* Mon Nov 21 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-12 |
509 |
|
|
- Disable centos base/updates/contrib repos by default [SF: 1362528] |
510 |
|
|
|
511 |
|
|
* Mon Nov 21 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-11 |
512 |
|
|
- Show repositories which are either Visible or enabled [SF: 1362529] |
513 |
|
|
|
514 |
|
|
* Mon Nov 21 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-10 |
515 |
|
|
- Disable automatic updates by default [SF: 1362526] |
516 |
|
|
|
517 |
|
|
* Mon Nov 14 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-09 |
518 |
|
|
- Add Conflicts: centos-yumconf [SF: 1356006] |
519 |
|
|
|
520 |
|
|
* Tue Nov 8 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-08 |
521 |
|
|
- Don't force a post-upgrade/reboot after changes. We don't need to |
522 |
|
|
do it in most cases [SF: 1304387, 1349946] |
523 |
|
|
|
524 |
|
|
* Fri Oct 28 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-07 |
525 |
|
|
- Allow optional GPGKey property [SF: 1332624] |
526 |
|
|
|
527 |
|
|
* Fri Oct 28 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-06 |
528 |
|
|
- Change CentOS BaseURL values back to /centos/4 [SF: 1334861] |
529 |
|
|
- Generate all repositories in /etc/yum.conf with enabled=0/1 [SF: 1332624] |
530 |
|
|
- Only display "Visible" repositories in the server-manager panel [SF: 1332624] |
531 |
|
|
|
532 |
|
|
* Fri Oct 14 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-05 |
533 |
|
|
- Move all L10Ns to smeserver-locale [SF: 1309520] |
534 |
|
|
|
535 |
|
|
* Mon Oct 10 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-04 |
536 |
|
|
- Fix up auto-selection of all updates [SF: 1321887] |
537 |
|
|
|
538 |
|
|
* Mon Oct 10 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-03 |
539 |
|
|
- Remove navigation-conf-hidden [SF: 1315730] |
540 |
|
|
|
541 |
|
|
* Fri Oct 7 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-02 |
542 |
|
|
- Require GPG signatures on all yum packages |
543 |
|
|
|
544 |
|
|
* Fri Oct 7 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-01 |
545 |
|
|
- Roll new tarball, patches to 1.1.1-07 |
546 |
|
|
|
547 |
|
|
* Fri Sep 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-07 |
548 |
|
|
- And another [SF: 1301044] |
549 |
|
|
|
550 |
|
|
* Fri Sep 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-06 |
551 |
|
|
- Correction to French L10N - Thanks Didier Rambeau [SF: 1301044] |
552 |
|
|
|
553 |
|
|
* Fri Sep 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-05 |
554 |
|
|
- Added Italian L10N - Thanks Filippo Carletti [SF: 1309266] |
555 |
|
|
|
556 |
|
|
* Fri Sep 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-04 |
557 |
|
|
- Added lots of RPM GPG keys [SF: 1309195] |
558 |
|
|
|
559 |
|
|
* Thu Sep 29 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-03 |
560 |
|
|
- It's obsoletes=1 [SF: 1306265] |
561 |
|
|
|
562 |
|
|
* Thu Sep 29 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-02 |
563 |
|
|
- Added obsoletes option to yum.conf [SF: 1306265] |
564 |
|
|
|
565 |
|
|
* Mon Sep 26 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-01 |
566 |
|
|
- Rolled patches up to 1.1.0-26 |
567 |
|
|
- Added German L10N |
568 |
|
|
|
569 |
|
|
* Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-26 |
570 |
|
|
- Typo fix - add space between 'yum' and options |
571 |
|
|
|
572 |
|
|
* Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-25 |
573 |
|
|
- Increase debug and error level so we at least capture yum output |
574 |
|
|
in the messages log [SF: 1218082] |
575 |
|
|
|
576 |
|
|
* Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-24 |
577 |
|
|
- Need to return a hash, with key equal to package.arch [SF: 1298468] |
578 |
|
|
|
579 |
|
|
* Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-23 |
580 |
|
|
- Display version and repository in picklists [SF: 1298468] |
581 |
|
|
|
582 |
|
|
* Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-22 |
583 |
|
|
- Change 1/0 values for GPGCheck and EnableGroups to yes/no |
584 |
|
|
It's more readable in the DB and also works around a bug [SF: 1303885] |
585 |
|
|
|
586 |
|
|
* Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-21 |
587 |
|
|
- Wrap HTML escapes in Fr lexicon in CDATA blocks [SF: 1302289] |
588 |
|
|
|
589 |
|
|
* Fri Sep 23 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-20 |
590 |
|
|
- Remove XXX - FIXMEs from French lexicon [SF: 1301044] |
591 |
|
|
|
592 |
|
|
* Fri Sep 23 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-19 |
593 |
|
|
- French L10N fix [SF: 1266152] |
594 |
|
|
|
595 |
|
|
* Mon Sep 12 2005 chris burnat <cburnat@burnat.com> 1.1.0-18 |
596 |
|
|
- Fix equal greater than (=>) to (>=) in two instances in spec file. |
597 |
|
|
|
598 |
|
|
* Mon Sep 5 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-17 |
599 |
|
|
- Change centos BaseURL entries from /centos/4/ to /centos/4.1/ as |
600 |
|
|
it appears that some mirrors aren't following the symlinks correctly |
601 |
|
|
- Move BaseURL settings into force fragments as they will need to |
602 |
|
|
change as we update the base [SF: 1272438] |
603 |
|
|
|
604 |
|
|
* Wed Aug 24 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-16 |
605 |
|
|
- Remove XXX entries from panel text [SF: 1267315] |
606 |
|
|
|
607 |
|
|
* Wed Aug 24 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-15 |
608 |
|
|
- Fix status check in yum cron job - Thanks Filippo Carletti [SF: 1266967] |
609 |
|
|
|
610 |
|
|
* Wed Aug 17 2005 Charlie Brady <charlieb@e-smith.com> 1.1.0-14 |
611 |
|
|
- Change dependency to rpmdb-CentOS |
612 |
|
|
|
613 |
|
|
* Mon Aug 15 2005 Gordon Rowell <gordonr@gormand.com.au> |
614 |
|
|
- [1.1.0-13] |
615 |
|
|
- Add dependency on rpmdb package |
616 |
|
|
|
617 |
|
|
* Mon Jul 18 2005 Gordon Rowell <gordonr@gormand.com.au> |
618 |
|
|
- [1.1.0-12] |
619 |
|
|
- And remove now unused action scripts |
620 |
|
|
|
621 |
|
|
* Mon Jul 18 2005 Gordon Rowell <gordonr@gormand.com.au> |
622 |
|
|
- [1.1.0-11] |
623 |
|
|
- Removed the old pre-FM panels, which we haven't used or displayed for |
624 |
|
|
a while |
625 |
|
|
|
626 |
|
|
* Mon Jul 18 2005 Gordon Rowell <gordonr@gormand.com.au> |
627 |
|
|
- [1.1.0-10] |
628 |
|
|
- Relocate dbs to /home/e-smith/db. Note yum_update_dbs avoids the |
629 |
|
|
ConfigDB interface for speed and to reduce log noise. Maybe it |
630 |
|
|
shouldn't, which would give a record of nightly changes. |
631 |
|
|
|
632 |
|
|
* Thu Jul 14 2005 Gordon Rowell <gordonr@gormand.com.au> |
633 |
|
|
- [1.1.0-09] |
634 |
|
|
- French localisation - Merci Didier Rambeau [SF: 1234929] |
635 |
|
|
|
636 |
|
|
* Thu Jul 14 2005 Gordon Rowell <gordonr@gormand.com.au> |
637 |
|
|
- [1.1.0-08] |
638 |
|
|
- Fix cron.daily ordering so yum_update_dbs gets a chance to fix |
639 |
|
|
the yum flag file before the standard yum cron job runs [SF: 1237639] |
640 |
|
|
- Clean up various old cron jobs which are no longer used |
641 |
|
|
- Change cron job template into a shell script |
642 |
|
|
|
643 |
|
|
* Thu Jul 14 2005 Gordon Rowell <gordonr@gormand.com.au> |
644 |
|
|
- [1.1.0-07] |
645 |
|
|
- Remove pid file check - yum leaves stale pid files when an action |
646 |
|
|
fails, but cleans up next time. Since we're calling yum, it can |
647 |
|
|
do the work. Death to pid files. |
648 |
|
|
|
649 |
|
|
* Thu Jul 14 2005 Gordon Rowell <gordonr@gormand.com.au> |
650 |
|
|
- [1.1.0-06] |
651 |
|
|
- Adjusted repository names sme{addons,core,dev,test,updates} -> |
652 |
|
|
addons,os,dev,test,updates |
653 |
|
|
- Added updates-testing |
654 |
|
|
- Changed BaseURL to use mirror.contribs.org/pub/smeserver for consistency |
655 |
|
|
across mirrors |
656 |
|
|
- Drop /7.0alpha/ to /7/ |
657 |
|
|
|
658 |
|
|
* Sat Jul 2 2005 Gordon Rowell <gordonr@gormand.com.au> |
659 |
|
|
- [1.1.0-05] |
660 |
|
|
- Fix creation of event links |
661 |
|
|
|
662 |
|
|
* Sat Jul 2 2005 Gordon Rowell <gordonr@gormand.com.au> |
663 |
|
|
- [1.1.0-04] |
664 |
|
|
- Remove all other instances of services2adjust once for yum, and use |
665 |
|
|
the action script instead to avoid an endless run of yum_update_dbs |
666 |
|
|
|
667 |
|
|
* Sat Jul 2 2005 Gordon Rowell <gordonr@gormand.com.au> |
668 |
|
|
- [1.1.0-03] |
669 |
|
|
- Add exec to yum service run script |
670 |
|
|
- Add action script to update DBs as required, including 'local' event |
671 |
|
|
- TODO: Work out why services2adjust 'once' loops forever on this service |
672 |
|
|
|
673 |
|
|
* Sat Jul 2 2005 Gordon Rowell <gordonr@gormand.com.au> |
674 |
|
|
- [1.1.0-02] |
675 |
|
|
- Add Provides: yumconf [SF: 1230970] |
676 |
|
|
- Cater for new yum output format, and only pick package lines from |
677 |
|
|
output [SF: 1230971] |
678 |
|
|
|
679 |
|
|
* Thu Jun 30 2005 Gordon Rowell <gordonr@gormand.com.au> |
680 |
|
|
- [1.1.0-01gr22] |
681 |
|
|
- Change from CentOS 3 to CentOS 4 |
682 |
|
|
- Remove force fragment for stunnel since we now ship the CentOS RPM |
683 |
|
|
|
684 |
|
|
* Fri Jun 10 2005 Gordon Rowell <gordonr@gormand.com.au> |
685 |
|
|
- [1.1.0-01gr21] |
686 |
|
|
- Import keys in bootstrap-console-save rather than post-{install,upgrade} |
687 |
|
|
|
688 |
|
|
* Fri Jun 10 2005 Gordon Rowell <gordonr@gormand.com.au> |
689 |
|
|
- [1.1.0-01gr20] |
690 |
|
|
- Populate /usr/share/rpm-gpg-keys with various RPM-GPG-KEY files |
691 |
|
|
we might want to use |
692 |
|
|
- Add script to import keys |
693 |
|
|
- TODO: Clean out duplicate key copies |
694 |
|
|
|
695 |
|
|
* Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au> |
696 |
|
|
- [1.1.0-01gr19] |
697 |
|
|
- Comment out 'once' invocation in local event - it seems to loop |
698 |
|
|
- Change cron job to do the 'runsvctrl once' invocation |
699 |
|
|
|
700 |
|
|
* Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au> |
701 |
|
|
- [1.1.0-01gr18] |
702 |
|
|
- Fix up exit status warning. |
703 |
|
|
|
704 |
|
|
* Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au> |
705 |
|
|
- [1.1.0-01gr17] |
706 |
|
|
- Don't bother checking the exit status of yum, since yum may |
707 |
|
|
return non-zero for failure or for "no matching groups/packages". |
708 |
|
|
TODO: We should probably work out how to tell between these. |
709 |
|
|
|
710 |
|
|
* Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au> |
711 |
|
|
- [1.1.0-01gr16] |
712 |
|
|
- Make it a supervised service, but one which we only run |
713 |
|
|
"once" when we need it [SF: 1216096] |
714 |
|
|
|
715 |
|
|
* Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au> |
716 |
|
|
- [1.1.0-01gr15] |
717 |
|
|
- Don't try to grab the yum.pid file with Proc::PID_File as then |
718 |
|
|
we can't actually run yum commands [SF: 1216097] |
719 |
|
|
|
720 |
|
|
* Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au> |
721 |
|
|
- [1.1.0-01gr14] |
722 |
|
|
- Add yum_update_dbs into a supervised service so we don't have |
723 |
|
|
to wait for it at boot time [SF: 1216096] |
724 |
|
|
|
725 |
|
|
* Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au> |
726 |
|
|
- [1.1.0-01gr13] |
727 |
|
|
- Unlink tmp files if yum command fails and we exit early |
728 |
|
|
|
729 |
|
|
* Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au> |
730 |
|
|
- [1.1.0-01gr12] |
731 |
|
|
- Check for another running yum process [SF: 1216097] |
732 |
|
|
- Don't update the databases if the yum command fails [SF: 1216097] |
733 |
|
|
|
734 |
|
|
* Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au> |
735 |
|
|
- [1.1.0-01gr11] |
736 |
|
|
- Use the dump RPM from CentOS [SF: 1214055] |
737 |
|
|
|
738 |
|
|
* Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au> |
739 |
|
|
- [1.1.0-01gr10] |
740 |
|
|
- Invert exit status of system() |
741 |
|
|
|
742 |
|
|
* Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au> |
743 |
|
|
- [1.1.0-01gr09] |
744 |
|
|
- Move management of /var/lock/subsys/yum into yum_updates_dbs action script |
745 |
|
|
- Call yum_update_dbs in local event - after the system is up and running |
746 |
|
|
- Remove commented out panel references |
747 |
|
|
|
748 |
|
|
* Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au> |
749 |
|
|
- [1.1.0-01gr08] |
750 |
|
|
- Default gpgcheck off, except for base/updates/smecore/smeupdates |
751 |
|
|
- Default yum{AutoInstallUpdates} == enabled |
752 |
|
|
- Add code to manage /var/lock/subsys/yum, which controls daily updates |
753 |
|
|
in /etc/cron.daily/yum |
754 |
|
|
|
755 |
|
|
* Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au> |
756 |
|
|
- [1.1.0-01gr07] |
757 |
|
|
- Deal with the case when the list of updates is empty |
758 |
|
|
- Put a header on each of the yum_* dbs |
759 |
|
|
|
760 |
|
|
* Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au> |
761 |
|
|
- [1.1.0-01gr06] |
762 |
|
|
- Rename centos repositories to match the centos-yumcache names |
763 |
|
|
- Remove pkgpolicy=last and repository ordering. |
764 |
|
|
- Add Exclude= properties to CentOS base and updates for packages which |
765 |
|
|
are modified for the SMEServer releases |
766 |
|
|
- INSTALL: Need to manually remove old version of yum_repositories DB |
767 |
|
|
|
768 |
unnilennium |
1.3 |
* Tue May 31 2005 Gordon Rowell <gordonr@gormand.com.au> |
769 |
|
|
Fri May 31 2005 --> Fri May 27 2005 or Tue May 31 2005 or Fri Jun 03 2005 or .... |
770 |
stephdl |
1.1 |
- [1.1.0-01gr05] |
771 |
|
|
- Add enable/disable repository support to configuration page |
772 |
|
|
|
773 |
unnilennium |
1.3 |
* Tue May 31 2005 Gordon Rowell <gordonr@gormand.com.au> |
774 |
|
|
Fri May 31 2005 --> Fri May 27 2005 or Tue May 31 2005 or Fri Jun 03 2005 or .... |
775 |
stephdl |
1.1 |
- [1.1.0-01gr04] |
776 |
|
|
- Hide empty group/package select boxes |
777 |
|
|
|
778 |
|
|
* Tue May 31 2005 Gordon Rowell <gordonr@gormand.com.au> |
779 |
|
|
- [1.1.0-01gr03] |
780 |
|
|
- Change BaseURLs for smeserver repositories to ..../7.0alpha/ until we |
781 |
|
|
add FollowSymlinks to httpd.conf |
782 |
|
|
|
783 |
|
|
* Fri May 27 2005 Gordon Rowell <gordonr@gormand.com.au> |
784 |
|
|
- [1.1.0-01gr02] |
785 |
|
|
- Add post-upgrade configuration page |
786 |
|
|
- Hide Darrell's original panels |
787 |
|
|
- Remove historical event directories |
788 |
|
|
- TODO: Page for adding/deleting repositories |
789 |
|
|
- TODO: yum-arch local repositories |
790 |
|
|
|
791 |
|
|
* Fri May 27 2005 Gordon Rowell <gordonr@gormand.com.au> |
792 |
|
|
- [1.1.0-01gr01] |
793 |
|
|
- Roll to 1.1.0 |
794 |
|
|
|
795 |
|
|
* Fri May 27 2005 Gordon Rowell <gordonr@gormand.com.au> |
796 |
|
|
- [1.0.0-04gr30] |
797 |
|
|
- Call yum_update_dbs during the actions so the db state is correct |
798 |
|
|
|
799 |
|
|
* Fri May 27 2005 Gordon Rowell <gordonr@gormand.com.au> |
800 |
|
|
- [1.0.0-04gr29] |
801 |
|
|
- Create empty yum_{available,installed,updates} dbs in SPEC file |
802 |
|
|
- Display the available repositories, and provide a select box |
803 |
|
|
to allow them to be enabled/disabled. |
804 |
|
|
- Add dependency on recent CGI::FormMagick so that the select options work |
805 |
|
|
|
806 |
|
|
* Thu May 26 2005 Gordon Rowell <gordonr@gormand.com.au> |
807 |
|
|
- [1.0.0-04gr28] |
808 |
|
|
- Introduce yum_repositories database and convert yum.conf template |
809 |
|
|
- Introduce yum_repositories database and convert yum.conf template |
810 |
|
|
- Set defaults, which can be overridden on a per-repository basis: |
811 |
|
|
yum{EnableGroups}==0 |
812 |
|
|
yum{GPGCheck}==1 |
813 |
|
|
|
814 |
|
|
* Sat May 21 2005 Gordon Rowell <gordonr@gormand.com.au> |
815 |
|
|
- [1.0.0-04gr27] |
816 |
|
|
- Add contrib group from CentOS and contribs.org repositories |
817 |
|
|
|
818 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
819 |
|
|
- [1.0.0-04gr26] |
820 |
|
|
- Change configuration event to yum-modify since we need |
821 |
|
|
yum-update for other purposes |
822 |
|
|
- TODO: Need to update yum_* dbs after we perform an action |
823 |
|
|
so the panel status matches reality. For speed, we should |
824 |
|
|
probably delete the entries directly. |
825 |
|
|
- TODO: Some yum comands take a long time, probably too long for |
826 |
|
|
the manager. |
827 |
|
|
- TODO: Capture the yum output |
828 |
|
|
|
829 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
830 |
|
|
- [1.0.0-04gr25] |
831 |
|
|
- Fix CGI parameter passing |
832 |
|
|
|
833 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
834 |
|
|
- [1.0.0-04gr24] |
835 |
|
|
- Add actions for install/remove/update |
836 |
|
|
- TODO: groupremove needs to pull apart the group and remove |
837 |
|
|
packages individually |
838 |
|
|
|
839 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
840 |
|
|
- [1.0.0-04gr23] |
841 |
|
|
- Major cleanup of yum.pm, refactoring lots of code |
842 |
|
|
- Note: Depends on CGI::FormMagick patch from [SF:1205448] |
843 |
|
|
|
844 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
845 |
|
|
- [1.0.0-04gr22] |
846 |
|
|
- Changed yum{ShowPackages} to yum{PackageFunctions} |
847 |
|
|
- Added enable/disable toggle to panel and fleshed out |
848 |
|
|
change_settings() so that the settings are saved |
849 |
|
|
- TODO: Actually signal-event yum-update |
850 |
|
|
|
851 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
852 |
|
|
- [1.0.0-04gr21] |
853 |
|
|
- Change button labels for consistency |
854 |
|
|
- TODO: Deal with degenerate case where no groups exist |
855 |
|
|
|
856 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
857 |
|
|
- [1.0.0-04gr20] |
858 |
|
|
- Show groups in the panel |
859 |
|
|
- Hide the ability to install/remove individual packages by default |
860 |
|
|
- To enable, set yum{ShowPackages}=yes |
861 |
|
|
- Add a tst group, courtesy of Greg Swallow |
862 |
|
|
|
863 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
864 |
|
|
- [1.0.0-04gr19] |
865 |
|
|
- List available/installed/updates for yum groups as well |
866 |
|
|
- Create yum_installed db and use that instead of /var/log/rpmpkgs |
867 |
|
|
for orthogonality. We also update all three DBs with one action. |
868 |
|
|
|
869 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
870 |
|
|
- [1.0.0-04gr18] |
871 |
|
|
- enablegroups for smeserver, but disable them for centos |
872 |
|
|
|
873 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
874 |
|
|
- [1.0.0-04gr17] |
875 |
|
|
- For consistency, sort extras before os as well |
876 |
|
|
|
877 |
|
|
* Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au> |
878 |
|
|
- [1.0.0-04gr16] |
879 |
|
|
- Set pkgpolicy=last, put centos groups before smeserver groups, and |
880 |
|
|
ensure that the group labels are sortable |
881 |
|
|
|
882 |
|
|
* Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au> |
883 |
|
|
- [1.0.0-04gr15] |
884 |
|
|
- Comment out the smeserver parts of yum.conf for now |
885 |
|
|
|
886 |
|
|
* Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au> |
887 |
|
|
- [1.0.0-04gr14] |
888 |
|
|
- Fill in removable packages from /var/log/rpmpkgs, updated nightly |
889 |
|
|
by a cronjob in the rpm package. |
890 |
|
|
TODO: We should probably run the cron job just before displaying |
891 |
|
|
this panel |
892 |
|
|
|
893 |
|
|
* Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au> |
894 |
|
|
- [1.0.0-04gr13] |
895 |
|
|
- Rough in install/remove pages |
896 |
|
|
|
897 |
|
|
* Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au> |
898 |
|
|
- [1.0.0-04gr12] |
899 |
|
|
- Add configuration page to panel |
900 |
|
|
|
901 |
|
|
* Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au> |
902 |
|
|
- [1.0.0-04gr11] |
903 |
|
|
- Fix up conf-yum and /etc/yum.conf links |
904 |
|
|
|
905 |
|
|
* Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au> |
906 |
|
|
- [1.0.0-04gr10] |
907 |
|
|
- Clean up daily cronjobs, and check whether yum is enabled in each of them |
908 |
|
|
- Remove /var/service/yum - we don't need to run all the time |
909 |
|
|
- Make use of new templates.metadata to remove conf-yum script entirely |
910 |
|
|
|
911 |
|
|
* Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au> |
912 |
|
|
- [1.0.0-04gr09] |
913 |
|
|
- Rewrite yum.conf templates to depend on: |
914 |
|
|
sysconfig{ReleaseVersion} |
915 |
|
|
sysconfig{BaseDistro} |
916 |
|
|
sysconfig{BaseDistroVersion} |
917 |
|
|
|
918 |
|
|
* Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au> |
919 |
|
|
- [1.0.0-04gr08] |
920 |
|
|
- Initial FormMagick panel using new databases |
921 |
|
|
|
922 |
|
|
* Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au> |
923 |
|
|
- [1.0.0-04gr07] |
924 |
|
|
- And put yum_update_dbs in the right directory... |
925 |
|
|
|
926 |
|
|
* Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au> |
927 |
|
|
- [1.0.0-04gr06] |
928 |
|
|
- Add /sbin/e-smith/yum_update_dbs |
929 |
|
|
|
930 |
|
|
* Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au> |
931 |
|
|
- [1.0.0-04gr05] |
932 |
|
|
- Change db names and fix yum list updates command |
933 |
|
|
|
934 |
|
|
* Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au> |
935 |
|
|
- [1.0.0-04gr04] |
936 |
|
|
- Generate esmith::DB files from the yum output, as it's so much |
937 |
|
|
easier to deal with them later in panels, etc. |
938 |
|
|
|
939 |
|
|
* Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au> |
940 |
|
|
- [1.0.0-04gr03] |
941 |
|
|
- Change output path of yum list commands |
942 |
|
|
|
943 |
|
|
* Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au> |
944 |
|
|
- [1.0.0-04gr02] |
945 |
|
|
- Fix up init.d/supervise/yum symlink |
946 |
|
|
- Create /service symlink |
947 |
|
|
- Ensure correct permissions on supervise bits and pieces |
948 |
|
|
|
949 |
|
|
* Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au> |
950 |
|
|
- [1.0.0-04gr01] |
951 |
|
|
- Change default type for yum to service |
952 |
|
|
- Add yum{status}==enabled |
953 |
|
|
- Create /var/log/yum in build |
954 |
|
|
- Add yum service directory and startup |
955 |
|
|
|
956 |
|
|
* Mon Mar 01 2004 Darrell May <dmay@myezserver.com> |
957 |
|
|
- [1.0.0-03dmay] |
958 |
|
|
- bugfix to yum-config missing db set {Arch,Check}Repository |
959 |
|
|
* Sun Feb 29 2004 Darrell May <dmay@myezserver.com> |
960 |
|
|
|
961 |
|
|
- [1.0.0-02dmay] |
962 |
|
|
- major updates to yum panels, templates |
963 |
|
|
* Sun Feb 08 2004 Darrell May <dmay@myezserver.com> |
964 |
|
|
|
965 |
|
|
- [1.0.0-01_beta] |
966 |
|
|
- initial beta release |
967 |
|
|
- added yum-remove panel |
968 |
|
|
- updated all panels, events, actions |
969 |
|
|
* Sat Feb 07 2004 Darrell May <dmay@myezserver.com> |
970 |
|
|
|
971 |
|
|
- [0.0.1a-09] |
972 |
|
|
- added yum-post panel |
973 |
|
|
- updated yum-{update,available} panels |
974 |
|
|
- updated yum-install-{available,update} events & actions |
975 |
|
|
|
976 |
|
|
* Tue Feb 03 2004 Darrell May <dmay@myezserver.com> |
977 |
|
|
- [0.0.1a-08] |
978 |
|
|
- added pre-alpha yum-{update,available} panels |
979 |
|
|
- renamed all panels yum-panelname |
980 |
|
|
|
981 |
|
|
* Mon Feb 02 2004 Darrell May <dmay@myezserver.com> |
982 |
|
|
- [0.0.1a-07] |
983 |
|
|
- updated yum-check-repository template and action to accept --nomail commandline option |
984 |
|
|
- updated yumcheck panel to issue --nomail commandline option |
985 |
|
|
|
986 |
|
|
* Sun Feb 01 2004 Darrell May <dmay@myezserver.com> |
987 |
|
|
- [0.0.1a-06] |
988 |
|
|
- added yumcheck server-manager panel |
989 |
|
|
- updated cron.daily/yum-check-repository template |
990 |
|
|
- change log file name to yum-check-repository.log |
991 |
|
|
|
992 |
|
|
* Sat Jan 31 2004 Darrell May <dmay@myezserver.com> |
993 |
|
|
- [0.0.1a-05] |
994 |
|
|
- added yumconfig server-manager panel |
995 |
|
|
- added yum-post-{install,remove} events |
996 |
|
|
- added navigation-conf-hidden action |
997 |
|
|
|
998 |
|
|
* Mon Jan 26 2004 Darrell May <dmay@myezserver.com> |
999 |
|
|
- [0.0.1a-04] |
1000 |
|
|
- moved cron.hourly actions to cron.daily |
1001 |
|
|
- added yum-update event |
1002 |
|
|
- added yum-arch-repository yum-check-repository actions |
1003 |
|
|
- added yum-install-updates yum-install-available actions |
1004 |
|
|
- removed %post entries, created db defaults |
1005 |
|
|
|
1006 |
|
|
* Sun Jan 25 2004 Darrell May <dmay@myezserver.com> |
1007 |
|
|
- [0.0.1a-03] |
1008 |
|
|
- yum-check-repository, changed to run 'yum list' |
1009 |
|
|
- yum-arch-repository, added support for multiple archive repositories |
1010 |
|
|
|
1011 |
|
|
* Sat Jan 24 2004 Darrell May <dmay@myezserver.com> |
1012 |
|
|
- [0.0.1a-02] |
1013 |
|
|
- fix db typo UpdateURL to UpdatesUrl |
1014 |
|
|
- added cron.hourly/yum-check-repository & yum-arch-repository |
1015 |
|
|
- updated actions/conf-yum |
1016 |
|
|
|
1017 |
|
|
* Thu Jan 22 2004 Darrell May <dmay@myezserver.com> |
1018 |
|
|
- [0.0.1a-01] |
1019 |
|
|
- Original version |