1a26d4c
%bcond_without python3
bfb3f47
%if (0%{?fedora} && 0%{?fedora} < 32) || (0%{?rhel} && 0%{?rhel} < 9)
54aa2c6
%bcond_without python2
54aa2c6
%endif
de034a7
1a26d4c
%if %{with python3}
de034a7
%{!?python3_inc:%global python3_inc %(%{__python3} -c "from distutils.sysconfig import get_python_inc; print(get_python_inc(1))")}
de034a7
%endif
Rex Dieter 8bef7b5
%{!?__python2:%global __python2 /usr/bin/python2}
Rex Dieter 8bef7b5
%{!?python2_sitearch:%global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
Rex Dieter 8bef7b5
%{!?python2_inc:%global python2_inc %(%{__python2} -c "from distutils.sysconfig import get_python_inc; print get_python_inc(1)")}
e81b45d
bfb3f47
%if 0%{?fedora} > 31 || 0%{?rhel} > 8
5943a42
%global PYINCLUDE %{_includedir}/python%{python3_version}
50ea824
%else
5943a42
%global PYINCLUDE %{_includedir}/python%{python3_version}m
ab0dc0f
%endif
ab0dc0f
Rex Dieter dbd306f
%global rpm_macros_dir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
Rex Dieter dbd306f
Rex Dieter c99d1f3
# trim changelog included in binary rpms
Rex Dieter c99d1f3
%global _changelog_trimtime %(date +%s -d "1 year ago")
Rex Dieter c99d1f3
b232b1b
# see also https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/JQQ66XJSIT2FGTK2YQY7AXMEH5IXMPUX/
b232b1b
%undefine _strict_symbol_defs_build
b232b1b
c17e1e6
# provide non-namespace python modules
f7175e4
# needed by at least some legacy/non-qt consumers, e.g. pykde4
bfb3f47
%if 0%{?fedora} && 0%{?fedora} < 31
e2234ac
%global no_namespace 1
f7175e4
%endif
c17e1e6
cvsdist 49f66d1
Summary: SIP - Python/C++ Bindings Generator
cvsdist 49f66d1
Name: sip
2c315db
Version: 4.19.24
2c315db
Release: 1%{?dist}
58dabb8
2afbeb6
# sipgen/parser.{c.h} is GPLv3+ with exceptions (bison)
2afbeb6
License: GPLv2 or GPLv3 and (GPLv3+ with exceptions)
1b926de
Url: https://riverbankcomputing.com/software/sip/intro
1b926de
Source0: https://riverbankcomputing.com/static/Downloads/sip/%{version}/sip-%{version}%{?snap:.%{snap}}.tar.gz
e81b45d
b2d03ad
Source10: sip-wrapper.sh
b2d03ad
Rex Dieter 461262a
## upstream patches
Rex Dieter 461262a
736e383
## upstreamable patches
736e383
# make install should not strip (by default), kills -debuginfo
Rex Dieter 0d5a2f2
Patch50: sip-4.18-no_strip.patch
Rex Dieter bcb0852
# try not to rpath the world (I *think* this may not be required anymore, since sip-4.19 -- rex)
Rex Dieter 0d5a2f2
Patch51: sip-4.18-no_rpath.patch
Rex Dieter f79ea6e
# set sip_bin properly for python3 build (needswork to be upstreamable)
16f9a74
# no longer needed?  keep for a little while before dropping completely -- rex
16f9a74
#Patch52: sip-4.19.3-python3_sip_bin.patch
13805b5
# Avoid hardcoding sip.so (needed for wxpython's siplib.so)
13805b5
Patch53: sip-4.19.18-no_hardcode_sip_so.patch
736e383
20ee583
# extracted from sip.h, SIP_API_MAJOR_NR SIP_API_MINOR_NR defines
20ee583
Source1: macros.sip
Rex Dieter e143ee6
%global _sip_api_major 12
8fd958b
%global _sip_api_minor 7
20ee583
%global _sip_api %{_sip_api_major}.%{_sip_api_minor}
20ee583
d83a12d
BuildRequires: gcc-c++
b6dceb6
BuildRequires: sed
cvsdist 4f91b63
b6e0ae7
Obsoletes: sip-macros < %{version}-%{release}
b6e0ae7
Provides:  sip-macros = %{version}-%{release}
b6e0ae7
8fd958b
# upgrade path when no_namespace variants are dropped
8fd958b
%if ! 0%{?no_namespace}
8fd958b
Obsoletes: python2-sip < %{version}-%{release}
8fd958b
Obsoletes: python3-sip < %{version}-%{release}
8fd958b
%endif
8fd958b
79096c9
%global _description\
79096c9
SIP is a tool for generating bindings for C++ classes so that they can be\
79096c9
accessed as normal Python classes. SIP takes many of its ideas from SWIG but,\
79096c9
because it is specifically designed for C++ and Python, is able to generate\
79096c9
tighter bindings. SIP is so called because it is a small SWIG.\
79096c9
\
79096c9
SIP was originally designed to generate Python bindings for KDE and so has\
79096c9
explicit support for the signal slot mechanism used by the Qt/KDE class\
79096c9
libraries. However, SIP can be used to generate Python bindings for any C++\
cvsdist 49f66d1
class library.
cvsdist 49f66d1
79096c9
%description %_description
79096c9
1b926de
%package doc
1b926de
Summary: Documentation for %summary
1b926de
BuildArch: noarch
1b926de
%description doc
1b926de
This package contains HTML documentation for SIP.
1b926de
%_description
1b926de
54aa2c6
%if %{with python2}
c17e1e6
%if 0%{?no_namespace}
79096c9
%package -n python2-sip
79096c9
Summary: %summary
79096c9
Provides: sip-api(%{_sip_api_major}) = %{_sip_api}
79096c9
Provides: sip-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
b6e0ae7
Provides: python2-sip-api(%{_sip_api_major}) = %{_sip_api}
b6e0ae7
Provides: python2-sip-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
79096c9
%{?python_provide:%python_provide python2-sip}
79096c9
%description -n python2-sip %_description
c17e1e6
%endif
79096c9
16f9a74
%package -n python2-sip-devel
16f9a74
Summary: Files needed to generate Python bindings for any C++ class library
16f9a74
Requires: sip = %{version}-%{release}
16f9a74
#Requires: python2-sip%{?_isa} = %{version}-%{release}
16f9a74
BuildRequires: python2-devel
16f9a74
Requires:      python2-devel
16f9a74
# Remove before F30
16f9a74
Provides: sip-devel = %{version}-%{release}
16f9a74
Provides: sip-devel%{?_isa} = %{version}-%{release}
16f9a74
Obsoletes: sip-devel < %{version}-%{release}
16f9a74
%description -n python2-sip-devel
16f9a74
%{summary}.
16f9a74
1c807c0
%package -n python2-pyqt4-sip
1c807c0
Summary: %summary
1c807c0
Provides: python2-pyqt4-sip-api(%{_sip_api_major}) = %{_sip_api}
1c807c0
Provides: python2-pyqt4-sip-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
1c807c0
%{?python_provide:%python_provide python2-pyqt4-sip}
1c807c0
%description -n python2-pyqt4-sip %_description
1c807c0
b6e0ae7
%package -n python2-pyqt5-sip
b6e0ae7
Summary: %summary
b6e0ae7
Provides: python2-pyqt5-sip-api(%{_sip_api_major}) = %{_sip_api}
b6e0ae7
Provides: python2-pyqt5-sip-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
b6e0ae7
%{?python_provide:%python_provide python2-pyqt5-sip}
b6e0ae7
%description -n python2-pyqt5-sip %_description
6adac3d
13805b5
%package -n python2-wx-siplib
13805b5
Summary: %summary
13805b5
Provides: python2-wx-siplib-api(%{_sip_api_major}) = %{_sip_api}
13805b5
Provides: python2-wx-siplib-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
13805b5
%{?python_provide:%python_provide python2-wx-siplib}
13805b5
%description -n python2-wx-siplib %_description
54aa2c6
%endif
13805b5
1a26d4c
%if %{with python3}
c17e1e6
%if 0%{?no_namespace}
d813817
%package -n python%{python3_pkgversion}-sip
de034a7
Summary: SIP - Python 3/C++ Bindings Generator
d813817
Provides: python%{python3_pkgversion}-sip-api(%{_sip_api_major}) = %{_sip_api}
d813817
Provides: python%{python3_pkgversion}-sip-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
d813817
%description -n python%{python3_pkgversion}-sip
de034a7
This is the Python 3 build of SIP.
de034a7
79096c9
%_description
c17e1e6
%endif
de034a7
16f9a74
%package -n python%{python3_pkgversion}-sip-devel
16f9a74
Summary: Files needed to generate Python bindings for any C++ class library
16f9a74
Requires: sip = %{version}-%{release}
16f9a74
#Requires: python3-sip%{?_isa} = %{version}-%{release}
16f9a74
BuildRequires: python%{python3_pkgversion}-devel
16f9a74
Requires:      python%{python3_pkgversion}-devel
16f9a74
%description -n python%{python3_pkgversion}-sip-devel
16f9a74
%{summary}.
16f9a74
1c807c0
%package -n python%{python3_pkgversion}-pyqt4-sip
1c807c0
Summary: SIP - Python 3/C++ Bindings Generator for pyqt4
1c807c0
BuildRequires: python%{python3_pkgversion}-devel
1c807c0
Provides: python%{python3_pkgversion}-pyqt4-sip-api(%{_sip_api_major}) = %{_sip_api}
1c807c0
Provides: python%{python3_pkgversion}-pyqt4-sip-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
1c807c0
%description -n python%{python3_pkgversion}-pyqt4-sip
1c807c0
This is the Python 3 build of pyqt4-SIP.
1c807c0
b6e0ae7
%package -n python%{python3_pkgversion}-pyqt5-sip
b6e0ae7
Summary: SIP - Python 3/C++ Bindings Generator for pyqt5
b6e0ae7
BuildRequires: python%{python3_pkgversion}-devel
b6e0ae7
Provides: python%{python3_pkgversion}-pyqt5-sip-api(%{_sip_api_major}) = %{_sip_api}
b6e0ae7
Provides: python%{python3_pkgversion}-pyqt5-sip-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
b6e0ae7
%description -n python%{python3_pkgversion}-pyqt5-sip
b6e0ae7
This is the Python 3 build of pyqt5-SIP.
b6e0ae7
13805b5
%package -n python%{python3_pkgversion}-wx-siplib
13805b5
Summary: SIP - Python 3/C++ Bindings Generator for wx
13805b5
BuildRequires: python%{python3_pkgversion}-devel
13805b5
Provides: python%{python3_pkgversion}-wx-siplib-api(%{_sip_api_major}) = %{_sip_api}
13805b5
Provides: python%{python3_pkgversion}-wx-siplib-api(%{_sip_api_major})%{?_isa} = %{_sip_api}
13805b5
%description -n python%{python3_pkgversion}-wx-siplib
13805b5
This is the Python 3 build of wx-siplib.
13805b5
b6e0ae7
%_description
b6e0ae7
de034a7
%endif
de034a7
e81b45d
cvsdist 49f66d1
%prep
cvsdist 199f046
6e2cecd
%setup -q -n %{name}-%{version}%{?snap:.%{snap}}
afc95f4
736e383
%patch50 -p1 -b .no_strip
3243244
%patch51 -p1 -b .no_rpath
13805b5
%patch53 -p1 -b .no_sip_so
736e383
e81b45d
cvsdist 49f66d1
%build
54aa2c6
%if %{with python2}
c17e1e6
%if 0%{?no_namespace}
b6e0ae7
mkdir %{_target_platform}-python2
b6e0ae7
pushd %{_target_platform}-python2
Rex Dieter f79ea6e
%{__python2} ../configure.py \
7479229
  -b %{_bindir} -d %{python2_sitearch} -e %{_includedir}/python%{python2_version} \
b6e0ae7
  CFLAGS+="%{optflags}" CXXFLAGS+="%{optflags}" LFLAGS+="%{?__global_ldflags}"
b6e0ae7
b6e0ae7
%make_build
b6e0ae7
popd
c17e1e6
%endif
b6e0ae7
1c807c0
mkdir %{_target_platform}-python2-pyqt4
1c807c0
pushd %{_target_platform}-python2-pyqt4
1c807c0
%{__python2} ../configure.py \
1c807c0
  --sip-module=PyQt4.sip \
7479229
  -b %{_bindir} -d %{python2_sitearch} -e %{_includedir}/python%{python2_version} \
1c807c0
  CFLAGS+="%{optflags}" CXXFLAGS+="%{optflags}" LFLAGS+="%{?__global_ldflags}"
1c807c0
1c807c0
%make_build
1c807c0
popd
1c807c0
b6e0ae7
mkdir %{_target_platform}-python2-pyqt5
b6e0ae7
pushd %{_target_platform}-python2-pyqt5
b6e0ae7
%{__python2} ../configure.py \
b6e0ae7
  --sip-module=PyQt5.sip \
7479229
  -b %{_bindir} -d %{python2_sitearch} -e %{_includedir}/python%{python2_version} \
b6e0ae7
  CFLAGS+="%{optflags}" CXXFLAGS+="%{optflags}" LFLAGS+="%{?__global_ldflags}"
Rex Dieter f79ea6e
03b92e5
%make_build
Rex Dieter f79ea6e
popd
Rex Dieter f79ea6e
13805b5
sed -i -e 's|target = sip|target = siplib|g' siplib/siplib.sbf
13805b5
mkdir %{_target_platform}-python2-wx
13805b5
pushd %{_target_platform}-python2-wx
13805b5
%{__python2} ../configure.py \
13805b5
  --sip-module=wx.siplib \
13805b5
  -b %{_bindir} -d %{python2_sitearch} -e %{_includedir}/python%{python2_version} \
13805b5
  CFLAGS+="%{optflags}" CXXFLAGS+="%{optflags}" LFLAGS+="%{?__global_ldflags}"
13805b5
13805b5
%make_build
13805b5
popd
54aa2c6
%endif
13805b5
sed -i -e 's|target = siplib|target = sip|g' siplib/siplib.sbf
13805b5
1a26d4c
%if %{with python3}
c17e1e6
%if 0%{?no_namespace}
Rex Dieter 461262a
mkdir %{_target_platform}-python3
Rex Dieter 461262a
pushd %{_target_platform}-python3
Rex Dieter 461262a
%{__python3} ../configure.py \
ab0dc0f
  -b %{_bindir} -d %{python3_sitearch} -e %{PYINCLUDE} \
b6e0ae7
  CXXFLAGS+="%{optflags}" CFLAGS+="%{optflags}" LFLAGS+="%{?__global_ldflags}"
de034a7
03b92e5
%make_build
de034a7
popd
c17e1e6
%endif
b6e0ae7
1c807c0
mkdir %{_target_platform}-python3-pyqt4
1c807c0
pushd %{_target_platform}-python3-pyqt4
1c807c0
%{__python3} ../configure.py \
1c807c0
  --sip-module=PyQt4.sip \
ab0dc0f
  -b %{_bindir} -d %{python3_sitearch} -e %{PYINCLUDE} \
1c807c0
  CXXFLAGS+="%{optflags}" CFLAGS+="%{optflags}" LFLAGS+="%{?__global_ldflags}"
1c807c0
1c807c0
%make_build
1c807c0
popd
1c807c0
b6e0ae7
mkdir %{_target_platform}-python3-pyqt5
b6e0ae7
pushd %{_target_platform}-python3-pyqt5
b6e0ae7
%{__python3} ../configure.py \
b6e0ae7
  --sip-module=PyQt5.sip \
ab0dc0f
  -b %{_bindir} -d %{python3_sitearch} -e %{PYINCLUDE} \
b6e0ae7
  CXXFLAGS+="%{optflags}" CFLAGS+="%{optflags}" LFLAGS+="%{?__global_ldflags}"
b6e0ae7
b6e0ae7
%make_build
b6e0ae7
popd
b6e0ae7
13805b5
sed -i -e 's|target = sip|target = siplib|g' siplib/siplib.sbf
13805b5
mkdir %{_target_platform}-python3-wx
13805b5
pushd %{_target_platform}-python3-wx
13805b5
%{__python3} ../configure.py \
13805b5
  --sip-module=wx.siplib \
ab0dc0f
  -b %{_bindir} -d %{python3_sitearch} -e %{PYINCLUDE} \
13805b5
  CXXFLAGS+="%{optflags}" CFLAGS+="%{optflags}" LFLAGS+="%{?__global_ldflags}"
13805b5
13805b5
%make_build
13805b5
popd
13805b5
sed -i -e 's|target = siplib|target = sip|g' siplib/siplib.sbf
13805b5
de034a7
%endif
de034a7
e81b45d
cvsdist 49f66d1
%install
6adac3d
# Perform the Python 3 installation first, to avoid stomping over the Python 2
6adac3d
# /usr/bin/sip:
1a26d4c
%if %{with python3}
c17e1e6
%if 0%{?no_namespace}
03b92e5
%make_install -C %{_target_platform}-python3
c17e1e6
%endif
1c807c0
%make_install -C %{_target_platform}-python3-pyqt4
b6e0ae7
%make_install -C %{_target_platform}-python3-pyqt5
13805b5
%make_install -C %{_target_platform}-python3-wx
13805b5
mv %{buildroot}%{python3_sitearch}/wx/sip.pyi %{buildroot}%{python3_sitearch}/wx/siplib.pyi
c17e1e6
ln -s sip %{buildroot}%{_bindir}/python3-sip
Rex Dieter 0d5a2f2
Rex Dieter 0d5a2f2
## toplevel __pycache__ creation is ... inconsistent
Rex Dieter 0d5a2f2
## rawhide makes one, f23 local builds do not, so let's *make* it consistent
Rex Dieter 0d5a2f2
mkdir -p %{buildroot}%{python3_sitearch}/__pycache__/exclude_rpm_hack
de034a7
%endif
de034a7
6adac3d
# Python 2 installation:
54aa2c6
%if %{with python2}
c17e1e6
%if 0%{?no_namespace}
b6e0ae7
%make_install -C %{_target_platform}-python2
c17e1e6
%endif
1c807c0
%make_install -C %{_target_platform}-python2-pyqt4
b6e0ae7
%make_install -C %{_target_platform}-python2-pyqt5
13805b5
%make_install -C %{_target_platform}-python2-wx
13805b5
mv %{buildroot}%{python2_sitearch}/wx/sip.pyi %{buildroot}%{python2_sitearch}/wx/siplib.pyi
54aa2c6
%endif
b6e0ae7
b2d03ad
# sip-wrapper
b2d03ad
install %{SOURCE10} %{buildroot}%{_bindir}/sip-pyqt4
b2d03ad
install %{SOURCE10} %{buildroot}%{_bindir}/sip-pyqt5
13805b5
install %{SOURCE10} %{buildroot}%{_bindir}/sip-wx
b2d03ad
sed -i -e 's|@SIP_MODULE@|PyQt4.sip|g' %{buildroot}%{_bindir}/sip-pyqt4
b2d03ad
sed -i -e 's|@SIP_MODULE@|PyQt5.sip|g' %{buildroot}%{_bindir}/sip-pyqt5
13805b5
sed -i -e 's|@SIP_MODULE@|wx.siplib|g' %{buildroot}%{_bindir}/sip-wx
b2d03ad
6adac3d
mkdir -p %{buildroot}%{_datadir}/sip
6adac3d
6adac3d
# Macros used by -devel subpackages:
Rex Dieter dbd306f
install -D -p -m644 %{SOURCE1} %{buildroot}%{rpm_macros_dir}/macros.sip
cvsdist 49f66d1
1b926de
# Copy documentation from source dir
1b926de
pushd doc
1b926de
find html/ -type f -exec install -m0644 -D {} %{buildroot}%{_pkgdocdir}/{} \;
1b926de
popd
1b926de
e81b45d
b6e0ae7
%files
b6e0ae7
%doc README
b6e0ae7
%license LICENSE LICENSE-GPL2 LICENSE-GPL3
b6e0ae7
%{_bindir}/sip
b2d03ad
# sip-wrappers
b2d03ad
%{_bindir}/sip-pyqt4
b2d03ad
%{_bindir}/sip-pyqt5
13805b5
%{_bindir}/sip-wx
9283f89
# compat symlink
9283f89
%{_bindir}/python3-sip
b6e0ae7
%dir %{_datadir}/sip/
b6e0ae7
%{rpm_macros_dir}/macros.sip
b6e0ae7
1b926de
%files doc
1b926de
%{_pkgdocdir}/html
1b926de
54aa2c6
%if %{with python2}
b6e0ae7
%files -n python2-sip-devel
c168cce
%{_prefix}/include/python2.7/sip.h
16f9a74
%{python2_sitearch}/sipconfig.py*
16f9a74
%{python2_sitearch}/sipdistutils.py*
b6e0ae7
c17e1e6
%if 0%{?no_namespace}
79096c9
%files -n python2-sip
2246551
%doc NEWS README
Rex Dieter 381ccd1
%license LICENSE LICENSE-GPL2 LICENSE-GPL3
1c807c0
%{python2_sitearch}/sip.*
62210af
%{python2_sitearch}/sip-%{version}.dist-info/
c17e1e6
%endif
1c807c0
1c807c0
%files -n python2-pyqt4-sip
1c807c0
%doc NEWS README
1c807c0
%license LICENSE LICENSE-GPL2 LICENSE-GPL3
1c807c0
%{python2_sitearch}/PyQt4/
62210af
%{python2_sitearch}/PyQt4_sip-%{version}.dist-info/
cvsdist 49f66d1
b6e0ae7
%files -n python2-pyqt5-sip
b6e0ae7
%doc NEWS README
b6e0ae7
%license LICENSE LICENSE-GPL2 LICENSE-GPL3
1c807c0
%dir %{python2_sitearch}/PyQt5/
1c807c0
%{python2_sitearch}/PyQt5/sip.*
62210af
%{python2_sitearch}/PyQt5_sip-%{version}.dist-info/
e81b45d
13805b5
%files -n python2-wx-siplib
13805b5
%doc NEWS README
13805b5
%license LICENSE LICENSE-GPL2 LICENSE-GPL3
13805b5
%dir %{python2_sitearch}/wx/
13805b5
%{python2_sitearch}/wx/siplib.*
13805b5
%{python2_sitearch}/wx_siplib-%{version}.dist-info/
54aa2c6
%endif
13805b5
1a26d4c
%if %{with python3}
b6e0ae7
%files -n python%{python3_pkgversion}-sip-devel
ab0dc0f
%{PYINCLUDE}/sip.h
16f9a74
%{python3_sitearch}/sipconfig.py*
16f9a74
%{python3_sitearch}/sipdistutils.py*
16f9a74
%{python3_sitearch}/__pycache__/*
16f9a74
%exclude %{python3_sitearch}/__pycache__/exclude_rpm_hack
b6e0ae7
c17e1e6
%if 0%{?no_namespace}
d813817
%files -n python%{python3_pkgversion}-sip
Rex Dieter 381ccd1
%doc NEWS README
Rex Dieter 381ccd1
%license LICENSE LICENSE-GPL2 LICENSE-GPL3
1c807c0
%{python3_sitearch}/sip.*
62210af
%{python3_sitearch}/sip-%{version}.dist-info/
c17e1e6
%endif
1c807c0
1c807c0
%files -n python%{python3_pkgversion}-pyqt4-sip
1c807c0
%doc NEWS README
1c807c0
%license LICENSE LICENSE-GPL2 LICENSE-GPL3
1c807c0
%dir %{python3_sitearch}/PyQt4/
1c807c0
%{python3_sitearch}/PyQt4/sip.*
62210af
%{python3_sitearch}/PyQt4_sip-%{version}.dist-info/
de034a7
b6e0ae7
%files -n python%{python3_pkgversion}-pyqt5-sip
b6e0ae7
%doc NEWS README
b6e0ae7
%license LICENSE LICENSE-GPL2 LICENSE-GPL3
1c807c0
%dir %{python3_sitearch}/PyQt5/
1c807c0
%{python3_sitearch}/PyQt5/sip.*
62210af
%{python3_sitearch}/PyQt5_sip-%{version}.dist-info/
13805b5
13805b5
%files -n python%{python3_pkgversion}-wx-siplib
13805b5
%doc NEWS README
13805b5
%license LICENSE LICENSE-GPL2 LICENSE-GPL3
13805b5
%dir %{python3_sitearch}/wx/
13805b5
%{python3_sitearch}/wx/siplib.*
13805b5
%{python3_sitearch}/wx_siplib-%{version}.dist-info/
de034a7
%endif
de034a7
57cd99d
cvsdist 49f66d1
%changelog
2c315db
* Mon Aug 17 2020 Rex Dieter <rdieter@fedoraproject.org> - 4.19.24-1
2c315db
- 4.19.24
2c315db
bb87f41
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.23-2
bb87f41
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
bb87f41
bfb3f47
* Mon Jul 20 2020 Merlin Mathesius <mmathesi@redhat.com> - 4.19.23-1
bfb3f47
- Minor conditional fixes for ELN
bfb3f47
57cd99d
* Mon Jun 08 2020 Rex Dieter <rdieter@fedoraproject.org> - 4.19.23-1
57cd99d
- 4.19.23
57cd99d
511fc72
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 4.19.22-3
511fc72
- Rebuilt for Python 3.9
511fc72
1b926de
* Mon Apr 20 2020 FeRD (Frank Dana) <ferdnyc@gmail.com> - 4.19.22-2
1b926de
- Add documentation subpackage
1b926de
774146e
* Sat Apr 04 2020 Rex Dieter <rdieter@fedoraproject.org> - 4.19.22-1
774146e
- 4.19.22
774146e
f5b657d
* Fri Jan 31 2020 Rex Dieter <rdieter@fedoraproject.org> - 4.19.21-1
f5b657d
- 4.19.21
f5b657d
860ebc4
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.20-2
860ebc4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
860ebc4
5943a42
* Fri Dec 20 2019 Rex Dieter <rdieter@fedoraproject.org> - 4.19.20-1
5943a42
- 4.19.20, adjust whitespace
5943a42
54aa2c6
* Fri Nov 15 2019 Rex Dieter <rdieter@fedoraproject.org> - 4.19.19-4
54aa2c6
- disable python2 support on f32+ (#1752802)
54aa2c6
1eb3bcf
* Sun Nov 03 2019 Rex Dieter <rdieter@fedoraproject.org> - 4.19.19-3
1eb3bcf
- revert virtual provides (bad idea)
1eb3bcf
49b6fed
* Thu Oct 31 2019 Nicolas Chauvet <kwizart@gmail.com> - 4.19.19-2
49b6fed
- Add virtual provides python{2,3}-sip
49b6fed
8fd958b
* Wed Sep 25 2019 Rex Dieter <rdieter@fedoraproject.org> - 4.19.19-1
8fd958b
- 4.19.19, sip-api(12)=12.7
8fd958b
- Obsoletes: python2-sip python3-sip (when omitted for f31+)
8fd958b
f7175e4
* Mon Sep 16 2019 Rex Dieter <rdieter@fedoraproject.org> - 4.19.18-7
f7175e4
- drop no_namespace variant for f31+
f7175e4
50ea824
* Fri Sep 06 2019 Scott Talbert <swt@techie.net> - 4.19.18-6
50ea824
- Simplify PYINCLUDE conditional and fix for F31
50ea824
ab0dc0f
* Wed Aug 28 2019 Gwyn Ciesla <gwync@protonmail.com> 4.19.18-5
ab0dc0f
- Conditionalize Python 3 include dir.
ab0dc0f
13805b5
* Mon Aug 19 2019 Scott Talbert <swt@techie.net> - 4.19.18-4
13805b5
- Build a namespaced sip module, wx.siplib, for wxpython (#1739469)
13805b5
7479229
* Mon Aug 19 2019 Gwyn Ciesla <gwync@protonmail.com> - 4.19.18-3
7479229
- Set paths for flatpak.
7479229
47b525c
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 4.19.18-2
47b525c
- Rebuilt for Python 3.8
47b525c
87a0446
* Sun Aug 04 2019 Rex Dieter <rdieter@fedoraproject.org> - 4.19.18-1
87a0446
- 4.19.18
87a0446
abd3d92
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.17-2
abd3d92
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
abd3d92
71abe04
* Mon May 06 2019 Rex Dieter <rdieter@fedoraproject.org> - 4.19.17-1
71abe04
- 4.19.17
71abe04
6acf967
* Thu Apr 11 2019 Rex Dieter <rdieter@fedoraproject.org> - 4.19.16-1
6acf967
- 4.19.16
6acf967
13c08ee
* Thu Mar 21 2019 Rex Dieter <rdieter@fedoraproject.org> - 4.19.15-1
13c08ee
- 4.19.15, - sip-api(12)=12.6
13c08ee
54e158b
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.13-4
54e158b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
54e158b
e2234ac
* Sun Oct 28 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.13-3
e2234ac
- restore non-namespaced python-sip module
e2234ac
d748be4
* Wed Oct 24 2018 Than Ngo <than@redhat.com> - 4.19.13-2
d748be4
- Fix python3 subpackages files ownership within __pycache__ (#1619099)
d748be4
c17e1e6
* Wed Oct 03 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.13-1
c17e1e6
- 4.19.3
c17e1e6
- drop non-namespaced python-sip modules
c17e1e6
- FIXME/TODO: add Obsoletes somewhere
c17e1e6
b2d03ad
* Sun Aug 26 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.12-9
b2d03ad
- include sip-pyqt4/sip-pyqt5 wrappers
b2d03ad
16f9a74
* Fri Aug 24 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.12-8
16f9a74
- -devel: move sipconfig/sipdistutils here
16f9a74
- -devel: drop dep on non-private base pkg (which may go away soon anyway)
16f9a74
- -devel: move subpkg defs nearer its basepkg in .spec
16f9a74
- (more) consistently use %%python3_pkgversion
16f9a74
- drop (uneeded) python3_sip_bin.patch
16f9a74
62210af
* Tue Aug 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.12-7
62210af
- include dist-info (#1524189)
62210af
1c807c0
* Tue Aug 14 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.12-6
1c807c0
- provide python?-pyqt4-sip too
1c807c0
- tighten dir ownership of sip python module dir(s)
1c807c0
9283f89
* Mon Jul 16 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.12-5
9283f89
- python?-devel: Requires: python?-sip
9283f89
- add python3-sip compat symlink
9283f89
067025e
* Sun Jul 15 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.12-4
067025e
- sip-api(12)=12.5
067025e
1e0a7a2
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.12-3
1e0a7a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
1e0a7a2
c9dadca
* Wed Jul 11 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.12-2
c9dadca
- *-devel: Requires: sip.
c9dadca
- drop Obsoletes: sip, now that we have a real sip pkg again
c9dadca
b6e0ae7
* Tue Jul 10 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.12-1
b6e0ae7
- 4.19.12
b6e0ae7
b6e0ae7
* Thu Jul 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.12-0.1.dev1807041651
b6e0ae7
- 4.19.12 snapshot
b6e0ae7
b6e0ae7
* Mon Jul 02 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.11-1
b6e0ae7
- 4.19.11
b6e0ae7
b6e0ae7
* Sun Jul 01 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.10-1
b6e0ae7
- 4.19.10
b6e0ae7
2fe2330
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 4.19.9-0.2.dev1805261119
2fe2330
- Rebuilt for Python 3.7
2fe2330
6e2cecd
* Tue May 29 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.9-0.1.dev1805261119
6e2cecd
- 4.19.9.dev1805261119 snapshot
6e2cecd
- %build: use --no-dist-info, feature not ready
6e2cecd
1a26d4c
* Thu Mar 15 2018 Sérgio Basto <sergio@serjux.com> - 4.19.8-3
1a26d4c
- Use bcond to handle conditional builds
1a26d4c
d83a12d
* Wed Mar 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.8-2
d83a12d
- BR: gcc-c++, sip-api(12)=12.4
d83a12d
03b92e5
* Tue Mar 06 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.8-1
03b92e5
- 4.19.8
03b92e5
d813817
* Sat Mar 03 2018 Sérgio Basto <sergio@serjux.com> - 4.19.7-3
d813817
- Enable python3 on epel7
d813817
398e128
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.7-2
398e128
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
398e128
279e60d
* Tue Jan 23 2018 Rex Dieter <rdieter@fedoraproject.org> - 4.19.7-1
279e60d
- 4.19.7
279e60d
94dfb04
* Thu Jan 18 2018 Scott Talbert <swt@techie.net> - 4.19.6-5
94dfb04
- Cherry-pick patch from upstream to fix generator segfault
94dfb04
65fb567
* Mon Dec 25 2017 Rex Dieter <rdieter@fedoraproject.org> - 4.19.6-4
65fb567
- python2-sip-devel: fix dep on base pkg
65fb567
79096c9
* Sun Dec 17 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.19.6-3
79096c9
- Python 2 binary packages renamed to python2-sip and python2-sip-devel
79096c9
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
79096c9
00b1699
* Mon Dec 11 2017 Merlin Mathesius <mmathesi@redhat.com> - 4.19.6-2
00b1699
- Cleanup spec file conditionals
00b1699
d669a5a
* Sat Nov 25 2017 Rex Dieter <rdieter@fedoraproject.org> - 4.19.6-1
d669a5a
- sip-4.19.6
d669a5a
b5c4103
* Mon Nov 06 2017 Rex Dieter <rdieter@fedoraproject.org> - 4.19.5-1
b5c4103
- sip-4.19.5
b5c4103
5837b59
* Sat Nov 04 2017 Rex Dieter <rdieter@fedoraproject.org> - 4.19.4-1
5837b59
- sip-4.19.4, sip-api(12)=12.3
5837b59
e029440
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.3-4
e029440
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
e029440
262d186
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.3-3
262d186
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
262d186
Rex Dieter f79ea6e
* Wed Jul 05 2017 Rex Dieter <rdieter@fedoraproject.org> - 4.19.3-2
Rex Dieter f79ea6e
- python3 sipconfig.py: set proper sip_bin value
Rex Dieter f79ea6e
Rex Dieter 5fd31b0
* Wed Jul 05 2017 Rex Dieter <rdieter@fedoraproject.org> - 4.19.3-1
Rex Dieter 5fd31b0
- sip-4.19.3, sip-api(12)=12.2
Rex Dieter 5fd31b0
Rex Dieter 3da1976
* Mon Apr 03 2017 Rex Dieter <rdieter@fedoraproject.org> - 4.19.2-1
Rex Dieter 3da1976
- sip-4.19.2
Rex Dieter 3da1976
Rex Dieter bcb0852
* Thu Feb 16 2017 Rex Dieter <rdieter@fedoraproject.org> - 4.19.1-1
Rex Dieter bcb0852
- sip-4.19.1, sip-api(12)=12.1 (#1422744)
Rex Dieter bcb0852
86b1fd9
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.19-2
86b1fd9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
86b1fd9
Rex Dieter e143ee6
* Sat Dec 31 2016 Rex Dieter <rdieter@math.unl.edu> - 4.19-1
Rex Dieter e143ee6
- sip-4.19, sip-api(12)=12.0
Rex Dieter e143ee6
7c19b7e
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 4.18.1-2
7c19b7e
- Rebuild for Python 3.6
7c19b7e
Rex Dieter d5187d9
* Tue Jul 26 2016 Rex Dieter <rdieter@fedoraproject.org> - 4.18.1-1
Rex Dieter d5187d9
- sip-4.18.1
Rex Dieter d5187d9
e4e3bb1
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.18-3
e4e3bb1
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
e4e3bb1
Rex Dieter 461262a
* Mon Jun 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 4.18-2
Rex Dieter 461262a
- backport upstream fix for proper out-of-src-tree builds
Rex Dieter 461262a
- backport upstream fix for Diamond inheritance (#1345953)
Rex Dieter 461262a
Rex Dieter 0d5a2f2
* Wed Apr 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 4.18-1
Rex Dieter 0d5a2f2
- sip-4.18, sip-api(11)=11.3
Rex Dieter 0d5a2f2
0f3cb3f
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.17-5
0f3cb3f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
0f3cb3f
Rex Dieter 3d8b513
* Sun Jan 31 2016 Rex Dieter <rdieter@fedoraproject.org> 4.17-4
Rex Dieter 3d8b513
- %%buid: set LFLAGS too
Rex Dieter 3d8b513
83eb9f0
* Thu Nov 12 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.17-3
83eb9f0
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
83eb9f0
c1c258f
* Tue Nov 10 2015 Than Ngo <than@redhat.com> - 4.17-2
c1c258f
- rebuild
c1c258f
Rex Dieter 381ccd1
* Sat Oct 24 2015 Rex Dieter <rdieter@fedoraproject.org> 4.17-1
Rex Dieter 381ccd1
- sip-4.17, use %%license tag
Rex Dieter 381ccd1
Robert Kuska 7f2f233
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 4.16.9-2
Robert Kuska 7f2f233
- Rebuilt for Python3.5 rebuild
Robert Kuska 7f2f233
Rex Dieter 2316705
* Wed Jul 29 2015 Rex Dieter <rdieter@fedoraproject.org> 4.16.9-1
Rex Dieter 2316705
- sip-4.16.9
Rex Dieter 2316705
a13ecad
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.16.8-2
a13ecad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a13ecad
Rex Dieter 65cc3d6
* Fri Jun 12 2015 Rex Dieter <rdieter@fedoraproject.org> 4.16.8-1
Rex Dieter 65cc3d6
- sip-4.16.8, sip-api(11)=11.2
Rex Dieter 65cc3d6
036e216
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 4.16.7-2
036e216
- Rebuilt for GCC 5 C++11 ABI change
036e216
Rex Dieter 8ef8677
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 4.16.7-1
Rex Dieter 8ef8677
- sip-4.16.7
Rex Dieter 8ef8677
Rex Dieter d2e7d30
* Wed Feb 25 2015 Rex Dieter <rdieter@fedoraproject.org> 4.16.6-1
Rex Dieter d2e7d30
- sip-4.16.6
Rex Dieter d2e7d30
Rex Dieter e07fa34
* Fri Dec 26 2014 Rex Dieter <rdieter@fedoraproject.org> 4.16.5-1
Rex Dieter e07fa34
- sip-4.16.5
Rex Dieter e07fa34
Rex Dieter dadce52
* Sun Oct 26 2014 Rex Dieter <rdieter@fedoraproject.org> 4.16.4-1
Rex Dieter dadce52
- sip-4.16.4
Rex Dieter dadce52
Rex Dieter 0a3b746
* Mon Sep 15 2014 Rex Dieter <rdieter@fedoraproject.org> 4.16.3-1
Rex Dieter 0a3b746
- sip-4.16.3
Rex Dieter 0a3b746
6e2ea90
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.16.2-2
6e2ea90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
6e2ea90
Rex Dieter 1febd1f
* Thu Jul 03 2014 Rex Dieter <rdieter@fedoraproject.org> 4.16.2-1
Rex Dieter 1febd1f
- sip-4.16.2
Rex Dieter 1febd1f
Rex Dieter 76769c6
* Mon Jun 09 2014 Rex Dieter <rdieter@fedoraproject.org> 4.16.1-1
Rex Dieter 76769c6
- sip-4.16.1
Rex Dieter 76769c6
e356be2
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.16-3
e356be2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e356be2
Rex Dieter b1fc70f
* Sun Jun 01 2014 Rex Dieter <rdieter@fedoraproject.org> 4.16-2
Rex Dieter b1fc70f
- pull in upstream fix for PyQt-4.11.1 ftbfs
Rex Dieter b1fc70f
Rex Dieter 0f86fd4
* Wed May 28 2014 Rex Dieter <rdieter@fedoraproject.org> 4.16-1
Rex Dieter 0f86fd4
- sip-4.16, sip-api(11)=11.1
Rex Dieter 0f86fd4
Rex Dieter b5244cd
* Mon May 12 2014 Rex Dieter <rdieter@fedoraproject.org> 4.15.5-2
Rex Dieter b5244cd
- rebuild (f21-python)
Rex Dieter b5244cd
Rex Dieter 8bef7b5
* Sun Mar 16 2014 Rex Dieter <rdieter@fedoraproject.org> - 4.15.5-1
Rex Dieter 8bef7b5
- sip-4.15.5, sip-api(11)=11.0
Rex Dieter 8bef7b5
- -macros: noarch
Rex Dieter 8bef7b5
- s/python/python2/
Rex Dieter 8bef7b5
Rex Dieter dbd306f
* Sat Feb 01 2014 Rex Dieter <rdieter@fedoraproject.org> 4.15.4-2
Rex Dieter dbd306f
- -macros: use %%_rpmconfigdir/macros.d (where supported)
Rex Dieter dbd306f
- .spec cleanup
Rex Dieter dbd306f
Rex Dieter 0daf636
* Wed Jan 08 2014 Rex Dieter <rdieter@fedoraproject.org> 4.15.4-1
Rex Dieter 0daf636
- sip-4.15.4
Rex Dieter 0daf636
Rex Dieter c99d1f3
* Wed Oct 16 2013 Rex Dieter <rdieter@fedoraproject.org> 4.15.3-1
Rex Dieter c99d1f3
- sip-4.15.3
Rex Dieter c99d1f3
4e5d26f
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.14.7-2
4e5d26f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
4e5d26f
Rex Dieter 9c14571
* Mon Jun 17 2013 Rex Dieter <rdieter@fedoraproject.org> 4.14.7-1
Rex Dieter 4e91f7d
- sip-4.14.7
Rex Dieter 4e91f7d
- sip-api(10) = 10.0
Rex Dieter 9c14571
Rex Dieter 489c9e5
* Sun Apr 21 2013 Rex Dieter <rdieter@fedoraproject.org> 4.14.6-1
Rex Dieter 489c9e5
- sip-4.14.6
Rex Dieter 489c9e5
Rex Dieter 9136fca
* Tue Mar 26 2013 Rex Dieter <rdieter@fedoraproject.org> 4.14.5-1
Rex Dieter 1fd8444
- sip-4.14.5 (#928340)
Rex Dieter 9136fca
Rex Dieter 135de4d
* Sun Mar 03 2013 Rex Dieter <rdieter@fedoraproject.org> 4.14.4-1
Rex Dieter 135de4d
- sip-4.14.4, sip-api 9.2
Rex Dieter 135de4d
Rex Dieter 3d4917b
* Thu Jan 31 2013 Rex Dieter <rdieter@fedoraproject.org> 4.14.3-1
Rex Dieter 3d4917b
- sip-4.14.3
Rex Dieter 3d4917b
Rex Dieter 1d758c0
* Sun Dec 09 2012 Rex Dieter <rdieter@fedoraproject.org> 4.14.2-1
Rex Dieter 1d758c0
- sip-4.14.2
Rex Dieter 1d758c0
896a087
* Sun Oct 28 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.14.1-1
896a087
- sip-4.14.1
896a087
- sip-api(9) = 9.1
896a087
58dabb8
* Mon Oct 01 2012 Rex Dieter <rdieter@fedoraproject.org> - 4.14-1
58dabb8
- sip-4.14
58dabb8
- sip-api(9) = 9.0
58dabb8
cf6a7f5
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 4.13.3-4
cf6a7f5
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
cf6a7f5
a4bf4d0
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 4.13.3-3
a4bf4d0
- make with_python3 be conditional on fedora
a4bf4d0
25167a7
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13.3-2
25167a7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
25167a7
39edebb
* Fri Jun 22 2012 Rex Dieter <rdieter@fedoraproject.org> 4.13.3-1
39edebb
- 4.13.3
39edebb
84b107f
* Sat Feb 11 2012 Rex Dieter <rdieter@fedoraproject.org> 4.13.2-1
84b107f
- 4.13.2
84b107f
13b7426
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.13.1-2
13b7426
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
13b7426
035fc30
* Fri Dec 23 2011 Rex Dieter <rdieter@fedoraproject.org> 4.13.1-1
035fc30
- 4.13.1
035fc30
52d70fd
* Wed Oct 26 2011 Rex Dieter <rdieter@fedoraproject.org> 4.13-1
52d70fd
- 4.13
52d70fd
2afbeb6
* Fri Sep 23 2011 Rex Dieter <rdieter@fedoraproject.org> 4.12.4-3
2afbeb6
- License: GPLv2 or GPLv3 and (GPLv3+ with exceptions) (#226419)
2afbeb6
3243244
* Wed Sep 14 2011 Rex Dieter <rdieter@fedoraproject.org> 4.12.4-2
3243244
- try not to rpath the world (#737236)
3243244
a35415d
* Wed Aug 10 2011 Rex Dieter <rdieter@fedoraproject.org> 4.12.4-1
a35415d
- 4.12.4
a35415d
3452e26
* Wed Jun 08 2011 Rex Dieter <rdieter@fedoraproject.org> 4.12.3-1
3452e26
- 4.12.3
3452e26
d09e66f
* Mon May 02 2011 Rex Dieter <rdieter@fedoraproject.org> 4.12.2-1
d09e66f
- 4.12.2
d09e66f
1499906
* Tue Mar 22 2011 Rex Dieter <rdieter@fedoraproject.org> 4.12.1-5
1499906
- Provides: (python3-)sip-api(...)%%{_isa} ...  (ie, make it arch'd)
1499906
736e383
* Fri Feb 25 2011 Rex Dieter <rdieter@fedoraproject.org> 4.12.1-4
736e383
- no_strip patch, fixes -debuginfo
736e383
f18c392
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.12.1-3
f18c392
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f18c392
b60dfd8
* Thu Jan 27 2011 Rex Dieter <rdieter@fedoraproject.org> 4.12.1-2
b60dfd8
- macros.sip: %%_sip_api_minor 1
b60dfd8
1bf2980
* Mon Jan 24 2011 Rex Dieter <rdieter@fedoraproject.org> 4.12.1-1
1bf2980
- sip-4.12.1
1bf2980
8ac12fb
* Sat Jan 15 2011 Rex Dieter <rdieter@fedoraproject.org> - 4.12.1-0.1.fa100876a783
8ac12fb
- sip-4.12.1 snapshot
8ac12fb
9380240
* Thu Dec 30 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.12-2
9380240
- rebuild (python3)
9380240
cced0b4
* Fri Dec 24 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.12-1
cced0b4
- sip-4.12
cced0b4
Rex Dieter 9c14571
* Mon Nov 16 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.11.2-2
8c8607a
- add missing %%defattr to python3- pkgs (#226419)
8c8607a
d06b220
* Sat Oct 23 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.11.2-1
d06b220
- sip-4.11.2
d06b220
bf3133a
* Wed Sep 08 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.11.1-1
bf3133a
- sip-4.11.1
bf3133a
- sip-api(8) = 8.0
bf3133a
98695f1
* Wed Aug 25 2010 Thomas Spura <tomspur@fedoraproject.org> - 4.10.5-3
98695f1
- rebuild with python3.2
98695f1
  http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
98695f1
ff5f0a3
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 4.10.5-2
ff5f0a3
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
ff5f0a3
713bfab
* Fri Jul 16 2010 Rex Dieter <rdieter@fedoraproject.org> 4.10.5-1
713bfab
- sip-4.10.5
713bfab
b81956a
* Wed Jul 14 2010 Rex Dieter <rdieter@fedoraproject.org> 4.10.3-1
b81956a
- sip-4.10.3
b81956a
578ed5c
* Fri Jun 25 2010 Karsten Hopp <karsten@redhat.com> 4.10.2-3
578ed5c
- bump and rebuild so that s390 will build the python3-sip packages
578ed5c
6adac3d
* Mon Apr 26 2010 David Malcolm <dmalcolm@redhat.com> - 4.10.2-2
6adac3d
- enable "with_python3" in the build
6adac3d
- use py3dir throughout, as provided by python3-devel
6adac3d
- name the python 3 sip binary "python3-sip"
6adac3d
- fix a typo in the name of the data dir: python-3sip -> python3-sip
6adac3d
- split out macros.sip into a new subpackage
6adac3d
708230d
* Sat Apr 17 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.10.2-1
708230d
- sip-4.10.2
708230d
48b7dfd
* Thu Mar 18 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.10.1-2
ef5f86b
- _sip_api_minor 1
48b7dfd
2246551
* Thu Mar 18 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.10.1-1
2246551
- sip-4.10.1
2246551
fdb146d
* Fri Jan 15 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.10-1
fdb146d
- sip-4.10 (final)
fdb146d
de034a7
* Fri Jan 08 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.10-0.2.20100102
de034a7
- RFE: Support python3 when building sip (#545124)
de034a7
- drop old pre v4 changelog
de034a7
de034a7
* Thu Jan 07 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.10-0.1.20100102
e8565e0
- sip-4.10-snapshot-20100102
e8565e0
233bd42
* Mon Nov 23 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.9.3-1
233bd42
- sip-4.9.3
233bd42
3ba24ed
* Fri Nov 20 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.9.2-1
3ba24ed
- sip-4.9.2
3ba24ed
e2ad522
* Tue Nov 16 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.9.1-3
e2ad522
- move sip binary to -devel 
e2ad522
20ee583
* Mon Nov 16 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.9.1-2
20ee583
- Provides: sip-api(%%_sip_api_major) = %%_sip_api
20ee583
- devel: /etc/rpm/macros.sip helper
20ee583
5404147
* Fri Oct 23 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.9.1-1
5404147
- sip-4.9.1
5404147
e176914
* Thu Oct 15 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.9.1-0.1.20091014
e176914
- sip-4.9.1-snapshot-20091014
e176914
413b3a1
* Thu Oct 15 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.9-1
413b3a1
- sip-4.9
413b3a1
- License: GPLv2 or GPLv3
413b3a1
43bba52
* Mon Aug 10 2009 Ville Skyttä <ville.skytta@iki.fi> - 4.8.2-2
43bba52
- Convert specfile to UTF-8.
43bba52
fa343ff
* Tue Jul 28 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.8.2-1
fa343ff
- sip-4.8.2
fa343ff
806b8ee
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.8.1-2
806b8ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
806b8ee
7c80e4f
* Tue Jun 16 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.8.1-1
7c80e4f
- sip-4.8.1
7c80e4f
8f78f2c
* Fri Jun 05 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.8-1
8f78f2c
- sip-4.8
8f78f2c
f9756f7
* Thu May 21 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.8-0.1.20090430
f9756f7
- sip-4.8-snapshot-20090430
f9756f7
1780dd6
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.7.9-3
1780dd6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1780dd6
9b11b8c
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 4.7.9-2
9b11b8c
- Rebuild for Python 2.6
9b11b8c
c44fd86
* Mon Nov 17 2008 Rex Dieter <rdieter@fedoraproject.org> 4.7.9-1
c44fd86
- sip-4.7.9
c44fd86
c44fd86
* Mon Nov 10 2008 Rex Dieter <rdieter@fedoraproject.org> 4.7.8-1
c44fd86
- sip-4.7.8
c44fd86
69890d2
* Thu Sep 04 2008 Tom "spot" Callaway <tcallawa@redhat.com> 4.7.7-3
69890d2
- fix license tag
69890d2
b4d395f
* Tue Sep 02 2008 Than Ngo <than@redhat.com> 4.7.7-2
b4d395f
- get rid of BR on qt
b4d395f
1169b0b
* Tue Aug 26 2008 Rex Dieter <rdieter@fedoraproject.org> - 4.7.7-1
1169b0b
- sip-4.7.7
1169b0b
8a15a6f
* Wed May 21 2008 Rex Dieter <rdieter@fedoraproject.org> - 4.7.6-1
8a15a6f
- sip-4.7.6
8a15a6f
d4ed633
* Wed May 14 2008 Rex Dieter <rdieter@fedoraproject.org> - 4.7.5-1
d4ed633
- sip-4.7.5
d4ed633
db9ceff
* Tue Mar 25 2008 Rex Dieter <rdieter@fedoraproject.org> - 4.7.4-3
db9ceff
- BR: qt3-devel (f9+)
db9ceff
d3a9f8f
* Tue Feb 12 2008 Rex Dieter <rdieter@fedoraproject.org> - 4.7.4-2
d3a9f8f
- fix 64bit patch
d3a9f8f
cd0c163
* Tue Feb 12 2008 Rex Dieter <rdieter@fedoraproject.org> - 4.7.4-1
cd0c163
- sip-4.7.4
cd0c163
daf2e19
* Thu Dec 06 2007 Rex Dieter <rdieter[AT]fedoraproject.org> - 4.7.3-1
daf2e19
- sip-4.7.3
daf2e19
afc95f4
* Wed Dec 05 2007 Rex Dieter <rdieter[AT]fedoraproject.org> - 4.7.2-1
afc95f4
- sip-4.7.2
afc95f4
- omit needless scriptlets
afc95f4
e81b45d
* Mon Nov 12 2007 Rex Dieter <rdieter[AT]fedoraproject.org> - 4.7.1-2
e81b45d
- License: Python Software Foundation License v2
e81b45d
- fix/cleanup some macro usage
e81b45d
- fix Source, Url. 
e81b45d
0a2ceea
* Mon Oct 22 2007 Than Ngo <than@redhat.com> - 4.7.1-1
0a2ceea
- 4.7.1
0a2ceea
40cea3b
* Mon Oct 01 2007 Than Ngo <than@redhat.com> - 4.6-3
40cea3b
- fix rh#289321, sipconfig.py includes wrong py_lib_dir, thanks to Rex Dieter
40cea3b
7947156
* Thu Aug 30 2007 Than Ngo <than@redhat.com> - 4.6-2.fc7
7947156
- typo in description
7947156
6e36d25
* Thu Apr 12 2007 Than Ngo <than@redhat.com> - 4.6-1.fc7
6e36d25
- 4.6
6e36d25
f0b570d
* Thu Jan 18 2007 Than Ngo <than@redhat.com> - 4.5.2-1
f0b570d
- 4.5.2 
f0b570d
910c638
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 4.5-2
910c638
- rebuild against python 2.5
910c638
- cleanups for python packaging guidelines
910c638
0bf08f6
* Mon Nov 06 2006 Than Ngo <than@redhat.com> 4.5-1
0bf08f6
- 4.5
0bf08f6
d0e1716
* Thu Sep 28 2006 Than Ngo <than@redhat.com> 4.4.5-3
d0e1716
- fix #207297, use qt qmake files
d0e1716
c706533
* Wed Sep 20 2006 Than Ngo <than@redhat.com> 4.4.5-2
c706533
- fix #206633, own %%_datadir/sip
c706533
b6dceb6
* Wed Jul 19 2006 Than Ngo <than@redhat.com> 4.4.5-1
b6dceb6
- update to 4.4.5
b6dceb6
f37eb2e
* Mon Jul 17 2006 Than Ngo <than@redhat.com> 4.4.3-2
f37eb2e
- rebuild
f37eb2e
e9d3d34
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 4.4.3-1.1
e9d3d34
- rebuild
e9d3d34
d9ca327
* Thu Apr 27 2006 Than Ngo <than@redhat.com> 4.4.3-1
d9ca327
- update to 4.4.3
d9ca327
- built with %%{optflags}
d9ca327
7a04a49
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.3.1-1.2.1
7a04a49
- bump again for double-long bug on ppc(64)
7a04a49
37dade3
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.3.1-1.2
37dade3
- rebuilt for new gcc4.1 snapshot and glibc changes
37dade3
702e925
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
702e925
- rebuilt
702e925
e77de54
* Mon Sep 12 2005 Than Ngo <than@redhat.com> 4.3.1-1
e77de54
- update to 4.3.1
e77de54
135c7bd
* Wed Mar 23 2005 Than Ngo <than@redhat.com> 4.2.1-1
135c7bd
- 4.2.1
135c7bd
a6c1ab4
* Fri Mar 04 2005 Than Ngo <than@redhat.com> 4.2-1
a6c1ab4
- 4.2
a6c1ab4
7f6dc7e
* Thu Nov 11 2004 Than Ngo <than@redhat.com> 4.1-2
7f6dc7e
- rebuild against python 2.4
7f6dc7e
91222db
* Fri Sep 24 2004 Than Ngo <than@redhat.com> 4.1-1
91222db
- update to 4.1