3a7d6c
%global require_ibus_version 1.3.99
3a7d6c
%global require_libhangul_version 0.1.0
3a7d6c
3a7d6c
Name:       ibus-hangul
3a7d6c
Version:    1.5.1
881467
Release:    6%{?dist}
3a7d6c
Summary:    The Hangul engine for IBus input platform
3a7d6c
License:    GPLv2+
3a7d6c
Group:      System Environment/Libraries
3a7d6c
URL:        https://github.com/libhangul/ibus-hangul
3a7d6c
Source0:    https://github.com/libhangul/ibus-hangul/releases/download/%{version}/%{name}-%{version}.tar.gz
3a7d6c
3a7d6c
# not upstreamed patches
3a7d6c
Patch1:     ibus-hangul-setup-abspath.patch
31ba5c
# patch from upstream
31ba5c
Patch2:     ibus-hangul-fixes-reset-signal.patch
3a7d6c
3a7d6c
BuildRequires:  gettext-devel, automake, libtool
3a7d6c
BuildRequires:  intltool
3a7d6c
BuildRequires:  libtool
3a7d6c
BuildRequires:  libhangul-devel >= %{require_libhangul_version}
3a7d6c
BuildRequires:  pkgconfig
3a7d6c
BuildRequires:  ibus-devel >= %{require_ibus_version}
3a7d6c
BuildRequires:  desktop-file-utils
3a7d6c
BuildRequires:  python3-devel
3a7d6c
BuildRequires:  gnome-common
3a7d6c
3a7d6c
Requires:   ibus >= %{require_ibus_version}
3a7d6c
Requires:   libhangul >= %{require_libhangul_version}
3a7d6c
Requires:   python3-gobject
3a7d6c
Requires:   %{__python3}
3a7d6c
3a7d6c
%description
3a7d6c
The Hangul engine for IBus platform. It provides Korean input method from
3a7d6c
libhangul.
3a7d6c
3a7d6c
%prep
3a7d6c
%setup -q
3a7d6c
%patch1 -p1 -b .setup-abspath
31ba5c
%patch2 -p1 -b .reset
3a7d6c
3a7d6c
# autopoint -f
3a7d6c
# AUTOPOINT='intltoolize --automake --copy' autoreconf -fi
3a7d6c
3a7d6c
%build
3a7d6c
./autogen.sh
3a7d6c
%configure --disable-static --with-python=python3 %{?_with_hotkeys}
3a7d6c
# make -C po update-gmo
3a7d6c
make %{?_smp_mflags}
3a7d6c
3a7d6c
%install
3a7d6c
make DESTDIR=${RPM_BUILD_ROOT} install INSTALL="install -p"
3a7d6c
3a7d6c
# Register as an AppStream component to be visible in the software center
3a7d6c
#
3a7d6c
# NOTE: It would be *awesome* if this file was maintained by the upstream
3a7d6c
# project, translated and installed into the right place during `make install`.
3a7d6c
#
3a7d6c
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
3a7d6c
#
3a7d6c
mkdir -p $RPM_BUILD_ROOT%{_datadir}/appdata
3a7d6c
cat > $RPM_BUILD_ROOT%{_datadir}/appdata/hangul.appdata.xml <
3a7d6c
3a7d6c
<component type="inputmethod">
3a7d6c
  <id>hangul.xml</id>
3a7d6c
  <metadata_license>CC0-1.0</metadata_license>
3a7d6c
  <name>Hangul</name>
3a7d6c
  <summary>Korean input method</summary>
3a7d6c
  <description>
3a7d6c
    

3a7d6c
      The Hangul input method is designed for entering Korean text.
3a7d6c
    

3a7d6c
    

3a7d6c
      Input methods are typing systems allowing users to input complex languages.
3a7d6c
      They are necessary because these contain too many characters to simply be laid
3a7d6c
      out on a traditional keyboard.
3a7d6c
    

3a7d6c
  </description>
3a7d6c
  <url type="homepage">http://code.google.com/p/ibus/</url>
3a7d6c
  <compulsory_for_desktop>GNOME</compulsory_for_desktop>
3a7d6c
  <project_group>GNOME</project_group>
3a7d6c
  <developer_name>The GNOME Project</developer_name>
3a7d6c
  <url type="bugtracker">https://code.google.com/p/ibus/issues/list</url>
3a7d6c
  <url type="donation">http://www.gnome.org/friends/</url>
3a7d6c
  <url type="help">https://code.google.com/p/ibus/wiki/FAQ</url>
3a7d6c
  <update_contact></update_contact>
