From: <abe...@us...> - 2016-11-03 13:21:20
|
Revision: 7911 http://sourceforge.net/p/astlinux/code/7911 Author: abelbeck Date: 2016-11-03 13:21:17 +0000 (Thu, 03 Nov 2016) Log Message: ----------- whois, new package 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/whois/ branches/1.0/package/whois/Config.in branches/1.0/package/whois/whois.mk Modified: branches/1.0/astlinux-ast11.config =================================================================== --- branches/1.0/astlinux-ast11.config 2016-11-03 04:14:25 UTC (rev 7910) +++ branches/1.0/astlinux-ast11.config 2016-11-03 13:21:17 UTC (rev 7911) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn7907-dirty Configuration -# Wed Nov 2 08:46:10 2016 +# Buildroot astlinux-1.x-svn7910-dirty Configuration +# Thu Nov 3 08:17:06 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -803,6 +803,7 @@ # BR2_PACKAGE_VPNC is not set BR2_PACKAGE_VSFTPD=y # BR2_PACKAGE_VTUN is not set +BR2_PACKAGE_WHOIS=y BR2_PACKAGE_WIDE_DHCPV6=y # BR2_PACKAGE_WIRELESS_TOOLS is not set # BR2_PACKAGE_WPA_SUPPLICANT is not set Modified: branches/1.0/astlinux-ast13.config =================================================================== --- branches/1.0/astlinux-ast13.config 2016-11-03 04:14:25 UTC (rev 7910) +++ branches/1.0/astlinux-ast13.config 2016-11-03 13:21:17 UTC (rev 7911) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn7907-dirty Configuration -# Wed Nov 2 08:46:10 2016 +# Buildroot astlinux-1.x-svn7910-dirty Configuration +# Thu Nov 3 08:17:08 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -803,6 +803,7 @@ # BR2_PACKAGE_VPNC is not set BR2_PACKAGE_VSFTPD=y # BR2_PACKAGE_VTUN is not set +BR2_PACKAGE_WHOIS=y BR2_PACKAGE_WIDE_DHCPV6=y # BR2_PACKAGE_WIRELESS_TOOLS is not set # BR2_PACKAGE_WPA_SUPPLICANT is not set Modified: branches/1.0/initrd.config =================================================================== --- branches/1.0/initrd.config 2016-11-03 04:14:25 UTC (rev 7910) +++ branches/1.0/initrd.config 2016-11-03 13:21:17 UTC (rev 7911) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7604-dirty Configuration -# Tue Mar 22 12:22:58 2016 +# Buildroot astlinux-1.x-svn7910-dirty Configuration +# Thu Nov 3 08:17:13 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -649,6 +649,7 @@ # BR2_PACKAGE_VPNC is not set # BR2_PACKAGE_VSFTPD is not set # BR2_PACKAGE_VTUN is not set +# BR2_PACKAGE_WHOIS is not set # BR2_PACKAGE_WIDE_DHCPV6 is not set # BR2_PACKAGE_WIRELESS_TOOLS is not set # BR2_PACKAGE_WPA_SUPPLICANT is not set Modified: branches/1.0/package/Config.in =================================================================== --- branches/1.0/package/Config.in 2016-11-03 04:14:25 UTC (rev 7910) +++ branches/1.0/package/Config.in 2016-11-03 13:21:17 UTC (rev 7911) @@ -555,6 +555,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS source "package/wget/Config.in" endif +source "package/whois/Config.in" source "package/wide-dhcpv6/Config.in" source "package/wireless_tools/Config.in" source "package/wpa_supplicant/Config.in" Added: branches/1.0/package/whois/Config.in =================================================================== --- branches/1.0/package/whois/Config.in (rev 0) +++ branches/1.0/package/whois/Config.in 2016-11-03 13:21:17 UTC (rev 7911) @@ -0,0 +1,10 @@ +config BR2_PACKAGE_WHOIS + bool "whois" + depends on BR2_USE_WCHAR # gettext + help + Improved whois client. + + http://www.linux.it/~md/software/ + + https://github.com/rfc1036/whois + Added: branches/1.0/package/whois/whois.mk =================================================================== --- branches/1.0/package/whois/whois.mk (rev 0) +++ branches/1.0/package/whois/whois.mk 2016-11-03 13:21:17 UTC (rev 7911) @@ -0,0 +1,31 @@ +################################################################################ +# +# whois +# +################################################################################ + +WHOIS_VERSION = 5.2.13 +WHOIS_SITE = http://ftp.debian.org/debian/pool/main/w/whois +WHOIS_SOURCE = whois_$(WHOIS_VERSION).tar.xz + +# take precedence over busybox implementation +WHOIS_DEPENDENCIES = $(if $(BR2_PACKAGE_BUSYBOX),busybox) + +define WHOIS_CONFIGURE_CMDS + # Not all perl's include 'autodie' module + $(SED) '/^use autodie;/d' $(@D)/make_version_h.pl +endef + +define WHOIS_BUILD_CMDS + $(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" -C $(@D) +endef + +define WHOIS_INSTALL_TARGET_CMDS + $(INSTALL) -m 0755 -D $(@D)/whois $(TARGET_DIR)/usr/bin/whois +endef + +define WHOIS_UNINSTALL_TARGET_CMDS + rm -f $(TARGET_DIR)/usr/bin/whois +endef + +$(eval $(call GENTARGETS,package,whois)) Modified: branches/1.0/runnix-iso.config =================================================================== --- branches/1.0/runnix-iso.config 2016-11-03 04:14:25 UTC (rev 7910) +++ branches/1.0/runnix-iso.config 2016-11-03 13:21:17 UTC (rev 7911) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7604-dirty Configuration -# Tue Mar 22 12:22:58 2016 +# Buildroot astlinux-1.x-svn7910-dirty Configuration +# Thu Nov 3 08:17:16 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -689,6 +689,7 @@ # BR2_PACKAGE_VSFTPD is not set # BR2_PACKAGE_VTUN is not set # BR2_PACKAGE_WGET is not set +# BR2_PACKAGE_WHOIS is not set # BR2_PACKAGE_WIDE_DHCPV6 is not set # BR2_PACKAGE_WIRELESS_TOOLS is not set # BR2_PACKAGE_WPA_SUPPLICANT is not set Modified: branches/1.0/runnix.config =================================================================== --- branches/1.0/runnix.config 2016-11-03 04:14:25 UTC (rev 7910) +++ branches/1.0/runnix.config 2016-11-03 13:21:17 UTC (rev 7911) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7604-dirty Configuration -# Tue Mar 22 12:22:58 2016 +# Buildroot astlinux-1.x-svn7910-dirty Configuration +# Thu Nov 3 08:17:15 2016 # BR2_HAVE_DOT_CONFIG=y # BR2_arm is not set @@ -690,6 +690,7 @@ # BR2_PACKAGE_VSFTPD is not set # BR2_PACKAGE_VTUN is not set # BR2_PACKAGE_WGET is not set +# BR2_PACKAGE_WHOIS is not set # BR2_PACKAGE_WIDE_DHCPV6 is not set # BR2_PACKAGE_WIRELESS_TOOLS is not set # BR2_PACKAGE_WPA_SUPPLICANT is not set Modified: branches/1.0/x86_64-configs/astlinux-ast11.config =================================================================== --- branches/1.0/x86_64-configs/astlinux-ast11.config 2016-11-03 04:14:25 UTC (rev 7910) +++ branches/1.0/x86_64-configs/astlinux-ast11.config 2016-11-03 13:21:17 UTC (rev 7911) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn7907-dirty Configuration -# Wed Nov 2 08:46:11 2016 +# Buildroot astlinux-1.x-svn7910-dirty Configuration +# Thu Nov 3 08:17:19 2016 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -784,6 +784,7 @@ # BR2_PACKAGE_VPNC is not set BR2_PACKAGE_VSFTPD=y # BR2_PACKAGE_VTUN is not set +BR2_PACKAGE_WHOIS=y BR2_PACKAGE_WIDE_DHCPV6=y # BR2_PACKAGE_WIRELESS_TOOLS is not set # BR2_PACKAGE_WPA_SUPPLICANT is not set Modified: branches/1.0/x86_64-configs/astlinux-ast13.config =================================================================== --- branches/1.0/x86_64-configs/astlinux-ast13.config 2016-11-03 04:14:25 UTC (rev 7910) +++ branches/1.0/x86_64-configs/astlinux-ast13.config 2016-11-03 13:21:17 UTC (rev 7911) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot astlinux-1.x-svn7907-dirty Configuration -# Wed Nov 2 08:46:11 2016 +# Buildroot astlinux-1.x-svn7910-dirty Configuration +# Thu Nov 3 08:17:27 2016 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -784,6 +784,7 @@ # BR2_PACKAGE_VPNC is not set BR2_PACKAGE_VSFTPD=y # BR2_PACKAGE_VTUN is not set +BR2_PACKAGE_WHOIS=y BR2_PACKAGE_WIDE_DHCPV6=y # BR2_PACKAGE_WIRELESS_TOOLS is not set # BR2_PACKAGE_WPA_SUPPLICANT is not set Modified: branches/1.0/x86_64-configs/initrd.config =================================================================== --- branches/1.0/x86_64-configs/initrd.config 2016-11-03 04:14:25 UTC (rev 7910) +++ branches/1.0/x86_64-configs/initrd.config 2016-11-03 13:21:17 UTC (rev 7911) @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Buildroot 2011.08-svn7604-dirty Configuration -# Tue Mar 22 12:22:58 2016 +# Buildroot astlinux-1.x-svn7910-dirty Configuration +# Thu Nov 3 08:17:28 2016 # BR2_HAVE_DOT_CONFIG=y BR2_ARCH_IS_64=y @@ -630,6 +630,7 @@ # BR2_PACKAGE_VPNC is not set # BR2_PACKAGE_VSFTPD is not set # BR2_PACKAGE_VTUN is not set +# BR2_PACKAGE_WHOIS is not set # BR2_PACKAGE_WIDE_DHCPV6 is not set # BR2_PACKAGE_WIRELESS_TOOLS is not set # BR2_PACKAGE_WPA_SUPPLICANT is not set This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |