public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* Libvirt and Ncat/Netcat [2]
@ 2016-04-08 13:18 Jonatan Schlag
  2016-04-08 13:18 ` [PATCH v2 1/3] Remove the nc symlink from netcat package and rename to gnu-netcat (gnu-netcat is no longer our standard netcat) Jonatan Schlag
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Jonatan Schlag @ 2016-04-08 13:18 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 531 bytes --]

 
Hi, this is the second patch set for libvirt and ncat/netcat. 
The only differences between this patches and the previous one are 
1. Ncat is now built from nmap-7.12.tar.bz2. Everything is fine now with the log files
2. The netcat package is renamed to gnu-netcat. I think this is clearer because in the most distribution the netcat package ship ncat or the BSD netcat. The gnu-netcat is shipped in the gnu-netcat package.  I will write a wiki article about this and which "Netcat" user should install.

Regards Jonatan 

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

* [PATCH v2 1/3] Remove the nc symlink from netcat package and rename to gnu-netcat (gnu-netcat is no longer our standard netcat)
  2016-04-08 13:18 Libvirt and Ncat/Netcat [2] Jonatan Schlag
@ 2016-04-08 13:18 ` Jonatan Schlag
  2016-04-08 13:18 ` [PATCH v2 2/3] Build nmap without ncat Jonatan Schlag
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Jonatan Schlag @ 2016-04-08 13:18 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 8881 bytes --]

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 config/rootfiles/packages/gnu-netcat |  5 +++
 config/rootfiles/packages/netcat     |  6 ---
 lfs/gnu-netcat                       | 85 ++++++++++++++++++++++++++++++++++++
 lfs/netcat                           | 84 -----------------------------------
 make.sh                              |  2 +-
 5 files changed, 91 insertions(+), 91 deletions(-)
 create mode 100644 config/rootfiles/packages/gnu-netcat
 delete mode 100644 config/rootfiles/packages/netcat
 create mode 100644 lfs/gnu-netcat
 delete mode 100644 lfs/netcat

diff --git a/config/rootfiles/packages/gnu-netcat b/config/rootfiles/packages/gnu-netcat
new file mode 100644
index 0000000..f043ed2
--- /dev/null
+++ b/config/rootfiles/packages/gnu-netcat
@@ -0,0 +1,5 @@
+usr/bin/netcat
+#usr/info/netcat.info
+#usr/man/man1/netcat.1
+#usr/share/locale/it/LC_MESSAGES/netcat.mo
+#usr/share/locale/sk/LC_MESSAGES/netcat.mo
diff --git a/config/rootfiles/packages/netcat b/config/rootfiles/packages/netcat
deleted file mode 100644
index c236959..0000000
--- a/config/rootfiles/packages/netcat
+++ /dev/null
@@ -1,6 +0,0 @@
-usr/bin/nc
-usr/bin/netcat
-#usr/info/netcat.info
-#usr/man/man1/netcat.1
-#usr/share/locale/it/LC_MESSAGES/netcat.mo
-#usr/share/locale/sk/LC_MESSAGES/netcat.mo
diff --git a/lfs/gnu-netcat b/lfs/gnu-netcat
new file mode 100644
index 0000000..77ddf5e
--- /dev/null
+++ b/lfs/gnu-netcat
@@ -0,0 +1,85 @@
+###############################################################################
+#                                                                             #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2016 IPFire Team  <info(a)ipfire.org>                           #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# This program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+VER        = 0.7.1
+
+THISAPP    = netcat-$(VER)
+DL_FILE    = $(THISAPP).tar.gz
+DL_FROM    = $(URL_IPFIRE)
+DIR_APP    = $(DIR_SRC)/$(THISAPP)
+TARGET     = $(DIR_INFO)/$(THISAPP)
+PROG       = gnu-netcat
+PAK_VER    = 1
+
+DEPS       = ""
+
+###############################################################################
+# Top-level Rules
+###############################################################################
+
+objects = $(DL_FILE)
+
+$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
+
+$(DL_FILE)_MD5 = 088def25efe04dcdd1f8369d8926ab34
+
+install : $(TARGET)
+
+check : $(patsubst %,$(DIR_CHK)/%,$(objects))
+
+download :$(patsubst %,$(DIR_DL)/%,$(objects))
+
+md5 : $(subst %,%_MD5,$(objects))
+
+dist:
+	@$(PAK)
+
+###############################################################################
+# Downloading, checking, md5sum
+###############################################################################
+
+$(patsubst %,$(DIR_CHK)/%,$(objects)) :
+	@$(CHECK)
+
+$(patsubst %,$(DIR_DL)/%,$(objects)) :
+	@$(LOAD)
+
+$(subst %,%_MD5,$(objects)) :
+	@$(MD5)
+
+###############################################################################
+# Installation Details
+###############################################################################
+
+$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
+	@$(PREBUILD)
+	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+	cd $(DIR_APP) && ./configure --prefix=/usr
+	cd $(DIR_APP) && make $(MAKETUNING)
+	cd $(DIR_APP) && make install
+	rm -f /usr/bin/nc
+	@rm -rf $(DIR_APP)
+	@$(POSTBUILD)
diff --git a/lfs/netcat b/lfs/netcat
deleted file mode 100644
index d07669b..0000000
--- a/lfs/netcat
+++ /dev/null
@@ -1,84 +0,0 @@
-###############################################################################
-#                                                                             #
-# IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
-#                                                                             #
-# This program is free software: you can redistribute it and/or modify        #
-# it under the terms of the GNU General Public License as published by        #
-# the Free Software Foundation, either version 3 of the License, or           #
-# (at your option) any later version.                                         #
-#                                                                             #
-# This program is distributed in the hope that it will be useful,             #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
-# GNU General Public License for more details.                                #
-#                                                                             #
-# You should have received a copy of the GNU General Public License           #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
-#                                                                             #
-###############################################################################
-
-###############################################################################
-# Definitions
-###############################################################################
-
-include Config
-
-VER        = 0.7.1
-
-THISAPP    = netcat-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
-DL_FROM    = $(URL_IPFIRE)
-DIR_APP    = $(DIR_SRC)/$(THISAPP)
-TARGET     = $(DIR_INFO)/$(THISAPP)
-PROG       = netcat
-PAK_VER    = 1
-
-DEPS       = ""
-
-###############################################################################
-# Top-level Rules
-###############################################################################
-
-objects = $(DL_FILE)
-
-$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-
-$(DL_FILE)_MD5 = 088def25efe04dcdd1f8369d8926ab34
-
-install : $(TARGET)
-
-check : $(patsubst %,$(DIR_CHK)/%,$(objects))
-
-download :$(patsubst %,$(DIR_DL)/%,$(objects))
-
-md5 : $(subst %,%_MD5,$(objects))
-
-dist: 
-	@$(PAK)
-
-###############################################################################
-# Downloading, checking, md5sum
-###############################################################################
-
-$(patsubst %,$(DIR_CHK)/%,$(objects)) :
-	@$(CHECK)
-
-$(patsubst %,$(DIR_DL)/%,$(objects)) :
-	@$(LOAD)
-
-$(subst %,%_MD5,$(objects)) :
-	@$(MD5)
-
-###############################################################################
-# Installation Details
-###############################################################################
-
-$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
-	@$(PREBUILD)
-	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && ./configure --prefix=/usr
-	cd $(DIR_APP) && make $(MAKETUNING)
-	cd $(DIR_APP) && make install
-	@rm -rf $(DIR_APP)
-	@$(POSTBUILD)
diff --git a/make.sh b/make.sh
index 22ff820..2130e37 100755
--- a/make.sh
+++ b/make.sh
@@ -680,6 +680,7 @@ buildipfire() {
   ipfiremake libevent2
   ipfiremake portmap
   ipfiremake nfs
+  ipfiremake gnu-netcat
   ipfiremake nmap
   ipfiremake ncftp
   ipfiremake etherwake
@@ -751,7 +752,6 @@ buildipfire() {
   ipfiremake apcupsd
   ipfiremake iperf
   ipfiremake iperf3
-  ipfiremake netcat
   ipfiremake 7zip
   ipfiremake lynis
   ipfiremake streamripper
-- 
2.1.4


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

* [PATCH v2 2/3] Build nmap without ncat.
  2016-04-08 13:18 Libvirt and Ncat/Netcat [2] Jonatan Schlag
  2016-04-08 13:18 ` [PATCH v2 1/3] Remove the nc symlink from netcat package and rename to gnu-netcat (gnu-netcat is no longer our standard netcat) Jonatan Schlag
