From 7fab314a3c5b3db02f7457027d15b8ab2abd18d7 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 10 Dec 2007 16:43:36 +0000 Subject: [PATCH 1/4] Initialize branch EL-5 for python-enchant --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..42f697a --- /dev/null +++ b/branch @@ -0,0 +1 @@ +EL-5 From d68d806c2fba256bd1f435da365dc94c873ddedf Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:51:24 +0000 Subject: [PATCH 2/4] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d7f0d83..40ea851 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: python-enchant -# $Id: Makefile,v 1.1 2006/02/01 14:48:41 roozbeh Exp $ +# $Id: Makefile,v 1.2 2009/11/26 01:51:24 notting Exp $ NAME := python-enchant 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 +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 5e7675aed15bc19cc3de1aa4a0744b71479fa37b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 10:19:27 +0000 Subject: [PATCH 3/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 40ea851..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: python-enchant -# $Id: Makefile,v 1.2 2009/11/26 01:51:24 notting Exp $ -NAME := python-enchant -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 $$d/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) diff --git a/branch b/branch deleted file mode 100644 index 42f697a..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -EL-5 From 21223ea3278c44a42ad2d9559a8adfc16a63b38e Mon Sep 17 00:00:00 2001 From: Till Maas Date: Sat, 18 Oct 2014 23:11:02 +0200 Subject: [PATCH 4/4] 2014-10-18: Retired, because it was orphaned and not available in the EPEL5 repo --- .gitignore | 1 - dead.package | 2 ++ python-enchant.spec | 82 --------------------------------------------- sources | 1 - 4 files changed, 2 insertions(+), 84 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 python-enchant.spec delete mode 100644 sources diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 9ba1e33..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -pyenchant-1.1.5.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..d9f2c42 --- /dev/null +++ b/dead.package @@ -0,0 +1,2 @@ +2014-10-18: Retired, because it was orphaned and not available in the EPEL5 repo + diff --git a/python-enchant.spec b/python-enchant.spec deleted file mode 100644 index 50b282b..0000000 --- a/python-enchant.spec +++ /dev/null @@ -1,82 +0,0 @@ -%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} - -Name: python-enchant -Version: 1.1.5 -Release: 5%{?dist} -Summary: Python bindings for Enchant spellchecking library - -Group: Development/Languages -License: LGPL -URL: http://pyenchant.sourceforge.net/ -Source0: http://dl.sourceforge.net/sourceforge/pyenchant/pyenchant-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: python-devel enchant-devel -BuildRequires: python-setuptools >= 0:0.6a9 - -Provides: PyEnchant - -%description -PyEnchant is a spellchecking library for Python, based on the Enchant -library by Dom Lachowicz. - - -%prep -%setup -q -n pyenchant-%{version} - - -%build -CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build - - -%install -rm -rf $RPM_BUILD_ROOT -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT --single-version-externally-managed -rm -rf $RPM_BUILD_ROOT/%{python_sitearch}/*.egg-info - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -%defattr(-,root,root,-) -%doc LICENSE.txt README.txt -%dir %{python_sitearch}/enchant -%dir %{python_sitearch}/enchant/checker -%dir %{python_sitearch}/enchant/tokenize -%{python_sitearch}/enchant/*.py -%{python_sitearch}/enchant/*.py[co] -%{python_sitearch}/enchant/*/*.py -%{python_sitearch}/enchant/*/*.py[co] -%{python_sitearch}/enchant/_enchant.so - - -%changelog -* Thu Oct 05 2006 Christian Iseli 1.1.5-5 - - rebuilt for unwind info generation, broken in gcc-4.1.1-21 - -* Wed Sep 20 2006 José Matos - 1.1.5-4 -- Rebuild for FC-6. -- Unghost .pyo files. - -* Tue Feb 14 2006 Roozbeh Pournader - 1.1.5-3 -- Rebuild for Fedora Extras 5 - -* Tue Feb 07 2006 Roozbeh Pournader - 1.1.5-2 -- Rebuild - -* Sat Feb 04 2006 Roozbeh Pournader - 1.1.5-1 -- Update to 1.1.5 - -* Wed Feb 01 2006 Roozbeh Pournader - 1.1.3-3 -- Use %%{python_sitearch} instead of %%{python_sitelib} (for x86_64) - -* Wed Feb 01 2006 Roozbeh Pournader - 1.1.3-2 -- Remove %%{enchant_dir} macro -- Add %%dir for architecture-specific directory -- Add "Provides:" for PyEnchant -- Remove "Requires:" on enchant (Brian Pepple) - -* Mon Jan 09 2006 Roozbeh Pournader - 1.1.3-1 -- Initial packaging diff --git a/sources b/sources deleted file mode 100644 index d550718..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -d9a07392f1f0910635a221273ac9654d pyenchant-1.1.5.tar.gz