From: <abe...@us...> - 2017-03-26 01:06:14
|
Revision: 8233 http://sourceforge.net/p/astlinux/code/8233 Author: abelbeck Date: 2017-03-26 01:06:12 +0000 (Sun, 26 Mar 2017) Log Message: ----------- netcalc, new package, enabled for default builds Modified Paths: -------------- branches/1.0/astlinux-ast11.config branches/1.0/astlinux-ast13.config branches/1.0/initrd.config branches/1.0/package/Config.in branches/1.0/runnix-iso.config branches/1.0/runnix.config branches/1.0/x86_64-configs/astlinux-ast11.config branches/1.0/x86_64-configs/astlinux-ast13.config branches/1.0/x86_64-configs/initrd.config Added Paths: ----------- branches/1.0/package/netcalc/ branches/1.0/package/netcalc/Config.in branches/1.0/package/netcalc/netcalc.mk Modified: branches/1.0/astlinux-ast11.config =================================================================== --- branches/1.0/astlinux-ast11.config 2017-03-25 14:30:39 UTC (rev 8232) +++ branches/1.0/astlinux-ast11.config 2017-03-26 01:06:12 UTC (rev 8233) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn8180-dirty Configuration -# Mon Feb 20 15:39:08 2017 +# Buildroot astlinux-1.x-svn8232-dirty Configuration +# Sat Mar 25 20:00:20 2017 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -670,6 +670,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +BR2_PACKAGE_NETCALC=y # BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/astlinux-ast13.config =================================================================== --- branches/1.0/astlinux-ast13.config 2017-03-25 14:30:39 UTC (rev 8232) +++ branches/1.0/astlinux-ast13.config 2017-03-26 01:06:12 UTC (rev 8233) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn8180-dirty Configuration -# Mon Feb 20 15:39:09 2017 +# Buildroot astlinux-1.x-svn8232-dirty Configuration +# Sat Mar 25 20:00:23 2017 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -670,6 +670,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +BR2_PACKAGE_NETCALC=y # BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/initrd.config =================================================================== --- branches/1.0/initrd.config 2017-03-25 14:30:39 UTC (rev 8232) +++ branches/1.0/initrd.config 2017-03-26 01:06:12 UTC (rev 8233) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn8180-dirty Configuration -# Mon Feb 20 15:39:10 2017 +# Buildroot astlinux-1.x-svn8232-dirty Configuration +# Sat Mar 25 20:00:35 2017 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -551,6 +551,7 @@ # # BR2_PACKAGE_HTPASSWD is not set # BR2_PACKAGE_MAC2VENDOR is not set +# BR2_PACKAGE_NETCALC is not set # BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set # BR2_PACKAGE_ZONEINFO is not set Modified: branches/1.0/package/Config.in =================================================================== --- branches/1.0/package/Config.in 2017-03-25 14:30:39 UTC (rev 8232) +++ branches/1.0/package/Config.in 2017-03-26 01:06:12 UTC (rev 8233) @@ -436,6 +436,7 @@ menu "Miscellaneous" source "package/htpasswd/Config.in" source "package/mac2vendor/Config.in" +source "package/netcalc/Config.in" source "package/qemu/Config.in" source "package/shared-mime-info/Config.in" source "package/zoneinfo/Config.in" Added: branches/1.0/package/netcalc/Config.in =================================================================== --- branches/1.0/package/netcalc/Config.in (rev 0) +++ branches/1.0/package/netcalc/Config.in 2017-03-26 01:06:12 UTC (rev 8233) @@ -0,0 +1,9 @@ +config BR2_PACKAGE_NETCALC + bool "netcalc" + help + netcalc is a slimmed down clone of sipcalc, using the output + format of ipcalc. It is written in C and has very few dependencies. + Both IPv4 and IPv6 is supported. + + https://github.com/troglobit/netcalc + Added: branches/1.0/package/netcalc/netcalc.mk =================================================================== --- branches/1.0/package/netcalc/netcalc.mk (rev 0) +++ branches/1.0/package/netcalc/netcalc.mk 2017-03-26 01:06:12 UTC (rev 8233) @@ -0,0 +1,23 @@ +################################################################################ +# +# netcalc +# +################################################################################ + +NETCALC_VERSION = 2.0.1-pre +NETCALC_SOURCE = netcalc-$(NETCALC_VERSION).tar.gz +NETCALC_SITE = http://files.astlinux-project.org +#NETCALC_SITE = https://github.com/troglobit/netcalc/releases/download/v$(NETCALC_VERSION) +NETCALC_AUTORECONF = YES + +## Default install adds ipcalc symlink, confused with Busybox's +## +define NETCALC_INSTALL_TARGET_CMDS + $(INSTALL) -D -m 755 $(@D)/netcalc $(TARGET_DIR)/usr/bin/ +endef + +define NETCALC_UNINSTALL_TARGET_CMDS + rm -f $(TARGET_DIR)/usr/bin/netcalc +endef + +$(eval $(call AUTOTARGETS,package,netcalc)) Modified: branches/1.0/runnix-iso.config =================================================================== --- branches/1.0/runnix-iso.config 2017-03-25 14:30:39 UTC (rev 8232) +++ branches/1.0/runnix-iso.config 2017-03-26 01:06:12 UTC (rev 8233) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn8180-dirty Configuration -# Mon Feb 20 15:39:13 2017 +# Buildroot astlinux-1.x-svn8232-dirty Configuration +# Sat Mar 25 20:00:42 2017 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -579,6 +579,7 @@ # # BR2_PACKAGE_HTPASSWD is not set # BR2_PACKAGE_MAC2VENDOR is not set +# BR2_PACKAGE_NETCALC is not set # BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set # BR2_PACKAGE_ZONEINFO is not set Modified: branches/1.0/runnix.config =================================================================== --- branches/1.0/runnix.config 2017-03-25 14:30:39 UTC (rev 8232) +++ branches/1.0/runnix.config 2017-03-26 01:06:12 UTC (rev 8233) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn8180-dirty Configuration -# Mon Feb 20 15:39:11 2017 +# Buildroot astlinux-1.x-svn8232-dirty Configuration +# Sat Mar 25 20:00:38 2017 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -580,6 +580,7 @@ # # BR2_PACKAGE_HTPASSWD is not set # BR2_PACKAGE_MAC2VENDOR is not set +# BR2_PACKAGE_NETCALC is not set # BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set # BR2_PACKAGE_ZONEINFO is not set Modified: branches/1.0/x86_64-configs/astlinux-ast11.config =================================================================== --- branches/1.0/x86_64-configs/astlinux-ast11.config 2017-03-25 14:30:39 UTC (rev 8232) +++ branches/1.0/x86_64-configs/astlinux-ast11.config 2017-03-26 01:06:12 UTC (rev 8233) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn8180-dirty Configuration -# Mon Feb 20 15:39:17 2017 +# Buildroot astlinux-1.x-svn8232-dirty Configuration +# Sat Mar 25 20:00:44 2017 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -651,6 +651,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +BR2_PACKAGE_NETCALC=y # BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/x86_64-configs/astlinux-ast13.config =================================================================== --- branches/1.0/x86_64-configs/astlinux-ast13.config 2017-03-25 14:30:39 UTC (rev 8232) +++ branches/1.0/x86_64-configs/astlinux-ast13.config 2017-03-26 01:06:12 UTC (rev 8233) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn8180-dirty Configuration -# Mon Feb 20 15:39:19 2017 +# Buildroot astlinux-1.x-svn8232-dirty Configuration +# Sat Mar 25 20:00:47 2017 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -651,6 +651,7 @@ # BR2_PACKAGE_HTPASSWD=y BR2_PACKAGE_MAC2VENDOR=y +BR2_PACKAGE_NETCALC=y # BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set BR2_PACKAGE_ZONEINFO=y Modified: branches/1.0/x86_64-configs/initrd.config =================================================================== --- branches/1.0/x86_64-configs/initrd.config 2017-03-25 14:30:39 UTC (rev 8232) +++ branches/1.0/x86_64-configs/initrd.config 2017-03-26 01:06:12 UTC (rev 8233) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn8180-dirty Configuration -# Mon Feb 20 15:39:21 2017 +# Buildroot astlinux-1.x-svn8232-dirty Configuration +# Sat Mar 25 20:00:54 2017 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -532,6 +532,7 @@ # # BR2_PACKAGE_HTPASSWD is not set # BR2_PACKAGE_MAC2VENDOR is not set +# BR2_PACKAGE_NETCALC is not set # BR2_PACKAGE_QEMU is not set # BR2_PACKAGE_SHARED_MIME_INFO is not set # BR2_PACKAGE_ZONEINFO is not set This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |