source: projects/specs/trunk/a/apt/apt-vl.spec @ 3750

Revision 3750, 46.3 KB checked in by daisuke, 13 years ago (diff)

apt: update to upstream git snapshot, remove unneeded patches

Line 
1%define with_python 1
2
3%define build_vine5 0
4
5%if "%{?_dist_release}" == "vl5"
6%define build_vine5 1
7%endif
8
9%define snapver git522
10%define srcver %{version}.%{snapver}
11
12Name: apt
13Version: 0.5.15lorg3.95
14Release: 8.%{snapver}%{?_dist_release}
15Summary: Advanced front-end for rpm (APT - Advanced Package Tool)
16Summary(ja): RPM の高機能なフロントエンド (APT - アドバンスドパッケージツール)
17Group: Applications/Administration
18License: GPLv2+
19Url: http://apt-rpm.org/
20
21Vendor: Project Vine
22Distribution: Vine Linux
23Packager: daisuke
24
25Source0: %{name}-%{srcver}.tar.bz2
26Source1: apt.conf-0.5.15
27
28Source3: vendors.list-0.5.15
29Source5: gpg-keyring.conf
30Source7: system-duplicate-package.conf
31Source8: allow-duplicated-upgrade.conf
32
33Source10: sources.list-vine
34Source20: preferences.vine
35Source30: rpmpriorities.vineseed
36Source31: rpmpriorities.vine5
37
38Source50: remove-old-kernels.lua
39Source51: remove-old-kernels.conf
40
41Source100: apt-0.5.15lorg3.93-ja.po
42
43Source110: apt-japanese-man-pages.tar.bz2
44
45# patches from MDK/ALT/upstream
46
47# patches from fedora/upstream
48# Fix ppc mapping
49Patch0: apt-0.5.15lorg3.2-ppc.patch
50# band aid for mmap issues (#211254)
51Patch1: apt-0.5.15lorg3.x-cache-corruption.patch
52
53# enhance the sorting by taking Obsoletes into account
54Patch10:                %{name}-0.3.19cnc53-stelian-apt-pkg-algorithms-scores.patch.bz2
55# ignore versionless reverse dependencies
56Patch11:                %{name}-0.5.4cnc9-alt-packagemanager-CheckRConflicts.patch.bz2
57# alternative scoring method ( PreDepends implies -1 instead of +50 )
58Patch12:                %{name}-0.5.4cnc9-alt-pkgorderlist_score.patch.bz2
59# add # to the list of the forbidden char in the name of cdrom
60Patch13:        %{name}-0.5.4cnc9-alt-specialchars.patch.bz2
61# a quick bugfixe to make build-dep work
62Patch16:    %{name}-build-dep.patch.bz2
63
64# Vine patch
65# support "$(ARCH)" in sources.list
66Patch100: apt-0.5.4-ARCH.patch
67# set HOME=/root on exec gpg
68Patch120: apt-0.5.15lorg3.2-setenv-home.patch
69# apt-cdrom mounts cdrom device without fstab modification.
70Patch130: apt-0.5.15lorg3.2-apt-cdrom-fstab-free.patch
71# select correct version of kernel on apt-get upgrade (allow-duplicated.lua)
72Patch140: apt-0.5.15lorg3.2-allow-duplicated_lua.patch
73# more gettextize
74Patch150: apt-0.5.15lorg3.95-git522-gettextize.patch
75# set RPM_IGNORE_SCRIPTLETS_FAILURE to ignore rpm scriptlets failure
76Patch160: apt-0.5.15lorg3.93-ignore-scriptlets-failure.patch
77# use lua-rex for rex
78Patch170: apt-0.5.15lorg3.95-lua-rex.patch
79# handle not only legacy PreReq but also Requires(pre,post) as PreDepends
80Patch180: apt-0.5.15lorg3.95.git522-handle-requires-prepost.patch
81# add swig2 pregenerated files
82Patch200: apt-0.5.15lorg3.95.git522-swig2-pregenerated-files.patch
83
84
85BuildRoot: %{_tmppath}/%{name}-%{version}-root
86Requires(post): ldconfig, coreutils
87Requires(postun): ldconfig
88Requires(triggers): sed, coreutils
89Requires: rpm >= 4.0.4, gnupg, bzip2
90Requires: readline >= 4.3
91Requires: vine-keyring
92Requires: apt-sourceslist-main
93Requires: lua-rex
94BuildRequires: rpm-devel >= 4.0.4
95BuildRequires: bzip2-devel, zlib-devel
96BuildRequires: glibc-devel, popt
97BuildRequires: gettext
98BuildRequires: readline-devel >= 4.3
99BuildRequires: autoconf
100BuildRequires: docbook-utils >= 0.6.14-4
101BuildRequires: cvs
102BuildRequires: libxml2-devel >= 2.6
103BuildRequires: lua-devel
104%if %{with_python}
105BuildRequires: python
106BuildRequires: python-devel
107%endif
108
109%description
110A port of Debian's apt tools for RPM based distributions.
111It provides the apt-get utility that provides a simpler,
112safer way to install and upgrade packages. APT features
113complete installation ordering, multiple source capability
114and several other unique features.
115
116%description -l ja
117これは rpm 対応の apt です。 apt-get は簡単かつ安全にパッケージ
118のアップグレード,インストールを行うことができるコマンドです。
119apt は依存関係の解決、インストール順序の補完などさまざまな特
120徴があります。
121
122
123%package devel
124Summary: Development files and documentation for APT's libapt-pkg
125Summary(ja): APT のライブラリ(libapt-pkg) の開発用ファイルとドキュメント
126Group: Development/Libraries
127Requires(pre): %{name} = %{version}-%{release}
128Obsoletes: libapt-pkg-devel <= 0.3.19cnc30, libapt-pkg-doc <= 0.3.19cnc30
129
130%description devel
131This package contains the header files and static libraries for
132developing with APT's libapt-pkg package manipulation library,
133modified for RPM.
134
135%description devel -l ja
136このパッケージには、rpm 向けに改変された APT の、libapt-pkg
137パッケージ操作ライブラリを使って開発するための、ヘッダファイル
138とスタティックライブラリが含まれています。
139
140%if %{with_python}
141%package -n python-apt
142Summary: Python binding for APT
143Summary(ja): APT 用 Python バインディング
144Group: Development/Languages
145Requires: %{name} = %{version}-%{release}
146
147%description -n python-apt
148This package contains the python binding for apt libraries.
149
150%description -n python-apt -l ja
151このパッケージには apt ライブラリの python バインディング
152が含まれています。
153%endif
154
155%prep
156%setup -q -a 110 -n %{name}-%{srcver}
157%patch0 -p1 -b .ppc
158%patch1 -p0 -b .mmap
159
160%patch10 -p1
161%patch11 -p1
162%patch12 -p1
163%patch13 -p1
164%patch16 -p1
165
166%patch100 -p0
167%patch120 -p1
168%patch130 -p1
169%patch140 -p1
170%patch150 -p1
171%patch160 -p1
172%patch170 -p1
173%patch180 -p1
174%patch200 -p1
175
176cp %{SOURCE100} po/ja.po
177%if %{build_vine5}
178cp %{SOURCE31} rpmpriorities
179%else
180cp %{SOURCE30} rpmpriorities
181%endif
182
183%build
184autoreconf -f -i
185%configure \
186  --disable-dependency-tracking --disable-static \
187  CPPFLAGS=-D_RPM_4_4_COMPAT
188
189%__make %{?_smp_mflags}
190%__make -C po ja.gmo
191
192%if %{with_python}
193pushd python
194%__make
195python -O -c "import py_compile; py_compile.compile('apt.py')"
196popd
197%endif
198
199# build japanese man pages
200pushd doc/ja
201# if you need utf-8 man page , add BuildRequires: nkf
202# %{__make} convert_to_utf-8
203%{__make}
204popd
205
206%install
207rm -fr %{buildroot}
208
209%makeinstall includedir=%{buildroot}%{_includedir}/apt-pkg
210
211# stat directories
212mkdir -p %{buildroot}%{_var}/cache/apt/archives/partial
213mkdir -p %{buildroot}%{_var}/cache/apt/genpkglist
214mkdir -p %{buildroot}%{_var}/cache/apt/gensrclist
215
216# config files
217mkdir -p %{buildroot}%{_sysconfdir}/apt
218mkdir -p %{buildroot}%{_sysconfdir}/apt/apt.conf.d
219mkdir -p %{buildroot}%{_sysconfdir}/apt/translate.list.d
220mkdir -p %{buildroot}%{_sysconfdir}/apt/sources.list.d
221install %{SOURCE1} %{buildroot}%{_sysconfdir}/apt/apt.conf
222install %{SOURCE10} %{buildroot}%{_sysconfdir}/apt/sources.list
223install %{SOURCE10} %{buildroot}%{_sysconfdir}/apt/sources.list.dist
224install %{SOURCE20} %{buildroot}%{_sysconfdir}/apt/preferences
225install %{SOURCE3} %{buildroot}%{_sysconfdir}/apt/vendors.list
226install rpmpriorities %{buildroot}%{_sysconfdir}/apt
227install %{SOURCE5} %{buildroot}%{_sysconfdir}/apt/apt.conf.d/gpg-keyring.conf
228install %{SOURCE7} %{buildroot}%{_sysconfdir}/apt/apt.conf.d/system-duplicate-package.conf
229install %{SOURCE8} %{buildroot}%{_sysconfdir}/apt/apt.conf.d/allow-duplicated-upgrade.conf
230
231
232# scripts dirs
233mkdir -p %{buildroot}%{_datadir}/apt/scripts
234
235# install contribs
236pushd contrib
237
238# install apt-wrapper
239cat apt-wrapper/apt | tr -d "\r" > apt-wrapper/apt.new
240install -m 755 apt-wrapper/apt.new %{buildroot}%{_bindir}/apt
241install -d %{buildroot}%{_mandir}/man1/
242install apt-wrapper/apt.1 %{buildroot}%{_mandir}/man1/
243
244# install lua scripts, but not install .conf file.
245for i in allow-duplicated guess \
246         install-devel list-extras list-nodeps \
247         proxypasswd log
248do
249  install $i/$i.lua %{buildroot}%{_datadir}/apt/scripts
250done
251
252# install some lua script .conf file to apt.conf.d
253for i in allow-duplicated list-extras list-nodeps
254do
255  install $i/$i.conf %{buildroot}%{_sysconfdir}/apt/apt.conf.d/
256done
257popd
258
259# install remove-old-kernels.{lua,conf}
260install %{SOURCE50} %{buildroot}%{_datadir}/apt/scripts
261install %{SOURCE51} %{buildroot}%{_sysconfdir}/apt/apt.conf.d/remove-old-kernels.conf
262
263%if %{with_python}
264# install apt.py
265mkdir -p %{buildroot}%{python_sitearch}/
266install -m 644 python/apt.py* %{buildroot}%{python_sitearch}/
267install -m 755 python/_apt.so %{buildroot}%{python_sitearch}/
268touch %{buildroot}%{python_sitearch}/apt.pyo
269%endif
270
271# remove unpackaged files
272rm -f %{buildroot}%{_libdir}/libapt-pkg.la
273     
274# install japanese man pages
275pushd doc/ja
276%{__make} install MANDIR-JA="%{buildroot}%{_mandir}/ja"
277popd
278     
279
280%triggerun -- apt < 0.5.4
281CONF=/etc/apt/apt.conf
282if [ -f $CONF ]; then
283   mv $CONF $CONF.rpmold
284   sed -e 's/HoldPkgs/Hold/' \
285       -e 's/AllowedDupPkgs/Allow-Duplicated/' \
286       -e 's/IgnorePkgs/Ignore/' \
287       -e 's/PostInstall/Post-Install/' \
288       -e 's#Methods .*#Methods "/usr/lib/apt/methods";#' \
289       $CONF.rpmold > $CONF
290fi
291
292%triggerun -- apt <= 0.5.15.cnc.7
293SOURCESLIST=/etc/apt/sources.list
294if [ -f $SOURCESLIST ]; then
295  cp -f $SOURCESLIST $SOURCESLIST.rpmsave
296  cp $SOURCESLIST.dist $SOURCESLIST
297fi
298
299%triggerun -- apt < 0.5.15lorg3.94a
300SOURCESLIST=/etc/apt/sources.list
301if [ -f $SOURCESLIST ]; then
302  cp -f $SOURCESLIST $SOURCESLIST.rpmsave
303  cp $SOURCESLIST.dist $SOURCESLIST
304fi
305
306
307%post
308ldconfig -n %{_libdir}
309rm -f %{_var}/cache/apt/*.bin
310if [ ! -d /mnt/cdrom ]; then
311    mkdir -p /mnt/cdrom ||:
312fi
313
314%postun
315ldconfig -n %{_libdir}
316
317%clean
318rm -rf %{buildroot}
319
320%files
321%defattr(0644,root,root,755)
322%doc AUTHORS* COPYING* TODO*
323%doc doc/examples/
324%doc contrib/allow-duplicated contrib/apt-wrapper contrib/guess contrib/install-devel
325%doc contrib/list-extras contrib/list-nodeps contrib/proxypasswd contrib/log
326%{_mandir}/man?/*
327%{_mandir}/ja/man?/*
328%{_libdir}/*.so.*
329%{_datadir}/locale/*/LC_MESSAGES/*
330%dir %{_sysconfdir}/apt
331%dir %{_sysconfdir}/apt/apt.conf.d
332%dir %{_sysconfdir}/apt/translate.list.d
333%dir %{_sysconfdir}/apt/sources.list.d
334%config(noreplace) %{_sysconfdir}/apt/apt.conf
335%config(noreplace) %{_sysconfdir}/apt/preferences
336%config(noreplace) %verify(not mtime) %{_sysconfdir}/apt/sources.list
337%{_sysconfdir}/apt/sources.list.dist
338%config %{_sysconfdir}/apt/apt.conf.d/*
339%config %{_sysconfdir}/apt/vendors.list
340%config %{_sysconfdir}/apt/rpmpriorities
341%dir %{_var}/cache/apt
342%{_var}/cache/apt
343%dir %{_var}/lib/apt
344%{_var}/lib/apt
345%defattr(755,root,root)
346%dir %{_libdir}/apt
347%dir %{_libdir}/apt/methods
348%dir %{_datadir}/apt/scripts
349%{_libdir}/apt/methods/*
350%{_datadir}/apt/scripts/*
351%{_bindir}/*
352
353%files devel
354%defattr(0644,root,root,755)
355%{_libdir}/*.so
356%dir %{_includedir}/apt-pkg
357%{_includedir}/apt-pkg/*
358%{_libdir}/pkgconfig/libapt-pkg.pc
359
360%if %{with_python}
361%files -n python-apt
362%defattr(0644,root,root,755)
363%{python_sitearch}/*.so
364%{python_sitearch}/*.py*
365%endif
366
367%changelog
368* Sun May 01 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.95-9.git522
369- update to upstream git snapshot
370  - drop upstreamed patches
371
372* Sat Mar 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.95-8.git416
373- drop vine4 support
374- add vine5 support
375- update rpmpriorities for VineSeed (s/util-linux-ng/utillinux)
376
377* Mon Aug 30 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.95-7.git416
378- update Summary and Description
379- update remove-old-kernels.lua
380  - check /boot/vmlinuz and latest kernel package.
381
382* Fri Mar  5 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.5.15lorg3.95-6.git416
383- add BR: lua-devel
384- add Patch180 (not only PreReq but also Requires(pre,post) as PreDepends)
385
386* Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.5.15lorg3.95-5.git416
387- rebuilt with gcc-4.4.3-3 on ppc
388
389* Fri Feb  5 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.5.15lorg3.95-4.git416
390- rebuilt with rpm-4.8.0-3 (on ppc)
391
392* Wed Feb 03 2010 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.5.15lorg3.95-3.git416
393- added BR: python-devel.
394- changed PreReq: to Requires(pre):.
395
396* Wed Feb 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.95-2.git416
397- add Patch170 to use external rex module
398  - add R: lua-rex
399
400* Tue Feb 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.95-1.git416
401- update to upstream git snapshot
402- add patch1-8 from fedora/upstream
403- build with rpm-4.8.0
404- disable static libs
405
406* Thu Aug 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.94a-16
407- add triggerun script to upgrade from old apt (vine4.x's)
408
409* Sun May 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.94a-15
410- update remove-old-kernels.lua
411  - add kernel-{pae,smp}-devel to remove list
412
413* Tue May 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.94a-14
414- split out remove-old-kernels.lua from allow-duplicated.lua
415  - add exception/error handling
416  - remove Patch170
417
418* Sun May 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.94a-13
419- add Patch170: remove kernel/kernel-devel older than current running
420                version. (by default) This feature can disable by apt
421                configuration file.
422- renumber patch130-patch1000
423
424* Thu May 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.94a-12
425- add patch from upstream
426  - Patch22: Fix infinite loop in pkgAcquire::UriIterator
427
428* Mon May 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.94a-11
429- add patches from upstream git
430  - Patch17: add default constructor, required for aptitude 0.4.1
431  - Patch18: optimize redundant gettimeofday()
432  - Patch19: use --cachedir for gensrclist too
433  - Patch20: use find() instead of manual search for RPMHandler::HasFile()
434  - Patch21: apt-shell: quit from shell by Ctrl+D
435
436* Thu Mar 19 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.5.15lorg3.94a-10
437- bytecompile python module
438
439* Thu Mar 19 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.5.15lorg3.94a-9
440- enable building python-apt subpackage now
441
442* Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.94a-8
443- add module-init-tools to rpmpriorities instead of modutils
444
445* Mon Feb 02 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.94a-7
446- add kernel-pae* to system-duplicate-package.conf
447
448* Sun Feb 01 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.5.15lorg3.94a-6
449- re-update Source10 (sources.list-0.5.15-vineseed) for sources.list separetion
450- add Requires: apt-sourceslist-main
451
452* Tue Jan 27 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.5.15lorg3.94a-5
453- update Source10 (sources.list-0.5.15-vineseed) for sources.list separetion
454
455* Sun Aug 31 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.5.15lorg3.94a-4
456- spec in UTF-8
457- update Source100 (ja.po) <BTS:VineLinux:626 & 636>
458- add japanese description for devel and python-apt sub packages
459
460* Wed Jul  2 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.5.15lorg3.94a-3
461- update Source30 (util-linux-ng instead of util-linux)
462
463* Sat May 10 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.94a-2
464- add /etc/apt/sources.list.d
465- add /var/lib/apt, /var/lib/apt/lists
466- use BuildRequires instead of BuildPreReq
467- use Requires(post,postun,triggers) instead of PreReq
468
469* Sat May 10 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.5.15lorg3.94a-1
470- new upstream release
471- update Patch900
472- remove %{_var}/state/apt from %%files list (no longer supported)
473- apply new versioning policy
474
475* Mon Sep 15 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.93-0vl2
476- update ja.po
477- add Patch900 to translate more messages
478- add Patch1000 to ignore rpm scriptlet failure in apt-get transaction
479
480* Sun Sep 14 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.93-0vl1
481- new upstream release
482
483* Sat Sep 13 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl15
484- rebuild with rpm-4.4.2.2
485
486* Tue Sep 02 2007 Takuya Kobayashi <ruby11@cocoa.ocn.ne.jp> 0.5.15lorg3.2-0vl14
487- add Japanese translation of man pages.
488  - add Source110
489- update Patch15
490  - close unclosed tags.
491- add Vendor: Project Vine
492
493* Wed May 09 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.5.15lorg3.2-0vl13
494- rebuilt with new toolchain and db-4.3.x
495
496* Sat Apr 28 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl12
497- remove apt pin setting from /etc/apt/preferences
498
499* Thu Mar 29 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl11
500- rebuild for VineSeed
501
502* Thu Mar 29 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl10
503- fix bug in allow-duplicated.lua. ([vine-users:076523])
504  - select newest version of kernel on upgrade-mode.
505
506* Thu Jan 18 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl9
507- build for Vine Linux 4.1
508
509* Thu Oct 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl8.1
510- build for Vine Linux 4.0
511
512* Thu Oct 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl8
513- update ja.po
514- fix typo in descriptions
515
516* Thu Oct 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl7
517- add Patch700
518  apt-cdrom mounts cdrom device fstab entry.
519- add triggerun script to upgrade sources.list
520
521* Sun Oct 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl6.1
522- change sources.list for Vine Linux 4.0
523
524* Tue Sep 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl6
525- remove extras from sources.list
526
527* Fri Sep 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl5
528- add Patch600 to set "HOME=/root" on exec gpg.
529
530* Sat Aug 19 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.5.15lorg3.2-0vl4
531- add BuildPreReq: cvs (required to run autoreconf)
532- add BuildPreReq: libxml2-devel >= 2.6
533
534* Sun Aug 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl3
535- add BuildPreReq: docbook-utils
536
537* Tue Jul 18 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl2
538- add "^kernel-module" to system-duplicate-package.conf
539
540* Thu Jun 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.2-0vl1
541- new upstream release
542- drop Patch600, merged in upstream.
543
544* Fri Jun 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.1-0vl2
545- add Patch600 to fix segv on installing new package.
546  (merged in upstream)
547
548* Tue May 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3.1-0vl1
549- update to 0.5.15lorg3.1
550- drop Patch120,300,400, merged in upstream.
551- drop unneeded Patch14.
552
553* Fri May 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3-0vl3
554- drop kernel-upgrade.lua, use allow-duplicated.lua to upgrade kernels
555  (BTS:39)
556- fix line endings of apt-wrapper (convert CRLF to LF)
557  (BTS:38)
558
559* Fri May 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3-0vl2
560- update ja.po
561
562* Thu May 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3-0vl1
563- update to 0.5.15lorg3 final
564
565* Sun Apr 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3-0vl0.rc2.2
566- change scripts dir to %%{_datadir} instead of %{_libdir}
567  (BTS:37)
568
569* Wed Apr 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3-0vl0.rc2.1
570- update to 0.5.15lorg3-rc2
571- update mirror URLs in sources.list
572
573* Tue Apr 11 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3-0vl0.rc1.1
574- update to 0.5.15lorg3-rc1
575- change Group to Applications/Administration
576
577* Sat Apr 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15lorg3-0vl0.pre4.1
578- new upstream release
579  - upstream auther is changed from Mandriva(aka Conectiva)
580    to Panu Matilainen.
581  - add Url: http://laiskiainen.org/
582- TODO: We should check all patches whether it is still necessary.
583
584* Fri Mar 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.7-0vl13
585- update rpmpriorities (replace dev by udev)
586
587* Mon Dec 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp>  0.5.15.cnc.7-0vl12
588- remove version deps of vine-keyring
589
590* Mon Dec 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp>  0.5.15.cnc.7-0vl11
591- Patch10-16: import MDK/ALT patches
592
593* Sat Dec 17 2005 Daisuke SUZUKI <daisuke@linux.or.jp>  0.5.15.cnc.7-0vl10
594- drop Patch14 to disable AutoRebuildDB
595  - rebuilddb should be executed by external rpm command, not internal librpm
596
597* Sat Dec 17 2005 Daisuke SUZUKI <daisuke@linux.or.jp>  0.5.15.cnc.7-0vl9
598- rebuild
599
600* Fri Dec 16 2005 Daisuke SUZUKI <daisuke@linux.or.jp>  0.5.15.cnc.7-0vl8
601- rebuild with rpm-4.4.2
602- update Patch14 to support rpm-4.4
603
604* Wed Aug 17 2005 Daisuke SUZUKI <daisuke@linux.or.jp>  0.5.15.cnc.7-0vl7
605- update kernel-upgrade.lua to upgrade installed kernel only.
606
607* Mon Jul 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp>  0.5.15.cnc.7-0vl6
608- add python-apt subpackage (disabled by default)
609
610* Tue Jun 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.7-0vl5
611- add kernel26*, kernel-*devel as Allow-Duplicated (apt.conf)
612- update kernel-upgrade.lua to check kernel24 pacakge.
613
614* Wed Jun 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.7-0vl4
615- update rpmpriorities (util-linux replaces mount)
616
617* Mon May 02 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.7-0vl3
618- update ja.po to fix mistranslation.
619
620* Thu Apr 07 2005 KOBAYASHI Taizo <tkoba@vinelinux.org> 0.5.15.cnc.7-0vl2
621- fixed rebuilddb patch ([VineSeed:08550])
622  do rebuilddb after rpm upgrade
623
624* Thu Apr 07 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.7-0vl1
625- new upstream release
626
627* Fri Feb 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl11
628- update rpmpriorities (coreutils releaces fileutils)
629
630* Sun Jan 23 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl10
631- fix kernel-upgrade.lua
632- update rpmpriorities
633
634* Sat Jan 22 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl9
635- add kernel-upgrade.lua to select and install suitable kernel.
636  - with this version, apt does not change lilo or grub settings.
637- do not Hold kernel-{doc,headers,source,pcmcia-cs}
638
639* Sat Jan 22 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl8
640- install {allow-duplicated,list-extras,list-nodeps}.conf to apt.conf.d
641- add Patch30 to disable hash progress bar in quiet mode.
642
643* Mon Aug 16 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl6
644- remove apt-files/apt-groupinstall which does not work with Vine Linux.
645
646* Mon Jul 19 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl5
647- build for Vine Linux 3.0
648  - use Vine Linux 3.0's apt-line
649
650* Mon Jun 28 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl4
651- remove unused vendor key from vendors.list
652
653* Mon Jun 21 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl3
654- update sources.list to use official apt line by default.
655
656* Wed Apr  7 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl2
657- add Requires: vine-keyring >= 1.0 to verify apt repository's gpg signs.
658- add apt.conf.d/gpg-keyring.conf to read vine-keyring.
659
660* Tue Mar 23 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.6-0vl1
661- new upstream release
662- add apt wrapper
663- install contrib lua scripts.
664
665* Wed Dec 24 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.5-0vl1
666- new upstream release
667
668* Thu Dec 04 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.4-0vl1
669- new upstream release
670- remove ja.po and Patch15 which are included in upstream now
671
672* Wed Nov 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.3-0vl1
673- new upstream release
674- update sources.list (remove old apt-line)
675
676* Thu Nov 13 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.15.cnc.2-0vl1
677- new upstream release
678- update ja.po
679
680* Thu Jun 12 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.5.cnc.6-0vl1
681- new upstream release
682
683* Sat Mar  8 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.5.cnc.4.1-0vl2
684- update ja.po
685
686* Sat Mar  8 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.5.cnc.4.1-0vl1
687- new upstream release 0.5.5cnc4.1
688  - new apt-shell command added
689- add Requires: readline >= 4.3 and BuildPreReq: readline >= 4.3
690
691* Tue Mar  4 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.5.cnc.3-0vl2
692- remove bogus comment from apt/preferences...
693
694* Tue Mar  4 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.5.cnc.3-0vl1
695- new upstream release 0.5.5cnc3
696- drop patch17
697- update patch10,patch12,patch15
698- update ja.po
699
700* Mon Dec 16 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl18
701- fixed typo
702- rebuild to fix dependancy
703
704* Tue Nov 26 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl17
705- update ja.po to fix translations
706
707* Tue Nov 26 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl16
708- update ja.po
709
710* Mon Nov 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl15
711- add BuildPreReq: db2-devel
712
713* Mon Nov 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl14
714- add Patch17 to disable allowduplicate for kernel.*.
715  kernel-{doc,headers,sources} is not duplicatable.
716  we use apt.conf to allow duplicate kernel package.
717
718* Mon Nov 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl13
719- add Patch0,1 from cnc package
720- renumber Vine patches.
721- update vendors.list
722
723* Fri Nov 22 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.5.4.cnc.9-0vl12
724- added Patch10 (archtable.patch) for athlon, powerpc/ppc
725
726* Fri Nov 22 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl11
727- drop Patch6. apt not work with it...(FIXME)
728
729* Fri Nov 22 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl10
730- add /etc/apt/apt.conf.d
731
732* Fri Nov 22 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl9
733- add some missing files.
734- add Patch6 to make static libs.
735
736* Fri Nov 22 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl8
737- add Patch4 to rebuilding rpmdb when rpm is upgraded.
738- add Patch5 to gettextize apt-cdrom.
739- update Patch0 to change some Distro name from Conectiva to Vine Linux
740- update ja.po
741
742* Fri Nov 22 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl7
743- update ja.po
744
745* Thu Nov 21 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl6
746- update ja.po
747
748* Thu Nov 21 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl5
749- add Patch3 to replace $(ARCH) in sources.list any time.
750
751* Thu Nov 21 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl4
752- fixed typo in %%triggerun script
753
754* Thu Nov 21 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl3
755- update ja.po
756
757* Thu Nov 21 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl2
758- add patch2 to add ja to ALL_LINGUAS
759
760* Thu Nov 21 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.9-0vl1
761- new upstream release
762- build on rpm-4.0.4
763
764* Sat Jul 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.4.cnc.1-1vl1
765- build for Vine Linux
766- new upstream release
767  * Fri May 10 2002 Gustavo Niemeyer <niemeyer@conectiva.com>
768  + apt-0.5.4cnc1-1cl
769  - New upstream release.
770
771* Sun Apr 14 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.3.19.cnc.55-3vl9
772- added static subpackage
773
774* Thu Mar 28 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.55-3vl8
775- update sources.list
776
777* Tue Mar 12 2002 Toru Sagami <sagami@vinelinux.org> 0.3.19.cnc.55-3vl7
778- corrected Group
779
780* Sun Mar 10 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.3.19.cnc.55-3vl6
781- updated Patch110 (archtable: powerpc -> ppc, ppc -> ppc)
782
783* Thu Mar 07 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.3.19.cnc.55-3vl5
784- updated patch105 to allowdup kernel-mol and kernel22-mol
785  (but *-mol kernel package will be obsolete we hope...)
786
787* Thu Mar 07 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.55-3vl4
788- change powerpc to ppc in archtable for $(ARCH)
789- hold kernel22 guys ( update patch105 )
790
791* Mon Feb 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.55-3vl3
792- update sources.list for new aptdata
793- add hold information in apt.conf
794
795* Sun Feb 24 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.55-3vl2
796- hold kernel24 guys ( update patch105 )
797
798* Sun Feb 10 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.55-3vl1
799- new upstream version 0.3.19cnc55-3cl
800
801* Wed Jan 30 2002 Jun Nishii <jun@vinelinux.org> 0.3.19.cnc.53-2vl3
802- hold kernel related guys
803
804* Tue Jan 15 2002 Flavio Bruno Leitner <flavio@conectiva.com>
805+ apt-0.3.19cnc55-3cl
806- added nodeps.patch to fix the order of parameters passed to
807  rpm (closes: #4689, #4534)
808 
809* Wed Dec 12 2001 Flavio Bruno Leitner <flavio@conectiva.com>
810+ apt-0.3.19cnc55-2cl
811- Closes: #3950 (apt: falta internacionalizar algumas frases)
812  added new pt_BR.po reviewed by me
813   
814* Tue Dec 11 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
815+ apt-0.3.19cnc55-1cl
816- released version 0.3.19cnc55
817- removed config.cache from distribution
818- added --progress patch to gensrclist
819- added --flat option to gensrclist
820   
821* Fri Nov 30 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
822+ apt-0.3.19cnc54-1cl
823- released version 0.3.19cnc54
824- added RPM::IgnorePkgs option
825- added --progress option to most utilities
826        (Stelian Pop <stelian.pop@fr.alcove.com>)
827- added RPM::IgnoreRpmlibDeps
828
829* Sun Nov 25 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.53-2vl2
830- update ja.po
831- added apt-rpmmessage.patch to change message "Executing RPM(0)"
832  to "Executing RPM(-Uv)"
833
834* Fri Nov 23 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.53-2vl1
835- merged with new upstream version 0.3.19cnc53-2cl
836- update ja.po
837
838* Mon Nov 13 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
839+ apt-0.3.19cnc53-2cl
840- fixed bug in mirror patch
841
842* Mon Nov 13 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
843+ apt-0.3.19cnc53-1cl
844- released version 0.3.19cnc53
845- added kernel-tape to default AllowedDupPkgs
846- cleaned up gen{pkg,src}list (Alexander Bokovoy <ab@avilink.net>)
847- fixed crash bug in genpkglist
848- added patch to fix bug in genbasedir with empty dirs
849  (Stelian Pop <stelian.pop@fr.alcove.com>)
850- configure.in patch to detect rpmdb (Stelian Pop <stelian.pop@fr.alcove.com>)
851-       * Skips correctly over empty package directories
852-       * Adds the --bz2only argument which makes genbasedir
853-       to generate only the .bz2 compressed versions of pkglist
854-       and srclist (space gain...)
855-       * Doesn't change the timestamps on pkglists/srclists if
856-       the contents are not modified (making possible for example
857-       to make several consecutive runs of genbasedir without
858-       having the apt clients download the indexes again and again).
859-       * Some minor cleanups (remove the temporary files in /tmp
860-       at the end of the script etc).
861- (Stelian Pop <stelian.pop@fr.alcove.com>)
862- cleanup patch for gensrclist (Stelian Pop <stelian.pop@fr.alcove.com>)
863- fixed multi-arch pkg handling (Stelian Pop <stelian.pop@fr.alcove.com>)
864- added -K (RPM::Check-Signatures) option to verify rpm sigs
865- updated russian translation (Alexander Bokovoy <ab@avilink.net>)
866- updated i18n (Dmitry Levin <ldv@alt-linux.org>)
867- replaced Apt::GPG::Pubring with Apt::GPG::PubringPath
868  also uses --homedir instead of --keyring in gpg (Ivan Zakharyashev)
869- patch to detect replaced (instead of just removed) packages
870  Dmitry Levin <ldv@alt-linux.org>
871- updated mirrors patch
872   
873* Fri Oct 19 2001 Gustavo Niemeyer <niemeyer@conectiva.com>
874+ apt-0.3.19cnc52-5cl
875- Fixed mirrors infinite loop bug (closes: #4420).
876   
877* Sat Sep  8 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.52-4vl2
878- add apt-genpkglist.patch to add pkgInitialize().
879  FindDir in genpkglist does not work, because there is no pkgInitialize().
880
881* Thu Sep  6 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.52-4vl1
882- Merged with apt-0.3.19cnc52-4cl
883- add apt-rpmpriorities.vine.patch.
884
885* Wed Sep  5 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.52-3vl2
886- FIXME: copy config.h.in from apt-0.3.19cnc50
887         new config.h.in does not work with Vine Linux.
888
889* Sat Aug 11 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.52-3vl1
890- Merged with apt-0.3.19cnc52-3cl
891
892* Thu Aug 09 2001 Gustavo Niemeyer <niemeyer@conectiva.com>
893+ apt-0.3.19cnc52-3cl
894- Updated mirrors patch.
895
896* Tue Aug 07 2001 Gustavo Niemeyer <niemeyer@conectiva.com>
897+ apt-0.3.19cnc52-2cl
898- Added mirrors patch.
899
900* Wed Aug 01 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
901+ apt-0.3.19cnc52-1cl
902- released version 0.3.19cnc52
903- fixed compile problem with gcc 2.96.x
904- fixed bug in file method with authentication enabled
905  (Alexander Bokovoy <ab@avilink.net>)
906- added RPM::RemoveOptions and RPM::UpgradeOptions
907- Included patch to add s390 to arch table.
908
909* Thu Jul 12 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
910+ apt-0.3.19cnc51-1cl
911- released version 0.3.19cnc51
912- included many portability (Solaris) fixes from
913  AUSTIN MURPHY <amurphy@nbcs.rutgers.edu>
914- make packages with same version and diff deps be ignored (closes: 1628)
915
916* Tue Jul  3 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.50-1vl2
917- added Patch200 for playstation2
918
919* Tue Jul  3 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.50-1vl1
920- merged with 0.3.19cnc50-1cl
921
922* Thu Jun 28 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.49-1vl1
923- merged with 0.3.19cnc49-1cl
924- added Patch106 to extend error message length (S[400] -> S[1024]).
925
926* Thu Jun 28 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
927- 0.3.19.cnc.48-1vl2
928- added Patch105 to allow kernel24{,-smp,-BOOT} to include AllowedDupPkgs
929- modified Source1 (apt.conf) for the same reason
930
931* Wed Jun 27 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
932+ apt-0.3.19cnc49-1cl
933- released version 0.3.19cnc49
934- added workaround for kernel installations that require upgrde on mkinitrd
935  (closes: #3889)
936 
937* Wed Jun 27 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.48-1vl1
938- merged with 0.3.19cnc48-1cl
939
940* Mon Jun 25 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
941+ apt-0.3.19cnc48-1cl
942- released version 0.3.19cnc48
943- added RPM::AutoRebuildDB (enabled by default)
944- added fetch status to CDROM method
945- released (closes: #3905)
946
947* Sun Jun 24 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.47-1vl2
948- updated ja.po
949
950* Sun Jun 24 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.47-1vl1
951- merged with 0.3.19cnc47-1cl
952- fixed bug in HoldPkgs
953
954* Fri Jun 22 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
955+ apt-0.3.19cnc47-1cl
956- released version 0.3.19cnc47
957- fixed bug in RPM::HoldPkgs (closes: #3838)
958- removed debug msg
959
960* Tue Jun 19 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
961+ apt-0.3.19cnc46-1cl
962- released version 0.3.19cnc46
963- changed apt.conf to include RPM::AllowDupPkgs, RPM::HoldPkgs (closes: #3433)
964- added Acquire::cdrom::copy, which will fetch all pkgs before installing (closes: #1024)
965- added delay before file fetch retry (closes: #1294)
966- fixed architecture selection (closes: #3606)
967- iterating over Packages instead of Names to figure package count
968
969* Sat Jun 16 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.45-1vl3
970- add kernel-BOOT to AllowDupPkgs list.
971
972* Sat Jun 16 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.45-1vl1
973- merged with 0.3.19cnc45-1cl
974
975* Wed Jun 13 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
976+ apt-0.3.19cnc45-1cl
977- released version 0.3.19cnc45
978- fixed bug with progress update (closes: #2915)
979
980* Mon Jun 11 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
981+ apt-0.3.19cnc44-1cl
982- released version 0.3.19cnc44
983- removed %config from method drivers
984- replaced option RPM::AllowedDupPackages with RPM::AllowedDupPkgs
985- added option RPM::HoldPkgs (closes: #3462)
986
987* Sat Jun 1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.43-2vl2
988- updated ja.po.
989
990* Sat Jun 1 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.43-2vl1
991- merged with 0.3.19cnc43-2cl
992
993* Mon May 21 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.38-2vl7
994- fixed some translations in ja.po.
995
996* Mon May 21 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.38-2vl6
997- fixed sources.list/vendor.list
998
999* Mon May 21 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.38-2vl5
1000- splited vine specific part from gettext patch.
1001
1002* Mon May 21 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.38-2vl4
1003- updated ja.po.
1004
1005* Mon May 21 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.38-2vl3
1006- updated gettext patch.
1007
1008* Mon May 21 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.38-2vl2
1009- vine gettext patch is comes back.
1010
1011* Sun May 20 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.38-2vl1
1012- merge to upstream version 0.3.19cnc38-2cl
1013
1014* Fri May 18 2001 Ademar de Souza Reis Jr. <ademar@conectiva.com.br>
1015+ apt-0.3.19cnc43-2cl
1016- New patch4. Closes: #3523 (apt-cdrom doesn't umount CD)
1017
1018* Fri May 18 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1019+ apt-0.3.19cnc43-1cl
1020- fixed bug with record offsets (shows bad pkg description under rpm4)
1021- fixed bug with apt-get source (closes: #3047)
1022
1023* Thu May 17 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1024+ apt-0.3.19cnc42-1cl
1025- released version 0.3.19cnc42
1026- merged all src patches into main src tree
1027- fixed stupid bug on rpminit header...
1028- extended Acquire::Retries to all file type acquirations (closes: #1617)
1029
1030* Mon May 14 2001 Claudio Matsuoka <claudio@conectiva.com>
1031+ apt-0.3.19cnc41-8cl
1032- added Ivan Zakharyaschev's line break patch (closes: #1616)
1033
1034* Wed May  9 2001 Claudio Matsuoka <claudio@conectiva.com>
1035+ apt-0.3.19cnc41-7cl
1036- adjusting rpmpriorities to reflect changes in conectiva's package base
1037  (glibc-base is marked as essential replacing glibc, elvis-tiny marked
1038  as essential, info and glib not marked as essential, etc.) (closes:
1039  #3115, #3117)
1040
1041* Fri May  4 2001 Claudio Matsuoka <claudio@conectiva.com>
1042+ apt-0.3.19cnc41-6cl
1043- spec cleanup: removing static components from buildrequires
1044
1045* Fri May  4 2001 Claudio Matsuoka <claudio@conectiva.com>
1046+ apt-0.3.19cnc41-5cl
1047- removing static link kludge added in 3cl, a better solution is in the works.
1048
1049* Fri Apr 27 2001 Gustavo Niemeyer <niemeyer@conectiva.com>
1050+ apt-0.3.19cnc41-4cl
1051- Fixed NextRecord() and GetRecord() (Closes: #2915).
1052
1053* Thu Apr 26 2001 Claudio Matsuoka <claudio@conectiva.com>
1054+ apt-0.3.19cnc41-3cl
1055- statically linking rpmlib and friends to avoid lossage with glibc
1056  upgrade from conectiva 6.0 to snapshot
1057
1058* Sun Apr 15 2001 Gustavo Niemeyer <niemeyer@conectiva.com>
1059+ apt-0.3.19cnc41-2cl
1060- Added patch for ia64.
1061
1062* Thu Mar 29 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1063+ apt-0.3.19cnc41-1cl
1064- released version 0.3.19cnc41
1065- auto rebuild rpmdb when rpm is upgraded
1066
1067* Tue Mar 27 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1068+ apt-0.3.19cnc40-1cl
1069- released version 0.3.19cnc40
1070- custom OrderInstall() (ignores all deb specific ordering/debconf stuff)
1071
1072* Fri Mar 23 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1073+ apt-0.3.19cnc39-1cl
1074- released version 0.3.19cnc39
1075- fixes problem with different rpmdb versions
1076
1077* Thu Mar 22 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1078+ apt-0.3.19cnc38-2cl
1079- autotester workaround...
1080
1081* Thu Mar 22 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1082+ apt-0.3.19cnc38-1cl
1083- released version 0.3.19cnc38
1084- fixed epoch display on apt-cache
1085- added user specified public keyring option for gpg
1086- added italian po file
1087- fixed bug on dependency resolution for virtual packages with mult.providers
1088
1089* Tue Feb 20 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1090+ apt-0.3.19cnc37-1cl
1091- released version 0.3.19cnc37
1092- noreplace put back for sources.list (closes: #1548)
1093- recompiled (closes: #1559)
1094- fixed dist-upgrade bogus msg (closes: #1254)
1095- fixed no_proxy handling
1096
1097* Sat Feb 17 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1098+ apt-0.3.19cnc36-1cl
1099- released version 0.3.19cnc36
1100- fixed problem with arch selection (I swear it works now!)
1101- fixed bug with rpm4
1102
1103* Wed Feb 14 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1104- released version 0.3.19cnc35
1105- fixed problem with case sensitiveness
1106- fixed rpmpriority interpretation
1107
1108* Wed Feb 14 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1109- released version 0.3.19cnc34
1110- rpm4 fix?
1111
1112* Wed Jan 24 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1113- released version 0.3.19cnc33
1114- added new gui hookz
1115
1116* Mon Jan 22 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
1117- 0.3.19.cnc.27-6vl19
1118- Oops ring ftp dir was /pub/linux/..., not /pub/Linux/ :-(
1119- fixed Source100 (rpm-source should be rpm-src)
1120
1121* Sat Jan 20 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1122- released version 0.3.19cnc32
1123- fixed arch selection code
1124- fixed priority and section info in internal package structs
1125
1126* Fri Jan 19 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
1127- 0.3.19.cnc.27-6vl18
1128- auto-generate sources.list using Source100 (thanks shom-san)
1129
1130* Fri Jan 19 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
1131- 0.3.19.cnc.27-6vl17
1132- add VinePlus/2.1 entries
1133
1134* Fri Jan 19 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
1135- 0.3.19.cnc.27-6vl16 (vl15 preserved for Vine-2.1.x ?)
1136- install arch-specific sources.list
1137
1138* Tue Jan 16 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1139- unbroke potfiles
1140
1141* Mon Jan 15 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1142- released version 0.3.19cnc31
1143
1144* Mon Jan 15 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1145- released version 0.3.19cnc30
1146
1147* Sat Jan 13 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1148- released version 0.3.19cnc29
1149
1150* Thu Jan 04 2001 Alfredo K. Kojima <kojima@conectiva.com.br>
1151- released version 0.3.19cnc28
1152- added gnupg dependency
1153
1154* Sun Dec 17 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl14
1155- remove noreplace tag from sources.list
1156
1157* Sat Dec 16 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl13
1158- update gettext patch
1159- update ja.po
1160
1161* Wed Dec 13 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl12
1162- update gettext patch
1163- update ja.po
1164
1165* Tue Dec 12 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl11
1166- update gettext patch  from Debianguru
1167- update ja.po
1168
1169* Tue Dec 12 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl10
1170- update gettext patch
1171- update ja.po
1172
1173* Mon Dec 11 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl9
1174- update ja.po (almost translated)
1175
1176* Mon Dec 11 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl8
1177- update ja.po
1178
1179* Mon Dec 11 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl7
1180- update gettext patch
1181- update ja.po
1182
1183* Mon Dec 11 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl6
1184- add gettext patch
1185- update ja.po
1186
1187* Mon Dec 11 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl3
1188- update ja.po
1189
1190* Sat Dec 09 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl2
1191- rebuild on gcc-2.95.3
1192
1193* Sat Dec 09 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-6vl1
1194- updated to 0.3.19cnc27-6cl
1195
1196* Thu Dec 07 2000 Andreas Hasenack <andreas@conectiva.com>
1197- damn! Wrong URL in sources.list, atualizacoes.conectiva.com
1198  doesn't exist, of course...
1199
1200* Thu Dec 07 2000 Andreas Hasenack <andreas@conectiva.com>
1201- updated sources.list with new mirrors and new download tree
1202- removed (noreplace) for the sources.list file for this
1203  upgrade. It will be easier for the user. The (noreplace)
1204  should be back in place after this update as we expect no
1205  further big modifications for that file, only new mirrors.
1206
1207* Wed Dec 06 2000 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.19.cnc.27-0vl1
1208- updated to 0.3.19.cnc.27
1209
1210* Wed Dec 06 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1211- fixed prob in vendors.list
1212
1213* Tue Dec 05 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1214- released version 0.3.19cnc27
1215
1216* Wed Nov 08 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1217- released version 0.3.19cnc26
1218
1219* Tue Nov 07 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
1220- added ad-hoc patch for gcc-2.95.x
1221
1222* Mon Nov 06 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1223- released version 0.3.19cnc25
1224
1225* Sun Nov  5 2000 Kazuhisa TAKEI <takei@vinelinux.org>
1226- modify for Vine Linux
1227
1228* Thu Nov 02 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1229- released version 0.3.19cnc24
1230
1231* Thu Nov 02 2000 Rud<E1> Moura <ruda@conectiva.com>
1232- updated source.list (again)
1233
1234* Thu Nov 02 2000 Rud<E1> Moura <ruda@conectiva.com>
1235- updated source.list
1236
1237* Wed Nov 01 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1238- released version 0.3.19cnc23
1239- added cache directories for gen{pkg,src}list
1240- pt_BR manpages
1241
1242* Tue Oct 31 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1243- released version 0.3.19cnc22
1244- Requires -> PreReq in apt-devel
1245
1246* Mon Oct 30 2000 Alfredo Kojima <kojima@conectiva.com>
1247- collapsed libapt-pkg-devel and -doc to apt-devel
1248
1249* Mon Oct 30 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1250- released version 0.3.19cnc21
1251
1252* Sun Oct 29 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1253- released version 0.3.19cnc20
1254
1255* Sun Oct 29 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1256- released version 0.3.19cnc19
1257- added gensrclist
1258- support for apt-get source
1259
1260* Fri Oct 27 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1261- released version 0.3.19cnc18
1262
1263* Thu Oct 26 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1264- released version 0.3.19cnc17
1265- new manpages
1266
1267* Wed Oct 25 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1268- released version 0.3.19cnc16
1269
1270* Sun Oct 22 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1271- released version 0.3.19cnc15
1272
1273* Sat Oct 21 2000 Alfredo K. Kojima <kojima@conectiva.com.br>
1274- released version 0.3.19cnc14
1275
1276* Thu Oct 19 2000 Claudio Matsuoka <claudio@conectiva.com>
1277- new upstream release: 0.3.9cnc13
1278
1279* Tue Oct 17 2000 Eliphas Levy Theodoro <eliphas@conectiva.com>
1280- added rpmpriorities to filelist and install
1281
1282* Tue Oct 17 2000 Claudio Matsuoka <claudio@conectiva.com>
1283- updated to 0.3.19cnc12
1284- fresh CVS snapshot including: support to Acquire::ComprExtension,
1285  debug messages removed, fixed apt-cdrom, RPM DB path, rpmlib call
1286  in pkgRpmLock::Close(), package priority kludge removed, i18n
1287  improvements, and genbasedir/genpkglist updates.
1288- handling language setting in genpkglist to make aptitude happy
1289
1290* Wed Oct 11 2000 Alfredo K. Kojima <kojima@conectiva.com>
1291- released version 0.3.19cnc11
1292- fixed problem with shard lib symlinks
1293
1294* Tue Oct 10 2000 Alfredo K. Kojima <kojima@conectiva.com>
1295- released version 0.3.19cnc10
1296
1297* Mon Oct  2 2000 Claudio Matsuoka <claudio@conectiva.com>
1298- fixed brown paper bag bug with method permissions
1299- added parameter --sign to genbasedir
1300- added html/text doc files
1301
1302* Sat Sep 30 2000 Claudio Matsuoka <claudio@conectiva.com>
1303- bumped to 0.3.19cnc9
1304- added vendors.list
1305- added gpg method
1306- fixed minor stuff to make Aptitude work
1307- added missing manpages
1308- fixed shared libs
1309- split in apt, libapt-pkg, libapt-pkg-devel, libapt-pkg-doc
1310- rewrote genbasedir in shell script (original was in TCL)
1311- misc cosmetic changes
1312
1313* Tue Sep 26 2000 Alfredo K. Kojima <kojima@conectiva.com>
1314- released version 0.3.19cnc8
1315
1316* Wed Sep 20 2000 Alfredo K. Kojima <kojima@conectiva.com>
1317- released version 0.3.19cnc7
1318
1319* Mon Sep 18 2000 Alfredo K. Kojima <kojima@conectiva.com>
1320- released version 0.3.19cnc6
1321
1322* Sat Sep 16 2000 Alfredo K. Kojima <kojima@conectiva.com>
1323- released version 0.3.19cnc5
1324
1325* Fri Sep 15 2000 Alfredo K. Kojima <kojima@conectiva.com>
1326- released version 0.3.19cnc4
1327
1328* Mon Sep 12 2000 Alfredo K. Kojima <kojima@conectiva.com>
1329- released version 0.3.19cnc3
1330
1331* Mon Sep 5 2000 Alfredo K. Kojima <kojima@conectiva.com>
1332- renamed package to apt, with version 0.3.19cncV
1333
1334* Mon Sep 5 2000 Alfredo K. Kojima <kojima@conectiva.com>
1335- 0.10
1336- added genpkglist and rapt-config
1337- program names changed back to apt-*
1338
1339* Mon Sep 4 2000 Alfredo K. Kojima <kojima@conectiva.com>
1340- 0.9
1341
1342* Mon Sep 4 2000 Alfredo K. Kojima <kojima@conectiva.com>
1343- 0.8
1344
1345* Mon Sep 4 2000 Alfredo K. Kojima <kojima@conectiva.com>
1346- 0.7
1347
1348* Fri Sep 1 2000 Alfredo K. Kojima <kojima@conectiva.com>
1349- fixed typo in sources.list
1350
1351* Tue Aug 31 2000 Alfredo K. Kojima <kojima@conectiva.com>
1352- version 0.6
1353
1354* Tue Aug 31 2000 Alfredo K. Kojima <kojima@conectiva.com>
1355- version 0.5
1356
1357* Tue Aug 31 2000 Alfredo K. Kojima <kojima@conectiva.com>
1358- version 0.4
1359
1360* Wed Aug 30 2000 Alfredo K. Kojima <kojima@conectiva.com>
1361- version 0.3
1362
1363* Thu Aug 28 2000 Alfredo K. Kojima <kojima@conectiva.com>
1364- second try. new release with direct hdlist handling
1365
1366* Thu Aug 10 2000 Alfredo K. Kojima <kojima@conectiva.com>
1367- initial package creation. Yeah, it's totally broken for sure.
1368
Note: See TracBrowser for help on using the repository browser.