From: <abe...@us...> - 2015-08-16 00:58:57
|
Revision: 7195 http://sourceforge.net/p/astlinux/code/7195 Author: abelbeck Date: 2015-08-16 00:58:55 +0000 (Sun, 16 Aug 2015) Log Message: ----------- fossil, new package, version 1.33, disabled by default Modified Paths: -------------- branches/1.0/astlinux-ast11.config branches/1.0/astlinux-ast13.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/fossil/ branches/1.0/package/fossil/Config.in branches/1.0/package/fossil/fossil.mk Modified: branches/1.0/astlinux-ast11.config =================================================================== --- branches/1.0/astlinux-ast11.config 2015-08-15 21:55:36 UTC (rev 7194) +++ branches/1.0/astlinux-ast11.config 2015-08-16 00:58:55 UTC (rev 7195) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7070-dirty Configuration -# Tue May 19 19:11:47 2015 +# Buildroot 2011.08-svn7194-dirty Configuration +# Sat Aug 15 19:23:13 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -266,6 +266,7 @@ # BR2_PACKAGE_CVS is not set # BR2_PACKAGE_DISTCC is not set BR2_PACKAGE_FLEX=y +# BR2_PACKAGE_FOSSIL is not set # BR2_PACKAGE_GMP is not set # BR2_PACKAGE_GPERF is not set # BR2_PACKAGE_MAKE is not set Modified: branches/1.0/astlinux-ast13.config =================================================================== --- branches/1.0/astlinux-ast13.config 2015-08-15 21:55:36 UTC (rev 7194) +++ branches/1.0/astlinux-ast13.config 2015-08-16 00:58:55 UTC (rev 7195) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7070-dirty Configuration -# Tue May 19 19:11:54 2015 +# Buildroot 2011.08-svn7194-dirty Configuration +# Sat Aug 15 19:23:16 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -266,6 +266,7 @@ # BR2_PACKAGE_CVS is not set # BR2_PACKAGE_DISTCC is not set BR2_PACKAGE_FLEX=y +# BR2_PACKAGE_FOSSIL is not set # BR2_PACKAGE_GMP is not set # BR2_PACKAGE_GPERF is not set # BR2_PACKAGE_MAKE is not set Modified: branches/1.0/astlinux18.config =================================================================== --- branches/1.0/astlinux18.config 2015-08-15 21:55:36 UTC (rev 7194) +++ branches/1.0/astlinux18.config 2015-08-16 00:58:55 UTC (rev 7195) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7070-dirty Configuration -# Tue May 19 19:11:42 2015 +# Buildroot 2011.08-svn7194-dirty Configuration +# Sat Aug 15 19:23:12 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -266,6 +266,7 @@ # BR2_PACKAGE_CVS is not set # BR2_PACKAGE_DISTCC is not set BR2_PACKAGE_FLEX=y +# BR2_PACKAGE_FOSSIL is not set # BR2_PACKAGE_GMP is not set # BR2_PACKAGE_GPERF is not set # BR2_PACKAGE_MAKE is not set Modified: branches/1.0/initrd.config =================================================================== --- branches/1.0/initrd.config 2015-08-15 21:55:36 UTC (rev 7194) +++ branches/1.0/initrd.config 2015-08-16 00:58:55 UTC (rev 7195) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6989-dirty Configuration -# Fri Feb 27 10:53:56 2015 +# Buildroot 2011.08-svn7194-dirty Configuration +# Sat Aug 15 19:23:35 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -243,6 +243,7 @@ # BR2_PACKAGE_CVS is not set # BR2_PACKAGE_DISTCC is not set # BR2_PACKAGE_FLEX is not set +# BR2_PACKAGE_FOSSIL is not set # BR2_PACKAGE_GMP is not set # BR2_PACKAGE_GPERF is not set # BR2_PACKAGE_MAKE is not set Modified: branches/1.0/package/Config.in =================================================================== --- branches/1.0/package/Config.in 2015-08-15 21:55:36 UTC (rev 7194) +++ branches/1.0/package/Config.in 2015-08-16 00:58:55 UTC (rev 7195) @@ -73,6 +73,7 @@ source "package/findutils/Config.in" endif source "package/flex/Config.in" +source "package/fossil/Config.in" if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS source "package/gawk/Config.in" endif Added: branches/1.0/package/fossil/Config.in =================================================================== --- branches/1.0/package/fossil/Config.in (rev 0) +++ branches/1.0/package/fossil/Config.in 2015-08-16 00:58:55 UTC (rev 7195) @@ -0,0 +1,9 @@ +config BR2_PACKAGE_FOSSIL + bool "fossil" + select BR2_PACKAGE_OPENSSL + select BR2_PACKAGE_ZLIB + help + Fossil is a simple, high-reliability, distributed software + configuration management system. + + http://www.fossil-scm.org/ Added: branches/1.0/package/fossil/fossil.mk =================================================================== --- branches/1.0/package/fossil/fossil.mk (rev 0) +++ branches/1.0/package/fossil/fossil.mk 2015-08-16 00:58:55 UTC (rev 7195) @@ -0,0 +1,39 @@ +################################################################################ +# +# fossil +# +################################################################################ + +FOSSIL_VERSION = 1.33 +FOSSIL_SOURCE = fossil-src-$(FOSSIL_VERSION).tar.gz +FOSSIL_SITE = http://www.fossil-scm.org/download +FOSSIL_DEPENDENCIES = zlib openssl + +define FOSSIL_CONFIGURE_CMDS + # this is *NOT* GNU autoconf stuff + (cd $(@D); \ + $(TARGET_CONFIGURE_OPTS) \ + ./configure \ + --prefix=/usr \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --with-openssl="$(STAGING_DIR)/usr" \ + --with-zlib="$(STAGING_DIR)/usr" \ + ) +endef + +FOSSIL_MAKE_ENV = \ + $(TARGET_MAKE_ENV) \ + TCC="$(TARGET_CC)" + +FOSSIL_UNINSTALL_STAGING_OPT = --version + +define FOSSIL_INSTALL_TARGET_CMDS + $(INSTALL) -m 0755 -D $(@D)/fossil $(TARGET_DIR)/usr/bin/fossil +endef + +define FOSSIL_UNINSTALL_TARGET_CMDS + rm -f $(TARGET_DIR)/usr/bin/fossil +endef + +$(eval $(call AUTOTARGETS,package,fossil)) Modified: branches/1.0/runnix-uclibc.config =================================================================== --- branches/1.0/runnix-uclibc.config 2015-08-15 21:55:36 UTC (rev 7194) +++ branches/1.0/runnix-uclibc.config 2015-08-16 00:58:55 UTC (rev 7195) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6989-dirty Configuration -# Fri Feb 27 10:53:53 2015 +# Buildroot 2011.08-svn7194-dirty Configuration +# Sat Aug 15 19:23:25 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -367,6 +367,7 @@ # findutils requires a toolchain with WCHAR support # # BR2_PACKAGE_FLEX is not set +# BR2_PACKAGE_FOSSIL is not set # # gcc needs development files in target filesystem Modified: branches/1.0/runnix.config =================================================================== --- branches/1.0/runnix.config 2015-08-15 21:55:36 UTC (rev 7194) +++ branches/1.0/runnix.config 2015-08-16 00:58:55 UTC (rev 7195) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn6989-dirty Configuration -# Fri Feb 27 10:53:49 2015 +# Buildroot 2011.08-svn7194-dirty Configuration +# Sat Aug 15 19:23:19 2015 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -252,6 +252,7 @@ # BR2_PACKAGE_DISTCC is not set # BR2_PACKAGE_FINDUTILS is not set # BR2_PACKAGE_FLEX is not set +# BR2_PACKAGE_FOSSIL is not set # BR2_PACKAGE_GAWK is not set # BR2_PACKAGE_GMP is not set # BR2_PACKAGE_GPERF is not set This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |