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.
185 lines
5.0 KiB
185 lines
5.0 KiB
10 years ago
|
#
|
||
10 years ago
|
# spec file for package python-trinity (version R14)
|
||
10 years ago
|
#
|
||
|
# Copyright (c) 2014 Trinity Desktop Environment
|
||
|
#
|
||
|
# 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.
|
||
|
#
|
||
10 years ago
|
# Please submit bugfixes or comments via http://www.trinitydesktop.org/
|
||
10 years ago
|
#
|
||
|
|
||
|
# TDE variables
|
||
|
%define tde_epoch 2
|
||
10 years ago
|
%if "%{?tde_version}" == ""
|
||
4 years ago
|
%define tde_version 14.1.0
|
||
10 years ago
|
%endif
|
||
10 years ago
|
%define tde_pkg python-trinity
|
||
|
%define tde_prefix /opt/trinity
|
||
12 years ago
|
%define tde_bindir %{tde_prefix}/bin
|
||
|
%define tde_datadir %{tde_prefix}/share
|
||
10 years ago
|
%define tde_docdir %{tde_datadir}/doc
|
||
12 years ago
|
%define tde_includedir %{tde_prefix}/include
|
||
|
%define tde_libdir %{tde_prefix}/%{_lib}
|
||
|
%define tde_mandir %{tde_datadir}/man
|
||
10 years ago
|
%define tde_tdedocdir %{tde_docdir}/tde
|
||
12 years ago
|
%define tde_tdeincludedir %{tde_includedir}/tde
|
||
|
|
||
|
|
||
10 years ago
|
Name: trinity-%{tde_pkg}
|
||
|
Epoch: %{tde_epoch}
|
||
12 years ago
|
Version: 3.16.3
|
||
9 years ago
|
Release: %{?tde_version}_%{?!preversion:1}%{?preversion:0_%{preversion}}%{?dist}
|
||
10 years ago
|
Summary: Trinity bindings for Python
|
||
|
Group: Development/Libraries/Python
|
||
|
URL: http://www.trinitydesktop.org/
|
||
|
#URL: http://www.simonzone.com/software/pykdeextensions
|
||
12 years ago
|
|
||
10 years ago
|
%if 0%{?suse_version}
|
||
|
License: GPL-2.0+
|
||
|
%else
|
||
12 years ago
|
License: GPLv2+
|
||
10 years ago
|
%endif
|
||
12 years ago
|
|
||
10 years ago
|
#Vendor: Trinity Desktop
|
||
|
#Packager: Francois Andriot <francois.andriot@free.fr>
|
||
12 years ago
|
|
||
10 years ago
|
Prefix: %{tde_prefix}
|
||
12 years ago
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||
|
|
||
|
Source0: %{name}-%{tde_version}%{?preversion:~%{preversion}}.tar.gz
|
||
|
|
||
11 years ago
|
BuildRequires: trinity-tdelibs-devel >= %{tde_version}
|
||
10 years ago
|
|
||
12 years ago
|
BuildRequires: desktop-file-utils
|
||
|
BuildRequires: gettext
|
||
10 years ago
|
BuildRequires: autoconf automake libtool m4
|
||
|
BuildRequires: gcc-c++
|
||
12 years ago
|
|
||
11 years ago
|
# PYTHON support
|
||
4 years ago
|
%if 0%{?rhel} >= 8 || 0%{?fedora} >= 31 || 0%{?suse_version} >= 1550
|
||
|
%global python python2
|
||
|
%global __python %__python2
|
||
|
%global python_sitearch %{python2_sitearch}
|
||
|
%else
|
||
|
%global python python
|
||
|
%endif
|
||
|
%{!?python_sitearch:%global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||
|
BuildRequires: %{python}
|
||
|
BuildRequires: %{python}-devel
|
||
|
|
||
10 years ago
|
BuildRequires: python-tqt-devel
|
||
|
Requires: python-tqt
|
||
12 years ago
|
|
||
11 years ago
|
# SIP
|
||
10 years ago
|
BuildRequires: sip4-tqt-devel >= 4.10.5
|
||
|
Requires: sip4-tqt >= 4.10.5
|
||
12 years ago
|
|
||
10 years ago
|
Obsoletes: python-trinity < %{?epoch:%{epoch}:}%{version}-%{release}
|
||
|
Provides: python-trinity = %{?epoch:%{epoch}:}%{version}-%{release}
|
||
12 years ago
|
|
||
|
%description
|
||
|
Python binding module that provides wide access to the Trinity API,
|
||
|
also known as PyTDE. Using this, you'll get (for example) classes
|
||
11 years ago
|
from tdeio, tdejs, tdehtml and tdeprint.
|
||
12 years ago
|
|
||
10 years ago
|
%files
|
||
|
%defattr(-,root,root,-)
|
||
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
||
|
%{python_sitearch}/*.so
|
||
|
%{python_sitearch}/dcop*.py*
|
||
|
%{python_sitearch}/pytde*.py*
|
||
|
|
||
|
##########
|
||
12 years ago
|
|
||
|
%package devel
|
||
10 years ago
|
Summary: Trinity bindings for Python - Development files and scripts
|
||
|
Group: Development/Libraries/Python
|
||
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
||
12 years ago
|
|
||
|
Obsoletes: python-trinity-devel < %{version}-%{release}
|
||
|
Provides: python-trinity-devel = %{version}-%{release}
|
||
|
|
||
|
%description devel
|
||
|
Development .sip files with definitions of PyTDE classes. They
|
||
|
are needed to build PyTDE, but also as building blocks of other
|
||
|
packages based on them.
|
||
|
The package also contains kdepyuic, a wrapper script around PyQt's
|
||
|
user interface compiler.
|
||
|
|
||
10 years ago
|
%files devel
|
||
|
%defattr(-,root,root,-)
|
||
|
%{tde_bindir}/tdepyuic
|
||
|
# The SIP files are outside TDE's prefix
|
||
|
%{_datadir}/sip/trinity/
|
||
|
|
||
|
##########
|
||
12 years ago
|
|
||
|
%package doc
|
||
10 years ago
|
Summary: Documentation and examples for PyTDE
|
||
|
Group: Development/Libraries/Python
|
||
12 years ago
|
|
||
10 years ago
|
Obsoletes: python-trinity-doc < %{?epoch:%{epoch}:}%{version}-%{release}
|
||
|
Provides: python-trinity-doc = %{?epoch:%{epoch}:}%{version}-%{release}
|
||
12 years ago
|
|
||
|
%description doc
|
||
|
General documentation and examples for PyTDE providing programming
|
||
|
tips and working code you can use to learn from.
|
||
|
|
||
10 years ago
|
%files doc
|
||
|
%defattr(-,root,root,-)
|
||
|
%{tde_tdedocdir}/HTML/en/python-trinity/
|
||
|
|
||
|
##########
|
||
12 years ago
|
|
||
10 years ago
|
%if 0%{?pclinuxos} || 0%{?suse_version} && 0%{?opensuse_bs} == 0
|
||
12 years ago
|
%debug_package
|
||
|
%endif
|
||
|
|
||
10 years ago
|
##########
|
||
12 years ago
|
|
||
|
%prep
|
||
|
%setup -q -n %{name}-%{tde_version}%{?preversion:~%{preversion}}
|
||
|
|
||
4 years ago
|
%if 0%{?fedora} >= 30 || 0%{?rhel} >= 8
|
||
|
%__sed -i "contrib/tdepyuic" -e "s|/usr/bin/env python|/usr/bin/env python2|"
|
||
|
%endif
|
||
|
|
||
12 years ago
|
|
||
|
%build
|
||
|
unset QTDIR QTINC QTLIB
|
||
|
export PATH="%{tde_bindir}:${PATH}"
|
||
11 years ago
|
export LD_RUN_PATH="%{tde_libdir}"
|
||
12 years ago
|
|
||
|
export DH_OPTIONS
|
||
|
|
||
|
%__python configure.py \
|
||
|
-k %{tde_prefix} \
|
||
|
-L %{_lib} \
|
||
|
-v %{_datadir}/sip/trinity
|
||
|
|
||
11 years ago
|
%__make %{_smp_mflags} || %__make
|
||
12 years ago
|
|
||
|
|
||
|
%install
|
||
|
export PATH="%{tde_bindir}:${PATH}"
|
||
|
%__rm -rf %{buildroot}
|
||
|
%__make install DESTDIR=%{buildroot}
|
||
|
|
||
|
# Install documentation
|
||
|
%__mkdir_p %{buildroot}%{tde_tdedocdir}/HTML/en/
|
||
|
%__cp -rf doc %{buildroot}%{tde_tdedocdir}/HTML/en/python-trinity/
|
||
|
|
||
|
|
||
|
%clean
|
||
|
%__rm -rf %{buildroot}
|
||
|
|
||
|
|
||
|
%changelog
|