4f1e354
%if 0%{?fedora} >= 22
4f1e354
%{!?python2_pkgversion: %global python2_pkgversion 2}
4f1e354
%global python2_pkgprefix python%{python2_pkgversion}
4f1e354
%else
4f1e354
%global python2_pkgprefix python
4f1e354
%endif
4f1e354
b88fd55
%if 0%{?rhel}
b88fd55
%{!?python3_pkgversion: %global python3_pkgversion 34}
b88fd55
%else
4f1e354
%{!?python3_pkgversion: %global python3_pkgversion 3}
b88fd55
%endif
4f1e354
%global python3_pkgprefix python%{python3_pkgversion}
4f1e354
b88fd55
# Undefined in SUSE
b88fd55
%{!?__python3: %global __python3 python3}
b88fd55
%{!?python3_shortver: %global python3_shortver %(%{__python3} -c 'import sys; print(str(sys.version_info.major) + "." + str(sys.version_info.minor))')}
b88fd55
6d51982
# Only build python3 package?
6d51982
%if 0%{?rhel} >= 8 || 0%{?fedora} >= 31
6d51982
%global py3only 1
6d51982
%endif
6d51982
4f1e354
%global srcname ClusterShell
4f1e354
b88fd55
Name:           clustershell
2e21a0a
Version:        1.9.2
e9b0162
Release:        3%{?dist}
b88fd55
Summary:        Python framework for efficient cluster administration
S. Thiell fd5a99e
b88fd55
%if 0%{?suse_version}
bd3f1dc
License:        LGPL-2.1-or-later
bd3f1dc
Group:          Productivity/Clustering/Computing
b88fd55
%else
b88fd55
License:        LGPLv2+
b88fd55
%endif
b88fd55
URL:            http://cea-hpc.github.io/clustershell/
7283254
Source0:        https://github.com/cea-hpc/clustershell/archive/v%{version}/%{srcname}-%{version}.tar.gz
b88fd55
BuildArch:      noarch
6d51982
%if 0%{!?py3only:1}
b88fd55
Requires:       python2-%{name} = %{version}-%{release}
6d51982
%else
6d51982
Requires:       python3-%{name} = %{version}-%{release}
9e5221f
%endif
b88fd55
%if 0%{?rhel} >= 7 || 0%{?fedora}
b88fd55
Requires:       vim-filesystem
96e6a13
%else
96e6a13
%if 0%{?suse_version}
b88fd55
Requires:       vim
bd3f1dc
BuildRequires:  fdupes
b88fd55
BuildRequires:  vim
b88fd55
%else
b88fd55
Requires:       vim-common
b88fd55
%endif
96e6a13
%endif
b88fd55
Provides:       vim-clustershell = %{version}-%{release}
b88fd55
Obsoletes:      vim-clustershell < 1.7.81-4
69d16b8
69d16b8
%description
69d16b8
ClusterShell is a set of tools and a Python library to execute commands
69d16b8
on cluster nodes in parallel depending on selected engine and worker
69d16b8
mechanisms. Advanced node sets and node groups handling methods are provided
69d16b8
to ease and improve the daily administration of large compute clusters or
69d16b8
server farms. Command line utilities like clush, clubak and nodeset (or
69d16b8
cluset) allow traditional shell scripts to take benefit of the features
69d16b8
offered by the library.
69d16b8
69d16b8
6d51982
%if 0%{!?py3only:1}
69d16b8
%package -n python2-%{name}
b88fd55
Summary:        ClusterShell module for Python 2
b88fd55
BuildRequires:  %{python2_pkgprefix}-devel
b88fd55
BuildRequires:  %{python2_pkgprefix}-setuptools
b88fd55
Requires:       %{python2_pkgprefix}-setuptools
b88fd55
%if 0%{?suse_version}
b88fd55
Requires:       %{python2_pkgprefix}-PyYAML
b88fd55
%else
b88fd55
Requires:       PyYAML
b88fd55
%endif
69d16b8
%{?python_provide:%python_provide python2-%{name}}
69d16b8
69d16b8
%description -n python2-%{name}
69d16b8
ClusterShell Python 2 module and related command line tools.
9e5221f
%endif
69d16b8
69d16b8
90b26bb
%package -n %{python3_pkgprefix}-%{name}
b88fd55
Summary:        ClusterShell module for Python 3
b88fd55
BuildRequires:  %{python3_pkgprefix}-devel
b88fd55
BuildRequires:  %{python3_pkgprefix}-setuptools
b88fd55
Requires:       %{python3_pkgprefix}-PyYAML
b88fd55
Requires:       %{python3_pkgprefix}-setuptools
4f1e354
%{?python_provide:%python_provide %{python3_pkgprefix}-%{srcname}}
69d16b8
90b26bb
%description -n %{python3_pkgprefix}-%{name}
69d16b8
ClusterShell Python 3 module and related command line tools.
69d16b8
S. Thiell fd5a99e
S. Thiell fd5a99e
%prep
c71cccb
%setup -q -n %{srcname}-%{version}
S. Thiell fd5a99e
S. Thiell fd5a99e
%build
69d16b8
%{__python3} setup.py build
6d51982
%if 0%{!?py3only:1}
69d16b8
%{__python2} setup.py build
6d51982
%endif
S. Thiell fd5a99e
S. Thiell fd5a99e
%install
69d16b8
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
69d16b8
6d51982
%if 0%{!?py3only:1}
69d16b8
pushd %{buildroot}%{_bindir}
69d16b8
for i in clubak cluset clush nodeset; do
69d16b8
  mv $i $i-%{python3_shortver}
