rpms/anaconda/devel .cvsignore, 1.691, 1.692 anaconda.spec, 1.841, 1.842 sources, 1.825, 1.826

David Cantrell dcantrel at fedoraproject.org
Sat Jan 9 00:21:03 UTC 2010


Author: dcantrel

Update of /cvs/pkgs/rpms/anaconda/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv11798

Modified Files:
	.cvsignore anaconda.spec sources 
Log Message:
* Fri Jan 08 2010 David Cantrell <dcantrell at redhat.com> - 13.17-1
- fstat->st_size is a long unsigned int, not a long long unsigned int.
  (dcantrell)
- Use libarchive and rpm pkg-config files during build. (dcantrell)
- Take ignoredDisks into account on the filter screen as well. (clumens)
- Don't wait on the filtertype screen on kickstart installs. (clumens)
- Our overridden AutoPart class must be mentioned in commandMap. (clumens)
- Reword filter UI introductory text to be less confusing. (clumens)
- Install the driver discs according to what was loaded in stage1 (msivak)
- Use the updated DriverDisc code in loader (msivak)
- Backport the RHEL5 DriverDisc functionality (msivak)
- Include depmod in stage1 and set it to prefer the DD directory (msivak)
- Add a function to get paths to loaded modules (msivak)
- Add rpm extraction routines (use librpm and libarchive) (msivak)
- Add DriverDisc v3 documentation (msivak)
- When displaying the filter UI, check devices that are in exclusiveDisks.
  (clumens)
- get rid of global import of anaconda_log (akozumpl)
- introduce loglevel flag and use it in yum's tty3 logging (akozumpl)
- Remove LoggerClass but maintain loglevel= functionality (akozumpl)
- Do not duplicate exclusiveDisks when going back to filtering UI. (rvykydal)
- Fixes problems in the manual network configuration screen in loader with
  IPv6. (akozumpl)
- Bring back missing IPv6 pieces that were lost in time. (dcantrell)
- Add configuration option to enable/disable IPv6 support. (dcantrell)
- Ask about LVM inconsistencies only in storageinit step. (rvykydal)
- Ask about disk initialization only in storageinit step. (rvykydal)
- Fix partition request sorting based on number of allowed disks. (#540869)
  (dlehman)



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/anaconda/devel/.cvsignore,v
retrieving revision 1.691
retrieving revision 1.692
diff -u -p -r1.691 -r1.692
--- .cvsignore	6 Jan 2010 22:40:41 -0000	1.691
+++ .cvsignore	9 Jan 2010 00:21:02 -0000	1.692
@@ -1,5 +1 @@
-anaconda-13.12.tar.bz2
-anaconda-13.13.tar.bz2
-anaconda-13.14.tar.bz2
-anaconda-13.15.tar.bz2
-anaconda-13.16.tar.bz2
+anaconda-13.17.tar.bz2


Index: anaconda.spec
===================================================================
RCS file: /cvs/pkgs/rpms/anaconda/devel/anaconda.spec,v
retrieving revision 1.841
retrieving revision 1.842
diff -u -p -r1.841 -r1.842
--- anaconda.spec	6 Jan 2010 22:40:41 -0000	1.841
+++ anaconda.spec	9 Jan 2010 00:21:02 -0000	1.842
@@ -3,7 +3,7 @@
 
 Summary: Graphical system installer
 Name:    anaconda
-Version: 13.16
+Version: 13.17
 Release: 1%{?dist}
 License: GPLv2+
 Group:   Applications/System
@@ -53,6 +53,7 @@ BuildRequires: gettext >= %{gettextver}
 BuildRequires: gtk2-devel
 BuildRequires: intltool >= %{intltoolver}
 BuildRequires: isomd5sum-devel
+BuildRequires: libarchive-devel
 BuildRequires: libX11-devel
 BuildRequires: libXt-devel
 BuildRequires: libXxf86misc-devel
@@ -67,6 +68,7 @@ BuildRequires: pango-devel
 BuildRequires: pykickstart >= %{pykickstartver}
 BuildRequires: python-devel
 BuildRequires: python-urlgrabber
+BuildRequires: rpm-devel
 BuildRequires: rpm-python >= %{rpmpythonver}
 BuildRequires: slang-devel >= %{slangver}
 BuildRequires: xmlto
@@ -101,6 +103,7 @@ Requires: device-mapper-libs >= %{dmver}
 Requires: dosfstools
 Requires: e2fsprogs >= %{e2fsver}
 Requires: gzip
+Requires: libarchive
 %ifarch %{ix86} x86_64 ia64
 Requires: dmidecode
 %endif
@@ -213,6 +216,36 @@ update-desktop-database &> /dev/null || 
 %endif
 
 %changelog
+* Fri Jan 08 2010 David Cantrell <dcantrell at redhat.com> - 13.17-1
+- fstat->st_size is a long unsigned int, not a long long unsigned int.
+  (dcantrell)
+- Use libarchive and rpm pkg-config files during build. (dcantrell)
+- Take ignoredDisks into account on the filter screen as well. (clumens)
+- Don't wait on the filtertype screen on kickstart installs. (clumens)
+- Our overridden AutoPart class must be mentioned in commandMap. (clumens)
+- Reword filter UI introductory text to be less confusing. (clumens)
+- Install the driver discs according to what was loaded in stage1 (msivak)
+- Use the updated DriverDisc code in loader (msivak)
+- Backport the RHEL5 DriverDisc functionality (msivak)
+- Include depmod in stage1 and set it to prefer the DD directory (msivak)
+- Add a function to get paths to loaded modules (msivak)
+- Add rpm extraction routines (use librpm and libarchive) (msivak)
+- Add DriverDisc v3 documentation (msivak)
+- When displaying the filter UI, check devices that are in exclusiveDisks.
+  (clumens)
+- get rid of global import of anaconda_log (akozumpl)
+- introduce loglevel flag and use it in yum's tty3 logging (akozumpl)
+- Remove LoggerClass but maintain loglevel= functionality (akozumpl)
+- Do not duplicate exclusiveDisks when going back to filtering UI. (rvykydal)
+- Fixes problems in the manual network configuration screen in loader with
+  IPv6. (akozumpl)
+- Bring back missing IPv6 pieces that were lost in time. (dcantrell)
+- Add configuration option to enable/disable IPv6 support. (dcantrell)
+- Ask about LVM inconsistencies only in storageinit step. (rvykydal)
+- Ask about disk initialization only in storageinit step. (rvykydal)
+- Fix partition request sorting based on number of allowed disks. (#540869)
+  (dlehman)
+
 * Wed Jan 06 2010 Chris Lumens <clumens at redhat.com> - 13.16-1
 - Add libblkid as a BuildRequires. (clumens)
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/anaconda/devel/sources,v
retrieving revision 1.825
retrieving revision 1.826
diff -u -p -r1.825 -r1.826
--- sources	6 Jan 2010 22:40:41 -0000	1.825
+++ sources	9 Jan 2010 00:21:03 -0000	1.826
@@ -1 +1 @@
-ff98c519cd5e2bc9302e25e28b62cd3a  anaconda-13.16.tar.bz2
+d1e694572c1b345fa6cacba3ed7f5e67  anaconda-13.17.tar.bz2




More information about the fedora-extras-commits mailing list