From 482aad3d07079b8ab21ecdde1b9a092096b409cb Mon Sep 17 00:00:00 2001 From: Elad Alfassa Date: Fri, 28 Jun 2013 16:24:02 +0300 Subject: [PATCH 01/17] New upstream release --- .gitignore | 1 + sources | 2 +- willie.spec | 42 ++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 42 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 660c2ea..7ff0bab 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /willie-3.1.2.tar.gz /willie-3.1.3.tar.gz /willie-3.2.0.tar.gz +/willie-4.0.0.tar.gz diff --git a/sources b/sources index f2a7589..6b09366 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -bda71ccfbcdde97a5e96e5604a4bc0fe willie-3.2.0.tar.gz +10c283c5d56afe00341b672826af5f03 willie-4.0.0.tar.gz diff --git a/willie.spec b/willie.spec index d1ed6fb..fdf6552 100644 --- a/willie.spec +++ b/willie.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: willie -Version: 3.2.0 +Version: 4.0.0 Release: 1%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot @@ -13,12 +13,13 @@ BuildArch: noarch BuildRequires: python2-devel BuildRequires: python-sphinx BuildRequires: dos2unix +BuildRequires: systemd Requires: pytz Requires: python-lxml Requires: python-feedparser Requires: python-enchant -Requires: tweepy +Requires: pygeoip Requires: MySQL-python Requires: pyOpenSSL Requires: python-praw @@ -42,14 +43,51 @@ rm build/api-docs/.buildinfo %install %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT +mkdir -p %{buildroot}%{_prefix}/lib/tmpfiles.d +install -m 0644 contrib/%{name}.conf %{buildroot}%{_prefix}/lib/tmpfiles.d/%{name}.conf +mkdir -p %{buildroot}/run +install -d -m 0755 %{buildroot}/run/%{name}/ +mkdir -p %{buildroot}%{_sysconfdir} +install -m 0644 contrib/%{name}.cfg %{buildroot}%{_sysconfdir}/%{name}.cfg +mkdir -p %{buildroot}%{_unitdir} +install -m 0644 contrib/%{name}.service %{buildroot}%{_unitdir}/%{name}.service +mkdir -p %{buildroot}/var/log/%{name} +mkdir -p %{buildroot}/var/lib/%{name} %files %doc README.rst COPYING CREDITS NEWS docs/build/api-docs +%config(noreplace) %{_sysconfdir}/%{name}.cfg %{python_sitelib}/* %{_bindir}/willie +%dir %attr(-,%{name}, %{name})/run/%{name}/ +%{_prefix}/lib/tmpfiles.d/%{name}.conf +%{_unitdir}/%{name}.service +%dir %attr(-,%{name}, %{name})/var/lib/%{name}/ +%dir %attr(-,%{name}, %{name})/var/log/%{name}/ + + +%pre +getent group %{name} >/dev/null || groupadd -r %{name} +getent passwd %{name} >/dev/null || \ +useradd -r -g %{name} -d /var/lib/%{name} -s /sbin/nologin \ + -c "willie ircbot account " %{name} +exit 0 + +%post +%systemd_post willie.service + +%preun +%systemd_preun willie.service + +%postun +%systemd_postun willie.service + %changelog +* Fri Jun 28 2013 Elad Alfassa - 4.0.0-1 +- New upstream release + * Sun Mar 31 2013 Elad Alfassa - 3.2.0-1 - New upstream release From 3e41ec6dd6d38476a9319627b07c88f1355f6483 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 01:58:09 -0500 Subject: [PATCH 02/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- willie.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/willie.spec b/willie.spec index fdf6552..dc59acb 100644 --- a/willie.spec +++ b/willie.spec @@ -2,7 +2,7 @@ Name: willie Version: 4.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 @@ -85,6 +85,9 @@ exit 0 %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 4.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Jun 28 2013 Elad Alfassa - 4.0.0-1 - New upstream release From 2b392acb1eea4e506075a55e6c6bfcce4b22336b Mon Sep 17 00:00:00 2001 From: Elad Alfassa Date: Mon, 19 Aug 2013 11:34:17 +0300 Subject: [PATCH 03/17] New upstream release --- .gitignore | 1 + sources | 2 +- willie.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 7ff0bab..bc33a59 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /willie-3.1.3.tar.gz /willie-3.2.0.tar.gz /willie-4.0.0.tar.gz +/4.0.1.tar.gz diff --git a/sources b/sources index 6b09366..f40cb08 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -10c283c5d56afe00341b672826af5f03 willie-4.0.0.tar.gz +cca8bb85b8b41ba6e3d3dd84f7353f6b 4.0.1.tar.gz diff --git a/willie.spec b/willie.spec index dc59acb..cf9e197 100644 --- a/willie.spec +++ b/willie.spec @@ -1,13 +1,13 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: willie -Version: 4.0.0 -Release: 2%{?dist} +Version: 4.0.1 +Release: 1%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 URL: http://willie.dftba.net/ -Source0: http://willie.dftba.net/files/%{name}-%{version}.tar.gz +Source0: https://github.com/embolalia/%{name}/archive/%{version}.tar.gz BuildArch: noarch BuildRequires: python2-devel @@ -85,6 +85,9 @@ exit 0 %changelog +* Mon Aug 19 2013 Elad Alfassa - 4.0.1-1 +- Update to 4.0.1 from upstream + * Sun Aug 04 2013 Fedora Release Engineering - 4.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 1e360d72186347db8de580ae2f4c675905271a68 Mon Sep 17 00:00:00 2001 From: Elad Alfassa Date: Tue, 20 Aug 2013 16:36:46 +0300 Subject: [PATCH 04/17] Fix dep error --- willie.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/willie.spec b/willie.spec index cf9e197..f7a1318 100644 --- a/willie.spec +++ b/willie.spec @@ -2,7 +2,7 @@ Name: willie Version: 4.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 @@ -19,7 +19,7 @@ Requires: pytz Requires: python-lxml Requires: python-feedparser Requires: python-enchant -Requires: pygeoip +Requires: python-pygeoip Requires: MySQL-python Requires: pyOpenSSL Requires: python-praw @@ -85,6 +85,9 @@ exit 0 %changelog +* Tue Aug 20 2013 Elad Alfassa - 4.0.1-2 +- Fix dependancy error + * Mon Aug 19 2013 Elad Alfassa - 4.0.1-1 - Update to 4.0.1 from upstream From 426de27c0933c3370724c91209d222a307ca6d4e Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Fri, 15 Nov 2013 18:14:02 -0500 Subject: [PATCH 05/17] New upstream release --- .gitignore | 1 + sources | 2 +- willie.spec | 8 +++++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index bc33a59..54285d9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /willie-3.2.0.tar.gz /willie-4.0.0.tar.gz /4.0.1.tar.gz +/willie-4.1.0.tar.gz diff --git a/sources b/sources index f40cb08..dacf724 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cca8bb85b8b41ba6e3d3dd84f7353f6b 4.0.1.tar.gz +31a5b62767f44379c553600d9d612436 willie-4.1.0.tar.gz diff --git a/willie.spec b/willie.spec index f7a1318..c80af4c 100644 --- a/willie.spec +++ b/willie.spec @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: willie -Version: 4.0.1 -Release: 2%{?dist} +Version: 4.1.0 +Release: 1%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 @@ -20,7 +20,6 @@ Requires: python-lxml Requires: python-feedparser Requires: python-enchant Requires: python-pygeoip -Requires: MySQL-python Requires: pyOpenSSL Requires: python-praw @@ -85,6 +84,9 @@ exit 0 %changelog +* Fri Nov 15 2013 Edward Powell - 4.1.0-1 +- Update to 4.1.0 from upstream + * Tue Aug 20 2013 Elad Alfassa - 4.0.1-2 - Fix dependancy error From 330bab15bfca334c020e4c60323df9a05395df0a Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Sat, 16 Nov 2013 10:08:29 -0500 Subject: [PATCH 06/17] Fix sources URL --- willie.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/willie.spec b/willie.spec index c80af4c..420bbfe 100644 --- a/willie.spec +++ b/willie.spec @@ -7,7 +7,7 @@ Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 URL: http://willie.dftba.net/ -Source0: https://github.com/embolalia/%{name}/archive/%{version}.tar.gz +Source0: http://willie.dftba.net/files/willie-4.1.0.tar.gz BuildArch: noarch BuildRequires: python2-devel From 4f375d70193a117ee691f7435417824bd4a0324d Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Sat, 16 Nov 2013 10:11:32 -0500 Subject: [PATCH 07/17] Use name and version substitution in sources URL --- willie.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/willie.spec b/willie.spec index 420bbfe..afde90b 100644 --- a/willie.spec +++ b/willie.spec @@ -7,7 +7,7 @@ Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 URL: http://willie.dftba.net/ -Source0: http://willie.dftba.net/files/willie-4.1.0.tar.gz +Source0: http://willie.dftba.net/files/%{name}-%{version}.tar.gz BuildArch: noarch BuildRequires: python2-devel From fff4f9ae0eee2bfe4f0bc680351ba7a97f14e4e1 Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Sat, 8 Mar 2014 15:09:21 -0500 Subject: [PATCH 08/17] New upstream release --- .gitignore | 1 + sources | 2 +- willie.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 54285d9..d615a42 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /willie-4.0.0.tar.gz /4.0.1.tar.gz /willie-4.1.0.tar.gz +/willie-4.2.0.tar.gz diff --git a/sources b/sources index dacf724..6ec3799 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -31a5b62767f44379c553600d9d612436 willie-4.1.0.tar.gz +4f3ccd67b94b21f74c25ec2c847b7133 willie-4.2.0.tar.gz diff --git a/willie.spec b/willie.spec index afde90b..4f81392 100644 --- a/willie.spec +++ b/willie.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: willie -Version: 4.1.0 +Version: 4.2.0 Release: 1%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot @@ -84,6 +84,9 @@ exit 0 %changelog +* Sat Mar 08 2014 Edward Powell - 4.2.0-1 +- Update to 4.2.0 from upstream + * Fri Nov 15 2013 Edward Powell - 4.1.0-1 - Update to 4.1.0 from upstream From 55bdbef9a8cf3d4d993b966811d47da5e94322de Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Sat, 8 Mar 2014 16:41:03 -0500 Subject: [PATCH 09/17] Add backports dependency --- willie.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/willie.spec b/willie.spec index 4f81392..e2081e7 100644 --- a/willie.spec +++ b/willie.spec @@ -22,6 +22,7 @@ Requires: python-enchant Requires: python-pygeoip Requires: pyOpenSSL Requires: python-praw +Requires: python-backports-ssl_match_hostname %description Willie is a simple, lightweight, open source, easy-to-use IRC Utility bot. From b4d2e041513583e229c7154aa14e9c9acc1fef0c Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Sat, 8 Mar 2014 17:04:15 -0500 Subject: [PATCH 10/17] New upstream release --- .gitignore | 1 + sources | 2 +- willie.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d615a42..dcedfb8 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /4.0.1.tar.gz /willie-4.1.0.tar.gz /willie-4.2.0.tar.gz +/willie-4.2.1.tar.gz diff --git a/sources b/sources index 6ec3799..9a3b503 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4f3ccd67b94b21f74c25ec2c847b7133 willie-4.2.0.tar.gz +83f79aee1269d55ad02343c148732781 willie-4.2.1.tar.gz diff --git a/willie.spec b/willie.spec index e2081e7..de92037 100644 --- a/willie.spec +++ b/willie.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: willie -Version: 4.2.0 +Version: 4.2.1 Release: 1%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot @@ -85,6 +85,9 @@ exit 0 %changelog +* Sat Mar 08 2014 Edward Powell - 4.2.1-1 +- Update to 4.2.1 from upstream + * Sat Mar 08 2014 Edward Powell - 4.2.0-1 - Update to 4.2.0 from upstream From 733894d7d8ba1849fad32bea6f7c8e80f6cee2c9 Mon Sep 17 00:00:00 2001 From: Elad Alfassa Date: Sun, 9 Mar 2014 00:30:57 +0200 Subject: [PATCH 11/17] Proper 4.2.1 tarball Edward (Embolalia) uploaded the pypi tarball to the lookaside cache by mistake, instead of the actual tarball uploaded to the website. This caused the build to fail. This commit fixes that. --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index 9a3b503..97b9c04 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -83f79aee1269d55ad02343c148732781 willie-4.2.1.tar.gz +f57f01c3b1585f6aad27c8f8f8c3c2ec willie-4.2.1.tar.gz From 8ebfa0d026d43b990dabdef1fd511be1b26952dd Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 23:34:59 -0500 Subject: [PATCH 12/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- willie.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/willie.spec b/willie.spec index de92037..6414528 100644 --- a/willie.spec +++ b/willie.spec @@ -2,7 +2,7 @@ Name: willie Version: 4.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 @@ -85,6 +85,9 @@ exit 0 %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 4.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Mar 08 2014 Edward Powell - 4.2.1-1 - Update to 4.2.1 from upstream From 018f758dba6e460c2246e60b03416293ca71baff Mon Sep 17 00:00:00 2001 From: Elad Alfassa Date: Sun, 31 Aug 2014 22:38:54 +0300 Subject: [PATCH 13/17] Update to the latest upstream release --- .gitignore | 1 + sources | 2 +- willie.spec | 8 ++++++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index dcedfb8..28c4892 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /willie-4.1.0.tar.gz /willie-4.2.0.tar.gz /willie-4.2.1.tar.gz +/willie.spec diff --git a/sources b/sources index 97b9c04..9b30f04 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f57f01c3b1585f6aad27c8f8f8c3c2ec willie-4.2.1.tar.gz +0049ca9581c11240372de91dbcd7ef82 willie.spec diff --git a/willie.spec b/willie.spec index 6414528..5e67a30 100644 --- a/willie.spec +++ b/willie.spec @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: willie -Version: 4.2.1 -Release: 2%{?dist} +Version: 4.5.0 +Release: 1%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 @@ -34,6 +34,7 @@ It is designed to be easy to use, run and extend. %build %{__python} setup.py build dos2unix CREDITS +rm willie/modules/find_updates.py cd docs/ make singlehtml mv build/singlehtml build/api-docs @@ -85,6 +86,9 @@ exit 0 %changelog +* Sun Aug 31 2014 Elad Alfassa - 4.5.0-1 +- Update to the latest upstream release + * Sun Jun 08 2014 Fedora Release Engineering - 4.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From af43d679b7b9de27866466047e047d081dfebe06 Mon Sep 17 00:00:00 2001 From: Elad Alfassa Date: Sun, 31 Aug 2014 22:41:04 +0300 Subject: [PATCH 14/17] undo stupid --- .gitignore | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 28c4892..f10d437 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,4 @@ /willie-4.1.0.tar.gz /willie-4.2.0.tar.gz /willie-4.2.1.tar.gz -/willie.spec +/willie-4.5.0.tar.gz diff --git a/sources b/sources index 9b30f04..0658fb6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0049ca9581c11240372de91dbcd7ef82 willie.spec +b74bc3cd2f813d5c1743bd41516c4cf3 willie-4.5.0.tar.gz From 41316e107a537394b3769ed7c4af5979ee4e42d4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 02:26:37 +0000 Subject: [PATCH 15/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- willie.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/willie.spec b/willie.spec index 5e67a30..bbd567b 100644 --- a/willie.spec +++ b/willie.spec @@ -2,7 +2,7 @@ Name: willie Version: 4.5.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 @@ -86,6 +86,9 @@ exit 0 %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 4.5.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Aug 31 2014 Elad Alfassa - 4.5.0-1 - Update to the latest upstream release From a4af2b830adf3ba3e2a65c53a1ce7c936404ddca Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 03:03:01 +0000 Subject: [PATCH 16/17] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- willie.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/willie.spec b/willie.spec index bbd567b..b51dcf1 100644 --- a/willie.spec +++ b/willie.spec @@ -2,7 +2,7 @@ Name: willie Version: 4.5.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple, lightweight and easy-to-use IRC Utility bot License: EFL 2.0 @@ -86,6 +86,9 @@ exit 0 %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 4.5.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 4.5.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 946393caea2c802f9fa8073051621303df13452d Mon Sep 17 00:00:00 2001 From: Raphael Groner Date: Thu, 24 Mar 2016 23:19:51 +0100 Subject: [PATCH 17/17] dead upstream, suggested to use sopel instead, https://github.com/sopel-irc/sopel --- .gitignore | 9 ---- dead.package | 1 + sources | 1 - willie.spec | 148 --------------------------------------------------- 4 files changed, 1 insertion(+), 158 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 willie.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index f10d437..0000000 --- a/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -/willie-3.1.2.tar.gz -/willie-3.1.3.tar.gz -/willie-3.2.0.tar.gz -/willie-4.0.0.tar.gz -/4.0.1.tar.gz -/willie-4.1.0.tar.gz -/willie-4.2.0.tar.gz -/willie-4.2.1.tar.gz -/willie-4.5.0.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5c24fd4 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +dead upstream, suggested to use sopel instead, https://github.com/sopel-irc/sopel diff --git a/sources b/sources deleted file mode 100644 index 0658fb6..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -b74bc3cd2f813d5c1743bd41516c4cf3 willie-4.5.0.tar.gz diff --git a/willie.spec b/willie.spec deleted file mode 100644 index b51dcf1..0000000 --- a/willie.spec +++ /dev/null @@ -1,148 +0,0 @@ -%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} - -Name: willie -Version: 4.5.0 -Release: 3%{?dist} -Summary: Simple, lightweight and easy-to-use IRC Utility bot - -License: EFL 2.0 -URL: http://willie.dftba.net/ -Source0: http://willie.dftba.net/files/%{name}-%{version}.tar.gz - -BuildArch: noarch -BuildRequires: python2-devel -BuildRequires: python-sphinx -BuildRequires: dos2unix -BuildRequires: systemd - -Requires: pytz -Requires: python-lxml -Requires: python-feedparser -Requires: python-enchant -Requires: python-pygeoip -Requires: pyOpenSSL -Requires: python-praw -Requires: python-backports-ssl_match_hostname - -%description -Willie is a simple, lightweight, open source, easy-to-use IRC Utility bot. -It is designed to be easy to use, run and extend. - -%prep -%setup -q - -%build -%{__python} setup.py build -dos2unix CREDITS -rm willie/modules/find_updates.py -cd docs/ -make singlehtml -mv build/singlehtml build/api-docs -rm build/api-docs/.buildinfo - - -%install -%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT - -mkdir -p %{buildroot}%{_prefix}/lib/tmpfiles.d -install -m 0644 contrib/%{name}.conf %{buildroot}%{_prefix}/lib/tmpfiles.d/%{name}.conf -mkdir -p %{buildroot}/run -install -d -m 0755 %{buildroot}/run/%{name}/ -mkdir -p %{buildroot}%{_sysconfdir} -install -m 0644 contrib/%{name}.cfg %{buildroot}%{_sysconfdir}/%{name}.cfg -mkdir -p %{buildroot}%{_unitdir} -install -m 0644 contrib/%{name}.service %{buildroot}%{_unitdir}/%{name}.service -mkdir -p %{buildroot}/var/log/%{name} -mkdir -p %{buildroot}/var/lib/%{name} - -%files -%doc README.rst COPYING CREDITS NEWS docs/build/api-docs -%config(noreplace) %{_sysconfdir}/%{name}.cfg -%{python_sitelib}/* -%{_bindir}/willie -%dir %attr(-,%{name}, %{name})/run/%{name}/ -%{_prefix}/lib/tmpfiles.d/%{name}.conf -%{_unitdir}/%{name}.service -%dir %attr(-,%{name}, %{name})/var/lib/%{name}/ -%dir %attr(-,%{name}, %{name})/var/log/%{name}/ - - -%pre -getent group %{name} >/dev/null || groupadd -r %{name} -getent passwd %{name} >/dev/null || \ -useradd -r -g %{name} -d /var/lib/%{name} -s /sbin/nologin \ - -c "willie ircbot account " %{name} -exit 0 - -%post -%systemd_post willie.service - -%preun -%systemd_preun willie.service - -%postun -%systemd_postun willie.service - - - -%changelog -* Fri Feb 05 2016 Fedora Release Engineering - 4.5.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 4.5.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sun Aug 31 2014 Elad Alfassa - 4.5.0-1 -- Update to the latest upstream release - -* Sun Jun 08 2014 Fedora Release Engineering - 4.2.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sat Mar 08 2014 Edward Powell - 4.2.1-1 -- Update to 4.2.1 from upstream - -* Sat Mar 08 2014 Edward Powell - 4.2.0-1 -- Update to 4.2.0 from upstream - -* Fri Nov 15 2013 Edward Powell - 4.1.0-1 -- Update to 4.1.0 from upstream - -* Tue Aug 20 2013 Elad Alfassa - 4.0.1-2 -- Fix dependancy error - -* Mon Aug 19 2013 Elad Alfassa - 4.0.1-1 -- Update to 4.0.1 from upstream - -* Sun Aug 04 2013 Fedora Release Engineering - 4.0.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Fri Jun 28 2013 Elad Alfassa - 4.0.0-1 -- New upstream release - -* Sun Mar 31 2013 Elad Alfassa - 3.2.0-1 -- New upstream release - -* Fri Jan 25 2013 Elad Alfassa - 3.1.3-1 -- New upstream release - -* Tue Nov 20 2012 Elad Alfassa - 3.1.2-2 -- Use python2-devel instead of python-devel - -* Mon Nov 19 2012 Elad Alfassa - 3.1.2-1 -- New upstream release -- Fix bug which prevented module config wizard from working on new installs - -* Sun Nov 18 2012 Elad Alfassa - 3.1.1-1 -- New upstream release - -* Sat Nov 17 2012 Elad Alfassa - 3.1-3 -- Fix summary line -- Fix license tag - -* Tue Nov 13 2012 Elad Alfassa - 3.1-2 -- Require pyOpenSSL to enable full SSL support -- Don't remove reddit, python-praw is now in Fedora - -* Sat Nov 10 2012 Elad Alfassa - 3.1-1 -- Initial packaging -