Compare commits
11 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f0635809db | ||
|
|
96497d85d7 | ||
| 8a8f8494dc | |||
| ad3fab8c8c | |||
| 576e62423f | |||
| 496d4ff1f4 | |||
| ddbaadda02 | |||
|
|
16e8e590f1 | ||
| 18d41a40fa | |||
| 62c84be80e | |||
|
|
2ab3469a7a |
5 changed files with 40 additions and 31 deletions
|
|
@ -1,2 +0,0 @@
|
||||||
wordpress-2.2.2.tar.gz
|
|
||||||
wordpress-2.2.3.tar.gz
|
|
||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
wordpress-2.6.5.tar.gz
|
||||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
||||||
# Makefile for source rpm: wordpress
|
|
||||||
# $Id$
|
|
||||||
NAME := wordpress
|
|
||||||
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
|
|
||||||
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)
|
|
||||||
3
sources
3
sources
|
|
@ -1,2 +1 @@
|
||||||
a87666c6fe6cb4db94e2ae0531e5b633 wordpress-2.2.2.tar.gz
|
066433e2b6d090e7d4c4cce49cf9b232 wordpress-2.6.5.tar.gz
|
||||||
98c1e611f8533d4fe4e8f995b8d83110 wordpress-2.2.3.tar.gz
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,10 @@
|
||||||
Summary: WordPress blogging software
|
Summary: WordPress blogging software
|
||||||
URL: http://www.wordpress.org
|
URL: http://www.wordpress.org
|
||||||
Name: wordpress
|
Name: wordpress
|
||||||
Version: 2.2.3
|
Version: 2.6.5
|
||||||
Group: Applications/Publishing
|
Group: Applications/Publishing
|
||||||
Release: 0%{?dist}
|
Release: 2%{?dist}
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
# Source0 with name-version does not work for web retrieval,
|
|
||||||
# latest.tar.gz does not work for build
|
|
||||||
# Source0: http://wordpress.org/latest.tar.gz
|
|
||||||
Source0: http://wordpress.org/%{name}-%{version}.tar.gz
|
Source0: http://wordpress.org/%{name}-%{version}.tar.gz
|
||||||
Source1: wordpress-httpd-conf
|
Source1: wordpress-httpd-conf
|
||||||
Source2: README.fedora.wordpress
|
Source2: README.fedora.wordpress
|
||||||
|
|
@ -21,6 +18,9 @@ almost trivial, to get information out to people on the web.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n wordpress
|
%setup -q -n wordpress
|
||||||
|
# disable-wordpress-core-update, updates are always installed via rpm
|
||||||
|
# this does not disable the wordpress-plugins-update check
|
||||||
|
sed -i -e "s,^add_action,#add_action,g" wp-includes/update.php
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/wordpress
|
mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/wordpress
|
||||||
|
|
@ -61,6 +61,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
||||||
%{_datadir}/wordpress/wp-cron.php
|
%{_datadir}/wordpress/wp-cron.php
|
||||||
%{_datadir}/wordpress/wp-feed.php
|
%{_datadir}/wordpress/wp-feed.php
|
||||||
%{_datadir}/wordpress/wp-links-opml.php
|
%{_datadir}/wordpress/wp-links-opml.php
|
||||||
|
%{_datadir}/wordpress/wp-load.php
|
||||||
%{_datadir}/wordpress/wp-login.php
|
%{_datadir}/wordpress/wp-login.php
|
||||||
%{_datadir}/wordpress/wp-mail.php
|
%{_datadir}/wordpress/wp-mail.php
|
||||||
%{_datadir}/wordpress/wp-pass.php
|
%{_datadir}/wordpress/wp-pass.php
|
||||||
|
|
@ -74,6 +75,37 @@ rm -rf ${RPM_BUILD_ROOT}
|
||||||
%dir %{_sysconfdir}/wordpress
|
%dir %{_sysconfdir}/wordpress
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Nov 26 2008 Adrian Reber <adrian@lisas.de> - 2.6.5-2
|
||||||
|
- updated to 2.6.5
|
||||||
|
|
||||||
|
* Fri Oct 24 2008 Adrian Reber <adrian@lisas.de> - 2.6.3-1
|
||||||
|
- updated to 2.6.3
|
||||||
|
|
||||||
|
* Tue Sep 09 2008 Adrian Reber <adrian@lisas.de> - 2.6.2-1
|
||||||
|
- updated to 2.6.2
|
||||||
|
|
||||||
|
* Sun Aug 24 2008 Adrian Reber <adrian@lisas.de> - 2.6.1-1
|
||||||
|
- updated to 2.6.1
|
||||||
|
|
||||||
|
* Mon Jul 21 2008 Adrian Reber <adrian@lisas.de> - 2.6-1
|
||||||
|
- updated to 2.6
|
||||||
|
|
||||||
|
* Sat Apr 26 2008 Adrian Reber <adrian@lisas.de> - 2.5.1-1
|
||||||
|
- updated to 2.5.1 for security fixes - BZ 444396
|
||||||
|
|
||||||
|
* Fri Feb 8 2008 John Berninger <john at ncphotography dot com> - 2.3.3-0
|
||||||
|
- update to 2.3.3 for security fixes - BZ 431547
|
||||||
|
|
||||||
|
* Sun Dec 30 2007 Adrian Reber <adrian@lisas.de> - 2.3.2-1
|
||||||
|
- updated to 2.3.2 (bz 426431, Draft Information Disclosure)
|
||||||
|
|
||||||
|
* Tue Oct 30 2007 Adrian Reber <adrian@lisas.de> - 2.3.1-1
|
||||||
|
- updated to 2.3.1 (bz 357731, wordpress XSS issue)
|
||||||
|
|
||||||
|
* Mon Oct 15 2007 Adrian Reber <adrian@lisas.de> - 2.3-1
|
||||||
|
- updated to 2.3
|
||||||
|
- disabled wordpress-core-update
|
||||||
|
|
||||||
* Tue Sep 11 2007 Adrian Reber <adrian@lisas.de> - 2.2.3-0
|
* Tue Sep 11 2007 Adrian Reber <adrian@lisas.de> - 2.2.3-0
|
||||||
- updated to 2.2.3 (security release)
|
- updated to 2.2.3 (security release)
|
||||||
|
|
||||||
|
|
@ -117,7 +149,7 @@ rm -rf ${RPM_BUILD_ROOT}
|
||||||
|
|
||||||
* Tue Jun 20 2006 John Berninger <jwb at redhat dot com> - 2.0.3-2
|
* Tue Jun 20 2006 John Berninger <jwb at redhat dot com> - 2.0.3-2
|
||||||
- Remove use of installprefix macro
|
- Remove use of installprefix macro
|
||||||
- %{_datadir}/wordpress/wp-config.php is not a config file
|
- %%{_datadir}/wordpress/wp-config.php is not a config file
|
||||||
- Symlink is relative
|
- Symlink is relative
|
||||||
|
|
||||||
* Mon Jun 19 2006 John Berninger <jwb at redhat dot com> - 2.0.3-1
|
* Mon Jun 19 2006 John Berninger <jwb at redhat dot com> - 2.0.3-1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue