public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
* [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 9a39b090cc292ac815c912c198935a20e742959f
@ 2022-04-29 17:58 Peter Müller
  0 siblings, 0 replies; only message in thread
From: Peter Müller @ 2022-04-29 17:58 UTC (permalink / raw)
  To: ipfire-scm

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

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  9a39b090cc292ac815c912c198935a20e742959f (commit)
      from  3d767c8aad82ac8a4d8b164569136a138e19d9cf (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 9a39b090cc292ac815c912c198935a20e742959f
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Thu Apr 28 13:52:30 2022 +0200

    ncurses-compat: remove orphaned lfs file
    
    - ncurses-compat was removed from make.sh in Core Update 119 together with the rootfile
    --ncurses-compat lfs file was left behind at that time
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>

-----------------------------------------------------------------------

Summary of changes:
 lfs/ncurses-compat | 130 -----------------------------------------------------
 1 file changed, 130 deletions(-)
 delete mode 100644 lfs/ncurses-compat

Difference in files:
diff --git a/lfs/ncurses-compat b/lfs/ncurses-compat
deleted file mode 100644
index fc63ab1b1..000000000
--- a/lfs/ncurses-compat
+++ /dev/null
@@ -1,130 +0,0 @@
-###############################################################################
-#                                                                             #
-# IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2018  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        = 5.9
-
-THISAPP    = ncurses-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
-DL_FROM    = $(URL_IPFIRE)
-DIR_APP    = $(DIR_SRC)/$(THISAPP)
-
-# Normal build or $(TOOLS_DIR) build.
-#
-ifeq "$(ROOT)" ""
-  TARGET = $(DIR_INFO)/$(THISAPP)
-  PREFIX = /usr
-else
-  TARGET = $(DIR_INFO)/$(THISAPP)-tools
-  PREFIX = $(TOOLS_DIR)
-endif
-
-EXTRA_CONFIG += \
-	--prefix=$(PREFIX) \
-	--with-shared \
-	--without-debug \
-	--without-ada \
-	--with-ospeed=unsigned \
-	--with-chtype=long \
-	--enable-hard-tabs \
-	--enable-xmc-glitch \
-	--enable-colorfgbg \
-	--enable-overwrite \
-	--with-termlib=tinfo \
-	--disable-nls
-
-export CPPFLAGS = -P
-
-###############################################################################
-# Top-level Rules
-###############################################################################
-
-objects = $(DL_FILE)
-
-$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-
-$(DL_FILE)_BLAKE2 = 91101b049a5eb6a2674fb86b5eba56515207f490dc7a6348f3194bbc50649717a26aff7a0df64f67ca318b5f244455cd57e760c65b9e551f6ec65b8c035a6ae1
-
-install : $(TARGET)
-
-check : $(patsubst %,$(DIR_CHK)/%,$(objects))
-
-download :$(patsubst %,$(DIR_DL)/%,$(objects))
-
-b2 : $(subst %,%_BLAKE2,$(objects))
-
-###############################################################################
-# Downloading, checking, b2sum
-###############################################################################
-
-$(patsubst %,$(DIR_CHK)/%,$(objects)) :
-	@$(CHECK)
-
-$(patsubst %,$(DIR_DL)/%,$(objects)) :
-	@$(LOAD)
-
-$(subst %,%_BLAKE2,$(objects)) :
-	@$(B2SUM)
-
-###############################################################################
-# Installation Details
-###############################################################################
-
-$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
-	@$(PREBUILD)
-	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-	$(UPDATE_AUTOMAKE)
-	cd $(DIR_APP) && mkdir -pv narrowc widec
-
-	# Build narrowc version.
-	cd $(DIR_APP)/narrowc && ln -svf ../configure .
-	cd $(DIR_APP)/narrowc && ./configure $(EXTRA_CONFIG) --with-ticlib
-	cd $(DIR_APP)/narrowc && make libs
-	cd $(DIR_APP)/narrowc && make -C progs
-
-	# Build widec version.
-	cd $(DIR_APP)/widec && ln -svf ../configure .
-	cd $(DIR_APP)/widec && ./configure $(EXTRA_CONFIG) \
-		--enable-widec --without-progs
-	cd $(DIR_APP)/widec && make libs
-
-	# Install everything.
-	cd $(DIR_APP) && make -C narrowc install.{libs,progs,data}
-	rm -vf $(PREFIX)/lib/libtinfo.*
-	cd $(DIR_APP) && make -C widec install.{libs,includes,man}
-
-	# don't require -ltinfo when linking with --no-add-needed
-	for l in $(PREFIX)/lib/libncurses{,w}.so; do \
-		soname=$$(basename $$(readlink $$l)); \
-		rm -f $$l; \
-		echo "INPUT($$soname -ltinfo)" > $$l; \
-	done
-
-	rm -vf $(PREFIX)/lib/libcurses{,w}.so
-	echo "INPUT(-lncurses)" > $(PREFIX)/lib/libcurses.so
-	echo "INPUT(-lncursesw)" > $(PREFIX)/lib/libcursesw.so
-	echo "INPUT(-ltinfo)" > $(PREFIX)/lib/libtermcap.so
-	@rm -rf $(DIR_APP)
-	@$(POSTBUILD)


hooks/post-receive
--
IPFire 2.x development tree

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-04-29 17:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-29 17:58 [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 9a39b090cc292ac815c912c198935a20e742959f Peter Müller

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