libnetwork: Remove unused package
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
This commit is contained in:
parent
b5cde91594
commit
d0d40023b8
1 changed files with 0 additions and 52 deletions
|
@ -1,52 +0,0 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libnetwork
|
||||
PKG_RELEASE:=1
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
GO_PKG:=github.com/docker/libnetwork
|
||||
GO_PKG_BUILD_PKG:= \
|
||||
$(GO_PKG)/cmd/proxy \
|
||||
$(GO_PKG)/cmd/dnet
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://$(GO_PKG)
|
||||
PKG_SOURCE_VERSION:=dcdf8f176d1e13ad719e913e796fb698d846de98
|
||||
PKG_SOURCE_DATE:=2022-11-11
|
||||
PKG_MIRROR_HASH:=bece10d04ab07cc557b424082a1c2fdf46afe0501541b4a05123b7e90fb42f89
|
||||
|
||||
PKG_MAINTAINER:=Gerard Ryan <G.M0N3Y.2503@gmail.com>
|
||||
|
||||
PKG_BUILD_DEPENDS:=golang/host
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_USE_MIPS16:=0
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include ../../lang/golang/golang-package.mk
|
||||
|
||||
define Package/libnetwork
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
TITLE:=networking for containers
|
||||
URL:=https://github.com/docker/libnetwork
|
||||
DEPENDS:=$(GO_ARCH_DEPENDS)
|
||||
endef
|
||||
|
||||
define Package/libnetwork/description
|
||||
Libnetwork provides a native Go implementation for connecting containers.
|
||||
The goal of libnetwork is to deliver a robust Container Network Model that provides a consistent programming interface and the required network abstractions for applications.
|
||||
endef
|
||||
|
||||
GO_PKG_BUILD_VARS += GO111MODULE=auto
|
||||
|
||||
define Package/libnetwork/install
|
||||
$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/bin/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dnet $(1)/usr/bin/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/proxy $(1)/usr/bin/docker-proxy
|
||||
endef
|
||||
|
||||
$(eval $(call GoBinPackage,libnetwork))
|
||||
$(eval $(call BuildPackage,libnetwork))
|
Loading…
Reference in a new issue