debian/0000755000000000000000000000000011336674320007173 5ustar debian/source/0000755000000000000000000000000011336315070010465 5ustar debian/source/format0000644000000000000000000000001411336674314011704 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000026211336315070011037 0ustar sqlite3-pcre (0~git20070120091816+4229ecc-0ubuntu1) lucid; urgency=low * Initial release (LP: #518502) -- Roger A. Light Sun, 07 Feb 2010 18:24:14 +0000 debian/patches/0000755000000000000000000000000011336674314010625 5ustar debian/patches/series0000644000000000000000000000001611336315070012026 0ustar Makefile.diff debian/patches/Makefile.diff0000644000000000000000000000127011336315070013163 0ustar Author: Roger Light Subject: Add a Makefile to build and install the library. Index: sqlite3-pcre/Makefile =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ sqlite3-pcre/Makefile 2010-02-09 10:43:38.286705438 +0000 @@ -0,0 +1,16 @@ +CC=cc +INSTALL=install +CFLAGS=$(shell pkg-config --cflags sqlite3 libpcre) -fPIC +LIBS=$(shell pkg-config --libs libpcre) +prefix=/usr + +.PHONY : install clean + +pcre.so : pcre.c + ${CC} -shared -o $@ ${CFLAGS} -W -Werror pcre.c ${LIBS} -Wl,-z,defs + +install : pcre.so + ${INSTALL} -pD -m755 pcre.so ${DESTDIR}${prefix}/lib/sqlite3/pcre.so + +clean : + -rm -f pcre.so debian/control0000644000000000000000000000123611336315070010572 0ustar Source: sqlite3-pcre Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Roger A. Light Build-Depends: debhelper (>= 7), libsqlite3-dev, libpcre3-dev, pkg-config, quilt Standards-Version: 3.8.4 Section: libs Homepage: http://git.altlinux.org/people/at/packages/?p=sqlite3-pcre.git Package: sqlite3-pcre Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Perl-compatible regular expression support for SQLite This SQLite loadable extension enables the REGEXP operator, which is not implemented by default, to call PCRE routines for regular expression matching. debian/rules0000755000000000000000000000123311336315070010244 0ustar #!/usr/bin/make -f %: dh --with quilt $@ get-orig-source:: version=$$(dpkg-parsechangelog -c1 | grep ^Version: | sed -e 's/Version: //'); \ shorthash=$$(echo $${version} | sed -e 's/0~git[0-9]\{14\}+\([0-9a-f]\{7\}\).*/\1/'); \ tmpdir=$$(mktemp -d); \ cd $${tmpdir}; \ git clone git://git.altlinux.org/people/at/packages/sqlite3-pcre.git; \ cd sqlite3-pcre; \ git checkout $${shorthash} 2> /dev/null; \ stamp=$$(date --date="$$(git log -n1 --date=rfc | grep Date | sed -e 's/Date: *//')" +%Y%m%d%H%M%S); \ cd ..; \ tar --exclude=.git -czf ${CURDIR}/sqlite3-pcre_0~git$${stamp}+$${shorthash}.orig.tar.gz sqlite3-pcre; \ cd ${CURDIR}; \ rm -rf $${tmpdir} debian/copyright0000644000000000000000000000104011336315070011113 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 Name: sqlite3-pcre Maintainer: Alexey Tourbin Source: http://git.altlinux.org/people/at/packages/?p=sqlite3-pcre.git Copyright: Package is public domain License: PD The author has dedicated the code to the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. debian/compat0000644000000000000000000000000211336315070010363 0ustar 7 debian/README.source0000644000000000000000000000020511336315070011341 0ustar The source for this package is only available as a git repository at http://git.altlinux.org/people/at/packages/?p=sqlite3-pcre.git