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 ba9a936..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: zikula-module-pagemaster -# $Id: Makefile,v 1.1 2009/10/06 17:34:38 kevin Exp $ -NAME := zikula-module-pagemaster -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/dead.package b/dead.package new file mode 100644 index 0000000..de91ae3 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +This package was retired due to no active owner on 2011-02-23 diff --git a/import.log b/import.log deleted file mode 100644 index c3a8db8..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -zikula-module-pagemaster-0_3_1-3_fc11:HEAD:zikula-module-pagemaster-0.3.1-3.fc11.src.rpm:1256154836 diff --git a/pagemaster-separate-filterutil.patch b/pagemaster-separate-filterutil.patch deleted file mode 100644 index 8f70e2f..0000000 --- a/pagemaster-separate-filterutil.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: modules/pagemaster/pnuserapi.php -=================================================================== ---- modules.orig/pagemaster/pnuserapi.php -+++ modules/pagemaster/pnuserapi.php -@@ -303,7 +303,7 @@ function pagemaster_userapi_pubList($arg - if (version_compare(PN_VERSION_NUM, '2.0', '>=')) - Loader::LoadClass("FilterUtil"); - else -- Loader::LoadClass("FilterUtil",'modules/pagemaster/classes'); -+ Loader::LoadClass("FilterUtil",'config/classes'); - - - foreach ($pubfields as $fieldname => $field) { diff --git a/sources b/sources deleted file mode 100644 index b4aa9c4..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -bd3190b020698acfe6ce6d85f1909840 package_ba269f9bbdba5234dca4bbed95702be2.zip diff --git a/zikula-module-pagemaster.spec b/zikula-module-pagemaster.spec deleted file mode 100644 index c62c2d6..0000000 --- a/zikula-module-pagemaster.spec +++ /dev/null @@ -1,74 +0,0 @@ -%global zikula_base %{_datadir}/zikula -%global zikula_moddir %{zikula_base}/modules -%global zikula_modname pagemaster - -Name: zikula-module-%{zikula_modname} -Version: 0.3.1 -Release: 3%{?dist} -Summary: Creates pages with dynamic content like news, articles, etc -Group: Applications/Publishing -License: GPLv2+ -URL: http://code.zikula.org/pagemaster/ -# Source URL is dynamically generated. Go to URL to fetch it -Source0: package_ba269f9bbdba5234dca4bbed95702be2.zip -Patch0: pagemaster-separate-filterutil.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch -Requires: zikula - -%description -Pagemaster is a fully Zikula 1.1 compliant but non complete clone of Pagesetter -(relations and mediashare plugin are missing still). The main task of the -module is creating pages with dynamic content like news articles, product -descriptions, band listings etc. - -%prep -%setup -q -c - -%patch0 -p0 - -# Remove empty index.html and others -find -size 0 | xargs rm -f - -#Fixing wrong-file-end-of-line-encoding error -sed -i 's/\r//' modules/pagemaster/pndocs/install-and-usage.txt - -# Rpmlint warnings E: script-without-shebang -find . -name '*.php' -exec chmod 0644 '{}' \; - -# We package Filterutil in its own package in Fedora -rm -rf modules/pagemaster/classes/FilterUtil.class.php -rm -rf modules/pagemaster/classes/FilterUtil - -%build - -%install -rm -rf %{buildroot} - - -cd modules/%{zikula_modname} - -mkdir -p %{buildroot}/%{zikula_moddir}/%{zikula_modname} -cp -pr . %{buildroot}/%{zikula_moddir}/%{zikula_modname} -rm -rf %{buildroot}/%{zikula_moddir}/%{zikula_modname}/pndocs - - -%clean -rm -rf %{buildroot} - -%files -%defattr(-,root,root,-) -%doc modules/%{zikula_modname}/pndocs/* -%{zikula_moddir}/%{zikula_modname} - - -%changelog -* Thu Sep 17 2009 Toshio Kuratomi - 0.3.1-3 -- Update for separated FilterUtil module - -* Fri Aug 28 2009 Rahul Sundaram - 0.3.1-2 -- Fix license tag and add Source URL comment - -* Wed Aug 26 2009 Rahul Sundaram - 0.3.1-1 -- initial package -- Based on Chitlesh Goorah's spec