d55439
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
d55439
%global vimdatadir %{_datadir}/vim/vimfiles
d55439
d55439
Name:           environment-modules
be77c4
Version:        5.0.1
a0a028
Release:        2%{?dist}
d55439
Summary:        Provides dynamic modification of a user's environment
d55439
d55439
License:        GPLv2+
d55439
URL:            http://modules.sourceforge.net/
891a03
Source0:        http://downloads.sourceforge.net/modules/modules-%{version}.tar.bz2
d55439
a0a028
Patch1:         environment-modules-profilesh-misdetects-login-shell.patch
a0a028
d55439
BuildRequires:  tcl
d55439
BuildRequires:  dejagnu
d55439
BuildRequires:  make
d55439
BuildRequires:  sed
d55439
BuildRequires:  less
d55439
BuildRequires:  hostname
d55439
BuildRequires:  procps-ng
d55439
# specific requirements to build extension library
d55439
BuildRequires:  gcc
d55439
BuildRequires:  tcl-devel
d55439
Requires:       tcl
d55439
Requires:       sed
d55439
Requires:       less
d55439
Requires:       vim-filesystem
d55439
Requires:       procps-ng
d55439
Requires:       man-db
d55439
Requires(post): coreutils
d55439
Requires(post): %{_sbindir}/update-alternatives
d55439
Requires(postun): %{_sbindir}/update-alternatives
d55439
Provides:       environment(modules)
d55439
Obsoletes:      environment-modules-compat <= 4.8.99
d55439
d55439
%description
d55439
The Environment Modules package provides for the dynamic modification of
d55439
a user's environment via modulefiles.
d55439
d55439
Each modulefile contains the information needed to configure the shell
d55439
for an application. Once the Modules package is initialized, the
d55439
environment can be modified on a per-module basis using the module
d55439
command which interprets modulefiles. Typically modulefiles instruct
d55439
the module command to alter or set shell environment variables such as
d55439
PATH, MANPATH, etc. modulefiles may be shared by many users on a system
d55439
and users may have their own collection to supplement or replace the
d55439
shared modulefiles.
d55439
d55439
Modules can be loaded and unloaded dynamically and atomically, in an
d55439
clean fashion. All popular shells are supported, including bash, ksh,
d55439
zsh, sh, csh, tcsh, as well as some scripting languages such as perl.
d55439
d55439
Modules are useful in managing different versions of applications.
d55439
Modules can also be bundled into metamodules that will load an entire
d55439
suite of different applications.
d55439
d55439
NOTE: You will need to get a new shell after installing this package to
d55439
have access to the module alias.
d55439
d55439
%prep
a0a028
%autosetup -p1 -n modules-%{version}
d55439
d55439
d55439
%build
d55439
%configure --prefix=%{_datadir}/Modules \
d55439
           --libdir=%{_libdir} \
d55439
           --etcdir=%{_sysconfdir}/%{name} \
d55439
           --bindir=%{_datadir}/Modules/bin \
d55439
           --libexecdir=%{_datadir}/Modules/libexec \
d55439
           --mandir=%{_mandir} \
d55439
           --vimdatadir=%{vimdatadir} \
d55439
           --enable-multilib-support \
d55439
           --disable-doc-install \
d55439
           --enable-modulespath \
d55439
           --with-python=/usr/bin/python3 \
d55439
           --with-modulepath=%{_datadir}/Modules/modulefiles:%{_sysconfdir}/modulefiles:%{_datadir}/modulefiles \
d55439
           --with-quarantine-vars='LD_LIBRARY_PATH LD_PRELOAD'