@ 2016-04-08 13:18 ` Jonatan Schlag
  2016-04-08 13:18 ` [PATCH v2 3/3] New package ncat Jonatan Schlag
  2016-04-08 15:17 ` Libvirt and Ncat/Netcat [2] Michael Tremer
  3 siblings, 0 replies; 5+ messages in thread
From: Jonatan Schlag @ 2016-04-08 13:18 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 3116 bytes --]

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 config/rootfiles/packages/nmap | 8 ++------
 lfs/nmap                       | 6 +++---
 2 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/config/rootfiles/packages/nmap b/config/rootfiles/packages/nmap
index 3370600..b91f954 100644
--- a/config/rootfiles/packages/nmap
+++ b/config/rootfiles/packages/nmap
@@ -1,4 +1,3 @@
-usr/bin/ncat
 usr/bin/ndiff
 usr/bin/nmap
 usr/bin/nping
@@ -15,7 +14,6 @@ usr/lib/python2.7/site-packages/ndiff.pyc
 #usr/share/man/hu/man1/nmap.1
 #usr/share/man/it/man1/nmap.1
 #usr/share/man/ja/man1/nmap.1
-#usr/share/man/man1/ncat.1
 #usr/share/man/man1/ndiff.1
 #usr/share/man/man1/nmap.1
 #usr/share/man/man1/nping.1
@@ -40,8 +38,6 @@ usr/lib/python2.7/site-packages/ndiff.pyc
 #usr/share/man/zh
 #usr/share/man/zh/man1
 #usr/share/man/zh/man1/nmap.1
-#usr/share/ncat
-#usr/share/ncat/ca-bundle.crt
 #usr/share/nmap
 usr/share/nmap/nmap-mac-prefixes
 usr/share/nmap/nmap-os-db
@@ -53,7 +49,7 @@ usr/share/nmap/nmap-services
 usr/share/nmap/nmap.dtd
 usr/share/nmap/nmap.xsl
 usr/share/nmap/nse_main.lua
-usr/share/nmap/nselib
+#usr/share/nmap/nselib
 usr/share/nmap/nselib/afp.lua
 usr/share/nmap/nselib/ajp.lua
 usr/share/nmap/nselib/amqp.lua
@@ -71,7 +67,7 @@ usr/share/nmap/nselib/citrixxml.lua
 usr/share/nmap/nselib/comm.lua
 usr/share/nmap/nselib/creds.lua
 usr/share/nmap/nselib/cvs.lua
-usr/share/nmap/nselib/data
+#usr/share/nmap/nselib/data
 usr/share/nmap/nselib/data/dns-srv-names
 usr/share/nmap/nselib/data/drupal-modules.lst
 usr/share/nmap/nselib/data/favicon-db
diff --git a/lfs/nmap b/lfs/nmap
index a7870da..5907f5c 100644
--- a/lfs/nmap
+++ b/lfs/nmap
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2015 IPFire Team  <info(a)ipfire.org>                           #
+# Copyright (C) 2016 IPFire Team  <info(a)ipfire.org>                           #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -54,7 +54,7 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects))
 
 md5 : $(subst %,%_MD5,$(objects))
 
-dist: 
+dist:
 	@$(PAK)
 
 ###############################################################################
@@ -77,7 +77,7 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && ./configure --prefix=/usr --without-nmapfe --without-zenmap
+	cd $(DIR_APP) && ./configure --prefix=/usr --without-nmapfe --without-zenmap --without-ncat
 	cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)
-- 
2.1.4


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

* [PATCH v2 3/3] New package ncat.
  2016-04-08 13:18 Libvirt and Ncat/Netcat [2] Jonatan Schlag
  2016-04-08 13:18 ` [PATCH v2 1/3] Remove the nc symlink from netcat package and rename to gnu-netcat (gnu-netcat is no longer our standard netcat) Jonatan Schlag
  2016-04-08 13:18 ` [PATCH v2 2/3] Build nmap without ncat Jonatan Schlag
@ 2016-04-08 13:18 ` Jonatan Schlag
  2016-04-08 15:17 ` Libvirt and Ncat/Netcat [2] Michael Tremer
  3 siblings, 0 replies; 5+ messages in thread
From: Jonatan Schlag @ 2016-04-08 13:18 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 4635 bytes --]

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 config/rootfiles/packages/ncat |  5 +++
 lfs/ncat                       | 86 ++++++++++++++++++++++++++++++++++++++++++
 make.sh                        |  1 +
 3 files changed, 92 insertions(+)
 create mode 100644 config/rootfiles/packages/ncat
 create mode 100644 lfs/ncat

diff --git a/config/rootfiles/packages/ncat b/config/rootfiles/packages/ncat
new file mode 100644
index 0000000..f1cf714
--- /dev/null
+++ b/config/rootfiles/packages/ncat
@@ -0,0 +1,5 @@
+usr/bin/nc
+usr/bin/ncat
+#usr/share/man/man1/ncat.1
+#usr/share/ncat
+#usr/share/ncat/ca-bundle.crt
diff --git a/lfs/ncat b/lfs/ncat
new file mode 100644
index 0000000..6f1b703
--- /dev/null
+++ b/lfs/ncat
@@ -0,0 +1,86 @@
+###############################################################################
+#                                                                             #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2016 IPFire Team  <info(a)ipfire.org>                           #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# This program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+VER        = 7.12
+
+THISAPP    = ncat-$(VER)
+DL_FILE    = nmap-$(VER).tar.bz2
+DL_FROM    = $(URL_IPFIRE)
+DIR_APP    = $(DIR_SRC)/nmap-$(VER)
+TARGET     = $(DIR_INFO)/$(THISAPP)
+PROG       = ncat
+PAK_VER    = 1
+
+DEPS       = ""
+
+###############################################################################
+# Top-level Rules
+###############################################################################
+
+objects = $(DL_FILE)
+
+$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
+
+$(DL_FILE)_MD5 = 0764f4dabe7cccda3c49fc3990b62a8a
+
+install : $(TARGET)
+
+check : $(patsubst %,$(DIR_CHK)/%,$(objects))
+
+download :$(patsubst %,$(DIR_DL)/%,$(objects))
+
+md5 : $(subst %,%_MD5,$(objects))
+
+dist:
+	@$(PAK)
+
+###############################################################################
+# Downloading, checking, md5sum
+###############################################################################
+
+$(patsubst %,$(DIR_CHK)/%,$(objects)) :
+	@$(CHECK)
+
+$(patsubst %,$(DIR_DL)/%,$(objects)) :
+	@$(LOAD)
+
+$(subst %,%_MD5,$(objects)) :
+	@$(MD5)
+
+###############################################################################
+# Installation Details
+###############################################################################
+
+$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
+	@$(PREBUILD)
+	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
+	cd $(DIR_APP) && mkdir -p build
+	cd $(DIR_APP) && ./configure --prefix=/usr --without-nmapfe --without-zenmap --without-ndiff --without-nping -without-liblua --without-nmap-update
+	cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
+	cd $(DIR_APP)/ncat && make install
+	ln -f -s /usr/bin/ncat /usr/bin/nc
+	@rm -rf $(DIR_APP)
+	@$(POSTBUILD)
diff --git a/make.sh b/make.sh
index 2130e37..e8def81 100755
--- a/make.sh
+++ b/make.sh
@@ -681,6 +681,7 @@ buildipfire() {
   ipfiremake portmap
   ipfiremake nfs
   ipfiremake gnu-netcat
+  ipfiremake ncat
   ipfiremake nmap
   ipfiremake ncftp
   ipfiremake etherwake
-- 
2.1.4


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

* Re: Libvirt and Ncat/Netcat [2]
  2016-04-08 13:18 Libvirt and Ncat/Netcat [2] Jonatan Schlag
                   ` (2 preceding siblings ...)
  2016-04-08 13:18 ` [PATCH v2 3/3] New package ncat Jonatan Schlag
@ 2016-04-08 15:17 ` Michael Tremer
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Tremer @ 2016-04-08 15:17 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 663 bytes --]

Okay, I guess this looks good. Merged.

On Fri, 2016-04-08 at 15:18 +0200, Jonatan Schlag wrote:
>  
> Hi, this is the second patch set for libvirt and ncat/netcat. 
> The only differences between this patches and the previous one are 
> 1. Ncat is now built from nmap-7.12.tar.bz2. Everything is fine now with the
> log files
> 2. The netcat package is renamed to gnu-netcat. I think this is clearer
> because in the most distribution the netcat package ship ncat or the BSD
> netcat. The gnu-netcat is shipped in the gnu-netcat package.  I will write a
> wiki article about this and which "Netcat" user should install.
> 
> Regards Jonatan 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2016-04-08 15:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-08 13:18 Libvirt and Ncat/Netcat [2] Jonatan Schlag
2016-04-08 13:18 ` [PATCH v2 1/3] Remove the nc symlink from netcat package and rename to gnu-netcat (gnu-netcat is no longer our standard netcat) Jonatan Schlag
2016-04-08 13:18 ` [PATCH v2 2/3] Build nmap without ncat Jonatan Schlag
2016-04-08 13:18 ` [PATCH v2 3/3] New package ncat Jonatan Schlag
2016-04-08 15:17 ` Libvirt and Ncat/Netcat [2] Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox