Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
deef1a0fbb |
4 changed files with 24 additions and 35 deletions
0
.cvsignore
Normal file
0
.cvsignore
Normal file
21
Makefile
Normal file
21
Makefile
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Makefile for source rpm: xapian-bindings
|
||||
# $Id$
|
||||
NAME := xapian-bindings
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (xapian-bindings-1.4.31.tar.xz) = 0da7f503368b9976fdb155f7a2c48b6f8a44a426753cc8f0b92ea53e180faa7b0eb2f0d646c190740509af54a122f0f3df6826ff58ad77b30c4b2c7addb02298
|
||||
SHA512 (xapian-bindings-1.4.23.tar.xz) = 25ac17baf1f288dedce70b983cba294d4ce100f6f5b607c76f5b697c04f6b08c276a55ccd5b9cc9c429664e1bb86f0fc31d88c72481a9cc951942efdfa9726a2
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
%global tcl_sitearch %{_libdir}/tcl%{tcl_version}
|
||||
|
||||
Name: xapian-bindings
|
||||
Version: 1.4.31
|
||||
Release: 4%{?dist}
|
||||
Version: 1.4.23
|
||||
Release: %autorelease
|
||||
Summary: Bindings for the Xapian Probabilistic Information Retrieval Library
|
||||
|
||||
# Automatically converted from old format: GPLv2+ - review is highly recommended.
|
||||
|
|
@ -14,12 +14,8 @@ Source0: https://www.oligarchy.co.uk/xapian/%{version}/%{name}-%{version}.
|
|||
BuildRequires: gcc-c++
|
||||
BuildRequires: libuuid-devel
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: python3-devel python3-setuptools python3-sphinx
|
||||
BuildRequires: ruby ruby-devel rubygems rubygem-rdoc rubygem-json
|
||||
# swig 4.4.0+ contains a fix for PyThread_release_lock/PyThread_free_lock in Mutex destructor
|
||||
# needed for successful build with Python 3.15
|
||||
BuildRequires: swig >= 4.4.0
|
||||
BuildRequires: tcl-devel
|
||||
BuildRequires: xapian-core-devel
|
||||
BuildRequires: zlib-devel
|
||||
|
|
@ -81,16 +77,6 @@ export TCL_LIB=%{tcl_sitearch}
|
|||
|
||||
%configure --with-python3 --with-ruby --with-tcl
|
||||
|
||||
# Regenerate Python's SWIG wrapper with system swig
|
||||
pushd python3
|
||||
swig -DSWIG_PYTHON_LEGACY_BOOL \
|
||||
$(xapian-config --swigflags) \
|
||||
-I. -c++ -python -threads -shadow -O \
|
||||
-o xapian_wrap.cc python.i
|
||||
perl fixup-swig-py3-wrapper xapian.py > xapian__init__.py
|
||||
rm xapian.py
|
||||
popd
|
||||
|
||||
%{make_build}
|
||||
|
||||
%install
|
||||
|
|
@ -117,24 +103,6 @@ rm -rf %{buildroot}%{_datadir}/doc/%{name}
|
|||
%{tcl_sitearch}/xapian%{version}/
|
||||
|
||||
%changelog
|
||||
* Wed Jul 22 2026 Python Maint <python-maint@redhat.com> - 1.4.31-4
|
||||
- Rebuilt for Python 3.15.0b4 ABI change
|
||||
|
||||
* Fri Jul 03 2026 Karolina Surma <ksurma@redhat.com> - 1.4.31-3
|
||||
- Regenerate SWIG wrapper at build time with swig >= 4.4.0 (rhbz#2417021)
|
||||
|
||||
* Wed Feb 25 2026 Christiano Anderson <chris@christiano.me> - 1.4.31-2
|
||||
- Rebuild to 1.4.31
|
||||
|
||||
* Tue Feb 24 2026 Christiano Anderson <chris@christiano.me> - 1.4.31-1
|
||||
- Update to 1.4.31
|
||||
|
||||
* Mon Jan 19 2026 Christiano Anderson <chris@christiano.me> - 1.4.30-1
|
||||
- Update to 1.4.30
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.29-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 1.4.29-5
|
||||
- Rebuilt for Python 3.14.0rc3 bytecode
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue