This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via ca4c354e085083dacf66071b23e507ea2ebb1b81 (commit) via d192815e839c42566c669999900a0dd62824eb8e (commit) via 1c0cfaa5949e4303e8e4e2f041af86a812f3fe6c (commit) via f0e308ab2ff92858452d7c3ac3ad114b4ea862f4 (commit) via 61fcd32f152f36edec042dd8e35ae2ab3f2acc2f (commit) from 0eccedd1c8340e186a8329f66a235aea6c92b1af (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit ca4c354e085083dacf66071b23e507ea2ebb1b81 Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Feb 26 16:28:16 2018 +0000
Bump release of all packages linked against OpenSSL
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit d192815e839c42566c669999900a0dd62824eb8e Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Feb 26 16:22:32 2018 +0000
core120: Ship everything that is linked against OpenSSL
This will make sure that everything is using the new version of the library.
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 1c0cfaa5949e4303e8e4e2f041af86a812f3fe6c Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Feb 26 15:37:49 2018 +0000
Disable Path MTU discovery
This seems to be a failed concept and causes issues with transferring large packets through an IPsec tunnel connection.
This configures the kernel to still respond to PMTU ICMP discovery messages, but will not try this on its own.
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit f0e308ab2ff92858452d7c3ac3ad114b4ea862f4 Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Feb 26 15:34:10 2018 +0000
core120: Fix typo in initscript name
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 61fcd32f152f36edec042dd8e35ae2ab3f2acc2f Author: Michael Tremer michael.tremer@ipfire.org Date: Mon Feb 26 13:06:34 2018 +0000
Rootfile update
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: config/etc/sysctl.conf | 3 + config/rootfiles/common/armv5tel/gcc | 1 + config/rootfiles/common/armv5tel/python-m2crypto | 99 +++++++++++++++++++++- .../{oldcore/114 => core/120}/filelists/apache2 | 0 .../{oldcore/114 => core/120}/filelists/apr | 0 .../{oldcore/114 => core/120}/filelists/aprutil | 0 .../{oldcore/100 => core/120}/filelists/bind | 0 .../{oldcore/103 => core/120}/filelists/curl | 0 .../{oldcore/101 => core/120}/filelists/dma | 0 config/rootfiles/core/120/filelists/files | 5 +- .../{oldcore/111 => core/120}/filelists/libevent2 | 0 .../{oldcore/100 => core/120}/filelists/ntp | 0 .../{oldcore/104 => core/120}/filelists/snort | 0 .../{oldcore/106 => core/120}/filelists/strongswan | 0 .../{oldcore/106 => core/120}/filelists/unbound | 0 .../103 => core/120}/filelists/wpa_supplicant | 0 lfs/asterisk | 2 +- lfs/bacula | 2 +- lfs/clamav | 2 +- lfs/cyrus-imapd | 2 +- lfs/elinks | 2 +- lfs/fetchmail | 2 +- lfs/freeradius | 2 +- lfs/git | 2 +- lfs/haproxy | 2 +- lfs/hostapd | 2 +- lfs/icecast | 2 +- lfs/keepalived | 2 +- lfs/libvirt | 2 +- lfs/miniupnpd | 2 +- lfs/monit | 2 +- lfs/nagios-plugins | 2 +- lfs/nagios_nrpe | 3 +- lfs/ncat | 2 +- lfs/netsnmpd | 3 +- lfs/nfs | 2 +- lfs/nginx | 2 +- lfs/nmap | 2 +- lfs/nut | 2 +- lfs/postfix | 2 +- lfs/python3 | 2 +- lfs/spice | 2 +- lfs/squidclamav | 2 +- lfs/stunnel | 2 +- lfs/tcpdump | 2 +- lfs/tor | 2 +- lfs/transmission | 2 +- 47 files changed, 138 insertions(+), 34 deletions(-) copy config/rootfiles/{oldcore/114 => core/120}/filelists/apache2 (100%) copy config/rootfiles/{oldcore/114 => core/120}/filelists/apr (100%) copy config/rootfiles/{oldcore/114 => core/120}/filelists/aprutil (100%) copy config/rootfiles/{oldcore/100 => core/120}/filelists/bind (100%) copy config/rootfiles/{oldcore/103 => core/120}/filelists/curl (100%) copy config/rootfiles/{oldcore/101 => core/120}/filelists/dma (100%) copy config/rootfiles/{oldcore/111 => core/120}/filelists/libevent2 (100%) copy config/rootfiles/{oldcore/100 => core/120}/filelists/ntp (100%) copy config/rootfiles/{oldcore/104 => core/120}/filelists/snort (100%) copy config/rootfiles/{oldcore/106 => core/120}/filelists/strongswan (100%) copy config/rootfiles/{oldcore/106 => core/120}/filelists/unbound (100%) copy config/rootfiles/{oldcore/103 => core/120}/filelists/wpa_supplicant (100%)
Difference in files: diff --git a/config/etc/sysctl.conf b/config/etc/sysctl.conf index ad562404f..f3897c3c7 100644 --- a/config/etc/sysctl.conf +++ b/config/etc/sysctl.conf @@ -1,6 +1,9 @@ net.ipv4.ip_forward = 1 net.ipv4.ip_dynaddr = 1
+# Disable Path MTU Discovery +net.ipv4.ip_no_pmtu_disc = 1 + net.ipv4.icmp_echo_ignore_broadcasts = 1 net.ipv4.icmp_ignore_bogus_error_responses = 1 net.ipv4.icmp_ratelimit = 1000 diff --git a/config/rootfiles/common/armv5tel/gcc b/config/rootfiles/common/armv5tel/gcc index 87fb8b73a..2c53236bb 100644 --- a/config/rootfiles/common/armv5tel/gcc +++ b/config/rootfiles/common/armv5tel/gcc @@ -1353,6 +1353,7 @@ usr/lib/libubsan.so.0.0.0 #usr/share/info/gccint.info #usr/share/info/libgomp.info #usr/share/info/libitm.info +#usr/share/info/libquadmath.info #usr/share/man/man1/cpp.1 #usr/share/man/man1/g++.1 #usr/share/man/man1/gcc.1 diff --git a/config/rootfiles/common/armv5tel/python-m2crypto b/config/rootfiles/common/armv5tel/python-m2crypto index 6f51e3ddf..c5477cda3 100644 --- a/config/rootfiles/common/armv5tel/python-m2crypto +++ b/config/rootfiles/common/armv5tel/python-m2crypto @@ -1 +1,98 @@ -#usr/lib/python2.7/site-packages/M2Crypto-0.21.1-py2.7-linux-armv5tel.egg +#usr/lib/python2.7/site-packages/M2Crypto +#usr/lib/python2.7/site-packages/M2Crypto-0.27.0-py2.7.egg-info +#usr/lib/python2.7/site-packages/M2Crypto-0.27.0-py2.7.egg-info/PKG-INFO +#usr/lib/python2.7/site-packages/M2Crypto-0.27.0-py2.7.egg-info/SOURCES.txt +#usr/lib/python2.7/site-packages/M2Crypto-0.27.0-py2.7.egg-info/dependency_links.txt +#usr/lib/python2.7/site-packages/M2Crypto-0.27.0-py2.7.egg-info/requires.txt +#usr/lib/python2.7/site-packages/M2Crypto-0.27.0-py2.7.egg-info/top_level.txt +#usr/lib/python2.7/site-packages/M2Crypto/ASN1.py +#usr/lib/python2.7/site-packages/M2Crypto/ASN1.pyc +#usr/lib/python2.7/site-packages/M2Crypto/AuthCookie.py +#usr/lib/python2.7/site-packages/M2Crypto/AuthCookie.pyc +#usr/lib/python2.7/site-packages/M2Crypto/BIO.py +#usr/lib/python2.7/site-packages/M2Crypto/BIO.pyc +#usr/lib/python2.7/site-packages/M2Crypto/BN.py +#usr/lib/python2.7/site-packages/M2Crypto/BN.pyc +#usr/lib/python2.7/site-packages/M2Crypto/DH.py +#usr/lib/python2.7/site-packages/M2Crypto/DH.pyc +#usr/lib/python2.7/site-packages/M2Crypto/DSA.py +#usr/lib/python2.7/site-packages/M2Crypto/DSA.pyc +#usr/lib/python2.7/site-packages/M2Crypto/EC.py +#usr/lib/python2.7/site-packages/M2Crypto/EC.pyc +#usr/lib/python2.7/site-packages/M2Crypto/EVP.py +#usr/lib/python2.7/site-packages/M2Crypto/EVP.pyc +#usr/lib/python2.7/site-packages/M2Crypto/Engine.py +#usr/lib/python2.7/site-packages/M2Crypto/Engine.pyc +#usr/lib/python2.7/site-packages/M2Crypto/Err.py +#usr/lib/python2.7/site-packages/M2Crypto/Err.pyc +#usr/lib/python2.7/site-packages/M2Crypto/PGP +#usr/lib/python2.7/site-packages/M2Crypto/PGP/PublicKey.py +#usr/lib/python2.7/site-packages/M2Crypto/PGP/PublicKey.pyc +#usr/lib/python2.7/site-packages/M2Crypto/PGP/PublicKeyRing.py +#usr/lib/python2.7/site-packages/M2Crypto/PGP/PublicKeyRing.pyc +#usr/lib/python2.7/site-packages/M2Crypto/PGP/RSA.py +#usr/lib/python2.7/site-packages/M2Crypto/PGP/RSA.pyc +#usr/lib/python2.7/site-packages/M2Crypto/PGP/__init__.py +#usr/lib/python2.7/site-packages/M2Crypto/PGP/__init__.pyc +#usr/lib/python2.7/site-packages/M2Crypto/PGP/constants.py +#usr/lib/python2.7/site-packages/M2Crypto/PGP/constants.pyc +#usr/lib/python2.7/site-packages/M2Crypto/PGP/packet.py +#usr/lib/python2.7/site-packages/M2Crypto/PGP/packet.pyc +#usr/lib/python2.7/site-packages/M2Crypto/RC4.py +#usr/lib/python2.7/site-packages/M2Crypto/RC4.pyc +#usr/lib/python2.7/site-packages/M2Crypto/RSA.py +#usr/lib/python2.7/site-packages/M2Crypto/RSA.pyc +#usr/lib/python2.7/site-packages/M2Crypto/Rand.py +#usr/lib/python2.7/site-packages/M2Crypto/Rand.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SMIME.py +#usr/lib/python2.7/site-packages/M2Crypto/SMIME.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Checker.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Checker.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Cipher.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Cipher.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Connection.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Connection.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Context.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Context.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/SSLServer.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/SSLServer.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Session.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/Session.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/TwistedProtocolWrapper.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/TwistedProtocolWrapper.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/__init__.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/__init__.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/cb.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/cb.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/ssl_dispatcher.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/ssl_dispatcher.pyc +#usr/lib/python2.7/site-packages/M2Crypto/SSL/timeout.py +#usr/lib/python2.7/site-packages/M2Crypto/SSL/timeout.pyc +#usr/lib/python2.7/site-packages/M2Crypto/X509.py +#usr/lib/python2.7/site-packages/M2Crypto/X509.pyc +#usr/lib/python2.7/site-packages/M2Crypto/__init__.py +#usr/lib/python2.7/site-packages/M2Crypto/__init__.pyc +#usr/lib/python2.7/site-packages/M2Crypto/_m2crypto.so +#usr/lib/python2.7/site-packages/M2Crypto/callback.py +#usr/lib/python2.7/site-packages/M2Crypto/callback.pyc +#usr/lib/python2.7/site-packages/M2Crypto/ftpslib.py +#usr/lib/python2.7/site-packages/M2Crypto/ftpslib.pyc +#usr/lib/python2.7/site-packages/M2Crypto/httpslib.py +#usr/lib/python2.7/site-packages/M2Crypto/httpslib.pyc +#usr/lib/python2.7/site-packages/M2Crypto/m2.py +#usr/lib/python2.7/site-packages/M2Crypto/m2.pyc +#usr/lib/python2.7/site-packages/M2Crypto/m2crypto.py +#usr/lib/python2.7/site-packages/M2Crypto/m2crypto.pyc +#usr/lib/python2.7/site-packages/M2Crypto/m2urllib.py +#usr/lib/python2.7/site-packages/M2Crypto/m2urllib.pyc +#usr/lib/python2.7/site-packages/M2Crypto/m2urllib2.py +#usr/lib/python2.7/site-packages/M2Crypto/m2urllib2.pyc +#usr/lib/python2.7/site-packages/M2Crypto/m2xmlrpclib.py +#usr/lib/python2.7/site-packages/M2Crypto/m2xmlrpclib.pyc +#usr/lib/python2.7/site-packages/M2Crypto/six.py +#usr/lib/python2.7/site-packages/M2Crypto/six.pyc +#usr/lib/python2.7/site-packages/M2Crypto/threading.py +#usr/lib/python2.7/site-packages/M2Crypto/threading.pyc +#usr/lib/python2.7/site-packages/M2Crypto/util.py +#usr/lib/python2.7/site-packages/M2Crypto/util.pyc diff --git a/config/rootfiles/core/120/filelists/apache2 b/config/rootfiles/core/120/filelists/apache2 new file mode 120000 index 000000000..eef95efa7 --- /dev/null +++ b/config/rootfiles/core/120/filelists/apache2 @@ -0,0 +1 @@ +../../../common/apache2 \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/apr b/config/rootfiles/core/120/filelists/apr new file mode 120000 index 000000000..87dd1974f --- /dev/null +++ b/config/rootfiles/core/120/filelists/apr @@ -0,0 +1 @@ +../../../common/apr \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/aprutil b/config/rootfiles/core/120/filelists/aprutil new file mode 120000 index 000000000..999f9f84b --- /dev/null +++ b/config/rootfiles/core/120/filelists/aprutil @@ -0,0 +1 @@ +../../../common/aprutil \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/bind b/config/rootfiles/core/120/filelists/bind new file mode 120000 index 000000000..48a0ebaef --- /dev/null +++ b/config/rootfiles/core/120/filelists/bind @@ -0,0 +1 @@ +../../../common/bind \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/curl b/config/rootfiles/core/120/filelists/curl new file mode 120000 index 000000000..4b84bef53 --- /dev/null +++ b/config/rootfiles/core/120/filelists/curl @@ -0,0 +1 @@ +../../../common/curl \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/dma b/config/rootfiles/core/120/filelists/dma new file mode 120000 index 000000000..60f4682da --- /dev/null +++ b/config/rootfiles/core/120/filelists/dma @@ -0,0 +1 @@ +../../../common/dma \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/files b/config/rootfiles/core/120/filelists/files index 57475b167..180cf0b4d 100644 --- a/config/rootfiles/core/120/filelists/files +++ b/config/rootfiles/core/120/filelists/files @@ -1,7 +1,10 @@ etc/system-release etc/issue +etc/sysctl.conf etc/fcron.daily/openvpn-crl-updater -etc/rc.d/init.d/dhcpd +etc/rc.d/init.d/dhcp srv/web/ipfire/cgi-bin/ovpnmain.cgi +usr/lib/python2.7/lib-dynload/_hashlib.so +usr/lib/python2.7/lib-dynload/_ssl.so var/ipfire/langs var/ipfire/ovpn/openssl/ovpn.cnf diff --git a/config/rootfiles/core/120/filelists/libevent2 b/config/rootfiles/core/120/filelists/libevent2 new file mode 120000 index 000000000..42edc99c3 --- /dev/null +++ b/config/rootfiles/core/120/filelists/libevent2 @@ -0,0 +1 @@ +../../../common/libevent2 \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/ntp b/config/rootfiles/core/120/filelists/ntp new file mode 120000 index 000000000..7542d86cb --- /dev/null +++ b/config/rootfiles/core/120/filelists/ntp @@ -0,0 +1 @@ +../../../common/ntp \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/snort b/config/rootfiles/core/120/filelists/snort new file mode 120000 index 000000000..9406ce01c --- /dev/null +++ b/config/rootfiles/core/120/filelists/snort @@ -0,0 +1 @@ +../../../common/snort \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/strongswan b/config/rootfiles/core/120/filelists/strongswan new file mode 120000 index 000000000..90c727e26 --- /dev/null +++ b/config/rootfiles/core/120/filelists/strongswan @@ -0,0 +1 @@ +../../../common/strongswan \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/unbound b/config/rootfiles/core/120/filelists/unbound new file mode 120000 index 000000000..66adf0924 --- /dev/null +++ b/config/rootfiles/core/120/filelists/unbound @@ -0,0 +1 @@ +../../../common/unbound \ No newline at end of file diff --git a/config/rootfiles/core/120/filelists/wpa_supplicant b/config/rootfiles/core/120/filelists/wpa_supplicant new file mode 120000 index 000000000..1d04c03c0 --- /dev/null +++ b/config/rootfiles/core/120/filelists/wpa_supplicant @@ -0,0 +1 @@ +../../../common/wpa_supplicant \ No newline at end of file diff --git a/lfs/asterisk b/lfs/asterisk index 8b0da1648..a2a43f863 100755 --- a/lfs/asterisk +++ b/lfs/asterisk @@ -28,7 +28,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = asterisk -PAK_VER = 22 +PAK_VER = 23
DEPS = "jansson libsrtp opus"
diff --git a/lfs/bacula b/lfs/bacula index 15597f303..552c108ac 100644 --- a/lfs/bacula +++ b/lfs/bacula @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = bacula -PAK_VER = 3 +PAK_VER = 4
DEPS = ""
diff --git a/lfs/clamav b/lfs/clamav index 89254a188..a4e460ffc 100644 --- a/lfs/clamav +++ b/lfs/clamav @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = clamav -PAK_VER = 35 +PAK_VER = 36
DEPS = ""
diff --git a/lfs/cyrus-imapd b/lfs/cyrus-imapd index 7dea649a3..2947e3c9a 100644 --- a/lfs/cyrus-imapd +++ b/lfs/cyrus-imapd @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = cyrus-imapd -PAK_VER = 6 +PAK_VER = 7
DEPS = ""
diff --git a/lfs/elinks b/lfs/elinks index 8d3926967..7ab726e92 100644 --- a/lfs/elinks +++ b/lfs/elinks @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = elinks -PAK_VER = 6 +PAK_VER = 7
DEPS = ""
diff --git a/lfs/fetchmail b/lfs/fetchmail index ab271b002..33a46b6d3 100644 --- a/lfs/fetchmail +++ b/lfs/fetchmail @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = fetchmail -PAK_VER = 7 +PAK_VER = 8
DEPS = ""
diff --git a/lfs/freeradius b/lfs/freeradius index 90928e91d..faf8f4877 100644 --- a/lfs/freeradius +++ b/lfs/freeradius @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = freeradius -PAK_VER = 2 +PAK_VER = 3
DEPS = "samba"
diff --git a/lfs/git b/lfs/git index 9ffd08950..fd76b1248 100644 --- a/lfs/git +++ b/lfs/git @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = git -PAK_VER = 14 +PAK_VER = 15
DEPS = "perl-Authen-SASL perl-MIME-Base64 perl-Net-SMTP-SSL"
diff --git a/lfs/haproxy b/lfs/haproxy index 02e3b25f8..7fc639a41 100644 --- a/lfs/haproxy +++ b/lfs/haproxy @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = haproxy -PAK_VER = 3 +PAK_VER = 4
DEPS = ""
diff --git a/lfs/hostapd b/lfs/hostapd index 3561c786e..5b2f001d5 100644 --- a/lfs/hostapd +++ b/lfs/hostapd @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = hostapd -PAK_VER = 40 +PAK_VER = 41
DEPS = ""
diff --git a/lfs/icecast b/lfs/icecast index 91aa7c5c7..5250725b3 100644 --- a/lfs/icecast +++ b/lfs/icecast @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = icecast -PAK_VER = 2 +PAK_VER = 3
DEPS = "libshout lame sox libvorbis libogg"
diff --git a/lfs/keepalived b/lfs/keepalived index 257ceb2d9..020b9d784 100644 --- a/lfs/keepalived +++ b/lfs/keepalived @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = keepalived -PAK_VER = 2 +PAK_VER = 3
DEPS = ""
diff --git a/lfs/libvirt b/lfs/libvirt index 7eed40616..2d8eef061 100644 --- a/lfs/libvirt +++ b/lfs/libvirt @@ -33,7 +33,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) SUP_ARCH = i586 x86_64 PROG = libvirt -PAK_VER = 14 +PAK_VER = 15
DEPS = "libpciaccess libyajl ncat qemu"
diff --git a/lfs/miniupnpd b/lfs/miniupnpd index 0e2c890ba..ee9d8efa9 100644 --- a/lfs/miniupnpd +++ b/lfs/miniupnpd @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = miniupnpd -PAK_VER = 2 +PAK_VER = 3
############################################################################### # Top-level Rules diff --git a/lfs/monit b/lfs/monit index 77a093140..96fe6b1a6 100644 --- a/lfs/monit +++ b/lfs/monit @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = monit -PAK_VER = 9 +PAK_VER = 10
DEPS = ""
diff --git a/lfs/nagios-plugins b/lfs/nagios-plugins index 27a716262..2f33a09f2 100644 --- a/lfs/nagios-plugins +++ b/lfs/nagios-plugins @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = nagios-plugins -PAK_VER = 2 +PAK_VER = 3
DEPS = ""
diff --git a/lfs/nagios_nrpe b/lfs/nagios_nrpe index 6d16661bd..369f9335d 100644 --- a/lfs/nagios_nrpe +++ b/lfs/nagios_nrpe @@ -31,9 +31,8 @@ DL_FILE = $(THISAPP).tar.gz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) - PROG = nagios_nrpe -PAK_VER = 3 +PAK_VER = 4
DEPS = "nagios-plugins"
diff --git a/lfs/ncat b/lfs/ncat index 92320e967..a51698872 100644 --- a/lfs/ncat +++ b/lfs/ncat @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/nmap-$(VER) TARGET = $(DIR_INFO)/$(THISAPP) PROG = ncat -PAK_VER = 2 +PAK_VER = 3
DEPS = ""
diff --git a/lfs/netsnmpd b/lfs/netsnmpd index 6995ee683..117097e15 100644 --- a/lfs/netsnmpd +++ b/lfs/netsnmpd @@ -32,7 +32,8 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = netsnmpd -PAK_VER = 6 +PAK_VER = 7 + DEPS = ""
############################################################################### diff --git a/lfs/nfs b/lfs/nfs index 242b3caaf..b33c3885e 100644 --- a/lfs/nfs +++ b/lfs/nfs @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = nfs -PAK_VER = 9 +PAK_VER = 10
DEPS = "rpcbind"
diff --git a/lfs/nginx b/lfs/nginx index 14b5ca4b3..0fa6250f3 100644 --- a/lfs/nginx +++ b/lfs/nginx @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = nginx -PAK_VER = 6 +PAK_VER = 7
############################################################################### # Top-level Rules diff --git a/lfs/nmap b/lfs/nmap index 92ac90316..1daeb89b0 100644 --- a/lfs/nmap +++ b/lfs/nmap @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = nmap -PAK_VER = 8 +PAK_VER = 9
DEPS = ""
diff --git a/lfs/nut b/lfs/nut index 41aae4124..33a4bb1bc 100644 --- a/lfs/nut +++ b/lfs/nut @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = nut -PAK_VER = 6 +PAK_VER = 7
DEPS = ""
diff --git a/lfs/postfix b/lfs/postfix index bd8b75ccc..42e626c8f 100644 --- a/lfs/postfix +++ b/lfs/postfix @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = postfix -PAK_VER = 13 +PAK_VER = 14
DEPS = ""
diff --git a/lfs/python3 b/lfs/python3 index e753d96ab..debb428a5 100644 --- a/lfs/python3 +++ b/lfs/python3 @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = python3 -PAK_VER = 2 +PAK_VER = 3
DEPS = ""
diff --git a/lfs/spice b/lfs/spice index 434496849..74706240f 100644 --- a/lfs/spice +++ b/lfs/spice @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = spice -PAK_VER = 3 +PAK_VER = 4
DEPS = "opus"
diff --git a/lfs/squidclamav b/lfs/squidclamav index 4a7918ce0..efecba7de 100644 --- a/lfs/squidclamav +++ b/lfs/squidclamav @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = squidclamav -PAK_VER = 20 +PAK_VER = 21
DEPS = "clamav"
diff --git a/lfs/stunnel b/lfs/stunnel index d78d8d035..342b0370c 100644 --- a/lfs/stunnel +++ b/lfs/stunnel @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = stunnel -PAK_VER = 3 +PAK_VER = 4
DEPS = ""
diff --git a/lfs/tcpdump b/lfs/tcpdump index acf752ce2..7a055ddac 100644 --- a/lfs/tcpdump +++ b/lfs/tcpdump @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = tcpdump -PAK_VER = 9 +PAK_VER = 10
DEPS = ""
diff --git a/lfs/tor b/lfs/tor index 686129451..a63a5fb49 100644 --- a/lfs/tor +++ b/lfs/tor @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = tor -PAK_VER = 26 +PAK_VER = 27
DEPS = ""
diff --git a/lfs/transmission b/lfs/transmission index 10ac44daa..0377b4b56 100644 --- a/lfs/transmission +++ b/lfs/transmission @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = transmission -PAK_VER = 14 +PAK_VER = 15
DEPS = ""
hooks/post-receive -- IPFire 2.x development tree