69d16b8
done
69d16b8
popd
69d16b8
69d16b8
%{__python2} setup.py install -O1 --skip-build --root %{buildroot}
9e5221f
%endif
69d16b8
0e5dc78
# move config dir away from default setuptools /usr prefix (if rpm-building as user)
0e5dc78
[ -d %{buildroot}/usr/etc ] && mv %{buildroot}/usr/etc %{buildroot}/%{_sysconfdir}
S. Thiell fd5a99e
b88fd55
%if 0%{?rhel} && 0%{?rhel} <= 6
b88fd55
# old versions of rpm (el5 and el6) requires that a file/link exists in buildroot
b88fd55
# even when ghosted, but it is not installed at the end...
b88fd55
ln -s conf/groups.d/local.cfg %{buildroot}/%{_sysconfdir}/clustershell/groups
b88fd55
%endif
b88fd55
S. Thiell fd5a99e
# man pages
S. Thiell fd5a99e
install -d %{buildroot}/%{_mandir}/{man1,man5}
S. Thiell fd5a99e
install -p -m 0644 doc/man/man1/clubak.1 %{buildroot}/%{_mandir}/man1/
c206bb5
install -p -m 0644 doc/man/man1/cluset.1 %{buildroot}/%{_mandir}/man1/
S. Thiell fd5a99e
install -p -m 0644 doc/man/man1/clush.1 %{buildroot}/%{_mandir}/man1/
S. Thiell fd5a99e
install -p -m 0644 doc/man/man1/nodeset.1 %{buildroot}/%{_mandir}/man1/
S. Thiell fd5a99e
install -p -m 0644 doc/man/man5/clush.conf.5 %{buildroot}/%{_mandir}/man5/
S. Thiell fd5a99e
install -p -m 0644 doc/man/man5/groups.conf.5 %{buildroot}/%{_mandir}/man5/
S. Thiell fd5a99e
S. Thiell fd5a99e
# vim addons
b88fd55
%if 0%{?suse_version}
b88fd55
%define vimdatadir %{_datadir}/vim/site
b88fd55
%else
S. Thiell fd5a99e
%define vimdatadir %{_datadir}/vim/vimfiles
b88fd55
%endif
b88fd55
S. Thiell fd5a99e
install -d %{buildroot}/%{vimdatadir}/{ftdetect,syntax}
S. Thiell fd5a99e
install -p -m 0644 doc/extras/vim/ftdetect/clustershell.vim %{buildroot}/%{vimdatadir}/ftdetect/
S. Thiell fd5a99e
install -p -m 0644 doc/extras/vim/syntax/clushconf.vim %{buildroot}/%{vimdatadir}/syntax/
S. Thiell fd5a99e
install -p -m 0644 doc/extras/vim/syntax/groupsconf.vim %{buildroot}/%{vimdatadir}/syntax/
12bfa86
%{?suse_version:%fdupes %{buildroot}}
S. Thiell fd5a99e
6d51982
%if 0%{!?py3only:1}
9e5221f
69d16b8
%files -n python2-%{name}
b88fd55
%if 0%{?rhel}
b88fd55
%defattr(-,root,root,-)
b88fd55
%endif
69d16b8
%{_bindir}/clubak
69d16b8
%{_bindir}/cluset
69d16b8
%{_bindir}/clush
69d16b8
%{_bindir}/nodeset
69d16b8
%{python2_sitelib}/ClusterShell/
69d16b8
%{python2_sitelib}/ClusterShell-*-py?.?.egg-info
69d16b8
90b26bb
%files -n %{python3_pkgprefix}-%{name}
b88fd55
%if 0%{?rhel}
b88fd55
%defattr(-,root,root,-)
b88fd55
%endif
69d16b8
%{_bindir}/clubak-%{python3_shortver}
69d16b8
%{_bindir}/cluset-%{python3_shortver}
69d16b8
%{_bindir}/clush-%{python3_shortver}
69d16b8
%{_bindir}/nodeset-%{python3_shortver}
69d16b8
%{python3_sitelib}/ClusterShell/
73bbfb2
%{python3_sitelib}/ClusterShell-*-py%{python3_version}.egg-info
69d16b8
9e5221f
%else
9e5221f
9e5221f
# Unversioned python3 tools for rhel8
9e5221f
9e5221f
%files -n %{python3_pkgprefix}-%{name}
9e5221f
%if 0%{?rhel}
9e5221f
%defattr(-,root,root,-)
9e5221f
%endif
9e5221f
%{_bindir}/clubak
9e5221f
%{_bindir}/cluset
9e5221f
%{_bindir}/clush
9e5221f
%{_bindir}/nodeset
9e5221f
%{python3_sitelib}/ClusterShell/
73bbfb2
%{python3_sitelib}/ClusterShell-*-py%{python3_version}.egg-info
9e5221f
9e5221f
%endif
9e5221f
b88fd55
%files
b88fd55
%if 0%{?rhel}
b88fd55
%defattr(-,root,root,-)
b88fd55
%endif
c206bb5
%doc ChangeLog COPYING.LGPLv2.1 README.md
b71dc00
%doc doc/examples
0e5dc78
%doc doc/sphinx
S. Thiell fd5a99e
%{_mandir}/man1/clubak.1*
c206bb5
%{_mandir}/man1/cluset.1*
S. Thiell fd5a99e
%{_mandir}/man1/clush.1*
S. Thiell fd5a99e
%{_mandir}/man1/nodeset.1*
S. Thiell fd5a99e
%{_mandir}/man5/clush.conf.5*
S. Thiell fd5a99e
%{_mandir}/man5/groups.conf.5*
S. Thiell fd5a99e
%dir %{_sysconfdir}/clustershell
475569a
%dir %{_sysconfdir}/clustershell/clush.conf.d
0e5dc78
%dir %{_sysconfdir}/clustershell/groups.d
0e5dc78
%dir %{_sysconfdir}/clustershell/groups.conf.d
S. Thiell fd5a99e
%config(noreplace) %{_sysconfdir}/clustershell/clush.conf
S. Thiell fd5a99e
%config(noreplace) %{_sysconfdir}/clustershell/groups.conf
0e5dc78
%ghost %{_sysconfdir}/clustershell/groups
0e5dc78
%config(noreplace) %{_sysconfdir}/clustershell/groups.d/local.cfg
475569a
%doc %{_sysconfdir}/clustershell/clush.conf.d/README
475569a
%doc %{_sysconfdir}/clustershell/clush.conf.d/*.conf.example
Stephane Thiell 097caa2
%doc %{_sysconfdir}/clustershell/groups.conf.d/README
Stephane Thiell 097caa2
%doc %{_sysconfdir}/clustershell/groups.conf.d/*.conf.example
0e5dc78
%doc %{_sysconfdir}/clustershell/groups.d/README
0e5dc78
%doc %{_sysconfdir}/clustershell/groups.d/*.yaml.example
0e5dc78
%doc %{_sysconfdir}/clustershell/topology.conf.example
S. Thiell fd5a99e
%{vimdatadir}/ftdetect/clustershell.vim
S. Thiell fd5a99e
%{vimdatadir}/syntax/clushconf.vim
S. Thiell fd5a99e
%{vimdatadir}/syntax/groupsconf.vim
S. Thiell fd5a99e
S. Thiell fd5a99e
%changelog
e9b0162
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.2-3
e9b0162
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
e9b0162
76efef5
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.2-2
76efef5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
76efef5
2e21a0a
* Fri Sep 29 2023 Stephane Thiell <sthiell@stanford.edu> 1.9.2-1
2e21a0a
- update to 1.9.2
2e21a0a
a659c1b
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.1-3
a659c1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
a659c1b
cfb5b68
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 1.9.1-2
cfb5b68
- Rebuilt for Python 3.12
cfb5b68
864dc4d
* Fri Feb 10 2023 Stephane Thiell <sthiell@stanford.edu> 1.9.1-1
864dc4d
- update to 1.9.1
864dc4d
195e970
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-3
195e970
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
195e970
3693346
* Sat Nov 26 2022 Stephane Thiell <sthiell@stanford.edu> 1.9-2
475569a
- update to 1.9
3693346
- fix source tarball
475569a
638e85d
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.4-4
638e85d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
638e85d
8599063
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.8.4-3
8599063
- Rebuilt for Python 3.11
8599063
6b79642
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.4-2
6b79642
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
6b79642
bd3f1dc
* Fri Nov  5 2021 Stephane Thiell <sthiell@stanford.edu> 1.8.4-1
bd3f1dc
- update to 1.8.4
bd3f1dc
b6db718
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-8
b6db718
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
b6db718
66ee223
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.8.3-7
66ee223
- Rebuilt for Python 3.10
66ee223
ca5cc77
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-6
ca5cc77
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
ca5cc77
68bf923
* Sat Nov 21 2020 Stephane Thiell <sthiell@stanford.edu> 1.8.3-5
f355332
- Removed unversioned __python macros https://fedoraproject.org/wiki/Changes/PythonMacroError [1896129]
68bf923
f659b60
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-4
f659b60
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
f659b60
1cd1fe9
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.8.3-3
1cd1fe9
- Rebuilt for Python 3.9
1cd1fe9
91f3dbf
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-2
91f3dbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
91f3dbf
7283254
* Sat Dec  7 2019 Stephane Thiell <sthiell@stanford.edu> 1.8.3-1
7283254
- Update to 1.8.3
7283254
- Update Source to download from GitHub directly
7283254
ad2e544
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.8.2-4
ad2e544
- Rebuilt for Python 3.8.0rc1 (#1748018)
ad2e544
1d0d9b7
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.8.2-3
1d0d9b7
- Rebuilt for Python 3.8
1d0d9b7
6d51982
* Mon Aug 12 2019 Stephane Thiell <sthiell@stanford.edu> 1.8.2-2
9e5221f
- update to 1.8.2
6d51982
- add if-condition to only build Python3 package
9e5221f
1edc3c2
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-4
1edc3c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1edc3c2
af03bd7
* Thu Jun 27 2019 Stephane Thiell <sthiell@stanford.edu> 1.8.1-3
96e6a13
- Avoid using #%else if" statements (#1724485)
af03bd7
be0615a
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.1-2
be0615a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
be0615a
3d874d0
* Fri Nov  2 2018 Stephane Thiell <sthiell@stanford.edu> 1.8.1-1
3d874d0
- update to 1.8.1
3d874d0
371482b
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-4
371482b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
371482b
33a6348
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.8-3
33a6348
- Rebuilt for Python 3.7
33a6348
191b281
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-2
191b281
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
191b281
a1a0dc4
* Mon Oct 23 2017 Stephane Thiell <sthiell@stanford.edu> 1.8-1
a1a0dc4
- update to 1.8
a1a0dc4
acd1ad8
* Sat Oct 14 2017 Stephane Thiell <sthiell@stanford.edu> 1.7.91-1
acd1ad8
- update to 1.7.91 (1.8 RC1)
acd1ad8
b88fd55
* Mon Oct  2 2017 Stephane Thiell <sthiell@stanford.edu> 1.7.82-1
b88fd55
- update to 1.7.82 (1.8 beta2)
b88fd55
90b26bb
* Sun Sep  3 2017 Stephane Thiell <sthiell@stanford.edu> 1.7.81-4
90b26bb
- move vim extensions into the clustershell package
90b26bb
- use Requires: vim-filesystem instead of vim-common
90b26bb
- define upgrade path for vim-clustershell
90b26bb
4f1e354
* Sat Sep  2 2017 Stephane Thiell <sthiell@stanford.edu> 1.7.81-3
4f1e354
- use `python2-` prefix in *Requires if available
4f1e354
69d16b8
* Sat Sep  2 2017 Stephane Thiell <sthiell@stanford.edu> 1.7.81-2
69d16b8
- create separate packages for python2 and python3 modules
69d16b8
c71cccb
* Fri Sep  1 2017 Stephane Thiell <sthiell@stanford.edu> 1.7.81-1
c71cccb
- update to 1.7.81 (1.8 beta1)
c71cccb
2e28631
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.3-3
2e28631
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2e28631
7790bf7
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.3-2
7790bf7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7790bf7
c206bb5
* Wed Dec 21 2016 Stephane Thiell <sthiell@stanford.edu> 1.7.3-1
c206bb5
- update to 1.7.3
c206bb5
0f67dc5
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.2-2
0f67dc5
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
0f67dc5
edf830a
* Mon Jun 20 2016 Stephane Thiell <sthiell@stanford.edu> 1.7.2-1
edf830a
- update to 1.7.2
edf830a
84b5e81
* Mon Feb 29 2016 Stephane Thiell <sthiell@stanford.edu> 1.7.1-1
84b5e81
- update to 1.7.1
84b5e81
be5085e
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.7-2
be5085e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
be5085e
0e5dc78
* Tue Nov 10 2015 Stephane Thiell <sthiell@stanford.edu> 1.7-1
0e5dc78
- update to 1.7
0e5dc78
0457b69
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-7
0457b69
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0457b69
2016e42
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-6
2016e42
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2016e42
b71dc00
* Wed Aug 21 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.6-5
b71dc00
- Use special %%doc to install docs (#993703).
b71dc00
a58eaf8
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-4
a58eaf8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a58eaf8
e74cdbb
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-3
e74cdbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e74cdbb
06b1ae5
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
06b1ae5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
06b1ae5
Stephane Thiell 097caa2
* Sun Apr 08 2012 Stephane Thiell <stephane.thiell@cea.fr> 1.6-1
Stephane Thiell 097caa2
- update to 1.6
cae252e
Stephane Thiell 69d91b3
* Thu Jun 09 2011 Stephane Thiell <stephane.thiell@cea.fr> 1.5.1-1
Stephane Thiell 69d91b3
- update to 1.5.1
Stephane Thiell 69d91b3
Stephane Thiell cf77a31
* Wed Jun 08 2011 Stephane Thiell <stephane.thiell@cea.fr> 1.5-1
Stephane Thiell cf77a31
- update to 1.5
Stephane Thiell cf77a31
Stephane Thiell 7878915
* Sat Mar 19 2011 Stephane Thiell <stephane.thiell@cea.fr> 1.4.3-1
Stephane Thiell 7878915
- update to 1.4.3
Stephane Thiell 7878915
Stephane Thiell 707c60b
* Tue Mar 15 2011 Stephane Thiell <stephane.thiell@cea.fr> 1.4.2-1
Stephane Thiell 707c60b
- update to 1.4.2
Stephane Thiell 707c60b
Stephane Thiell 07aec60
* Sun Feb 13 2011 Stephane Thiell <stephane.thiell@cea.fr> 1.4.1-1
Stephane Thiell 07aec60
- update to 1.4.1
Stephane Thiell 07aec60
Stephane Thiell 16fccee
* Sat Jan 15 2011 Stephane Thiell <stephane.thiell@cea.fr> 1.4-1
Stephane Thiell 16fccee
- update to 1.4
Stephane Thiell 16fccee
Stephane Thiell - DSSI/SISR/LIGS b217361
* Wed Oct 20 2010 Stephane Thiell <stephane.thiell@cea.fr> 1.3.3-1
Stephane Thiell - DSSI/SISR/LIGS b217361
- update to 1.3.3
Stephane Thiell - DSSI/SISR/LIGS b217361
S. Thiell fd5a99e
* Fri Sep 10 2010 Stephane Thiell <stephane.thiell@cea.fr> 1.3.2-1
S. Thiell fd5a99e
- renamed Vim subpackage to vim-clustershell
S. Thiell fd5a99e
- update to 1.3.2
S. Thiell fd5a99e
S. Thiell fd5a99e
* Sun Sep 05 2010 Stephane Thiell <stephane.thiell@cea.fr> 1.3.1-2
S. Thiell fd5a99e
- added -vim subpackage for .vim files
S. Thiell fd5a99e
S. Thiell fd5a99e
* Fri Sep 03 2010 Stephane Thiell <stephane.thiell@cea.fr> 1.3.1-1
S. Thiell fd5a99e
- removed -n from setup line
S. Thiell fd5a99e
- own clustershell config directory for proper uninstall
S. Thiell fd5a99e
- install vim syntax addons in vimfiles, thus avoiding vim version detection
S. Thiell fd5a99e
- update to 1.3.1
S. Thiell fd5a99e
S. Thiell fd5a99e
* Sun Aug 22 2010 Stephane Thiell <stephane.thiell@cea.fr> 1.3-4
S. Thiell fd5a99e
- fixed BuildRoot tag in accordance with EPEL guidelines
S. Thiell fd5a99e
- python_sitelib definition: prefer global vs define
S. Thiell fd5a99e
- preserve timestamps and fix permissions when installing files
S. Thiell fd5a99e
S. Thiell fd5a99e
* Sat Aug 21 2010 Stephane Thiell <stephane.thiell@cea.fr> 1.3-3
S. Thiell fd5a99e
- use a full URL to the package in Source0
S. Thiell fd5a99e
S. Thiell fd5a99e
* Fri Aug 20 2010 Stephane Thiell <stephane.thiell@cea.fr> 1.3-2
S. Thiell fd5a99e
- various improvements per first review request
S. Thiell fd5a99e
S. Thiell fd5a99e
* Thu Aug 19 2010 Stephane Thiell <stephane.thiell@cea.fr> 1.3-1
S. Thiell fd5a99e
- initial build candidate for Fedora