[anaconda] - Set seen for lang from option & use constant for default (mkolman) - Hook the Geolocation module t

Brian C. Lane bcl at fedoraproject.org
Tue Apr 23 01:03:52 UTC 2013


commit fe3163d1c167ba58d86201696a4418818377d4df
Author: Brian C. Lane <bcl at redhat.com>
Date:   Mon Apr 22 18:03:42 2013 -0700

    - Set seen for lang from option & use constant for default (mkolman)
    - Hook the Geolocation module to Anaconda (mkolman)
    - Add geolocation module (mkolman)
    - Add logging to exception handling (vpodzime)
    - Run exception handling in the main thread also in TUI (vpodzime)
    - Update network ksdata with cmdline options (#893784) (rvykydal)
    - Return network devices actually activated (instead of just active) (#949002)
      (rvykydal)
    - Don't traceback if we can't find PermHwAddr when looking for slaves (#949341)
      (rvykydal)
    - Add support for iSCSI iface binding. (rvykydal)
    - Fix a traceback when handling node login authentication. (clumens)
    - Add a requirement on python-IPy now. (clumens)
    - Display individual buttons on the filter UI instead of a combo. (clumens)
    - Hook up authentication for iSCSI discovery and node login. (clumens)
    - When the clear button is clicked on the filter spoke, clear out the fields.
      (clumens)
    - Remove the extra "Target LUN" search option. (clumens)
    - If all iSCSI nodes have been logged into, leave the dialog. (clumens)
    - Populate the port combo on the filter spoke's search page. (clumens)
    - Hook up filtering for iSCSI devices. (clumens)
    - Add initial iSCSI support to the advanced storage UI. (clumens)
    - Add a generic function to FilterPage for setting up a GtkComboBoxText.
      (clumens)
    - self.disks -> self.pages in filter UI refresh method. (clumens)
    - Add a button to bring up the Add Additional dialogs. (clumens)
    - Remove pixmaps no longer needed by newui. (clumens)
    - Add a checkmark on a DiskOverview when it is selected. (clumens)
    - Make a couple UI modifications to the resize slider. (clumens)
    - Make several changes to how addons are displayed (#873498). (clumens)
    - Allow clicking on environment and addon text to toggle them (#928010).
      (clumens)
    - Fix scrolling problems on the environment side of software selection
      (#928008). (clumens)
    - Handle quit messages on the text progress UI hub (#895756). (clumens)
    - If there's an error while in text mode, display it. (clumens)
    - Force sizes on the network toolbar buttons (#951580). (clumens)
    - Disable the "Closest mirror" option if there's no fastestmirror plugin
      (#876135). (clumens)
    - Move text UI summary hub setup into the setup method (#927315, #950956).
      (clumens)
    - Bring the text storage spoke a little more in line with the graphical one.
      (clumens)
    - Make a home directory for the user by default (#950792). (clumens)
    - Add some padding under the ransom notes on the progress hub. (clumens)
    - Remove a lot of ancient crud from the installclasses. (clumens)
    - Set the default fs type on RHEL (#951088). (clumens)
    - Add a Spoke.changed attribute. (clumens)
    - Display device names on MountpointSelectors (#888872). (clumens)
    - Add signal handlers for controlling password entry visibility. (clumens)
    - Ransom notes can be either PNGs or JPGs. (clumens)
    - dracut/parse-kickstart: handle network --mtu (wwoods)
    - Exclude a couple more password variables from dumps (bcl)
    - Enlightbox dialogs in the custom spoke (vpodzime)
    - Create and use GtkWindowGroup for our windows (vpodzime)
    - We can import Gtk globally now (vpodzime)
    - Handle both types of data we can get from libxklavier (#950921) (vpodzime)

 .gitignore    |    1 +
 anaconda.spec |   64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 sources       |    2 +-
 3 files changed, 64 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index fdc3f4b..e806d25 100644
--- a/.gitignore
+++ b/.gitignore
@@ -73,3 +73,4 @@ anaconda-15.2.tar.bz2
 /anaconda-19.18.tar.bz2
 /anaconda-19.19.tar.bz2
 /anaconda-19.20.tar.bz2
+/anaconda-19.21.tar.bz2
diff --git a/anaconda.spec b/anaconda.spec
index 33c7b00..0d1afea 100644
--- a/anaconda.spec
+++ b/anaconda.spec
@@ -2,7 +2,7 @@
 
 Summary: Graphical system installer
 Name:    anaconda
-Version: 19.20
+Version: 19.21
 Release: 1%{?dist}
 License: GPLv2+
 Group:   Applications/System
@@ -29,7 +29,7 @@ Source0: %{name}-%{version}.tar.bz2
 %define nmver 1:0.7.1-3.git20090414
 %define dbusver 1.2.3
 %define yumutilsver 1.1.11-3
-%define mehver 0.22-1
+%define mehver 0.23-1
 %define sckeyboardver 1.3.1
 %define firewalldver 0.2.9-1
 %define pythonurlgrabberver 3.9.1-5
@@ -92,6 +92,7 @@ Requires: util-linux >= %{utillinuxver}
 Requires: dbus-python
 Requires: python-pwquality
 Requires: python-bugzilla
+Requires: python-IPy
 Requires: python-nss
 Requires: tigervnc-server-minimal
 Requires: pytz
@@ -245,6 +246,65 @@ update-desktop-database &> /dev/null || :
 %{_prefix}/lib/dracut/modules.d/80%{name}/*
 
 %changelog
+* Mon Apr 22 2013 Brian C. Lane <bcl at redhat.com> - 19.21-1
+- Set seen for lang from option & use constant for default (mkolman)
+- Hook the Geolocation module to Anaconda (mkolman)
+- Add geolocation module (mkolman)
+- Add logging to exception handling (vpodzime)
+- Run exception handling in the main thread also in TUI (vpodzime)
+- Update network ksdata with cmdline options (#893784) (rvykydal)
+- Return network devices actually activated (instead of just active) (#949002)
+  (rvykydal)
+- Don't traceback if we can't find PermHwAddr when looking for slaves (#949341)
+  (rvykydal)
+- Add support for iSCSI iface binding. (rvykydal)
+- Fix a traceback when handling node login authentication. (clumens)
+- Add a requirement on python-IPy now. (clumens)
+- Display individual buttons on the filter UI instead of a combo. (clumens)
+- Hook up authentication for iSCSI discovery and node login. (clumens)
+- When the clear button is clicked on the filter spoke, clear out the fields.
+  (clumens)
+- Remove the extra "Target LUN" search option. (clumens)
+- If all iSCSI nodes have been logged into, leave the dialog. (clumens)
+- Populate the port combo on the filter spoke's search page. (clumens)
+- Hook up filtering for iSCSI devices. (clumens)
+- Add initial iSCSI support to the advanced storage UI. (clumens)
+- Add a generic function to FilterPage for setting up a GtkComboBoxText.
+  (clumens)
+- self.disks -> self.pages in filter UI refresh method. (clumens)
+- Add a button to bring up the Add Additional dialogs. (clumens)
+- Remove pixmaps no longer needed by newui. (clumens)
+- Add a checkmark on a DiskOverview when it is selected. (clumens)
+- Make a couple UI modifications to the resize slider. (clumens)
+- Make several changes to how addons are displayed (#873498). (clumens)
+- Allow clicking on environment and addon text to toggle them (#928010).
+  (clumens)
+- Fix scrolling problems on the environment side of software selection
+  (#928008). (clumens)
+- Handle quit messages on the text progress UI hub (#895756). (clumens)
+- If there's an error while in text mode, display it. (clumens)
+- Force sizes on the network toolbar buttons (#951580). (clumens)
+- Disable the "Closest mirror" option if there's no fastestmirror plugin
+  (#876135). (clumens)
+- Move text UI summary hub setup into the setup method (#927315, #950956).
+  (clumens)
+- Bring the text storage spoke a little more in line with the graphical one.
+  (clumens)
+- Make a home directory for the user by default (#950792). (clumens)
+- Add some padding under the ransom notes on the progress hub. (clumens)
+- Remove a lot of ancient crud from the installclasses. (clumens)
+- Set the default fs type on RHEL (#951088). (clumens)
+- Add a Spoke.changed attribute. (clumens)
+- Display device names on MountpointSelectors (#888872). (clumens)
+- Add signal handlers for controlling password entry visibility. (clumens)
+- Ransom notes can be either PNGs or JPGs. (clumens)
+- dracut/parse-kickstart: handle network --mtu (wwoods)
+- Exclude a couple more password variables from dumps (bcl)
+- Enlightbox dialogs in the custom spoke (vpodzime)
+- Create and use GtkWindowGroup for our windows (vpodzime)
+- We can import Gtk globally now (vpodzime)
+- Handle both types of data we can get from libxklavier (#950921) (vpodzime)
+
 * Tue Apr 16 2013 Brian C. Lane <bcl at redhat.com> - 19.20-1
 - Fix two more syntax errors in the custom spoke. (#952662) (dlehman)
 
diff --git a/sources b/sources
index 37587ce..c928fb1 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7c4badf726d30b7990de88708c067b1a  anaconda-19.20.tar.bz2
+5c63a384e5a48663d24c2331573f7b32  anaconda-19.21.tar.bz2


More information about the scm-commits mailing list