till pushed to spambayes (el5). "2015-04-25: Retired orphaned package, because it was orphaned for more than six weeks. (..more)"

notifications at fedoraproject.org notifications at fedoraproject.org
Sat Apr 25 13:58:20 UTC 2015


>From 76beee32cef2f707c4bbf144fdc0c6afee452f22 Mon Sep 17 00:00:00 2001
From: Till Maas <opensource at till.name>
Date: Sat, 25 Apr 2015 15:58:13 +0200
Subject: 2015-04-25: Retired orphaned package, because it was orphaned for
 more than six weeks. Reference: https://fedorahosted.org/epel/ticket/7


diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index abe4e4c..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-spambayes-1.0.4.tar.gz
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..4f3c51d
--- /dev/null
+++ b/dead.package
@@ -0,0 +1,3 @@
+2015-04-25: Retired orphaned package, because it was orphaned for more than six weeks.
+Reference: https://fedorahosted.org/epel/ticket/7
+
diff --git a/sources b/sources
deleted file mode 100644
index 9d90423..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-78c33e79888d410711ff3c7dd7e98d79  spambayes-1.0.4.tar.gz
diff --git a/spambayes-1.0.4-py25.patch b/spambayes-1.0.4-py25.patch
deleted file mode 100644
index 1e698d1..0000000
--- a/spambayes-1.0.4-py25.patch
+++ /dev/null
@@ -1,57 +0,0 @@
---- spambayes/Corpus.py~	2007-04-05 13:19:35.000000000 -0700
-+++ spambayes/Corpus.py	2007-04-05 13:20:03.000000000 -0700
-@@ -1,5 +1,7 @@
- #! /usr/bin/env python
- 
-+from __future__ import generators
-+
- '''Corpus.py - Spambayes corpus management framework.
- 
- Classes:
-@@ -79,8 +81,6 @@
- __author__ = "Tim Stone <tim at fourstonesExpressions.com>"
- __credits__ = "Richie Hindle, Tim Peters, all the spambayes contributors."
- 
--from __future__ import generators
--
- try:
-     True, False
- except NameError:
---- spambayes/FileCorpus.py~	2007-04-05 13:19:40.000000000 -0700
-+++ spambayes/FileCorpus.py	2007-04-05 13:20:15.000000000 -0700
-@@ -1,5 +1,7 @@
- #! /usr/bin/env python
- 
-+from __future__ import generators
-+
- """FileCorpus.py - Corpus composed of file system artifacts
- 
- Classes:
-@@ -82,8 +84,6 @@
- __author__ = "Tim Stone <tim at fourstonesExpressions.com>"
- __credits__ = "Richie Hindle, Tim Peters, all the spambayes contributors."
- 
--from __future__ import generators
--
- from spambayes import Corpus
- from spambayes import message
- from spambayes import storage
---- spambayes/message.py~	2007-04-05 13:19:44.000000000 -0700
-+++ spambayes/message.py	2007-04-05 13:20:26.000000000 -0700
-@@ -1,5 +1,7 @@
- #! /usr/bin/env python
- 
-+from __future__ import generators
-+
- """message.py - Core Spambayes classes.
- 
- Classes:
-@@ -75,8 +77,6 @@
- __author__ = "Tim Stone <tim at fourstonesExpressions.com>"
- __credits__ = "Mark Hammond, Tony Meyer, all the spambayes contributors."
- 
--from __future__ import generators
--
- try:
-     True, False
- except NameError:
diff --git a/spambayes.spec b/spambayes.spec
deleted file mode 100644
index 33142b5..0000000
--- a/spambayes.spec
+++ /dev/null
@@ -1,90 +0,0 @@
-%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
-
-Name:           spambayes
-Version:        1.0.4
-Release:        5%{?dist}
-Summary:        Bayesian anti-spam filter
-
-Group:          Development/Languages
-License:        Python
-URL:            http://spambayes.sourceforge.net
-Source0:        http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
-Patch0:         %{name}-1.0.4-py25.patch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-BuildArch:      noarch
-BuildRequires:  python-devel
-
-%if 0%{?fedora} >= 8
-BuildRequires: python-setuptools-devel
-%else
-BuildRequires: python-setuptools
-%endif
-
-%description
-SpamBayes will attempt to classify incoming email messages as 'spam', 'ham'
-(good, non-spam email) or 'unsure'. This means you can have spam or unsure
-messages automatically filed away in a different mail folder, where it won't
-interrupt your email reading. First SpamBayes must be trained by each user to
-identify spam and ham. Essentially, you show SpamBayes a pile of email that
-you like (ham) and a pile you don't like (spam). SpamBayes will then analyze
-the piles for clues as to what makes the spam and ham different. For example;
-different words, differences in the mailer headers and content style.  The
-system then uses these clues to examine new messages.
-
-
-%prep
-%setup -q
-%patch0 -p0 -b .py25~
-
-# Fix rpmlint warnings
-chmod -x *.txt
-
-# remove shell bangs
-pushd %{name}
-for file in $(find . -type f -name "*.py"); do
-  cp $file $file.orig
-  grep -v -e "^\#\!" $file.orig > $file
-  rm -f $file.orig
-done
-popd
-
-
-%build
-CFLAGS="$RPM_OPT_FLAGS" %{__python} -c 'import setuptools; execfile("setup.py")' build
-
-
-%install
-rm -rf $RPM_BUILD_ROOT
-%{__python} -c 'import setuptools; execfile("setup.py")' install --skip-build --root $RPM_BUILD_ROOT
-
- 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
-%files
-%defattr(-,root,root,-)
-%doc *.txt
-%{python_sitelib}/*
-%{_bindir}/*
-%exclude %{_bindir}/*.pyo
-%exclude %{_bindir}/*.pyc
-
-
-%changelog
-* Wed Oct 17 2007 Christopher Stone <chris.stone at gmail.com> 1.0.4-5
-- Providing Eggs for non-setuptools packages (bz#325041)
-
-* Fri Apr 27 2007 Christopher Stone <chris.stone at gmail.com> 1.0.4-4
-- Remove python from package name
-
-* Thu Apr 05 2007 Christopher Stone <chris.stone at gmail.com> 1.0.4-3
-- Add patch to fix python2.5 errors
-
-* Thu Apr 05 2007 Christopher Stone <chris.stone at gmail.com> 1.0.4-2
-- %%exclude pyo and pyc files from %%{_bindir}
-- Add scriptlet to remove shebangs
-
-* Sat Mar 31 2007 Christopher Stone <chris.stone at gmail.com> 1.0.4-1
-- Initial Fedora release
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/spambayes.git/commit/?h=el5&id=76beee32cef2f707c4bbf144fdc0c6afee452f22


More information about the scm-commits mailing list