You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
167 lines
5.0 KiB
167 lines
5.0 KiB
%{!?python_sitearch:%global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
|
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
|
%if "%{?_prefix}" != "/usr"
|
|
%define _variant .opt
|
|
%define _docdir %{_datadir}/doc
|
|
%endif
|
|
|
|
# TDE 3.5.13 specific building variables
|
|
BuildRequires: autoconf automake libtool m4
|
|
%define tde_docdir %{_docdir}/kde
|
|
%define tde_includedir %{_includedir}/kde
|
|
%define tde_libdir %{_libdir}/trinity
|
|
|
|
|
|
Name: trinity-pykdeextensions
|
|
Summary: Python packages to support KDE applications (scripts) [Trinity]
|
|
Version: 0.4.0
|
|
Release: 2%{?dist}%{?_variant}
|
|
|
|
License: GPLv2+
|
|
Group: Applications/Utilities
|
|
|
|
Vendor: Trinity Project
|
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
|
URL: http://www.simonzone.com/software/pykdeextensions
|
|
|
|
Prefix: %{_prefix}
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
Source0: pykdeextensions-3.5.13.tar.gz
|
|
|
|
# [pykdeextensions] Fix KCM modules versioning [Bug #999]
|
|
Patch1: pykdeextensions-3.5.13-fix_libtool.patch
|
|
# [pykdeextensions] Fix hardcoded path to Guidance python libraries [Bug #999]
|
|
Patch2: pykdeextensions-3.5.13-fix_extra_module_dir.patch
|
|
|
|
BuildRequires: tqtinterface-devel
|
|
BuildRequires: trinity-kdelibs-devel
|
|
BuildRequires: trinity-kdebase-devel
|
|
BuildRequires: desktop-file-utils
|
|
BuildRequires: gettext
|
|
|
|
BuildRequires: python-trinity-devel
|
|
%if 0%{?rhel} == 5
|
|
BuildRequires: trinity-PyQt-devel
|
|
%else
|
|
BuildRequires: PyQt-devel
|
|
%endif
|
|
|
|
%description
|
|
PyKDE Extensions is a collection of software and Python packages
|
|
to support the creation and installation of KDE applications.
|
|
|
|
|
|
%package -n trinity-libpythonize0
|
|
Summary: Python packages to support KDE applications (library) [Trinity]
|
|
Group: Environment/Libraries
|
|
|
|
%description -n trinity-libpythonize0
|
|
PyKDE Extensions is a collection of software and Python packages
|
|
to support the creation and installation of KDE applications.
|
|
|
|
This package contains the libpythonize library files.
|
|
|
|
|
|
%package -n trinity-libpythonize0-devel
|
|
Summary: Python packages to support KDE applications (development) [Trinity]
|
|
Group: Development/Libraries
|
|
Requires: trinity-libpythonize0
|
|
|
|
%description -n trinity-libpythonize0-devel
|
|
PyKDE Extensions is a collection of software and Python packages
|
|
to support the creation and installation of KDE applications.
|
|
|
|
This package contains the libpythonize development files.
|
|
|
|
|
|
%prep
|
|
%setup -q -n libraries/pykdeextensions
|
|
%patch1 -p1 -b .libtool
|
|
%patch2 -p1 -b .extramodule
|
|
|
|
# Changes library directory to 'lib64'
|
|
for f in src/*.py; do
|
|
%__sed -i "${f}" \
|
|
-e "s|%{_prefix}/lib/|%{_libdir}/|g" \
|
|
-e "s|/usr/lib/pyshared/python2.6|%{python_sitearch}|g" \
|
|
-e "s|'pykde-dir=',None,|'pykde-dir=','%{python_sitearch}',|g" \
|
|
-e "s|self.pykde_dir = None|self.pykde_dir = \"%{python_sitearch}\"|g" \
|
|
-e "s|/usr/include/tqt|%{_includedir}/tqt|g"
|
|
done
|
|
|
|
%build
|
|
unset QTDIR; . /etc/profile.d/qt.sh
|
|
export PATH="%{_bindir}:${PATH}"
|
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
|
export PYTHONPATH=%{python_sitearch}/trinity-sip:%{python_sitearch}/trinity-PyQt
|
|
|
|
./setup.py build_libpythonize
|
|
|
|
%install
|
|
unset QTDIR; . /etc/profile.d/qt.sh
|
|
export PATH="%{_bindir}:${PATH}"
|
|
export PYTHONPATH=%{python_sitearch}/trinity-sip:%{python_sitearch}/trinity-PyQt
|
|
|
|
%__rm -rf %{buildroot}
|
|
./setup.py install \
|
|
--root=%{buildroot} \
|
|
--prefix=%{_prefix} \
|
|
--install-clib=%{_libdir} \
|
|
--install-cheaders=%{tde_includedir}
|
|
|
|
# Removes BUILDROOT directory reference in installed files
|
|
for f in \
|
|
%{buildroot}%{_libdir}/libpythonize.la \
|
|
%{buildroot}%{_datadir}/apps/pykdeextensions/app_templates/kcontrol_module/src/KcontrolModuleWidgetUI.py \
|
|
%{buildroot}%{_datadir}/apps/pykdeextensions/app_templates/kdeutility/src/KDEUtilityDialogUI.py \
|
|
; do
|
|
%__sed -i "${f}" -e "s|%{buildroot}||g"
|
|
:
|
|
done
|
|
|
|
# Moves PYTHON libraries to distribution directory
|
|
%__mkdir_p %{buildroot}%{python_sitearch}
|
|
%__mv -f %{buildroot}%{_prefix}/lib/python*/site-packages/* %{buildroot}%{python_sitearch}
|
|
%__rm -rf %{buildroot}%{_prefix}/lib/python*/site-packages
|
|
|
|
|
|
%clean
|
|
%__rm -rf %{buildroot}
|
|
|
|
|
|
%post -n trinity-libpythonize0 -p /sbin/ldconfig
|
|
%postun -n trinity-libpythonize0 -p /sbin/ldconfig
|
|
|
|
%post -n trinity-libpythonize0-devel -p /sbin/ldconfig
|
|
%postun -n trinity-libpythonize0-devel -p /sbin/ldconfig
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS ChangeLog COPYING NEWS README TODO
|
|
%{_datadir}/apps/pykdeextensions
|
|
%{tde_docdir}/HTML/en/pykdeextensions
|
|
%{python_sitearch}/*
|
|
|
|
%files -n trinity-libpythonize0
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libpythonize.so.*
|
|
|
|
%files -n trinity-libpythonize0-devel
|
|
%defattr(-,root,root,-)
|
|
%{tde_includedir}/*.h
|
|
%{_libdir}/libpythonize.a
|
|
%{_libdir}/libpythonize.la
|
|
%{_libdir}/libpythonize.so
|
|
|
|
|
|
%Changelog
|
|
* Fri May 11 2012 Francois Andriot <francois.andriot@free.fr> - 0.8.0svn20080103-2
|
|
- Fix KCM modules versioning [Bug #999]
|
|
- Fix hardcoded path to Guidance python libraries [Bug #999]
|
|
|
|
* Thu Dec 01 2011 Francois Andriot <francois.andriot@free.fr> - 0.8.0svn20080103-1
|
|
- Initial build for RHEL 5, RHEL 6, Fedora 15, Fedora 16
|