3a7d6c
</component>
3a7d6c
EOF
3a7d6c
3a7d6c
rm -f ${RPM_BUILD_ROOT}%{_bindir}/ibus-setup-hangul
3a7d6c
sed -i 's!^Exec=ibus-setup-hangul!Exec=%{_libexecdir}/ibus-setup-hangul!' ${RPM_BUILD_ROOT}%{_datadir}/applications/ibus-setup-hangul.desktop
3a7d6c
3a7d6c
desktop-file-validate ${RPM_BUILD_ROOT}%{_datadir}/applications/ibus-setup-hangul.desktop
3a7d6c
3a7d6c
%find_lang %{name}
3a7d6c
3a7d6c
%post
3a7d6c
[ -x %{_bindir}/ibus ] && \
3a7d6c
  %{_bindir}/ibus write-cache --system &>/dev/null || :
3a7d6c
3a7d6c
%postun
3a7d6c
[ -x %{_bindir}/ibus ] && \
3a7d6c
  %{_bindir}/ibus write-cache --system &>/dev/null || :
3a7d6c
3a7d6c
%files -f %{name}.lang
3a7d6c
%doc AUTHORS COPYING README
3a7d6c
%{_libexecdir}/ibus-engine-hangul
3a7d6c
%{_libexecdir}/ibus-setup-hangul
3a7d6c
%{_datadir}/appdata/*.appdata.xml
3a7d6c
%{_datadir}/glib-2.0/schemas/*.gschema.xml
3a7d6c
%{_datadir}/ibus-hangul
3a7d6c
%{_datadir}/ibus/component/*
3a7d6c
%{_datadir}/applications/ibus-setup-hangul.desktop
3a7d6c
%{_datadir}/icons/hicolor/*/apps/*
3a7d6c
3a7d6c
%changelog
881467
* Mon Jun  8 2020 Peng Wu <pwu@redhat.com> - 1.5.1-6
881467
- Rebuild for RHEL 8.3
881467
- Resolves: #1661079
881467
31ba5c
* Tue Dec  3 2019 Peng Wu <pwu@redhat.com> - 1.5.1-5
31ba5c
- Fixes reset signal
31ba5c
- Add ibus-hangul-fixes-reset-signal.patch
31ba5c
- Resolves: #1661079
31ba5c
3a7d6c
* Thu Sep 20 2018 Tomas Orsava <torsava@redhat.com> - 1.5.1-4
3a7d6c
- Require the Python interpreter directly instead of using the package name
3a7d6c
- Related: rhbz#1619153
3a7d6c
3a7d6c
* Mon Aug 13 2018 Troy Dawson <tdawson@redhat.com> - 1.5.1-3
3a7d6c
- Add BuildRequest python3-devel
3a7d6c
3a7d6c
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 1.5.1-2
3a7d6c
- Rebuild with fixed binutils
3a7d6c
3a7d6c
* Mon Jul 30 2018 Peng Wu <pwu@redhat.com> - 1.5.1-1
3a7d6c
- Update to 1.5.1
3a7d6c
3a7d6c
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-14
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
3a7d6c
3a7d6c
* Tue Jul  3 2018 Peng Wu <pwu@redhat.com> - 1.5.0-13
3a7d6c
- Resolves: RHBZ#1296121
3a7d6c
3a7d6c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-12
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3a7d6c
3a7d6c
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.5.0-11
3a7d6c
- Remove obsolete scriptlets
3a7d6c
3a7d6c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-10
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3a7d6c
3a7d6c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-9
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3a7d6c
3a7d6c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-8
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
3a7d6c
3a7d6c
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.5.0-7
3a7d6c
- Rebuild for Python 3.6
3a7d6c
3a7d6c
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-6
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3a7d6c
3a7d6c
* Thu Jul  2 2015 Daiki Ueno <dueno@redhat.com> - 1.5.0-5
3a7d6c
- require python3-gobject instead of pygobject3, to avoid python2
3a7d6c
  dependency.  Suggested by Miro Hrončok.
3a7d6c
3a7d6c
* Thu Jul 02 2015 Petr Viktorin <pviktori@redhat.com> - 1.5.0-4
3a7d6c
- Use autogen in RPM build
3a7d6c
- Use Python 3 for setup scripts
3a7d6c
3a7d6c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-3
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
3a7d6c
3a7d6c
* Wed Mar 25 2015 Richard Hughes <rhughes@redhat.com> - 1.5.0-2
3a7d6c
- Register as an AppStream component.
3a7d6c
3a7d6c
* Wed Nov 26 2014 Daiki Ueno <dueno@redhat.com> - 1.5.0-1
3a7d6c
- Update version to 1.5.0
3a7d6c
- Drop upstreamed patches: dconf-prefix.patch and setup-ui.patch
3a7d6c
3a7d6c
* Tue Sep 16 2014 Daiki Ueno <dueno@redhat.com> - 1.4.2-10
3a7d6c
- Add ibus-hangul-setup-ui.patch
3a7d6c
- Fix bug 1115411 - [abrt] ibus-hangul: main.py:43:__init__:Error:
3a7d6c
  gtk-builder-error-quark: Invalid property: GtkNotebook.tab_hborder
3a7d6c
  on line 21 (11)
3a7d6c
3a7d6c
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-9
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
3a7d6c
3a7d6c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-8
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3a7d6c
3a7d6c
* Mon Oct 28 2013 Daiki Ueno <dueno@redhat.com> - 1.4.2-7
3a7d6c
- Invoke ibus-setup-hangul with the absolute path.
3a7d6c
- Fix bug 1012732 - Click ibus hangul setup on gnome-shell top bar's
3a7d6c
  ibus -> No Response
3a7d6c
3a7d6c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-6
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3a7d6c
3a7d6c
* Wed Jun 19 2013 Daiki Ueno <dueno@redhat.com> - 1.4.2-5
3a7d6c
- Remove ibus-setup-hangul symlink in %%{_bindir}.
3a7d6c
- Fix bogus changelog date.
3a7d6c
3a7d6c
* Tue Apr  2 2013 Daiki Ueno <dueno@redhat.com> - 1.4.2-4
3a7d6c
- Fix the last update which didn't apply the patch.
3a7d6c
3a7d6c
* Tue Apr  2 2013 Daiki Ueno <dueno@redhat.com> - 1.4.2-3
3a7d6c
- Remove have_bridge_hotkey and need_pygobject3 macros which does no
3a7d6c
  longer make sense after F17
3a7d6c
- Add ibus-hangul-dconf-prefix.patch
3a7d6c
- Fix bug 909509 - Hangul Keybaord doesn't be changed in IBusHangul Setup
3a7d6c
3a7d6c
* Wed Mar 27 2013 Daiki Ueno <dueno@redhat.com> - 1.4.2-2
3a7d6c
- Pull the latest config.guess and config.sub for ARM64 port
3a7d6c
3a7d6c
* Tue Jan 29 2013 Daiki Ueno <dueno@redhat.com> - 1.4.2-1
3a7d6c
- Update version to 1.4.2.
3a7d6c
- Remove ibus-hangul-setup-gi.patch
3a7d6c
3a7d6c
* Wed Nov 21 2012 Daiki Ueno <dueno@redhat.com> - 1.4.1-9
3a7d6c
- Fix a typo (R: -> BR: python2-devel)
3a7d6c
3a7d6c
* Wed Nov 21 2012 Daiki Ueno <dueno@redhat.com> - 1.4.1-8
3a7d6c
- Cleanup the spec file
3a7d6c
3a7d6c
* Thu Nov 15 2012 Daiki Ueno <dueno@redhat.com> - 1.4.1-7
3a7d6c
- Re-add ibus-hangul-HEAD.patch based on recent upstream change
3a7d6c
- Apply ibus-hangul-add-hangul-hotkey.patch only for F-15 and F-16
3a7d6c
3a7d6c
* Wed Oct 31 2012 Daiki Ueno <dueno@redhat.com> - 1.4.1-6
3a7d6c
- Add ibus-hangul-engine-name.patch
3a7d6c
- Update ibus-hangul-setup-gi.patch
3a7d6c
- Fix bug 870318 - Change of “Automatic reordering” setup option
3a7d6c
  cannot be applied in ibus-hangul setup (thanks Mike FABIAN for the patch)
3a7d6c
3a7d6c
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-5
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3a7d6c
3a7d6c
* Fri Jun  8 2012 Daiki Ueno <dueno@redhat.com> - 1.4.1-4
3a7d6c
- Fix ibus-hangul-setup-gi.patch
3a7d6c
- Remove previously applied ibus-hangul-setup-race-condition.patch
3a7d6c
- Fix bug 828597 - [abrt] ibus-hangul-1.4.1-2.fc16:
3a7d6c
  main.py:184:on_value_changed:TypeError: 'NoneType' object is not
3a7d6c
  iterable
3a7d6c
3a7d6c
* Wed Jun  6 2012 Daiki Ueno <dueno@redhat.com> - 1.4.1-3
3a7d6c
- Fix ibus-setup-hangul race condition
3a7d6c
- Fix bug 828597 - [abrt] ibus-hangul-1.4.1-2.fc16:
3a7d6c
  main.py:184:on_value_changed:TypeError: 'NoneType' object is not
3a7d6c
  iterable
3a7d6c
3a7d6c
* Tue May  1 2012 Daiki Ueno <dueno@redhat.com> - 1.4.1-2
3a7d6c
- Add pygobject3 to dependencies on F-16.
3a7d6c
- Fix bug 816890 - [abrt] ibus-hangul-1.4.0-5.fc16:
3a7d6c
  main.py:23:<module>:ImportError: No module named gi.repository
3a7d6c
3a7d6c
* Tue Apr 17 2012 Daiki Ueno <dueno@redhat.com> - 1.4.1-1
3a7d6c
- Update version to 1.4.1.
3a7d6c
- Check RHEL version as well as Fedora version.
3a7d6c
3a7d6c
* Tue Mar  6 2012 Daiki Ueno <dueno@redhat.com> - 1.4.0-5
3a7d6c
- Revive <hotkey> in hangul.xml.
3a7d6c
- Remove unnecessary BR: ibus.
3a7d6c
- Port ibus-setup-hangul to use gobject-introspection.
3a7d6c
3a7d6c
* Mon Mar  5 2012 Daiki Ueno <dueno@redhat.com> - 1.4.0-4
3a7d6c
- Package the latest git master.
3a7d6c
- Fix bug 799776 - [abrt] ibus-hangul-1.4.0-3.fc17
3a7d6c
- Remove upstreamed patches: ibus-hangul-xx-icon-symbol.patch,
3a7d6c
  ibus-hangul-no-ibus-daemon.patch, and
3a7d6c
  ibus-hangul-use-system-icon.patch
3a7d6c
3a7d6c
* Fri Feb 10 2012 Daiki Ueno <dueno@redhat.com> - 1.4.0-3
3a7d6c
- Add ibus-hangul-use-system-icon.patch
3a7d6c
- Fix bug 789230 - ibus hangul Icon missing in gnome-shell (fedora 17)
3a7d6c
3a7d6c
* Tue Jan 31 2012 Daiki Ueno <dueno@redhat.com> - 1.4.0-2
3a7d6c
- Add ibus-hangul-no-ibus-daemon.patch.
3a7d6c
- Fix bug 784377 - [abrt] ibus-hangul-1.4.0-1.fc16
3a7d6c
3a7d6c
* Thu Jan 12 2012 Daiki Ueno <dueno@redhat.com> - 1.4.0-1
3a7d6c
- Update version to 1.4.0.
3a7d6c
- Remove ibus-hangul-ibus-1.4.patch.
3a7d6c
- Drop %%defattr(-,root,root,-) from %%files.
3a7d6c
- Pass -p to install to preserve file timestamps.
3a7d6c
- Install ibus-setup-hangul.desktop properly.
3a7d6c
3a7d6c
* Thu Nov 24 2011 Daiki Ueno <dueno@redhat.com> - 1.3.2-1
3a7d6c
- Update version to 1.3.2.
3a7d6c
3a7d6c
* Mon Oct 24 2011 Daiki Ueno <dueno@redhat.com> - 1.3.1-8
3a7d6c
- Rebuild with the latest libhangul.
3a7d6c
3a7d6c
* Fri Aug 19 2011 Daiki Ueno <dueno@redhat.com> - 1.3.1-7
3a7d6c
- Enable --with-hotkeys for F16 or later.
3a7d6c
- Fix bug 731913 - No Hangul Key in keyboard Shortcuts
3a7d6c
3a7d6c
* Mon Jul 18 2011 Daiki Ueno <ueno@unixuser.org> - 1.3.1-6
3a7d6c
- Fix entity reference for icon symbol.
3a7d6c
- Fix bug 722566 - Cannot select Hangul Input Method on Ibus Preferences
3a7d6c
3a7d6c
* Thu Jul  7 2011 Daiki Ueno <dueno@redhat.com> - 1.3.1-5
3a7d6c
- Don't specify --with-hotkeys.
3a7d6c
3a7d6c
* Mon Jul  4 2011 Daiki Ueno <dueno@redhat.com> - 1.3.1-4
3a7d6c
- Added ibus-hangul-xx-icon-symbol.patch to enable the engine symbol & hotkeys.
3a7d6c
3a7d6c
* Wed May 11 2011 Daiki Ueno <dueno@redhat.com> - 1.3.1-3
3a7d6c
- Update ibus-1.4 patch.
3a7d6c
- Move the ibus version check into the patch from this spec.
3a7d6c
- Fix bug 695971 - Hangul Keybaord Layout works to only dubeolsik
3a7d6c
3a7d6c
* Mon Apr  4 2011 Daiki Ueno <dueno@redhat.com> - 1.3.1-2
3a7d6c
- Apply ibus-1.4 patch conditionally for SRPM compatibility.
3a7d6c
- Drop buildroot, %%clean and cleaning of buildroot in %%install
3a7d6c
3a7d6c
* Mon Feb 28 2011 Daiki Ueno <dueno@redhat.com> - 1.3.1-1
3a7d6c
- Update version to 1.3.1.
3a7d6c
3a7d6c
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0.20100329-5
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3a7d6c
3a7d6c
* Mon Nov  8 2010 Daiki Ueno <dueno@redhat.com> - 1.3.0.20100329-4
3a7d6c
- Add ibus-hangul-gvariant.patch for ibus-1.3.99
3a7d6c
3a7d6c
* Mon Aug 23 2010 Daiki Ueno <dueno@redhat.com> - 1.3.0.20100329-3
3a7d6c
- Update ibus-hangul-HEAD.patch
3a7d6c
3a7d6c
* Tue Aug  3 2010 Daiki Ueno <dueno@redhat.com> - 1.3.0.20100329-1
3a7d6c
- Update version to 1.3.0.20100329
3a7d6c
- Add ibus-hangul-HEAD.patch to synch it with the git master
3a7d6c
3a7d6c
* Thu Feb 04 2010 Peng Huang <shawn.p.huang@gmail.com> - 1.2.0.20100102-1
3a7d6c
- Update version to 1.2.0.20100102
3a7d6c
- Add ibus-hangul-phuang.patch for ibus-1.2.99
3a7d6c
3a7d6c
* Fri Dec 11 2009 Peng Huang <shawn.p.huang@gmail.com> - 1.1.0.20091031-1
3a7d6c
- Update version to 1.2.0.20091031.
3a7d6c
- Drop ibus-hangul-1.1.0.20090328-right-ctrl-hanja.patch and
3a7d6c
  ibus-hangul-1.1.0.20090328-hanja-arrow-keys.patch temporarily, because
3a7d6c
  patches conflict with 1.2.0.20091031, and the key configure will available
3a7d6c
  in next release.
3a7d6c
3a7d6c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0.20090617-2
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3a7d6c
3a7d6c
* Mon Jun 22 2009 Peng Huang <shawn.p.huang@gmail.com> - 1.1.0.20090330-1
3a7d6c
- Update version to 1.2.0.20090617.
3a7d6c
3a7d6c
* Sun Apr 12 2009 Warren Togami <wtogami@redhat.com> - 1.1.0.20090330-2
3a7d6c
- Bug 493706: ibus-hangul Hanja arrow keys are wrong
3a7d6c
- Bug 493509: ibus-hangul missing right Ctrl for Hanja button
3a7d6c
  These fixes are not ideal, but they make it usable for Fedora 11.
3a7d6c
  These must become configurable in a future version.
3a7d6c
3a7d6c
* Mon Mar 30 2009 Peng Huang <shawn.p.huang@gmail.com> - 1.1.0.20090330-1
3a7d6c
- Update version to 1.1.0.20090330.
3a7d6c
- Fix bug 486056 - missing options for 2bul, 3bul and other Korean layouts
3a7d6c
- Fix bug 487269 - missing Hanja Conversion
3a7d6c
3a7d6c
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0.20090211-2
3a7d6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3a7d6c
3a7d6c
* Wed Feb 11 2009 Peng Huang <shawn.p.huang@gmail.com> - 1.1.0.20090211-1
3a7d6c
- Update version to 1.1.0.20090211.
3a7d6c
3a7d6c
* Thu Feb 05 2009 Peng Huang <shawn.p.huang@gmail.com> - 1.1.0.20090205-1
3a7d6c
- Update version to 1.1.0.20090205.
3a7d6c
3a7d6c
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.1.1.20081023-2
3a7d6c
- Rebuild for Python 2.6
3a7d6c
3a7d6c
* Thu Oct 23 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20081023-1
3a7d6c
- Update to 0.1.1.20081023.
3a7d6c
3a7d6c
* Tue Sep 09 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20080901-1
3a7d6c
- Update to 0.1.1.20080901.
3a7d6c
3a7d6c
* Fri Aug 08 2008 Peng Huang <shawn.p.huang@gmail.com> - 0.1.1.20080823-1
3a7d6c
- The first version.