diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-11-05 14:52:56 -0800 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2018-03-22 17:27:40 +0900 |
commit | 6e557e79d7c82c104c0a550a9ac8833ff89bfd60 (patch) | |
tree | 5911fbd073c812accb6732c24f783963341ade0a | |
parent | 2ae293d75622d6566710a87b4b4a14b5047a6ed7 (diff) | |
download | pcre-accepted/tizen_4.0_base.tar.gz pcre-accepted/tizen_4.0_base.tar.bz2 pcre-accepted/tizen_4.0_base.zip |
Bump to pcre 8.41submit/tizen_4.0_base/20180322.082916accepted/tizen/4.0/base/20180323.143540tizen_4.0_baseaccepted/tizen_4.0_base
Change-Id: Ic584d3887df4e41cc1dc36010b27093cb93f0f8b
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
-rw-r--r-- | packaging/baselibs.conf | 5 | ||||
-rw-r--r-- | packaging/pcre.changes | 3 | ||||
-rw-r--r-- | packaging/pcre.manifest | 5 | ||||
-rw-r--r-- | packaging/pcre.spec | 184 |
4 files changed, 197 insertions, 0 deletions
diff --git a/packaging/baselibs.conf b/packaging/baselibs.conf new file mode 100644 index 0000000..2e18f05 --- /dev/null +++ b/packaging/baselibs.conf @@ -0,0 +1,5 @@ +libpcre +libpcreposix +libpcrecpp + provides "pcre-<targettype> = <version>" + obsoletes "pcre-<targettype> <= <version>" diff --git a/packaging/pcre.changes b/packaging/pcre.changes new file mode 100644 index 0000000..856f4e7 --- /dev/null +++ b/packaging/pcre.changes @@ -0,0 +1,3 @@ +* Sat May 11 2013 Anas Nashif <anas.nashif@intel.com> submit/tizen/20130509.182809@25b2e8b +- Set license using %license + diff --git a/packaging/pcre.manifest b/packaging/pcre.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/pcre.manifest @@ -0,0 +1,5 @@ +<manifest> + <request> + <domain name="_"/> + </request> +</manifest> diff --git a/packaging/pcre.spec b/packaging/pcre.spec new file mode 100644 index 0000000..6d63f5e --- /dev/null +++ b/packaging/pcre.spec @@ -0,0 +1,184 @@ + +%if "%{run_tests}" == "1" + %define __spec_check_pre %___build_pre + %define check %%check +%endif + + +%define keepstatic 1 +Name: pcre +Version: 8.41 +Release: 0 +License: BSD-2.0 +Summary: A library for Perl-compatible regular expressions +Url: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +Group: System/Libraries +Source: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%{name}-%{version}.tar.bz2 +Source2: baselibs.conf +Source1001: pcre.manifest +BuildRequires: gcc-c++ +BuildRequires: libtool +BuildRequires: pkg-config + +%description +The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + +%package devel +Summary: A library for Perl-compatible regular expressions +Group: System/Libraries +Requires: libpcre = %{version} +Requires: libpcrecpp = %{version} +Requires: libpcreposix = %{version} +Requires: libstdc++-devel + +%description devel +The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + +%package devel-static +Summary: A library for Perl-compatible regular expressions +Group: System/Libraries +Requires: pcre-devel = %{version} + +%description devel-static +The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. +This package contains static versions of the PCRE libraries. + +%package -n libpcre +Summary: A library for Perl-compatible regular expressions +Group: System/Libraries +Provides: %{name} = %{version} +Obsoletes: %{name} < %{version} + +%description -n libpcre +The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + +%package -n libpcreposix +Summary: A library for Perl-compatible regular expressions +Group: System/Libraries + +%description -n libpcreposix +The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + +%package -n libpcrecpp +Summary: A library for Perl-compatible regular expressions +Group: System/Libraries + +%description -n libpcrecpp +The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + +%package doc +Summary: A library for Perl-compatible regular expressions +Group: System/Libraries +BuildArch: noarch + +%description doc +The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + +%package tools +Summary: A library for Perl-compatible regular expressions +Group: System/Libraries + +%description tools +The PCRE library is a set of functions that implement regular +expression pattern matching using the same syntax and semantics +as Perl 5. + +%prep +%setup -q +cp %{SOURCE1001} . + +%build +# Available JIT archs see sljit/sljitConfig.h +autoreconf -fiv +%configure \ +%ifarch %ix86 x86_64 %arm ppc ppc64 mips + --enable-jit \ +%endif + --enable-static \ + --with-link-size=2 \ + --with-match-limit=10000000 \ + --enable-newline-is-lf \ + --enable-utf8 \ + --enable-unicode-properties +make %{?_smp_mflags} + + +%check +export LANG=POSIX +make check || exit 0 + +%install +%make_install +mkdir -p %{buildroot}/%{_defaultdocdir} +mv %{buildroot}/usr/share/doc/pcre %{buildroot}/%{_defaultdocdir}/pcre-doc +rm -f %{buildroot}%{_libdir}/*.la + + +%post -n libpcre -p /sbin/ldconfig + +%postun -n libpcre -p /sbin/ldconfig + +%post -n libpcrecpp -p /sbin/ldconfig + +%postun -n libpcrecpp -p /sbin/ldconfig + +%post -n libpcreposix -p /sbin/ldconfig + +%postun -n libpcreposix -p /sbin/ldconfig + +%files -n libpcre +%manifest %{name}.manifest +%license LICENCE +%{_libdir}/libpcre.so.* + +%files -n libpcrecpp +%manifest %{name}.manifest +%license LICENCE +%{_libdir}/libpcrecpp.so.* + +%files -n libpcreposix +%manifest %{name}.manifest +%license LICENCE +%{_libdir}/libpcreposix.so.* + +%files tools +%manifest %{name}.manifest +%license LICENCE +%{_bindir}/pcregrep +%{_bindir}/pcretest +%{_mandir}/man1/pcregrep.* +%{_mandir}/man1/pcretest.* + +%files doc +%manifest %{name}.manifest +%doc doc/html doc/*.txt + +%files devel +%manifest %{name}.manifest +%{_bindir}/pcre-config +%{_includedir}/* +%{_libdir}/*.so +%{_libdir}/pkgconfig/libpcre.pc +%{_libdir}/pkgconfig/libpcrecpp.pc +%{_libdir}/pkgconfig/libpcreposix.pc +%{_mandir}/man1/pcre-config.* +%{_mandir}/man3/*.gz + +%files devel-static +%manifest %{name}.manifest +%{_libdir}/*.a + |