From 579954b77755b9d8c3d3cf057fa6dce6202a1968 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 26 May 2020 08:41:34 +0200 Subject: new package --- .gitignore | 8 +++ Makefile | 4 ++ composer.json | 43 +++++++++++++ makesrc.sh | 28 +++++++++ php-doctrine-sql-formatter.spec | 131 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 214 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 composer.json create mode 100755 makesrc.sh create mode 100644 php-doctrine-sql-formatter.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc9aa8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +clog +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..13af741 --- /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..0e6ccb1 --- /dev/null +++ b/composer.json @@ -0,0 +1,43 @@ +{ + "name": "doctrine/sql-formatter", + "description": "a PHP SQL highlighting library", + "homepage": "https://github.com/doctrine/sql-formatter/", + "keywords": ["sql", "highlight"], + "license": "MIT", + "type": "library", + "require": { + "php": "^7.1" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4" + }, + "authors": [ + { + "name": "Jeremy Dorn", + "email": "jeremy@jeremydorn.com", + "homepage": "http://jeremydorn.com/" + } + ], + "autoload": { + "psr-4": { + "Doctrine\\SqlFormatter\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "Doctrine\\SqlFormatter\\Tests\\": "tests" + } + }, + "config": { + "sort-packages": true, + "platform": { + "php": "7.1.0" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "bin": ["bin/sql-formatter"] +} diff --git a/makesrc.sh b/makesrc.sh new file mode 100755 index 0000000..37cb6a2 --- /dev/null +++ b/makesrc.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +NAME=$(basename $PWD) +OWNER=$(sed -n '/^%global gh_owner/{s/.* //;p}' $NAME.spec) +PROJECT=$(sed -n '/^%global gh_project/{s/.* //;p}' $NAME.spec) +VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec) +COMMIT=$(sed -n '/^%global gh_commit/{s/.* //;p}' $NAME.spec) +SHORT=${COMMIT:0:7} + +echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION\n" + +echo "Cloning..." +rm -rf $PROJECT-$COMMIT +git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT + +echo "Getting commit..." +pushd $PROJECT-$COMMIT +git checkout $COMMIT +cp composer.json ../composer.json +popd + +echo "Archiving..." +tar czf $NAME-$VERSION-$SHORT.tgz --exclude-vcs $PROJECT-$COMMIT + +echo "Cleaning..." +rm -rf $PROJECT-$COMMIT + +echo "Done." diff --git a/php-doctrine-sql-formatter.spec b/php-doctrine-sql-formatter.spec new file mode 100644 index 0000000..f5ed1c3 --- /dev/null +++ b/php-doctrine-sql-formatter.spec @@ -0,0 +1,131 @@ +# remirepo/fedora spec file for php-doctrine-sql-formatter +# +# Copyright (c) 2020 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# + +%global bootstrap 0 +%global gh_commit 1ad4f97f10cd0eef7ca7d3f5b7b1cf7e5806786f +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner doctrine +%global gh_project sql-formatter +%global major %nil +# packagist +%global pk_vendor %{gh_owner} +%global pk_project %{gh_project} +# Namespace +%global ns_vendor Doctrine +%global ns_project SqlFormatter +%if %{bootstrap} +%global with_tests 0%{?_with_tests:1} +%else +%global with_tests 0%{!?_without_tests:1} +%endif + +Name: php-%{pk_vendor}-%{pk_project}%{major} +Version: 1.1.1 +Release: 1%{?dist} +Summary: SQL highlighting library + +License: MIT +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: %{name}-%{version}-%{gh_short}.tgz +Source1: makesrc.sh + +BuildArch: noarch +BuildRequires: php-fedora-autoloader-devel +%if %{with_tests} +BuildRequires: php(language) >= 7.1 +BuildRequires: php-pcre +# From composer.json +# "bamarni/composer-bin-plugin": "^1.4" +BuildRequires: phpunit8 +%endif + +# From composer.json +# "php": "^7.1" +Requires: php(language) >= 7.1 +# From phpcompatinfo report for version 1.0.1 +Requires: php-pcre + +# Autoloader +Requires: php-composer(fedora/autoloader) + +Provides: php-composer(%{pk_vendor}/%{pk_project}) = %{version} + + +%description +A lightweight php package for formatting sql statements. + +It can automatically indent and add line breaks in addition to syntax +highlighting. + +This package is a fork from jdorn/sql-formatter. + +Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}%{major}/autoload.php + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + + +%build +: Generate a simple autoloader +%{_bindir}/phpab \ + --output src/autoload.php \ + --template fedora \ + src + + +%install +mkdir -p %{buildroot}%{_datadir}/php/%{ns_vendor} +cp -pr src %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}%{major} + + +%check +%if %{with_tests} +: Generate autoloader +mkdir vendor +%{_bindir}/phpab \ + --output vendor/autoload.php \ + --template fedora \ + tests + +cat << 'EOF' | tee -a vendor/autoload.php +require "%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}%{major}/autoload.php"; +EOF + +: Run test suite +ret=0 +for cmd in php php72 php73 php74 php80; do + if which $cmd; then + $cmd %{_bindir}/phpunit8 \ + --bootstrap vendor/autoload.php \ + --verbose || ret=1 + fi +done +exit $ret +%else +: Test suite disabled +%endif + + +%files +# remirepo:1 +%{!?_licensedir:%global license %%doc} +%license LICENSE.txt +%doc *.md +%doc composer.json +%dir %{_datadir}/php/%{ns_vendor} + %{_datadir}/php/%{ns_vendor}/%{ns_project}%{major} + + +%changelog +* Tue May 26 2020 Remi Collet - 1.1.1-1 +- update to 1.1.1 + +* Tue May 26 2020 Remi Collet - 1.0.1-1 +- initial package, version 1.0.1 -- cgit