[php-jsonlint] Initial import (#893111)

Shawn Iwinski siwinski at fedoraproject.org
Wed Jan 9 01:13:34 UTC 2013


commit 178879c5c83e9eb05aecbf3f45667244bd7809be
Author: Shawn Iwinski <shawn.iwinski at gmail.com>
Date:   Tue Jan 8 20:13:25 2013 -0500

    Initial import (#893111)

 .gitignore        |    1 +
 php-jsonlint.spec |   68 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources           |    1 +
 3 files changed, 70 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..38ec78a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/1.1.0.tar.gz
diff --git a/php-jsonlint.spec b/php-jsonlint.spec
new file mode 100644
index 0000000..0571a93
--- /dev/null
+++ b/php-jsonlint.spec
@@ -0,0 +1,68 @@
+%global libname     jsonlint
+%global php_min_ver 5.3.0
+
+Name:          php-%{libname}
+Version:       1.1.0
+Release:       1%{?dist}
+Summary:       JSON Lint for PHP
+
+Group:         Development/Libraries
+License:       MIT
+URL:           https://github.com/Seldaek/%{libname}
+Source0:       %{url}/archive/%{version}.tar.gz
+
+BuildArch:     noarch
+# Test build requires
+BuildRequires: php-common >= %{php_min_ver}
+BuildRequires: php-pear(pear.phpunit.de/PHPUnit)
+# Test build requires: phpci
+BuildRequires: php-pcre
+
+Requires:      php-common >= %{php_min_ver}
+# phpci requires
+Requires:      php-pcre
+
+%description
+%{summary}.
+
+This library is a port of the JavaScript jsonlint
+(https://github.com/zaach/jsonlint) library.
+
+
+%prep
+%setup -q -n %{libname}-%{version}
+
+# Create PSR-0 autoloader for tests
+( cat <<'AUTOLOAD'
+<?php
+spl_autoload_register(function ($class) {
+    $src = str_replace('\\', '/', $class).'.php';
+    require_once $src;
+});
+AUTOLOAD
+) > autoload.php
+
+
+%build
+# Empty build section, nothing to build
+
+
+%install
+mkdir -p -m 755 %{buildroot}%{_datadir}/php/Seld
+cp -rp src/Seld/JsonLint %{buildroot}%{_datadir}/php/Seld/
+
+
+%check
+%{_bindir}/phpunit --bootstrap=autoload.php \
+    -d include_path="src:tests:.:/usr/share/pear" .
+
+
+%files
+%doc LICENSE README.mdown composer.json
+%dir %{_datadir}/php/Seld
+     %{_datadir}/php/Seld/JsonLint
+
+
+%changelog
+* Mon Jan  7 2013 Shawn Iwinski <shawn.iwinski at gmail.com> 1.1.0-1
+- Initial package
diff --git a/sources b/sources
index e69de29..d598d28 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+289af78b879b8bb138c17a615c5fc0bf  1.1.0.tar.gz


More information about the scm-commits mailing list