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 3.x development tree".
The branch, master has been updated via a0ee1f1cc017e581daa02bda1c7384bcab5c7347 (commit) via 24f0fa6996c3c6b6b36116a4d126793e51529ccc (commit) via 9fe13dd3fef42deb63b26ab692c2a874bcbc5851 (commit) from 103fc32c10e3b681364af6bd4c21e02e832b5ee0 (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 a0ee1f1cc017e581daa02bda1c7384bcab5c7347 Author: Michael Tremer michael.tremer@ipfire.org Date: Wed Aug 3 21:55:05 2011 +0200
chrony: Compile with libedit support.
commit 24f0fa6996c3c6b6b36116a4d126793e51529ccc Author: Michael Tremer michael.tremer@ipfire.org Date: Wed Aug 3 21:51:59 2011 +0200
basesystem: Do not require vim.
commit 9fe13dd3fef42deb63b26ab692c2a874bcbc5851 Author: Michael Tremer michael.tremer@ipfire.org Date: Wed Aug 3 21:51:41 2011 +0200
libedit: New package.
Simliar to readline.
-----------------------------------------------------------------------
Summary of changes: pkgs/basesystem/basesystem.nm | 4 +- pkgs/chrony/chrony.nm | 4 +- pkgs/{pth/pth.nm => libedit/libedit.nm} | 32 +++++++++++++++--------------- 3 files changed, 20 insertions(+), 20 deletions(-) copy pkgs/{pth/pth.nm => libedit/libedit.nm} (75%)
Difference in files: diff --git a/pkgs/basesystem/basesystem.nm b/pkgs/basesystem/basesystem.nm index ec7780a..d0f09c5 100644 --- a/pkgs/basesystem/basesystem.nm +++ b/pkgs/basesystem/basesystem.nm @@ -26,7 +26,7 @@ include $(PKGROOT)/Include
PKG_NAME = basesystem PKG_VER = 2.99 -PKG_REL = 2 +PKG_REL = 3 PKG_EPOCH = 1 PKG_ARCH = noarch
@@ -43,7 +43,7 @@ PKG_BUILD_DEPS = # There are no build dependencies PKG_DEPS += /bin/sh /sbin/init \ coreutils file filesystem findutils gawk grep iana-etc initscripts kbd \ less module-init-tools network pakfire passwd procps psmisc sed setup \ - shadow syslog system-release tar udev util-linux vim + shadow syslog system-release tar udev util-linux
define PKG_DESCRIPTION This package contains files that are needed to run basic \ diff --git a/pkgs/chrony/chrony.nm b/pkgs/chrony/chrony.nm index f5b152c..41fc286 100644 --- a/pkgs/chrony/chrony.nm +++ b/pkgs/chrony/chrony.nm @@ -26,7 +26,7 @@ include $(PKGROOT)/Include
PKG_NAME = chrony PKG_VER = 1.26 -PKG_REL = 5 +PKG_REL = 6
PKG_MAINTAINER = PKG_GROUPS = Base System/Daemons @@ -34,7 +34,7 @@ PKG_URL = http://chrony.tuxfamily.org PKG_LICENSE = GPLv2 PKG_SUMMARY = An NTP client/server.
-PKG_BUILD_DEPS+= bison libcap-devel readline-devel texinfo +PKG_BUILD_DEPS+= bison libcap-devel libedit-devel readline-devel texinfo
define PKG_DESCRIPTION A client/server for the Network Time Protocol, this program keeps your diff --git a/pkgs/libedit/libedit.nm b/pkgs/libedit/libedit.nm new file mode 100644 index 0000000..23f1647 --- /dev/null +++ b/pkgs/libedit/libedit.nm @@ -0,0 +1,58 @@ +############################################################################### +# # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007, 2008 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 $(PKGROOT)/Include + +PKG_NAME = libedit +PKG_VER = 3.0-$(PKG_DATE) +PKG_DATE = 20110802 +PKG_REL = 1 + +PKG_MAINTAINER = +PKG_GROUPS = System/Libraries +PKG_URL = http://www.thrysoee.dk/editline/ +PKG_LICENSE = BSD +PKG_SUMMARY = The NetBSD Editline library. + +PKG_BUILD_DEPS+= ncurses-devel + +define PKG_DESCRIPTION + Libedit is an autotool- and libtoolized port of the NetBSD Editline + library. It provides generic line editing, history, and tokenization + functions, similar to those found in GNU Readline. +endef + +THISAPP = $(PKG_NAME)-$(PKG_DATE)-3.0 +PKG_TARBALL = $(THISAPP).tar.gz + +PKG_PACKAGES += $(PKG_NAME)-devel +PKG_DEPS-libedit += ncurses-devel + +CONFIGURE_OPTIONS += \ + --disable-static \ + --enable-widec + +define STAGE_PREPARE_CMDS + cd $(DIR_APP) && sed -i "s/lcurses/ltinfo/" src/Makefile* +endef
hooks/post-receive -- IPFire 3.x development tree