From: <abe...@us...> - 2015-01-02 18:09:18
|
Revision: 6894 http://sourceforge.net/p/astlinux/code/6894 Author: abelbeck Date: 2015-01-02 18:09:16 +0000 (Fri, 02 Jan 2015) Log Message: ----------- liburiparser, new package, optional for Asterisk 13 Modified Paths: -------------- branches/1.0/astlinux-ast11.config branches/1.0/astlinux18.config branches/1.0/initrd.config branches/1.0/package/Config.in branches/1.0/runnix-uclibc.config branches/1.0/runnix.config Added Paths: ----------- branches/1.0/package/liburiparser/ branches/1.0/package/liburiparser/Config.in branches/1.0/package/liburiparser/liburiparser.mk Modified: branches/1.0/astlinux-ast11.config =================================================================== --- branches/1.0/astlinux-ast11.config 2015-01-02 17:50:42 UTC (rev 6893) +++ branches/1.0/astlinux-ast11.config 2015-01-02 18:09:16 UTC (rev 6894) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6849-dirty Configuration -# Fri Dec 12 17:25:43 2014 +# Buildroot 2011.08-svn6893-dirty Configuration +# Fri Jan 2 12:05:53 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -613,6 +613,7 @@ # BR2_PACKAGE_LIBRSYNC is not set # BR2_PACKAGE_LIBSOUP is not set # BR2_PACKAGE_LIBUPNP is not set +# BR2_PACKAGE_LIBURIPARSER is not set BR2_PACKAGE_LINUX_ATM=y # Modified: branches/1.0/astlinux18.config =================================================================== --- branches/1.0/astlinux18.config 2015-01-02 17:50:42 UTC (rev 6893) +++ branches/1.0/astlinux18.config 2015-01-02 18:09:16 UTC (rev 6894) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6849-dirty Configuration -# Fri Dec 12 17:25:42 2014 +# Buildroot 2011.08-svn6893-dirty Configuration +# Fri Jan 2 12:05:51 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -613,6 +613,7 @@ # BR2_PACKAGE_LIBRSYNC is not set # BR2_PACKAGE_LIBSOUP is not set # BR2_PACKAGE_LIBUPNP is not set +# BR2_PACKAGE_LIBURIPARSER is not set BR2_PACKAGE_LINUX_ATM=y # Modified: branches/1.0/initrd.config =================================================================== --- branches/1.0/initrd.config 2015-01-02 17:50:42 UTC (rev 6893) +++ branches/1.0/initrd.config 2015-01-02 18:09:16 UTC (rev 6894) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6849-dirty Configuration -# Fri Dec 12 17:25:55 2014 +# Buildroot 2011.08-svn6893-dirty Configuration +# Fri Jan 2 12:05:59 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -495,6 +495,7 @@ # BR2_PACKAGE_LIBRSYNC is not set # BR2_PACKAGE_LIBSOUP is not set # BR2_PACKAGE_LIBUPNP is not set +# BR2_PACKAGE_LIBURIPARSER is not set # BR2_PACKAGE_LINUX_ATM is not set # Modified: branches/1.0/package/Config.in =================================================================== --- branches/1.0/package/Config.in 2015-01-02 17:50:42 UTC (rev 6893) +++ branches/1.0/package/Config.in 2015-01-02 18:09:16 UTC (rev 6894) @@ -377,6 +377,7 @@ source "package/librsync/Config.in" source "package/libsoup/Config.in" source "package/libupnp/Config.in" +source "package/liburiparser/Config.in" source "package/linux-atm/Config.in" endmenu Added: branches/1.0/package/liburiparser/Config.in =================================================================== --- branches/1.0/package/liburiparser/Config.in (rev 0) +++ branches/1.0/package/liburiparser/Config.in 2015-01-02 18:09:16 UTC (rev 6894) @@ -0,0 +1,8 @@ +config BR2_PACKAGE_LIBURIPARSER + bool "liburiparser" + help + uriparser is a strictly RFC 3986 compliant URI parsing and handling + library written in C. + + http://uriparser.sourceforge.net + Added: branches/1.0/package/liburiparser/liburiparser.mk =================================================================== --- branches/1.0/package/liburiparser/liburiparser.mk (rev 0) +++ branches/1.0/package/liburiparser/liburiparser.mk 2015-01-02 18:09:16 UTC (rev 6894) @@ -0,0 +1,20 @@ +################################################################################ +# +# liburiparser +# +################################################################################ + +LIBURIPARSER_VERSION = 0.8.1 +LIBURIPARSER_SOURCE = uriparser-$(LIBURIPARSER_VERSION).tar.bz2 +LIBURIPARSER_SITE = http://sourceforge.net/projects/uriparser/files/Sources/$(LIBURIPARSER_VERSION) +LIBURIPARSER_INSTALL_STAGING = YES + +LIBURIPARSER_CONF_OPT = \ + --disable-test \ + --disable-doc + +ifeq ($(BR2_USE_WCHAR),) +LIBURIPARSER_CONF_OPT += --disable-wchar_t +endif + +$(eval $(call AUTOTARGETS,package,liburiparser)) Modified: branches/1.0/runnix-uclibc.config =================================================================== --- branches/1.0/runnix-uclibc.config 2015-01-02 17:50:42 UTC (rev 6893) +++ branches/1.0/runnix-uclibc.config 2015-01-02 18:09:16 UTC (rev 6894) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6849-dirty Configuration -# Fri Dec 12 17:25:53 2014 +# Buildroot 2011.08-svn6893-dirty Configuration +# Fri Jan 2 12:05:55 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -745,6 +745,7 @@ # # libupnp requires a toolchain with LARGEFILE support # +# BR2_PACKAGE_LIBURIPARSER is not set # BR2_PACKAGE_LINUX_ATM is not set # Modified: branches/1.0/runnix.config =================================================================== --- branches/1.0/runnix.config 2015-01-02 17:50:42 UTC (rev 6893) +++ branches/1.0/runnix.config 2015-01-02 18:09:16 UTC (rev 6894) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6849-dirty Configuration -# Fri Dec 12 17:25:44 2014 +# Buildroot 2011.08-svn6893-dirty Configuration +# Fri Jan 2 12:05:54 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -521,6 +521,7 @@ # BR2_PACKAGE_LIBRSYNC is not set # BR2_PACKAGE_LIBSOUP is not set # BR2_PACKAGE_LIBUPNP is not set +# BR2_PACKAGE_LIBURIPARSER is not set # BR2_PACKAGE_LINUX_ATM is not set # This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |