Compare commits

...
This repository has been archived on 2026-09-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.

20 commits

Author SHA1 Message Date
Jon Ciesla
994da414a4 Retiring. 2011-01-03 12:41:50 -06:00
Jon Ciesla
57ba998a10 Sources. 2010-12-23 09:48:26 -06:00
Jon Ciesla
d2e76309b4 Update, security fixes. 2010-12-23 09:42:31 -06:00
Fedora Release Engineering
7378b919d6 dist-git conversion 2010-07-29 15:23:59 +00:00
Bret Richard McMillan
974c714255 update to 2.9.1.1 2010-01-29 16:46:44 +00:00
Bret Richard McMillan
f660bf80bb updating to 2.8.6 2009-11-30 21:53:45 +00:00
Bill Nottingham
09adebf12e Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:43:16 +00:00
Bret Richard McMillan
43ba1e8b5f update to 2.8.5.2 for security fixes 2009-11-06 21:34:40 +00:00
Bret Richard McMillan
589f10e15e 2.8.4a sources 2009-08-12 15:44:58 +00:00
Bret Richard McMillan
2c869509cc update to 2.8.4a, includes security fixes 2009-08-12 15:42:25 +00:00
Bret Richard McMillan
14cd072f46 reving to 2.8.2 2009-08-04 17:37:06 +00:00
Bret Richard McMillan
e70b29de24 upload wordpress-mu-2.8.2 sources 2009-07-31 17:53:16 +00:00
Jesse Keating
db75b6f5d2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 07:22:43 +00:00
Jesse Keating
618c78db52 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 2009-02-25 19:01:23 +00:00
Bret Richard McMillan
e19e2d89f6 cleanup the spec file 2009-02-12 20:04:56 +00:00
Bret Richard McMillan
abfdc2cece favicon no longer in the tarball 2009-02-12 19:58:10 +00:00
Bret Richard McMillan
84952f5377 use -n with %setup for upstream's tarball 2009-02-12 19:49:29 +00:00
Bret Richard McMillan
567a6af514 update devel to wpmu 2.7 2009-02-12 19:34:38 +00:00
Bret Richard McMillan
0d8c761c40 reving devel to wpmu 2.7 2009-02-12 19:30:57 +00:00
Bret Richard McMillan
b881046c5c updating to upstream's 2.6.5 tarball 2008-12-08 21:45:25 +00:00
9 changed files with 4 additions and 185 deletions

View file

@ -1 +0,0 @@
wordpress-mu-2.6.1.tar.gz

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
wordpress-mu-2.9.1.1.tar.gz
/wordpress-mu-2.9.2.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: wordpress-mu
# $Id$
NAME := wordpress-mu
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)

View file

@ -1,20 +0,0 @@
Alias /wordpress-mu /usr/share/wordpress-mu
<Directory /usr/share/wordpress-mu>
AllowOverride Options
RewriteEngine On
RewriteBase /wordpress-mu/
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
</Directory>

2
dead.package Normal file
View file

@ -0,0 +1,2 @@
Deprecated by upstream as of wordpress 3.0.x. Obsoleted by wordpress
package, which now includes a README on migrating from -mu.

View file

@ -1 +0,0 @@
wordpress-mu-2_6_1-1_fc8:HEAD:wordpress-mu-2.6.1-1.fc8.src.rpm:1220452323

View file

@ -1 +0,0 @@
231c841354005a7efdfbaa0d61fc531b wordpress-mu-2.6.1.tar.gz

View file

@ -1,25 +0,0 @@
Alias /wordpress-mu /usr/share/wordpress-mu
<Directory /usr/share/wordpress-mu>
AllowOverride Options
RewriteEngine On
RewriteBase /wordpress-mu/
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
</Directory>

View file

