SHA256
1
0
forked from pool/tcsh
OBS User unknown
2007-07-16 15:55:24 +00:00
committed by Git OBS Bridge
parent ccdc89746f
commit 839528e602
15 changed files with 2502 additions and 2205 deletions

View File

@@ -1,5 +1,5 @@
#
# spec file for package tcsh (Version 6.14.00)
# spec file for package tcsh (Version 6.15.00)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -13,21 +13,21 @@
Name: tcsh
BuildRequires: ncurses-devel
URL: http://www.tcsh.org/
License: BSD License and BSD-like
License: BSD 3-Clause
Group: System/Shells
Requires: gawk textutils
Autoreqprov: on
Version: 6.14.00
Release: 54
Version: 6.15.00
Release: 1
Summary: The C SHell
Source: ftp.astron.com:/pub/tcsh/tcsh-6.14.00.tar.bz2
Source: ftp.astron.com:/pub/tcsh/tcsh-6.15.00.tar.bz2
Source1: nls-iconv
Patch: tcsh-6.14.00.dif
Patch1: tcsh-6.14.00-spelling.dif
Patch2: tcsh-6.14.00-bsdsignals.dif
Patch3: tcsh-6.14.00-utf8.dif
Patch4: tcsh-6.14.00-pipe.dif
Patch5: tcsh-6.14.00-tabexpand.dif
Source2: bindkey.tcsh
Source3: complete.tcsh
Patch: tcsh-6.15.00.dif
Patch1: tcsh-6.15.00-spelling.dif
Patch2: tcsh-6.15.00-utf8.dif
Patch3: tcsh-6.15.00-pipe.dif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@@ -47,10 +47,8 @@ Authors:
%prep
%setup
%patch1 -p0 -b .spell
%patch2 -p0 -b .bsdsig
%patch3 -p0 -b .utf8
%patch4 -p0 -b .pipe
%patch5 -p0 -b .tabexpand
%patch2 -p0 -b .utf8
%patch3 -p0 -b .pipe
%patch
sh $RPM_SOURCE_DIR/nls-iconv
@@ -68,10 +66,12 @@ Authors:
--bindir=/bin \
--sysconfdir=/etc \
--localstatedir=/var \
--sharedstatedir=/usr/share \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--libexecdir=/usr/%{_lib}/tcsh
--sharedstatedir=%_datadir \
--infodir=%_infodir \
--mandir=%_mandir \
--libexecdir=/usr/%{_lib}/tcsh \
--disable-rpath \
--with-gnu-ld
make
make catalogs
@@ -99,14 +99,14 @@ Authors:
install -m 0444 FAQ $RPM_BUILD_ROOT%{_docdir}/tcsh/FAQ.tcsh
mkdir -p $RPM_BUILD_ROOT/etc/profile.d/
mkdir -p $RPM_BUILD_ROOT/usr/bin
install -m 644 SuSE/bindkey.tcsh $RPM_BUILD_ROOT/etc/profile.d/
install -m 644 SuSE/complete.tcsh $RPM_BUILD_ROOT/etc/profile.d/
install -m 644 $RPM_SOURCE_DIR/bindkey.tcsh $RPM_BUILD_ROOT/etc/profile.d/
install -m 644 $RPM_SOURCE_DIR/complete.tcsh $RPM_BUILD_ROOT/etc/profile.d/
rm -f $RPM_BUILD_ROOT/bin/csh
rm -f $RPM_BUILD_ROOT/usr/bin/csh
rm -f $RPM_BUILD_ROOT/usr/bin/tcsh
rm -f $RPM_BUILD_ROOT/usr/share/man/man1/csh.*
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/csh.*
ln -sf tcsh $RPM_BUILD_ROOT/bin/csh
ln -sf tcsh.1.gz $RPM_BUILD_ROOT/usr/share/man/man1/csh.1.gz
ln -sf tcsh.1.gz $RPM_BUILD_ROOT%{_mandir}/man1/csh.1.gz
ln -sf ../../bin/tcsh $RPM_BUILD_ROOT/usr/bin/csh
ln -sf ../../bin/tcsh $RPM_BUILD_ROOT/usr/bin/tcsh
@@ -123,11 +123,20 @@ Authors:
/usr/bin/csh
/usr/bin/tcsh
%doc %{_docdir}/tcsh/FAQ.tcsh
%doc /usr/share/man/man1/csh.1.gz
%doc /usr/share/man/man1/tcsh.1.gz
/usr/share/locale/*/LC_MESSAGES/tcsh
%doc %{_mandir}/man1/csh.1.gz
%doc %{_mandir}/man1/tcsh.1.gz
%{_datadir}/locale/*/LC_MESSAGES/tcsh
%changelog
* Mon Jul 16 2007 - werner@suse.de
- Update to tcsh version V6.15.00
* fix extension eating windows code
* fix loop in %%R history expansion
* sched +X source file disables interrupts (Mike Sullivan)
* One off copying macro buffers
* Avoid infinite loops in :ga modifiers when the LHS is a
substring of the RHS.
- Update bindkey.tcsh to fit current xterm and others (bug #262330)
* Thu Mar 29 2007 - rguenther@suse.de
- Add ncurses-devel BuildRequires.
* Mon Feb 26 2007 - werner@suse.de