d55439
d55439
%make_build
d55439
d55439
d55439
%install
d55439
%make_install
d55439
d55439
mkdir -p %{buildroot}%{_sysconfdir}/modulefiles
d55439
mkdir -p %{buildroot}%{_datadir}/modulefiles
d55439
mkdir -p %{buildroot}%{_sysconfdir}/profile.d
d55439
mkdir -p %{buildroot}%{_bindir}
d55439
d55439
# setup for alternatives
d55439
touch %{buildroot}%{_sysconfdir}/profile.d/modules.{csh,sh}
d55439
touch %{buildroot}%{_bindir}/modulecmd
d55439
# remove modulecmd wrapper as it will be handled by alternatives
d55439
rm -f %{buildroot}%{_datadir}/Modules/bin/modulecmd
d55439
d55439
# major utilities go to regular bin dir
d55439
mv %{buildroot}%{_datadir}/Modules/bin/envml %{buildroot}%{_bindir}/
d55439
d55439
mv {doc/build/,}NEWS.txt
d55439
mv {doc/build/,}MIGRATING.txt
d55439
mv {doc/build/,}CONTRIBUTING.txt
891a03
mv {doc/build/,}INSTALL.txt
891a03
mv {doc/build/,}changes.txt
d55439
d55439
# install the rpm config file
d55439
install -Dpm 644 contrib/rpm/macros.%{name} %{buildroot}/%{macrosdir}/macros.%{name}
d55439
d55439
d55439
%check
d55439
make test QUICKTEST=1
d55439
d55439
d55439
%post
d55439
# Cleanup from pre-alternatives
d55439
[ ! -L %{_sysconfdir}/profile.d/modules.sh ] &&  rm -f %{_sysconfdir}/profile.d/modules.sh
d55439
[ ! -L %{_sysconfdir}/profile.d/modules.csh ] &&  rm -f %{_sysconfdir}/profile.d/modules.csh
d55439
[ ! -L %{_bindir}/modulecmd ] &&  rm -f %{_bindir}/modulecmd
d55439
d55439
# Migration from version 3.x to 4
d55439
if [ "$(readlink /etc/alternatives/modules.sh)" = '%{_datadir}/Modules/init/modules.sh' ]; then
d55439
  %{_sbindir}/update-alternatives --remove modules.sh %{_datadir}/Modules/init/modules.sh
d55439
fi
d55439
d55439
%{_sbindir}/update-alternatives \
d55439
  --install %{_sysconfdir}/profile.d/modules.sh modules.sh %{_datadir}/Modules/init/profile.sh 40 \
d55439
  --slave %{_sysconfdir}/profile.d/modules.csh modules.csh %{_datadir}/Modules/init/profile.csh \
d55439
  --slave %{_bindir}/modulecmd modulecmd %{_datadir}/Modules/libexec/modulecmd.tcl
d55439
d55439
%postun
d55439
if [ $1 -eq 0 ] ; then
d55439
  %{_sbindir}/update-alternatives --remove modules.sh %{_datadir}/Modules/init/profile.sh
