SPECS: php-pecl-syck.spec (NEW), php-pecl-phar.spec (NEW) - new
adamg
adamg at pld-linux.org
Mon Nov 26 09:57:02 CET 2007
Author: adamg Date: Mon Nov 26 08:57:01 2007 GMT
Module: SPECS Tag: HEAD
---- Log message:
- new
---- Files affected:
SPECS:
php-pecl-syck.spec (NONE -> 1.1) (NEW), php-pecl-phar.spec (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: SPECS/php-pecl-syck.spec
diff -u /dev/null SPECS/php-pecl-syck.spec:1.1
--- /dev/null Mon Nov 26 09:57:01 2007
+++ SPECS/php-pecl-syck.spec Mon Nov 26 09:56:56 2007
@@ -0,0 +1,91 @@
+# $Revision$, $Date$
+%define _modname syck
+%define _status beta
+Summary: %{_modname} - YAML-1.0 parser and emitter
+Summary(pl.UTF-8): %{_modname} - parser i emiter YAML-1.0
+Name: php-pecl-%{_modname}
+Version: 0.9.2
+Release: 1
+License: PHP 2.02
+Group: Development/Languages/PHP
+Source0: http://pecl.php.net/get/%{_modname}-%{version}.tgz
+# Source0-md5: 39db9d4c56407b59b7e9bbf7b7d53308
+URL: http://pecl.php.net/package/syck/
+BuildRequires: php-devel >= 3:5.0.0
+BuildRequires: rpmbuild(macros) >= 1.344
+BuildRequires: syck-devel
+%{?requires_php_extension}
+Requires: php-common >= 4:5.0.4
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A binding to the Syck library.
+
+YAML(tm) (rhymes with "camel") is a straightforward machine parsable
+data serialization format designed for human readability and
+interaction with scripting languages. YAML is optimized for data
+serialization, configuration settings, log files, Internet messaging
+and filtering.
+
+In PECL status of this extension is: %{_status}.
+
+%description -l pl.UTF-8
+Dowi±zania do biblioteki Syck.
+
+YAML(tm) (rymuje siê ze s³owem "camel") to prosty do parsowania format
+serializacji danych zaprojektowany pod katem czytelno¶ci dla cz³owieka
+i interakcji z jêzykami skryptowymi. YAML jest zoptymalizowany pod
+k±tem wykorzystania w celu serializacji danych, przechowywania opcji
+konfiguracyjnych, logów, komunikatorów internetowych czy ró¿norakich
+filtrów.
+
+To rozszerzenie ma w PECL status: %{_status}.
+
+%prep
+%setup -q -c
+
+%build
+cd %{_modname}-%{version}
+phpize
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d
+
+%{__make} install \
+ -C %{_modname}-%{version} \
+ INSTALL_ROOT=$RPM_BUILD_ROOT \
+ EXTENSION_DIR=%{php_extensiondir}
+cat <<'EOF' > $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d/%{_modname}.ini
+; Enable %{_modname} extension module
+extension=%{_modname}.so
+EOF
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+%php_webserver_restart
+
+%postun
+if [ "$1" = 0 ]; then
+ %php_webserver_restart
+fi
+
+%files
+%defattr(644,root,root,755)
+%doc %{_modname}-%{version}/{CHANGELOG,TODO}
+%config(noreplace) %verify(not md5 mtime size) %{php_sysconfdir}/conf.d/%{_modname}.ini
+%attr(755,root,root) %{php_extensiondir}/%{_modname}.so
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2007-11-26 08:56:56 adamg
+- new
+
================================================================
Index: SPECS/php-pecl-phar.spec
diff -u /dev/null SPECS/php-pecl-phar.spec:1.1
--- /dev/null Mon Nov 26 09:57:02 2007
+++ SPECS/php-pecl-phar.spec Mon Nov 26 09:56:56 2007
@@ -0,0 +1,109 @@
+# $Revision$, $Date$
+%define _modname phar
+%define _status stable
+Summary: allows running of complete applications out of .phar files (like Java .jar files)
+Summary(pl.UTF-8): pozwala na uruchamianie ogtowych aplikacji z plików .phar (podobnych do plików .jar w Javie)
+Name: php-pecl-%{_modname}
+Version: 1.2.3
+Release: 1
+License: PHP 2.02
+Group: Development/Languages/PHP
+Source0: http://pecl.php.net/get/%{_modname}-%{version}.tgz
+# Source0-md5: b2b81eebc715044d7793643a626e9d51
+URL: http://pecl.php.net/package/phar/
+BuildRequires: php-devel >= 3:5.0.0
+BuildRequires: rpmbuild(macros) >= 1.344
+%{?requires_php_extension}
+Requires: php-bzip2
+Requires: php-common >= 4:5.0.4
+Requires: php-zlib
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This is the extension version of PEAR's PHP_Archive package. Support
+for zlib, bz2 and crc32 is achieved without any dependency other than
+the external zlib or bz2 extension.
+
+.phar files can be read using the phar stream, or with the Phar class.
+If the SPL extension is available, a Phar object can be used as an
+array to iterate over a phar's contents or to read files directly from
+the phar.
+
+Phar archives can be created using the streams API or with the Phar
+class, if the phar.readonly ini variable is set to false.
+
+Full support for MD5 and SHA1 signatures is possible. Signatures can
+be required if the ini variable phar.require_hash is set to true. When
+PECL extension hash is avaiable then SHA-256 and SHA-512 signatures
+are supported as well.
+
+In PECL status of this extension is: %{_status}.
+
+%description -l pl.UTF-8
+To rozszerzenie to odpowiednik klasy PEAR PHP_Archive. Wsparcie dla
+metod kompresji zlib, bz2 i crc32 zostaÅo osiÄ
gniÄte bez zależnoÅci
+innych niż moduÅy zlib i bz2.
+
+Pliki .phar mogÄ
byÄ odczytane przy użyciu strumienia phar, lub za
+pomocÄ
klasy Phar. JeÅli rozszerzenie SPL jest dostÄpne, obiekt Phar
+może byÄ użyty jako tablica lub w celu bezpoÅredniego odczytu plików.
+
+Archiwa Phar moga byÄ stworzone przy użyciu API strumieni lub za
+pomocÄ
klasy Phar, jeÅli zmienna phar.readonly jest ustawiona na
+faÅsz.
+
+PeÅne wsparcie dla skrótów MD5 i SHA1 jest możliwe. Skróty mogÄ
byÄ
+wymagane, jeÅli zmienna phar.require_hash ma wartoÅÄ true. JeÅli
+rozszerzenie PECL hash jest dostÄpne, możliwe jest także skorzystanie
+ze skrótów SHA-256 oraz SHA-512.
+
+To rozszerzenie ma w PECL status: %{_status}.
+
+%prep
+%setup -q -c
+
+%build
+cd %{_modname}-%{version}
+phpize
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d
+
+%{__make} install \
+ -C %{_modname}-%{version} \
+ INSTALL_ROOT=$RPM_BUILD_ROOT \
+ EXTENSION_DIR=%{php_extensiondir}
+cat <<'EOF' > $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d/%{_modname}.ini
+; Enable %{_modname} extension module
+extension=%{_modname}.so
+EOF
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+%php_webserver_restart
+
+%postun
+if [ "$1" = 0 ]; then
+ %php_webserver_restart
+fi
+
+%files
+%defattr(644,root,root,755)
+%doc %{_modname}-%{version}/{CREDITS,TODO}
+%config(noreplace) %verify(not md5 mtime size) %{php_sysconfdir}/conf.d/%{_modname}.ini
+%attr(755,root,root) %{php_extensiondir}/%{_modname}.so
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2007-11-26 08:56:56 adamg
+- new
+
================================================================
More information about the pld-cvs-commit
mailing list