From f9dd496ee31877c803542f524b9f0f6f47786bb3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 20 Mar 2013 09:17:59 +0100 Subject: php-drush-drush: backport for remi repo --- Makefile | 10 ++++++++++ php-drush-drush.spec | 5 +++++ 2 files changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d095534 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +INCL1 := $(shell php-config --includes) +INCL2 := -I $(shell php-config --include-dir)/sapi/embed +LIBS := -lphp5 $(shell php-config --libs) + +include ../../common/Makefile + +tembed: tembed.c + gcc -Wall $(INCL1) $(INCL2) tembed.c $(LIBS) -o tembed diff --git a/php-drush-drush.spec b/php-drush-drush.spec index 301acd9..8e56ae4 100644 --- a/php-drush-drush.spec +++ b/php-drush-drush.spec @@ -29,6 +29,7 @@ Provides: php-pear(%{pear_channel}/%{pear_name}) = %{version} Provides: drupal6-drush = %{version}-%{release} Obsoletes: drupal6-drush < %{version}-%{release} +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: php-pear(PEAR) BuildRequires: php-channel(%{pear_channel}) @@ -172,6 +173,7 @@ fi %files +%defattr(-,root,root,-) %doc %{pear_docdir}/%{pear_name} %doc %{_mandir}/man1/drush.1* %{pear_xmldir}/%{name}.xml @@ -181,6 +183,9 @@ fi %changelog +* Wed Mar 20 2013 Remi Collet 5.8.0-2 +- backport 5.8.0 for remi repo. + * Sun Mar 17 2013 Shawn Iwinski 5.8.0-2 - Removed drush.bat - Fixed rpmlint wrong-file-end-of-line-encoding warning -- cgit