From e2d97cc21af45ca40d43bf2463a19315a3946573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jason=20=E3=83=86=E3=82=A3=E3=83=93=E3=83=84?= Date: Tue, 26 May 2009 22:07:27 +0000 Subject: [PATCH 1/4] Initialize branch F-11 for php-markdown --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..25c7708 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-11 From cb3c944fe2e6c22d34cffca40492342c2e9c271f Mon Sep 17 00:00:00 2001 From: Rakesh Pandit Date: Mon, 8 Jun 2009 03:59:22 +0000 Subject: [PATCH 2/4] Initial import. --- .cvsignore | 1 + import.log | 1 + php-markdown.spec | 46 ++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 49 insertions(+) create mode 100644 import.log create mode 100644 php-markdown.spec diff --git a/.cvsignore b/.cvsignore index e69de29..277beda 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +php-markdown-1.0.1m.zip diff --git a/import.log b/import.log new file mode 100644 index 0000000..9700b0a --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +php-markdown-1_0_1m-2_fc10:F-11:php-markdown-1.0.1m-2.fc10.src.rpm:1244433201 diff --git a/php-markdown.spec b/php-markdown.spec new file mode 100644 index 0000000..e268533 --- /dev/null +++ b/php-markdown.spec @@ -0,0 +1,46 @@ +Name: php-markdown +Version: 1.0.1m +Release: 2%{?dist} +Summary: Markdown implementation in PHP + +Group: Development/Languages +License: BSD +URL: http://michelf.com/projects/php-markdown/ +Source0: http://michelf.com/docs/projets/%{name}-%{version}.zip +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +Requires: php + +%description +This is a PHP implementation of John Gruber's Markdown. This is a +Python implementation of John Gruber's Markdown. It is almost +completely compliant with the reference implementation. + +%prep +%setup -q -n 'PHP Markdown 1.0.1m' + + +%build +# Empty build + +%install +rm -rf $RPM_BUILD_ROOT +install -d $RPM_BUILD_ROOT%{_datadir}/php/ +install -p -m 644 markdown.php $RPM_BUILD_ROOT%{_datadir}/php/ + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc License.text 'PHP Markdown Readme.text' +%{_datadir}/php/markdown.php + + +%changelog +* Sun May 24 2009 Rakesh Pandit 1.0.1m-2 +- Fixed mixed use of space and tabs, using install in place of cp + +* Sun May 24 2009 Rakesh Pandit 1.0.1m-1 +- Initial package diff --git a/sources b/sources index e69de29..09a9876 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +0111093efcb81e455e7bbd959d4cff54 php-markdown-1.0.1m.zip From 90aa464b51e344480019f86df10bca446dc75096 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:58:43 +0000 Subject: [PATCH 3/4] 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 eb64211..6df1c33 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: php-markdown -# $Id$ +# $Id: Makefile,v 1.1 2009/05/26 22:07:23 tibbs Exp $ NAME := php-markdown 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 16a6607f492e6988a1e65408280fb2a014bebf6d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 08:56:23 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch 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 6df1c33..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: php-markdown -# $Id: Makefile,v 1.1 2009/05/26 22:07:23 tibbs Exp $ -NAME := php-markdown -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/branch b/branch deleted file mode 100644 index 25c7708..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-11 diff --git a/import.log b/import.log deleted file mode 100644 index 9700b0a..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -php-markdown-1_0_1m-2_fc10:F-11:php-markdown-1.0.1m-2.fc10.src.rpm:1244433201