d55439
fi
d55439
d55439
%files
d55439
%license COPYING.GPLv2
891a03
%doc ChangeLog README NEWS.txt MIGRATING.txt INSTALL.txt CONTRIBUTING.txt changes.txt
d55439
%{_sysconfdir}/modulefiles
d55439
%ghost %{_sysconfdir}/profile.d/modules.csh
d55439
%ghost %{_sysconfdir}/profile.d/modules.sh
d55439
%ghost %{_bindir}/modulecmd
d55439
%{_bindir}/envml
d55439
%{_libdir}/libtclenvmodules.so
d55439
%dir %{_datadir}/Modules
d55439
%{_datadir}/Modules/bin
d55439
%dir %{_datadir}/Modules/libexec
d55439
%{_datadir}/Modules/libexec/modulecmd.tcl
d55439
%dir %{_datadir}/Modules/init
d55439
%{_datadir}/Modules/init/*
d55439
%dir %{_sysconfdir}/%{name}
d55439
%config(noreplace) %{_sysconfdir}/%{name}/initrc
d55439
%config(noreplace) %{_sysconfdir}/%{name}/modulespath
d55439
%config(noreplace) %{_sysconfdir}/%{name}/siteconfig.tcl
d55439
%{_datadir}/Modules/modulefiles
d55439
%{_datadir}/modulefiles
d55439
%{_mandir}/man1/ml.1.gz
d55439
%{_mandir}/man1/module.1.gz
d55439
%{_mandir}/man4/modulefile.4.gz
d55439
%{macrosdir}/macros.%{name}
d55439
%{vimdatadir}/ftdetect/modulefile.vim
d55439
%{vimdatadir}/ftplugin/modulefile.vim
d55439
%{vimdatadir}/syntax/modulefile.vim
d55439
d55439
%changelog
a0a028
* Thu Sep 22 2022 Lukáš Zaoral <lzaoral@redhat.com> - 5.0.1-2
a0a028
- Fix profile.sh login shell misdetection (#2128975)
a0a028
be77c4
* Mon Dec  6 2021 Lukáš Zaoral <lzaoral@redhat.com> - 5.0.1-1
be77c4
- Update to 5.0.1 (#2004402)
be77c4
891a03
* Wed Sep 15 2021 Lukáš Zaoral <lzaoral@redhat.com> - 5.0.0-1
891a03
- Update to 5.0.0 (#2004402)
891a03
  + Based on spec by Xavier Delaruelle in Fedora Rawhide. Thanks a lot!
891a03
- Configuration guide example.txt is replaced by more up to date INSTALL.txt
891a03
  document
891a03
d55439
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 5.0.0-0.3.alpha
d55439
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
d55439
  Related: rhbz#1991688
d55439
891a03
* Tue Aug  3 2021 Lukáš Zaoral <lzaoral@redhat.com> - 5.0.0-0.2.alpha
d55439
- Rebuilt for added gating.yaml. Related rhbz#1989523
d55439
891a03
* Tue Aug  3 2021 Lukáš Zaoral <lzaoral@redhat.com> - 5.0.0-0.1.alpha
d55439
- Update to 5.0.0-alpha (#1989523)
d55439
  + Based on spec by Xavier Delaruelle in Fedora Rawhide. Thanks a lot!
d55439
- Remove createmodule.sh and createmodule.py utilities ('module sh-to-mod'
d55439
  should be used instead)
d55439
- Remove configure options that have been made default starting version 5.0
d55439
- Remove compat subpackage
d55439
- Run non-regression tests in quick mode
d55439
d55439
* Wed May 19 2021 Joe Orton <jorton@redhat.com> - 4.7.0-3
d55439
- add bcond for compat subpackage (#1940568)
d55439
d55439
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 4.7.0-2
d55439
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
d55439
d55439
* Fri Feb 19 2021 Xavier Delaruelle <xavier.delaruelle@cea.fr> - 4.7.0-1
d55439
- Update to 4.7.0 (#1930632)
d55439
- Align spec syntax with upstream spec file
d55439
- Add 'tcl' to the BuildRequires and remove 'man' from this list
d55439
- Fix names of 'procps-ng' and 'man-db' packages on Fedora
d55439
- Only install manpages through make install, other docs are handled by %%doc
d55439
- Remove alternatives mechanism for manpages
d55439
d55439
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.1-2
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
d55439
d55439
* Sun Nov 15 2020 Xavier Delaruelle <xavier.delaruelle@cea.fr> - 4.6.1-1
d55439
- Update to 4.6.1 (#1897820)
d55439
d55439
* Thu Sep 17 2020 Jan Synáček <jsynacek@redhat.com> - 4.6.0-1
d55439
- Update to 4.6.0 (#1879374)
d55439
d55439
* Wed Sep  2 2020 Jan Synáček <jsynacek@redhat.com> - 4.5.3-1
d55439
- Update to 4.5.3 (#1874145)
d55439
  + Big thanks to Xavier Delaruelle for a spec patch!
d55439
d55439
* Mon Aug  3 2020 Jan Synáček <jsynacek@redhat.com> - 4.5.2-1
d55439
- Update to 4.5.2 (#1842562)
d55439
d55439
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.0-2
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
d55439
d55439
* Wed Apr  8 2020 Jan Synáček <jsynacek@redhat.com> - 4.5.0-1
d55439
- Update to 4.5.0 (#1821883)
d55439
  + Big thanks to Xavier Delaruelle for a spec patch!
d55439
d55439
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.1-2
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
d55439
d55439
* Mon Jan  6 2020 Jan Synáček <jsynacek@redhat.com> - 4.4.1-1
d55439
- Update to 4.4.1 (#1787690)
d55439
d55439
* Wed Nov 27 2019 Jan Synáček <jsynacek@redhat.com> - 4.4.0-1
d55439
- Update to 4.4.0 (#1773590)
d55439
d55439
* Wed Oct  2 2019 Jan Synáček <jsynacek@redhat.com> - 4.3.1-1
d55439
- Update to 4.3.1 (#1754182)
d55439
d55439
* Mon Jul 29 2019 Jan Synáček <jsynacek@redhat.com> - 4.3.0-1
d55439
- Update to 4.3.0 (#1733752)
d55439
d55439
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.5-2
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
d55439
d55439
* Tue Jul  9 2019 Jan Synáček <jsynacek@redhat.com> - 4.2.5-1
d55439
- Update to 4.2.5 (#1727988)
d55439
d55439
* Mon Apr 29 2019 Jan Synáček <jsynacek@redhat.com> - 4.2.4-1
d55439
- Update to 4.2.4 (#1703415, #1687033)
d55439
d55439
* Mon Mar 25 2019 Jan Synáček <jsynacek@redhat.com> - 4.2.3-1
d55439
- Update to 4.2.3 (#1692024, #1687033)
d55439
d55439
* Mon Feb 18 2019 Jan Synáček <jsynacek@redhat.com> - 4.2.2-1
d55439
- Update to 4.2.2 (#1678041)
d55439
d55439
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
d55439
d55439
* Tue Nov 20 2018 Jan Synáček <jsynacek@redhat.com> - 4.2.1-1
d55439
- Update to 4.2.1 (#1648738)
d55439
d55439
* Thu Oct 18 2018 Jan Synáček <jsynacek@redhat.com> - 4.2.0-1
d55439
- Update to 4.2.0 (#1640450)
d55439
d55439
* Tue Aug 21 2018 Jan Synáček <jsynacek@redhat.com> - 4.1.4-2
d55439
- Don't install any files under /usr as config files (#1506663)
d55439
d55439
* Tue Aug 21 2018 Jan Synáček <jsynacek@redhat.com> - 4.1.4-1
d55439
- Update to 4.1.4 (#1619415)
d55439
d55439
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.3-2
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
d55439
d55439
* Mon Jun 18 2018 Jan Synáček <jsynacek@redhat.com> - 4.1.3-1
d55439
- Update to 4.1.3 (#1592179, #1575479, #1585305)
d55439
d55439
* Fri May  4 2018 Jan Synáček <jsynacek@redhat.com> - 4.1.2-2
d55439
- Fix postun script (#1565699)
d55439
d55439
* Tue Apr  3 2018 Jan Synáček <jsynacek@redhat.com> - 4.1.2-1
d55439
- Update to 4.1.2 (#1562535)
d55439
d55439
* Tue Mar  6 2018 Jan Synáček <jsynacek@redhat.com> - 4.1.1-2
d55439
- Fix error messages caused by unquoted parameters (#1549664)
d55439
d55439
* Tue Feb 20 2018 Jan Synáček <jsynacek@redhat.com> - 4.1.1-1
d55439
- Update to 4.1.1 (#1546450, #1139165, #1545369)
d55439
  + Big thanks to Xavier Delaruelle for a spec patch!
d55439
d55439
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-2
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d55439
d55439
* Mon Jan 22 2018 Jan Synáček <jsynacek@redhat.com> - 4.1.0-1
d55439
- Update to 4.1.0 (#1534746)
d55439
  + Big thanks to Xavier Delaruelle for a spec patch!
d55439
d55439
* Tue Nov 21 2017 Jan Synáček <jsynacek@redhat.com> - 4.0.0-2
d55439
- Fix 4.0.0 BuildRequires and Requires (#1503408)
d55439
  + Big thanks to Xavier Delaruelle for a spec patch!
d55439
- Fix installing manpages as alternatives
d55439
d55439
* Mon Nov 20 2017 Jan Synáček <jsynacek@redhat.com> - 4.0.0-1
d55439
- Update to 4.0.0 (#1503408)
d55439
d55439
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.10-23
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
d55439
d55439
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.10-22
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d55439
d55439
* Thu Mar 16 2017 Orion Poplawski <orion@cora.nwra.com> - 3.2.10-21
d55439
- Use alternatives for man pages as well
d55439
d55439
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.10-20
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d55439
d55439
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 3.2.10-19
d55439
- Rebuild for Python 3.6
d55439
d55439
* Sun Dec 4 2016 Orion Poplawski <orion@cora.nwra.com> - 3.2.10-18
d55439
- Fix compilation with -Werror=implicit-function-declaration
d55439
- Use %%license
d55439
d55439
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.10-17
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d55439
d55439
* Mon Jul 13 2015 Orion Poplwski <orion@cora.nwra.com> - 3.2.10-16
d55439
- Add patch to fix unload from loaded modulefile (bug #1117334)
d55439
d55439
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.10-15
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d55439
d55439
* Mon Mar 2 2015 Orion Poplwski <orion@cora.nwra.com> - 3.2.10-14
d55439
- Fix createmodule.sh to handle exported functions (bug #1197321)
d55439
- Handle more prefix/suffix cases in createmodule.{sh,py} (bug #1079341)
d55439
d55439
* Wed Jan 28 2015 Orion Poplwski <orion@cora.nwra.com> - 3.2.10-13
d55439
- Add patch for python 3 support, use python3 for createmodule.py on F22
d55439
d55439
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.10-12
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d55439
d55439
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.10-11
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d55439
d55439
* Tue May 27 2014 Orion Poplwski <orion@cora.nwra.com> - 3.2.10-10
d55439
- Add patch to support Tcl 8.6
d55439
d55439
* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 3.2.10-10
d55439
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
d55439
d55439
* Mon Apr 14 2014 Orion Poplawski <orion@cora.nwra.com> - 3.2.10-9
d55439
- Use alternatives for /etc/profile.d/modules.{csh,sh}
d55439
- Add /usr/share/modulefiles to MODULEPATH
d55439
- Add rpm macro to define %%_modulesdir
d55439
d55439
* Mon Dec 23 2013 Orion Poplawski <orion@cora.nwra.com> - 3.2.10-8
d55439
- Fix -Werror=format-security (bug #1037053)
d55439
d55439
* Wed Sep 4 2013 Orion Poplawski <orion@cora.nwra.com> - 3.2.10-7
d55439
- Update createmodule scripts to handle more path like variables (bug #976647)
d55439
d55439
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.10-6
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d55439
d55439
* Tue May 14 2013 Orion Poplawski <orion@cora.nwra.com> - 3.2.10-5
d55439
- Really do not replace modified profile.d scripts (bug #962762)
d55439
- Specfile cleanup
d55439
d55439
* Wed Apr 17 2013 Orion Poplawski <orion@cora.nwra.com> - 3.2.10-4
d55439
- Do not replace modified profile.d scripts (bug #953199)
d55439
d55439
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.10-3
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
d55439
d55439
* Tue Jan 15 2013 Orion Poplawski <orion@cora.nwra.com> - 3.2.10-2
d55439
- Add patch to comment out stray module use in modules file when not using
d55439
  versioning (bug #895555)
d55439
- Add patch to fix module clear command (bug #895551)
d55439
- Add patch from modules list to add completion to avail command
d55439
d55439
* Fri Dec 21 2012 Orion Poplawski <orion@cora.nwra.com> - 3.2.10-1
d55439
- Update to 3.2.10
d55439
- Drop regex patch
d55439
d55439
* Wed Oct 31 2012 Orion Poplawski <orion@cora.nwra.com> - 3.2.9c-5
d55439
- Updated createmodule.sh, added createmodule.py, can handle path prefixes
d55439
d55439
* Fri Aug 24 2012 Orion Poplawski <orion@cora.nwra.com> - 3.2.9c-4
d55439
- Add patch to fix segfault from Tcl RexExp handling (bug 834580)
d55439
d55439
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.9c-3
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d55439
d55439
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.9c-2
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d55439
d55439
* Tue Nov 29 2011 Orion Poplawski <orion@cora.nwra.com> - 3.2.9c-1
d55439
- Update to 3.2.9c (fixes bug 753760)
d55439
d55439
* Tue Nov 22 2011 Orion Poplawski <orion@cora.nwra.com> - 3.2.9b-2
d55439
- Make .modulespath a config file
d55439
d55439
* Tue Nov 15 2011 Orion Poplawski <orion@cora.nwra.com> - 3.2.9b-1
d55439
- Update to 3.2.9b
d55439
d55439
* Fri Nov 11 2011 Orion Poplawski <orion@cora.nwra.com> - 3.2.9a-2
d55439
- Add %%check section
d55439
d55439
* Fri Nov 11 2011 Orion Poplawski <orion@cora.nwra.com> - 3.2.9a-1
d55439
- Update to 3.2.9a
d55439
- Drop strcpy patch
d55439
d55439
* Thu Sep 22 2011 Orion Poplawski <orion@cora.nwra.com> - 3.2.8a-3
d55439
- Add patch to fix overlapping strcpy() in Remove_Path, hopefully fixes
d55439
  bug 737043
d55439
d55439
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.8a-2
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d55439
d55439
* Mon Oct 4 2010 Orion Poplawski <orion@cora.nwra.com> - 3.2.8a-1
d55439
- Update to 3.2.8a, changes --with-def-man-path to --with-man-path
d55439
d55439
* Mon Oct 4 2010 Orion Poplawski <orion@cora.nwra.com> - 3.2.8-1
d55439
- Update to 3.2.8
d55439
- Drop mandir patch, use --with-def-man-path
d55439
d55439
* Thu Jan 7 2010 Orion Poplawski <orion@cora.nwra.com> - 3.2.7b-7
d55439
- Add patch to set a sane default MANPATH
d55439
- Add createmodule.sh utility script for creating modulefiles
d55439
d55439
* Mon Nov 30 2009 Orion Poplawski <orion@cora.nwra.com> - 3.2.7b-6
d55439
- Add Requires: propcs (bug #54272)
d55439
d55439
* Mon Oct 26 2009 Orion Poplawski <orion@cora.nwra.com> - 3.2.7b-5
d55439
- Don't assume different shell init scripts exist (bug #530770)
d55439
d55439
* Fri Oct 23 2009 Orion Poplawski <orion@cora.nwra.com> - 3.2.7b-4
d55439
- Don't load bash init script when bash is running as "sh" (bug #529745)
d55439
d55439
* Mon Oct 19 2009 Orion Poplawski <orion@cora.nwra.com> - 3.2.7b-3
d55439
- Support different flavors of "sh" (bug #529493)
d55439
d55439
* Wed Sep 23 2009 Orion Poplawski <orion@cora.nwra.com> - 3.2.7b-2
d55439
- Add patch to fix modulecmd path in init files
d55439
d55439
* Wed Sep 23 2009 Orion Poplawski <orion@cora.nwra.com> - 3.2.7b-1
d55439
- Update to 3.2.7b
d55439
d55439
* Mon Sep 21 2009 Orion Poplawski <orion@cora.nwra.com> - 3.2.7-1
d55439
- Update to 3.2.7, fixes bug #524475
d55439
- Drop versioning patch fixed upstream
d55439
d55439
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.6-8
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
d55439
d55439
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.6-7
d55439
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
d55439
d55439
* Wed Sep 3 2008 - Orion Poplawski <orion@cora.nwra.com> - 3.2.6-6
d55439
- Change %%patch -> %%patch0
d55439
d55439
* Fri Mar 14 2008 - Orion Poplawski <orion@cora.nwra.com> - 3.2.6-5
d55439
- Add BR libX11-devel so modulecmd can handle X resources
d55439
d55439
* Wed Mar  5 2008 - Orion Poplawski <orion@cora.nwra.com> - 3.2.6-4
d55439
- Add patch to fix extraneous version path entry properly
d55439
- Use --with-module-path to point to /etc/modulefiles for local modules,
d55439
  this also fixes bug #436041
d55439
d55439
* Sat Feb  9 2008 - Orion Poplawski <orion@cora.nwra.com> - 3.2.6-3
d55439
- Rebuild for gcc 3.4
d55439
d55439
* Thu Jan 03 2008 - Alex Lancaster <alexlan at fedoraproject.org> - 3.2.6-2
d55439
- Rebuild for new Tcl (8.5).
d55439
d55439
* Fri Nov  2 2007 - Orion Poplawski <orion@cora.nwra.com> - 3.2.6-1
d55439
- Update to 3.2.6
d55439
d55439
* Tue Aug 21 2007 - Orion Poplawski <orion@cora.nwra.com> - 3.2.5-2
d55439
- Update license tag to GPLv2
d55439
d55439
* Fri Feb 16 2007 - Orion Poplawski <orion@cora.nwra.com> - 3.2.5-1
d55439
- Update to 3.2.5
d55439
d55439
* Wed Feb 14 2007 - Orion Poplawski <orion@cora.nwra.com> - 3.2.4-2
d55439
- Rebuild for Tcl downgrade
d55439
d55439
* Fri Feb 09 2007 - Orion Poplawski <orion@cora.nwra.com> - 3.2.4-1
d55439
- Update to 3.2.4
d55439
d55439
* Wed Dec 20 2006 - Orion Poplawski <orion@cora.nwra.com> - 3.2.3-3
d55439
- Add --with-version-path to set VERSIONPATH (bug 220260)
d55439
d55439
* Tue Aug 29 2006 - Orion Poplawski <orion@cora.nwra.com> - 3.2.3-2
d55439
- Rebuild for FC6
d55439
d55439
* Fri Jun  2 2006 - Orion Poplawski <orion@cora.nwra.com> - 3.2.3-1
d55439
- Update to 3.2.3
d55439
d55439
* Fri May  5 2006 - Orion Poplawski <orion@cora.nwra.com> - 3.2.2-1
d55439
- Update to 3.2.2
d55439
d55439
* Fri Mar 24 2006 - Orion Poplawski <orion@cora.nwra.com> - 3.2.1-1
d55439
- Update to 3.2.1
d55439
d55439
* Thu Feb  9 2006 - Orion Poplawski <orion@cora.nwra.com> - 3.2.0p1-1
d55439
- Update to 3.2.0p1
d55439
d55439
* Fri Jan 27 2006 - Orion Poplawski <orion@cora.nwra.com> - 3.2.0-2
d55439
- Add profile.d links
d55439
d55439
* Tue Jan 24 2006 - Orion Poplawski <orion@cora.nwra.com> - 3.2.0-1
d55439
- Fedora Extras packaging