summaryrefslogtreecommitdiffstats
path: root/php-when.spec
blob: 3bfd8875c42eb12ae920e12260a88a069dbc32b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
Name:           php-when
Version:        0.3
Release:        2%{?dist}
Summary:        Date/Calendar recursion library for PHP

License:        MIT
URL:            https://github.com/tplaner/When
# Download from
# https://github.com/tplaner/When/archive/v0.3.tar.gz
Source0:        When-%{version}.tar.gz

BuildArch:      noarch

Requires:       php-date php-spl

%description
PHP library that handles recursive dates: It determines the next date of
recursion given an iCalendar "rrule" like pattern.

%package tests
Summary:        Test files for %{name}

Requires:       %{name} = %{version}-%{release}
# phpunit tests
Requires:       php-phpunit-PHPUnit
BuildRequires:  php-phpunit-PHPUnit

%description tests
PHPUnit tests for %{name}.

%prep
%setup -q -n When-%{version}

# remove deprecated include and set prefix
sed -e '/Framework.php/d' \
    -e '/When.php/s:./:when/:' \
    -e '/When_Iterator.php/s:./:when/:' \
    -i Tests/*php

%build

%install
mkdir -p %{buildroot}%{_datadir}/php/when
install -pm 644 When.php %{buildroot}%{_datadir}/php/when
install -pm 644 When_Iterator.php %{buildroot}%{_datadir}/php/when

mkdir -p %{buildroot}%{_datadir}/tests/%{name}
install -pm 644 Tests/*.php %{buildroot}%{_datadir}/tests/%{name}/

%check
cd Tests
phpunit -d include_path=%{buildroot}%{_datadir}/php:.:%{_datadir}/php:%{_datadir}/pear -d date.timezone=UTC .


%files
%doc README.md
%{_datadir}/php/when


%files tests
%dir %{_datadir}/tests
%{_datadir}/tests/%{name}


%changelog
* Sat Dec 15 2012 Gregor Tätzner <brummbq@fedoraproject.org> - 0.3-2
- enabled phpunit tests
- moved tests to %%{_datadir}/tests/%%{name}

* Tue Dec 11 2012 Gregor Tätzner <brummbq@fedoraproject.org> - 0.3-1
- Initial package