[supybot-gribble/f15] Initial Import (693664)

Dave Riches dcr226 at fedoraproject.org
Thu Jun 30 14:50:02 UTC 2011


commit 7a508eec92a2c1a5d8b9bf4954d61a44a95f01b1
Author: Dave Riches <dcr226 at fedorapeople.org>
Date:   Thu Jun 30 15:49:37 2011 +0100

    Initial Import (693664)

 .gitignore           |    1 +
 feedparser.patch     |    9 +++++
 sources              |    1 +
 supybot-gribble.spec |   91 ++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 102 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..d148bbf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/supybot-gribble-20110627.tar
diff --git a/feedparser.patch b/feedparser.patch
new file mode 100644
index 0000000..238a0c9
--- /dev/null
+++ b/feedparser.patch
@@ -0,0 +1,9 @@
+diff -rU4 supybot-gribble-0.83.4.1+gribble/plugins/RSS/local/feedparser.py supybot-gribble-0.83.4.1+gribble.new/plugins/RSS/local/feedparser.py
+--- supybot-gribble-0.83.4.1+gribble/plugins/RSS/local/feedparser.py	2011-04-04 21:30:52.000000000 +0100
++++ supybot-gribble-0.83.4.1+gribble.new/plugins/RSS/local/feedparser.py	2011-04-05 00:02:48.706955376 +0100
+@@ -1,5 +1,4 @@
+-#!/usr/bin/env python
+ """Universal feed parser
+ 
+ Handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds
+ 
diff --git a/sources b/sources
index e69de29..b332cc3 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+8e62dc8bd25ed5b45424df7b40358eec  supybot-gribble-20110627.tar
diff --git a/supybot-gribble.spec b/supybot-gribble.spec
new file mode 100644
index 0000000..4d26796
--- /dev/null
+++ b/supybot-gribble.spec
@@ -0,0 +1,91 @@
+Summary:	Cross-platform support bot based on supybot
+Name:		supybot-gribble
+Version:	0.83.4.1
+Release:	5%{?dist}
+License:	BSD and GPLv2 and Python
+Group:		Applications/Internet
+URL:		http://sourceforge.net/apps/mediawiki/gribble/	
+# The source was pulled from upstreams git scm. Use the following
+# commands to generate the tarball
+# git archive --format=tar --prefix=supybot-gribble-0.83.4.1/ --remote=git://gribble.git.sourceforge.net/gitroot/gribble/gribble 1e337bdfa9085133ddd54c82cffa69dfcaa13c9a > supybot-gribble-20110627.tar 
+Source0:	supybot-gribble-20110627.tar
+Patch0:		feedparser.patch
+BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root
+
+BuildArch:	noarch
+BuildRequires:	python-devel
+Requires:	python-sqlite2
+Conflicts:	supybot
+Obsoletes: supybot < 0.83.4.1-7
+Provides: supybot = 0.83.4.1-8%{dist}
+
+%description
+gribble is an enhanced supybot, with many fixes and updates 
+to the original supybot code base. Gribble brings many 
+plug-ins to fedora by adding sqlite2 support to many of the
+supybot plug-ins. Python-twisted is highly recommended.
+
+%prep
+%setup -q -n %{name}-%{version}
+%patch0 -p1
+
+%build
+%{__python} setup.py build
+
+%install
+rm -rf %{buildroot}
+%{__python} setup.py install -O1 --skip-build --root="%{buildroot}" --prefix="%{_prefix}"
+install -d -m 755 %{buildroot}%{_mandir}/man1/
+install -m 644 docs/man/supybot.1 %{buildroot}%{_mandir}/man1/
+install -m 644 docs/man/supybot-adduser.1 %{buildroot}%{_mandir}/man1/
+install -m 644 docs/man/supybot-botchk.1 %{buildroot}%{_mandir}/man1/
+install -m 644 docs/man/supybot-plugin-create.1 %{buildroot}%{_mandir}/man1/
+install -m 644 docs/man/supybot-plugin-doc.1 %{buildroot}%{_mandir}/man1/
+install -m 644 docs/man/supybot-test.1 %{buildroot}%{_mandir}/man1/
+install -m 644 docs/man/supybot-wizard.1 %{buildroot}%{_mandir}/man1/
+
+
+%clean
+rm  -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc ACKS ChangeLog LICENSE README RELNOTES
+%doc docs/{ADVANCED_PLUGIN_CONFIG,ADVANCED_PLUGIN_TESTING,CAPABILITIES}
+%doc docs/{CONFIGURATION,FAQ,GETTING_STARTED,PLUGIN_TUTORIAL,STYLE}
+%doc docs/{USING_UTILS,USING_WRAP}
+%{python_sitelib}/supybot
+%{python_sitelib}/supybot-0.83.4.1_gribble._2011_06_27T14_41_49_0400_-py2.*.egg-info
+%{_bindir}/supybot
+%{_bindir}/supybot-adduser
+%{_bindir}/supybot-botchk
+%{_bindir}/supybot-plugin-create
+%{_bindir}/supybot-plugin-doc
+%{_bindir}/supybot-test
+%{_bindir}/supybot-wizard
+%{_mandir}/man1/supybot.1*
+%{_mandir}/man1/supybot-adduser.1*
+%{_mandir}/man1/supybot-botchk.1*
+%{_mandir}/man1/supybot-plugin-create.1*
+%{_mandir}/man1/supybot-plugin-doc.1*
+%{_mandir}/man1/supybot-test.1*
+%{_mandir}/man1/supybot-wizard.1*
+
+
+%changelog
+* Thu Jun 30 2011 Dave Riches <david.r at ultracar.co.uk> - 0.83.4.1-5
+- fixed up obsoletes and provides
+
+* Mon Jun 27 2011 Dave Riches <david.r at ultracar.co.uk> - 0.83.4.1-4
+- rebuilt from latest upstream
+
+* Mon Jun 27 2011 Dave Riches <david.r at ultracar.co.uk> - 0.83.4.1-3
+- Fixed up provides, obsoletes and conflicts for build
+
+* Wed May 04 2011 Dave Riches <david.r at ultracar.co.uk> - 0.83.4.1-2
+- removed twisted dependency, updated package description
+
+* Mon Apr 04 2011 Dave Riches <dcr226 at fedoraproject.org> - 0.83.4.1-1
+- Packaged for Fedora
+
+


More information about the scm-commits mailing list