@ -1,116 +0,0 @@
Summary: WordPress-MU multi-user blogging software
URL: http://mu.wordpress.org/latest.tar.gz
Name: wordpress-mu
Version: 2.6.1
Release: 1%{?dist}
Group: Applications/Publishing
License: GPLv2
Source0: %{name}-%{version}.tar.gz
Source1: wordpress-mu-httpd-conf
Source2: README.fedora.wordpress-mu
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: php >= 4.1.0, httpd, php-mysql
BuildArch: noarch
%description
WordPress-MU is a derivative of the WordPress blogging codebase, to allow
one instance to serve multiple users.
%prep
%setup -q
# disable-wordpress-core-update, updates are always installed via rpm
#
# the sed script from wordpress.spec doesn't work due to if/else statement in upstream wordpress-mu's update.php
# sed -i -e "s,add_action,#add_action,g" wp-includes/update.php
echo "<?php // update script removed, updates via RPMs for Fedora ?>" > wp-includes/update.php
%build
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}%{_datadir}/wordpress-mu
mkdir -p %{buildroot}%{_sysconfdir}/wordpress-mu
install -m 0644 -D -p %{SOURCE1} %{buildroot}%{_sysconfdir}/httpd/conf.d/wordpress-mu.conf
install -m 0644 -D -p %{SOURCE2} %{buildroot}%{_docdir}/%{name}-%{version}/README.fedora
cp -pr * %{buildroot}%{_datadir}/wordpress-mu
# fix weird upstream perms...
chmod 0644 %{buildroot}%{_datadir}/wordpress-mu/wp-includes/js/tinymce/plugins/spellchecker/css/content.css
chmod 0664 %{buildroot}%{_datadir}/wordpress-mu/wp-includes/js/tinymce/plugins/spellchecker/editor_plugin.js
chmod 0664 %{buildroot}%{_datadir}/wordpress-mu/wp-includes/js/tinymce/plugins/spellchecker/config.php
# since we're using /etc/httpd/conf.d, don't do the funky .htaccess stuff
# that the installer wants
echo "# please see /etc/httpd/conf.d/wordpress-mu.conf" > %{buildroot}%{_datadir}/wordpress-mu/htaccess.dist
# Remove empty files to make rpmlint happy
find %{buildroot} -empty -exec rm -f {} \;
# These are docs, remove them from here, docify them later
rm -f %{buildroot}%{_datadir}/wordpress-mu/{license.txt,README.txt}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%config(noreplace) %{_sysconfdir}/httpd/conf.d/wordpress-mu.conf
%dir %{_datadir}/wordpress-mu
%{_datadir}/wordpress-mu/htaccess.dist
%{_datadir}/wordpress-mu/wp-admin
%{_datadir}/wordpress-mu/wp-content
%{_datadir}/wordpress-mu/wp-includes
%{_datadir}/wordpress-mu/index.php
%doc license.txt
%doc README.txt
%{_datadir}/wordpress-mu/index-install.php
%{_datadir}/wordpress-mu/wp-activate.php
%{_datadir}/wordpress-mu/wp-atom.php
%{_datadir}/wordpress-mu/wp-app.php
%{_datadir}/wordpress-mu/wp-blog-header.php
%{_datadir}/wordpress-mu/wp-comments-post.php
%{_datadir}/wordpress-mu/wp-commentsrss2.php
%{_datadir}/wordpress-mu/wp-config-sample.php
%{_datadir}/wordpress-mu/wp-cron.php
%{_datadir}/wordpress-mu/wp-feed.php
%{_datadir}/wordpress-mu/wp-load.php
%{_datadir}/wordpress-mu/wp-links-opml.php
%{_datadir}/wordpress-mu/wp-login.php
%{_datadir}/wordpress-mu/wp-mail.php
%{_datadir}/wordpress-mu/wp-pass.php
%{_datadir}/wordpress-mu/wp-rdf.php
%{_datadir}/wordpress-mu/wp-rss.php
%{_datadir}/wordpress-mu/wp-rss2.php
%{_datadir}/wordpress-mu/wp-settings.php
%{_datadir}/wordpress-mu/wpmu-settings.php
%{_datadir}/wordpress-mu/wp-signup.php
%{_datadir}/wordpress-mu/wp-trackback.php
%{_datadir}/wordpress-mu/xmlrpc.php
%{_datadir}/wordpress-mu/favicon.ico
%dir %{_sysconfdir}/wordpress-mu
%changelog
* Wed Sep 3 2008 Bret McMillan <bretm@redhat.com> - 2.6.1-1
- update to 2.6.1
* Tue Jul 29 2008 Bret McMillan <bretm@redhat.com> - 2.6-7
- added build section to the spec file
* Wed Jul 29 2008 Bret McMillan <bretm@redhat.com> - 2.6-6
- rebasing to wpmu 2.6
* Fri May 30 2008 Bret McMillan <bretm@redhat.com> - 1.5.1-2
- trying to clean up how we're dealing with htaccess.dist
* Mon May 26 2008 Bret McMillan <bretm@redhat.com> - 1.5.1-1
- update to 1.5.1; getting ready for Fedora submission
* Fri Apr 25 2008 Bret McMillan <bretm@redhat.com> - 1.3.3-1
- initial version; copying heuristics from the base fedora wordpress pkg