forked from pool/ibus-table
fix python3, it breaks almost all of the ibus-table* packages. OBS-URL: https://build.opensuse.org/request/show/242585 OBS-URL: https://build.opensuse.org/package/show/M17N/ibus-table?expand=0&rev=31
84 lines
2.3 KiB
RPMSpec
84 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package ibus-table
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: ibus-table
|
|
Version: 1.8.5
|
|
Release: 0
|
|
Summary: The Table engine for IBus platform
|
|
License: LGPL-2.1+
|
|
Group: System/I18n/Chinese
|
|
Url: https://github.com/mike-fabian/ibus-table/
|
|
Source: https://mfabian.fedorapeople.org/%{name}/%{name}-%{version}.tar.gz
|
|
#PATCH-FIX-UPSTREAM marguerite@opensuse.org
|
|
# replace file() to open()
|
|
Patch: ibus-table-python3.patch
|
|
BuildRequires: fdupes
|
|
BuildRequires: ibus-devel >= 1.4.99
|
|
BuildRequires: pkg-config
|
|
BuildRequires: python3-devel
|
|
Requires: ibus >= 1.4.99
|
|
Requires: python3
|
|
Requires: python3-curses
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
The package contains general Table engine for IBus platform.
|
|
|
|
%package devel
|
|
Summary: Development package for ibus-table
|
|
Group: Development/Libraries/Other
|
|
Requires: %{name} = %{version}
|
|
|
|
%description devel
|
|
This package contains the files required for the development of ibus-table.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch -p1
|
|
chmod -x AUTHORS COPYING README
|
|
|
|
%build
|
|
export PYTHON=python3
|
|
%configure \
|
|
--disable-static \
|
|
--libexecdir=%{_libdir}/ibus
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
|
|
|
%find_lang %{name}
|
|
%fdupes %{buildroot}
|
|
|
|
%files -f %{name}.lang
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS COPYING README
|
|
%{_bindir}/%{name}-createdb
|
|
%{_ibus_libdir}/ibus-engine-table
|
|
%{_ibus_libdir}/ibus-setup-table
|
|
%{_datadir}/applications/ibus-setup-table.desktop
|
|
%{_datadir}/%{name}
|
|
%{_ibus_componentdir}/table.xml
|
|
%{_mandir}/man1/%{name}-createdb.1.gz
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
%changelog
|