Browse Source

infozip: rename to zip

We currently have a package named "infozip" for Info-Zip's Zip.

With the upcoming addition of a package the Info-Zip's UnZip the name
is becoming ambiguous. Rename it to the more specific name "zip".

Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Cc: Romain Naour <romain.naour@openwide.fr>
Cc: Jan Pedersen <jp@jp-embedded.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Reviewed-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Luca Ceresoli 9 years ago
parent
commit
f0c9470451

+ 12 - 0
Config.in.legacy

@@ -104,6 +104,18 @@ comment "build, or run, in unpredictable ways.               "
 comment "----------------------------------------------------"
 comment "----------------------------------------------------"
 endif
 endif
 
 
+###############################################################################
+comment "Legacy options removed in 2016.02"
+
+config BR2_PACKAGE_INFOZIP
+	bool "infozip option has been renamed to zip"
+	select BR2_LEGACY
+	select BR2_PACKAGE_ZIP
+	help
+	  Info-Zip's Zip package has been renamed from infozip to zip,
+	  to avoid ambiguities with Info-Zip's UnZip which has been added
+	  in the unzip package.
+
 ###############################################################################
 ###############################################################################
 comment "Legacy options removed in 2015.11"
 comment "Legacy options removed in 2015.11"
 
 

+ 1 - 1
package/Config.in

@@ -51,11 +51,11 @@ menu "Compressors and decompressors"
 if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 	source "package/gzip/Config.in"
 	source "package/gzip/Config.in"
 endif
 endif
-	source "package/infozip/Config.in"
 	source "package/lz4/Config.in"
 	source "package/lz4/Config.in"
 	source "package/lzip/Config.in"
 	source "package/lzip/Config.in"
 	source "package/lzop/Config.in"
 	source "package/lzop/Config.in"
 	source "package/xz/Config.in"
 	source "package/xz/Config.in"
+	source "package/zip/Config.in"
 endmenu
 endmenu
 
 
 menu "Debugging, profiling and benchmark"
 menu "Debugging, profiling and benchmark"

+ 0 - 0
package/infozip/0001-configure-Remove-Check-C-compiler-type-optimization-.patch → package/zip/0001-configure-Remove-Check-C-compiler-type-optimization-.patch


+ 0 - 0
package/infozip/0002-configure-Don-t-use-host-CPP.patch → package/zip/0002-configure-Don-t-use-host-CPP.patch


+ 0 - 0
package/infozip/0003-Makefile-Use-CFLAGS-from-command-line.patch → package/zip/0003-Makefile-Use-CFLAGS-from-command-line.patch


+ 0 - 0
package/infozip/0004-configure-use-LDFLAGS-from-command-line.patch → package/zip/0004-configure-use-LDFLAGS-from-command-line.patch


+ 0 - 0
package/infozip/0005-unix-configure-remove-GID-UID-size-check.patch → package/zip/0005-unix-configure-remove-GID-UID-size-check.patch


+ 0 - 0
package/infozip/0006-unix-configure-borrow-the-LFS-test-from-autotools.patch → package/zip/0006-unix-configure-borrow-the-LFS-test-from-autotools.patch


+ 2 - 2
package/infozip/Config.in → package/zip/Config.in

@@ -1,5 +1,5 @@
-config BR2_PACKAGE_INFOZIP
-	bool "infozip"
+config BR2_PACKAGE_ZIP
+	bool "zip"
 	help
 	help
 	  Zip is a compression and file packaging/archive utility.
 	  Zip is a compression and file packaging/archive utility.
 	  Although highly compatible both with PKWARE's PKZIP and
 	  Although highly compatible both with PKWARE's PKZIP and

+ 0 - 0
package/infozip/infozip.hash → package/zip/zip.hash


+ 16 - 16
package/infozip/infozip.mk → package/zip/zip.mk

@@ -1,51 +1,51 @@
 ################################################################################
 ################################################################################
 #
 #
-# infozip
+# zip
 #
 #
 ################################################################################
 ################################################################################
 
 
-INFOZIP_VERSION = 30
-INFOZIP_SOURCE = zip$(INFOZIP_VERSION).tgz
-INFOZIP_SITE = ftp://ftp.info-zip.org/pub/infozip/src
-INFOZIP_LICENSE = Info-ZIP
-INFOZIP_LICENSE_FILES = LICENSE
+ZIP_VERSION = 30
+ZIP_SOURCE = zip$(ZIP_VERSION).tgz
+ZIP_SITE = ftp://ftp.info-zip.org/pub/infozip/src
+ZIP_LICENSE = Info-ZIP
+ZIP_LICENSE_FILES = LICENSE
 
 
 ifeq ($(BR2_PACKAGE_BZIP2),y)
 ifeq ($(BR2_PACKAGE_BZIP2),y)
-INFOZIP_DEPENDENCIES += bzip2
+ZIP_DEPENDENCIES += bzip2
 endif
 endif
 
 
 # Infozip's default CFLAGS.
 # Infozip's default CFLAGS.
-INFOZIP_CFLAGS = -I. -DUNIX
+ZIP_CFLAGS = -I. -DUNIX
 
 
 # Disable the support of 16-bit UIDs/GIDs, the test in unix/configure was
 # Disable the support of 16-bit UIDs/GIDs, the test in unix/configure was
 # removed since it can't work for cross-compilation.
 # removed since it can't work for cross-compilation.
-INFOZIP_CFLAGS += -DUIDGID_NOT_16BIT
+ZIP_CFLAGS += -DUIDGID_NOT_16BIT
 
 
 # infozip already defines _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE when
 # infozip already defines _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE when
 # necessary, redefining it on the command line causes some warnings.
 # necessary, redefining it on the command line causes some warnings.
-INFOZIP_TARGET_CFLAGS = \
+ZIP_TARGET_CFLAGS = \
 	$(filter-out -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE,$(TARGET_CFLAGS))
 	$(filter-out -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE,$(TARGET_CFLAGS))
 
 
-define INFOZIP_BUILD_CMDS
+define ZIP_BUILD_CMDS
 	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
 	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \
-		CFLAGS="$(INFOZIP_TARGET_CFLAGS) $(INFOZIP_CFLAGS)" \
+		CFLAGS="$(ZIP_TARGET_CFLAGS) $(ZIP_CFLAGS)" \
 		AS="$(TARGET_CC) -c" \
 		AS="$(TARGET_CC) -c" \
 		-f unix/Makefile generic
 		-f unix/Makefile generic
 endef
 endef
 
 
-define INFOZIP_INSTALL_TARGET_CMDS
+define ZIP_INSTALL_TARGET_CMDS
 	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
 	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
 		prefix=$(TARGET_DIR)/usr
 		prefix=$(TARGET_DIR)/usr
 endef
 endef
 
 
-define HOST_INFOZIP_BUILD_CMDS
+define HOST_ZIP_BUILD_CMDS
 	$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) \
 	$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) \
-		CFLAGS="$(HOST_CFLAGS) $(INFOZIP_CFLAGS)" \
+		CFLAGS="$(HOST_CFLAGS) $(ZIP_CFLAGS)" \
 		AS="$(HOSTCC) -c" \
 		AS="$(HOSTCC) -c" \
 		-f unix/Makefile generic
 		-f unix/Makefile generic
 endef
 endef
 
 
-define HOST_INFOZIP_INSTALL_CMDS
+define HOST_ZIP_INSTALL_CMDS
 	$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
 	$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
 		prefix=$(HOST_DIR)/usr
 		prefix=$(HOST_DIR)/usr
 endef
 endef