All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR
@ 2021-10-05  6:43 Fabrice Fontaine
  2021-10-05  6:43 ` [Buildroot] [PATCH 2/2] package/net-tools: bump to version 2.10 Fabrice Fontaine
  2021-10-09 10:07 ` [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR Peter Korsgaard
  0 siblings, 2 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2021-10-05  6:43 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

cpe:2.3:a:net-tools_project:net-tools is a valid CPE identifier for this
package:

  https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Anet-tools_project%3Anet-tools

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/net-tools/net-tools.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/net-tools/net-tools.mk b/package/net-tools/net-tools.mk
index 985fe2e35e..eb268a6e14 100644
--- a/package/net-tools/net-tools.mk
+++ b/package/net-tools/net-tools.mk
@@ -9,6 +9,7 @@ NET_TOOLS_SITE = git://git.code.sf.net/p/net-tools/code
 NET_TOOLS_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
 NET_TOOLS_LICENSE = GPL-2.0+
 NET_TOOLS_LICENSE_FILES = COPYING
+NET_TOOLS_CPE_ID_VENDOR = net-tools_project
 
 define NET_TOOLS_CONFIGURE_CMDS
 	(cd $(@D); yes "" | ./configure.sh config.in )
-- 
2.33.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 2/2] package/net-tools: bump to version 2.10
  2021-10-05  6:43 [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR Fabrice Fontaine
@ 2021-10-05  6:43 ` Fabrice Fontaine
  2021-10-09 10:08   ` Peter Korsgaard
  2021-10-09 10:07 ` [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR Peter Korsgaard
  1 sibling, 1 reply; 5+ messages in thread
From: Fabrice Fontaine @ 2021-10-05  6:43 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Use standard install target as update target has been removed with
https://sourceforge.net/p/net-tools/code/ci/5484cf9a13a2b1d6f604aad2a4fa41c7f01e1a46/

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/net-tools/net-tools.hash | 5 ++++-
 package/net-tools/net-tools.mk   | 8 ++++----
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/package/net-tools/net-tools.hash b/package/net-tools/net-tools.hash
index e29415b8ff..fdc30fa2b2 100644
--- a/package/net-tools/net-tools.hash
+++ b/package/net-tools/net-tools.hash
@@ -1,3 +1,6 @@
+# From http://sourceforge.net/projects/net-tools/files/
+sha1  4080baab0486dc882c3b293d5559c27251ae4268  net-tools-2.10.tar.xz
+md5  78aae762c95e2d731faf88d482e4cde5  net-tools-2.10.tar.xz
 # Locally computed
-sha256  4c68ef33d97cc807fe437fa64a801355c36d638774c0c8a4342742f6bdceea78  net-tools-479bb4a7e11a4084e2935c0a576388f92469225b-br1.tar.gz
+sha256  b262435a5241e89bfa51c3cabd5133753952f7a7b7b93f32e08cb9d96f580d69  net-tools-2.10.tar.xz
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  COPYING
diff --git a/package/net-tools/net-tools.mk b/package/net-tools/net-tools.mk
index eb268a6e14..4a03e3d846 100644
--- a/package/net-tools/net-tools.mk
+++ b/package/net-tools/net-tools.mk
@@ -4,8 +4,9 @@
 #
 ################################################################################
 
-NET_TOOLS_VERSION = 479bb4a7e11a4084e2935c0a576388f92469225b
-NET_TOOLS_SITE = git://git.code.sf.net/p/net-tools/code
+NET_TOOLS_VERSION = 2.10
+NET_TOOLS_SOURCE = net-tools-$(NET_TOOLS_VERSION).tar.xz
+NET_TOOLS_SITE = http://downloads.sourceforge.net/project/net-tools
 NET_TOOLS_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
 NET_TOOLS_LICENSE = GPL-2.0+
 NET_TOOLS_LICENSE_FILES = COPYING
@@ -35,11 +36,10 @@ define NET_TOOLS_BUILD_CMDS
 		$(MAKE) -C $(@D)
 endef
 
-# install renames conflicting binaries, update does not
 # ifconfig & route reside in /sbin for busybox, so ensure we don't end
 # up with two versions of those.
 define NET_TOOLS_INSTALL_TARGET_CMDS
-	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) update
+	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
 	mv -f $(TARGET_DIR)/bin/ifconfig $(TARGET_DIR)/sbin/ifconfig
 	mv -f $(TARGET_DIR)/bin/route $(TARGET_DIR)/sbin/route
 endef
-- 
2.33.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR
  2021-10-05  6:43 [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR Fabrice Fontaine
  2021-10-05  6:43 ` [Buildroot] [PATCH 2/2] package/net-tools: bump to version 2.10 Fabrice Fontaine
@ 2021-10-09 10:07 ` Peter Korsgaard
  2021-10-09 12:36   ` Peter Korsgaard
  1 sibling, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2021-10-09 10:07 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > cpe:2.3:a:net-tools_project:net-tools is a valid CPE identifier for this
 > package:

 >   https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Anet-tools_project%3Anet-tools

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Buildroot] [PATCH 2/2] package/net-tools: bump to version 2.10
  2021-10-05  6:43 ` [Buildroot] [PATCH 2/2] package/net-tools: bump to version 2.10 Fabrice Fontaine
@ 2021-10-09 10:08   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-10-09 10:08 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Use standard install target as update target has been removed with
 > https://sourceforge.net/p/net-tools/code/ci/5484cf9a13a2b1d6f604aad2a4fa41c7f01e1a46/

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR
  2021-10-09 10:07 ` [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR Peter Korsgaard
@ 2021-10-09 12:36   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-10-09 12:36 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
 >> cpe:2.3:a:net-tools_project:net-tools is a valid CPE identifier for this
 >> package:

 >> https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Anet-tools_project%3Anet-tools

 >> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

 > Committed, thanks.

Committed to 2021.02.x, 2021.05.x and 2021.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-10-09 12:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-05  6:43 [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR Fabrice Fontaine
2021-10-05  6:43 ` [Buildroot] [PATCH 2/2] package/net-tools: bump to version 2.10 Fabrice Fontaine
2021-10-09 10:08   ` Peter Korsgaard
2021-10-09 10:07 ` [Buildroot] [PATCH 1/2] package/net-tools: add NET_TOOLS_CPE_ID_VENDOR Peter Korsgaard
2021-10-09 12:36   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.