From 993f4d5caa93b3c37ebae8f71a60137001964d68 Mon Sep 17 00:00:00 2001 From: Nick Bebout Date: Thu, 2 Jul 2009 05:11:32 +0000 Subject: [PATCH 1/7] Initial Fedora package for this plugin based on 1.2.3 of upstream --- .cvsignore | 1 + import.log | 1 + sources | 1 + wordpress-mu-plugin-defaults.spec | 55 +++++++++++++++++++++++++++++++ 4 files changed, 58 insertions(+) create mode 100644 import.log create mode 100644 wordpress-mu-plugin-defaults.spec diff --git a/.cvsignore b/.cvsignore index e69de29..44d8c1d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +503434057_cets_new_blog_defaults.zip diff --git a/import.log b/import.log new file mode 100644 index 0000000..c37d7c6 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +wordpress-mu-plugin-defaults-1_2_3-3_fc11:HEAD:wordpress-mu-plugin-defaults-1.2.3-3.fc11.src.rpm:1246511432 diff --git a/sources b/sources index e69de29..487d2f0 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +b0ecafbc0ccdf226046474aab0d7f7a7 503434057_cets_new_blog_defaults.zip diff --git a/wordpress-mu-plugin-defaults.spec b/wordpress-mu-plugin-defaults.spec new file mode 100644 index 0000000..0737f44 --- /dev/null +++ b/wordpress-mu-plugin-defaults.spec @@ -0,0 +1,55 @@ +%global plugin_name defaults +%global plugin_human_name Wordpress MU new blog defaults + +Name: wordpress-mu-plugin-%{plugin_name} +# This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name +# I spoke to ianweller about this and he said just to comment the spec file +Version: 1.2.3 +Release: 3%{?dist} +Summary: %{plugin_human_name} plugin for WordPress MU + +Group: Applications/Publishing +License: GPLv2+ +URL: http://wpmudev.org/project/New-Blog-Defaults +Source0: http://wpmudev.org/download/503434057_cets_new_blog_defaults.zip +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +Requires: wordpress-mu +BuildArch: noarch + +%description + +This package allows you to set various defaults to automatically +apply to new blogs, such as the default theme, etc. + +This package is built for use with WordPress MU (wordpress-mu), +not regular WordPress. + +%prep +%setup -q -c + +%build + + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ +sed -e 's/\r//g' readme.txt > readme.txt.fixed && mv readme.txt.fixed readme.txt +cp -a cets_blog_defaults.php %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%{_datadir}/wordpress-mu/wp-content/mu-plugins/cets_blog_defaults.php +%doc readme.txt + +%changelog +* Wed Jul 1 2009 Nick Bebout - 1.2.3-3 +- Adding changelog entry because 1.2.3-2 was missing one +* Wed Jul 1 2009 Nick Bebout - 1.2.3-2 +- Fixing description +* Sun Jun 21 2009 Nick Bebout - 1.2.3-1 +- Initial Fedora package for this plugin based on 1.2.3 of upstream + From 328bb09e29f96ffe8b4849ff64288fa65e305d7a Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 07:23:38 +0000 Subject: [PATCH 2/7] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- wordpress-mu-plugin-defaults.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wordpress-mu-plugin-defaults.spec b/wordpress-mu-plugin-defaults.spec index 0737f44..fb96523 100644 --- a/wordpress-mu-plugin-defaults.spec +++ b/wordpress-mu-plugin-defaults.spec @@ -5,7 +5,7 @@ Name: wordpress-mu-plugin-%{plugin_name} # This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name # I spoke to ianweller about this and he said just to comment the spec file Version: 1.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: %{plugin_human_name} plugin for WordPress MU Group: Applications/Publishing @@ -46,6 +46,9 @@ rm -rf %{buildroot} %doc readme.txt %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 1 2009 Nick Bebout - 1.2.3-3 - Adding changelog entry because 1.2.3-2 was missing one * Wed Jul 1 2009 Nick Bebout - 1.2.3-2 From c2b6302d964e721b56ec706bef06cdf289532fb8 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:43:16 +0000 Subject: [PATCH 3/7] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4d02e52..55bcda8 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: wordpress-mu-plugin-defaults -# $Id$ +# $Id: Makefile,v 1.1 2009/07/02 05:01:44 kevin Exp $ NAME := wordpress-mu-plugin-defaults 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 +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)) From 8ac5c3333ab97b44e5ad0f2ec3355d24aa465d08 Mon Sep 17 00:00:00 2001 From: Nick Bebout Date: Mon, 14 Dec 2009 05:44:38 +0000 Subject: [PATCH 4/7] Bump release --- wordpress-mu-plugin-defaults.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wordpress-mu-plugin-defaults.spec b/wordpress-mu-plugin-defaults.spec index fb96523..dac06ac 100644 --- a/wordpress-mu-plugin-defaults.spec +++ b/wordpress-mu-plugin-defaults.spec @@ -5,7 +5,7 @@ Name: wordpress-mu-plugin-%{plugin_name} # This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name # I spoke to ianweller about this and he said just to comment the spec file Version: 1.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: %{plugin_human_name} plugin for WordPress MU Group: Applications/Publishing From 23f4a2e801e2dfab2317942f5bc5a43a05137550 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:24:04 +0000 Subject: [PATCH 5/7] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 55bcda8..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wordpress-mu-plugin-defaults -# $Id: Makefile,v 1.1 2009/07/02 05:01:44 kevin Exp $ -NAME := wordpress-mu-plugin-defaults -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) diff --git a/import.log b/import.log deleted file mode 100644 index c37d7c6..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -wordpress-mu-plugin-defaults-1_2_3-3_fc11:HEAD:wordpress-mu-plugin-defaults-1.2.3-3.fc11.src.rpm:1246511432 From bfc3554f6b004dce63a41865444aa1fe90d0d886 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 21:00:30 -0600 Subject: [PATCH 6/7] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- wordpress-mu-plugin-defaults.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wordpress-mu-plugin-defaults.spec b/wordpress-mu-plugin-defaults.spec index dac06ac..b1a7689 100644 --- a/wordpress-mu-plugin-defaults.spec +++ b/wordpress-mu-plugin-defaults.spec @@ -5,7 +5,7 @@ Name: wordpress-mu-plugin-%{plugin_name} # This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name # I spoke to ianweller about this and he said just to comment the spec file Version: 1.2.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: %{plugin_human_name} plugin for WordPress MU Group: Applications/Publishing @@ -46,6 +46,9 @@ rm -rf %{buildroot} %doc readme.txt %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 1.2.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Jul 27 2009 Fedora Release Engineering - 1.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 7bf3ecc27d46f0aef266938ad2473abe2838b7f7 Mon Sep 17 00:00:00 2001 From: Nick Bebout Date: Sun, 27 Feb 2011 20:36:20 -0600 Subject: [PATCH 7/7] dead.package for wordpress-mu-plugin-defaults --- .gitignore | 1 - dead.package | 1 + sources | 1 - wordpress-mu-plugin-defaults.spec | 58 ------------------------------- 4 files changed, 1 insertion(+), 60 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 wordpress-mu-plugin-defaults.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 44d8c1d..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -503434057_cets_new_blog_defaults.zip diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..14b7f07 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Removed because wordpress-mu is provided by wordpress now. diff --git a/sources b/sources deleted file mode 100644 index 487d2f0..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -b0ecafbc0ccdf226046474aab0d7f7a7 503434057_cets_new_blog_defaults.zip diff --git a/wordpress-mu-plugin-defaults.spec b/wordpress-mu-plugin-defaults.spec deleted file mode 100644 index dac06ac..0000000 --- a/wordpress-mu-plugin-defaults.spec +++ /dev/null @@ -1,58 +0,0 @@ -%global plugin_name defaults -%global plugin_human_name Wordpress MU new blog defaults - -Name: wordpress-mu-plugin-%{plugin_name} -# This does not come from wordpress.org, so I made my own plugin_name and plugin_human_name -# I spoke to ianweller about this and he said just to comment the spec file -Version: 1.2.3 -Release: 5%{?dist} -Summary: %{plugin_human_name} plugin for WordPress MU - -Group: Applications/Publishing -License: GPLv2+ -URL: http://wpmudev.org/project/New-Blog-Defaults -Source0: http://wpmudev.org/download/503434057_cets_new_blog_defaults.zip -BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -Requires: wordpress-mu -BuildArch: noarch - -%description - -This package allows you to set various defaults to automatically -apply to new blogs, such as the default theme, etc. - -This package is built for use with WordPress MU (wordpress-mu), -not regular WordPress. - -%prep -%setup -q -c - -%build - - -%install -rm -rf %{buildroot} -mkdir -p %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ -sed -e 's/\r//g' readme.txt > readme.txt.fixed && mv readme.txt.fixed readme.txt -cp -a cets_blog_defaults.php %{buildroot}%{_datadir}/wordpress-mu/wp-content/mu-plugins/ - -%clean -rm -rf %{buildroot} - - -%files -%defattr(-,root,root,-) -%{_datadir}/wordpress-mu/wp-content/mu-plugins/cets_blog_defaults.php -%doc readme.txt - -%changelog -* Mon Jul 27 2009 Fedora Release Engineering - 1.2.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Wed Jul 1 2009 Nick Bebout - 1.2.3-3 -- Adding changelog entry because 1.2.3-2 was missing one -* Wed Jul 1 2009 Nick Bebout - 1.2.3-2 -- Fixing description -* Sun Jun 21 2009 Nick Bebout - 1.2.3-1 -- Initial Fedora package for this plugin based on 1.2.3 of upstream -