Compare commits
41 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cc71132592 | ||
|
|
3c88998885 | ||
|
|
4462958138 | ||
|
|
c5f5d68f81 | ||
|
|
5eca83dc07 | ||
|
|
4b7ad47a7f | ||
|
|
2da4648a9b | ||
|
|
bad62b7cc3 | ||
|
|
1682131eb6 | ||
|
|
f8987fecb7 | ||
|
|
dcfebd723f | ||
|
|
91ad7dba75 | ||
|
|
61500da1c4 | ||
|
|
4a6313e633 | ||
|
|
872c72493b | ||
|
|
8106e1fb86 | ||
|
|
20057a339a | ||
| 8bc57c3a6b | |||
|
|
ac17709d85 | ||
|
|
9d2d37981a | ||
|
b934c6b51c |
|||
| 1c6acc9810 | |||
|
|
9aac7c73e4 | ||
|
|
28af969941 | ||
|
|
ca0232664b | ||
|
|
55adac4982 | ||
|
|
d71d6ad9ff | ||
|
|
5e5847a3c8 | ||
|
|
6899255999 | ||
| 9bbb8051d1 | |||
|
|
6e9e4f7f26 | ||
|
|
6526e90d33 | ||
|
|
44c7a8591a | ||
| 75a332e212 | |||
| 5406adb095 | |||
|
|
c75c4f8fbf | ||
| e34cee2e15 | |||
| 1250697ca5 | |||
|
|
b9588d72d6 | ||
| 98d799602b | |||
| 63946901b3 |
5 changed files with 178 additions and 21 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
bad-behavior.2.0.36.zip
|
||||
/bad-behavior.2.0.38.zip
|
||||
/bad-behavior.2.0.42.zip
|
||||
/bad-behavior.2.2.13.zip
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: wordpress-plugin-bad-behavior
|
||||
# $Id$
|
||||
NAME := wordpress-plugin-bad-behavior
|
||||
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)
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
92ec2894d4395c9724fa3f221dafb46a bad-behavior.2.2.13.zip
|
||||
173
wordpress-plugin-bad-behavior.spec
Normal file
173
wordpress-plugin-bad-behavior.spec
Normal file
|
|
@ -0,0 +1,173 @@
|
|||
%global plugin_name bad-behavior
|
||||
%global plugin_human_name Bad Behavior
|
||||
|
||||
|
||||
Name: wordpress-plugin-%{plugin_name}
|
||||
Version: 2.2.13
|
||||
Release: 26%{?dist}
|
||||
Summary: %{plugin_human_name} plugin for WordPress
|
||||
|
||||
# According to http://plugins.trac.wordpress.org/ all plugins are licensed
|
||||
# under the GPL unless otherwise stated in the plugin source.
|
||||
# Automatically converted from old format: LGPLv3+ - review is highly recommended.
|
||||
License: LGPL-3.0-or-later
|
||||
URL: http://www.bad-behavior.ioerror.us/
|
||||
Source0: http://downloads.wordpress.org/plugin/%{plugin_name}.%{version}.zip
|
||||
Requires: wordpress
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Bad Behavior is a PHP-based solution for blocking link spam and the robots
|
||||
which deliver it.
|
||||
|
||||
Bad Behavior complements other link spam solutions by acting as a gatekeeper,
|
||||
preventing spammers from ever delivering their junk, and in many cases, from
|
||||
ever reading your site in the first place. This keeps your site's load down,
|
||||
makes your site logs cleaner, and can help prevent denial of service conditions
|
||||
caused by spammers.
|
||||
|
||||
Bad Behavior also transcends other link spam solutions by working in a
|
||||
completely different, unique way. Instead of merely looking at the content of
|
||||
potential spam, Bad Behavior analyzes the delivery method as well as the
|
||||
software the spammer is using. In this way, Bad Behavior can stop spam attacks
|
||||
even when nobody has ever seen the particular spam before.
|
||||
|
||||
Bad Behavior is designed to work alongside existing spam prevention services to
|
||||
increase their effectiveness and efficiency. Whenever possible, you should run
|
||||
it in combination with a more traditional spam prevention service.
|
||||
|
||||
This package is built for use with WordPress (wordpress), not WordPress MU.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -c
|
||||
echo 'To enable "%{plugin_human_name}", go to the administrative section
|
||||
of your blog, "Plugins", and enable the plugin there.' > README.fedora
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
# Pull doc files up so they aren't duplicated
|
||||
mv %{plugin_name}/{lgpl-3.0.txt,README.txt} .
|
||||
# Trim some non-WordPress files we don't need
|
||||
rm -f %{plugin_name}/bad-behavior-{lifetype,mediawiki}.php
|
||||
mkdir -p %{buildroot}%{_datadir}/wordpress/wp-content/plugins/
|
||||
cp -a %{plugin_name} %{buildroot}%{_datadir}/wordpress/wp-content/plugins/
|
||||
# Note, no %find_lang since there are no language files
|
||||
|
||||
|
||||
|
||||
%files
|
||||
%doc lgpl-3.0.txt README.txt README.fedora
|
||||
%{_datadir}/wordpress/wp-content/plugins/%{plugin_name}
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-26
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Wed Aug 07 2024 Miroslav Suchý <msuchy@redhat.com> - 2.2.13-22
|
||||
- convert license to SPDX
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.13-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.13-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.13-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.13-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Feb 20 2013 Nick Bebout <nb@fedoraproject.org> - 2.2.13-1
|
||||
- Upgrade to 2.2.13
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.42-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.42-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.42-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Sat Feb 26 2011 Nick Bebout <nb@fedoraproject.org> 2.0.42-1
|
||||
- Remove -mu subpackage, bump to 2.0.42
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.38-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Aug 18 2010 Nick Bebout <nb@fedoraproject.org> 2.0.38-1
|
||||
- Update to 2.0.38
|
||||
|
||||
* Fri May 28 2010 Nick Bebout <nb@fedoraproject.org> 2.0.36-1
|
||||
- Update to 2.0.36
|
||||
|
||||
* Tue Nov 10 2009 Nick Bebout <nb@fedoraproject.org> 2.0.32-2
|
||||
- Remove non-applicable comment about language files
|
||||
|
||||
* Mon Nov 9 2009 Nick Bebout <nb@fedoraproject.org> 2.0.32-1
|
||||
- Fix packaging issues
|
||||
|
||||
* Wed Jul 15 2009 Michael Hampton <error@ioerror.us> 2.0.28
|
||||
- Initial package build
|
||||
Loading…
Add table
Add a link
Reference in a new issue