From 4597f92795fd02ab9d2d5f692fd5173f4229109d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 27 Jun 2017 11:57:15 +0200 Subject: New package --- .gitignore | 7 ++ Makefile | 4 + composer.json | 24 +++++ php-khanamiryan-qrcode-detector-decoder.spec | 143 +++++++++++++++++++++++++++ 4 files changed, 178 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 composer.json create mode 100644 php-khanamiryan-qrcode-detector-decoder.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1ab5c4f --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91b0fd5 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../common/Makefile + diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..53267b8 --- /dev/null +++ b/composer.json @@ -0,0 +1,24 @@ +{ + "name": "khanamiryan/qrcode-detector-decoder", + "type": "library", + "description": "QR code decoder / reader", + "keywords": ["qr", "zxing", "barcode"], + "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder", + "license": "MIT", + "authors": [{ + "name": "Ashot Khanamiryan", + "email": "a.khanamiryan@gmail.com", + "homepage": "https://github.com/khanamiryan", + "role": "Developer" + }], + "require": { + "php": "^5.6|^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7" + }, + "autoload": { + "classmap": ["lib/"], + "files": ["lib/common/customFunctions.php"] + } +} diff --git a/php-khanamiryan-qrcode-detector-decoder.spec b/php-khanamiryan-qrcode-detector-decoder.spec new file mode 100644 index 0000000..d7c15f3 --- /dev/null +++ b/php-khanamiryan-qrcode-detector-decoder.spec @@ -0,0 +1,143 @@ +# remirepo/fedora spec file for php-khanamiryan-qrcode-detector-decoder +# +# Copyright (c) 2017 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# +%global gh_commit 96d5f80680b04803c4f1b69d6e01735e876b80c7 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner khanamiryan +%global gh_project php-qrcode-detector-decoder + +%global pk_vendor %{gh_owner} +%global pk_project qrcode-detector-decoder + +%global ns_vendor %nil +%global ns_project Zxing +%global php_home %{_datadir}/php +%global with_tests 0%{!?_without_tests:1} + +Name: php-%{pk_vendor}-%{pk_project} +Version: 1 +Release: 1%{?dist} +Summary: QR code generator for PHP + +Group: Development/Libraries +# https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/29 +License: MIT and ASL 2.0 +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz + +BuildArch: noarch +%if %{with_tests} +# For tests +BuildRequires: php(language) >= 5.6 +BuildRequires: php-reflection +BuildRequires: php-date +BuildRequires: php-gd +BuildRequires: php-iconv +BuildRequires: php-mbstring +BuildRequires: php-spl +# From composer.json, "require-dev": { +# "phpunit/phpunit": "^5.7" +BuildRequires: php-composer(phpunit/phpunit) +# Required by autoloader +%endif +BuildRequires: php-fedora-autoloader-devel + +# From composer.json, "require": { +# "php": "^5.6|^7.0" +Requires: php(language) >= 5.6 +# From phpcompatinfo report for version 1 +Requires: php-reflection +Requires: php-date +Requires: php-gd +Requires: php-iconv +Requires: php-mbstring +Requires: php-spl +%if 0%{?fedora} >= 21 +Suggests: php-pecl(imagick) +%endif +# Required by autoloader +Requires: php-composer(fedora/autoloader) + +Provides: php-composer(%{pk_vendor}/%{pk_project}) = %{version} + + +%description +BaconQrCode is a port of QR code portion of the ZXing library. +It currently only features the encoder part, but could later +receive the decoder part as well. + +As the Reed Solomon codec implementation of the ZXing library +performs quite slow in PHP, it was exchanged with the implementation +by Phil Karn. + +Autoloader: %{php_home}/%{ns_project}/autoload.php + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + +# https://github.com/khanamiryan/php-qrcode-detector-decoder/pull/30 +find lib -name \*.php -exec chmod -x {} \; + + +%build +%{_bindir}/phpab \ + --output lib/autoload.php \ + --template fedora \ + lib + +cat << 'EOF' | tee -a lib/autoload.php +\Fedora\Autoloader\Dependencies::required([ + __DIR__ . '/common/customFunctions.php', +]); +EOF + + +%install +: Library +mkdir -p %{buildroot}%{php_home} +cp -pr lib %{buildroot}%{php_home}/%{ns_project} + + +%check +%if %{with_tests} +mkdir vendor +cat << 'EOF' | tee vendor/autoload.php + - 1-1 +- initial package, version 1 +- open https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/29 + License issue, blocker for Fedora +- open https://github.com/khanamiryan/php-qrcode-detector-decoder/pull/30 + drop unneeded permissions +- open https://github.com/khanamiryan/php-qrcode-detector-decoder/pull/31 + use modern PHPUnit -- cgit