2022-04-15 03:11:07 +00:00
|
|
|
# build Rust binary and extensions
|
|
|
|
%ifarch %{rust_arches}
|
|
|
|
%bcond_without rust
|
|
|
|
%else
|
|
|
|
%bcond_with rust
|
|
|
|
%endif
|
|
|
|
|
2022-05-03 13:36:36 +00:00
|
|
|
Summary: A fast, lightweight Source Control Management system
|
2005-07-01 19:53:16 +00:00
|
|
|
Name: mercurial
|
2022-04-06 07:43:54 +00:00
|
|
|
Version: 6.1.1
|
2022-04-15 03:11:07 +00:00
|
|
|
Release: 3%{?dist}
|
2016-12-23 22:22:12 +00:00
|
|
|
|
2018-08-11 18:07:03 +00:00
|
|
|
# Release: 1.rc1%%{?dist}
|
2012-01-24 15:08:34 +00:00
|
|
|
|
2018-08-11 18:07:03 +00:00
|
|
|
#% define upstreamversion %%{version}-rc
|
2012-02-02 20:24:19 +00:00
|
|
|
%define upstreamversion %{version}
|
2012-01-24 15:08:34 +00:00
|
|
|
|
2010-03-07 03:44:23 +00:00
|
|
|
License: GPLv2+
|
2020-12-03 19:29:41 +00:00
|
|
|
URL: https://mercurial-scm.org/
|
|
|
|
Source0: https://www.mercurial-scm.org/release/%{name}-%{upstreamversion}.tar.gz
|
2008-03-26 14:57:05 +00:00
|
|
|
Source1: mercurial-site-start.el
|
2022-04-15 03:11:07 +00:00
|
|
|
# Patch cargo metadata for dependency versions available in Fedora
|
|
|
|
Patch0: mercurial-rust-metadata.patch
|
2021-01-06 21:41:19 +00:00
|
|
|
BuildRequires: make
|
2020-12-10 16:26:04 +00:00
|
|
|
BuildRequires: bash-completion
|
|
|
|
BuildRequires: emacs-el
|
|
|
|
BuildRequires: emacs-nox
|
2018-07-24 08:59:16 +00:00
|
|
|
BuildRequires: gcc
|
2020-12-10 16:26:04 +00:00
|
|
|
BuildRequires: gettext
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: python3-devel
|
2021-04-19 11:18:31 +00:00
|
|
|
BuildRequires: python3-setuptools
|
2020-12-10 16:26:04 +00:00
|
|
|
BuildRequires: python3-docutils
|
2022-04-15 03:11:07 +00:00
|
|
|
%if %{with rust}
|
|
|
|
BuildRequires: rust-packaging
|
|
|
|
%endif
|
2019-11-26 11:17:56 +00:00
|
|
|
|
|
|
|
Provides: hg = %{version}-%{release}
|
2020-12-10 16:26:04 +00:00
|
|
|
Requires: python3
|
|
|
|
Requires: emacs-filesystem
|
2021-11-18 12:57:30 +00:00
|
|
|
Recommends: python3-fb-re2
|
2021-01-20 08:31:14 +00:00
|
|
|
|
2021-01-03 01:08:06 +00:00
|
|
|
%description
|
2019-11-26 11:17:56 +00:00
|
|
|
Mercurial is a fast, lightweight source control management system designed
|
|
|
|
for efficient handling of very large distributed projects.
|
|
|
|
|
2021-09-01 21:26:24 +00:00
|
|
|
Quick start: https://www.mercurial-scm.org/wiki/QuickStart
|
|
|
|
Tutorial: https://www.mercurial-scm.org/wiki/Tutorial
|
|
|
|
Extensions: https://www.mercurial-scm.org/wiki/UsingExtensions
|
2019-11-26 11:17:56 +00:00
|
|
|
|
2019-08-05 19:39:10 +00:00
|
|
|
|
2008-03-26 00:35:20 +00:00
|
|
|
%package hgk
|
2018-08-11 18:07:03 +00:00
|
|
|
Summary: Hgk interface for mercurial
|
2020-12-10 16:26:04 +00:00
|
|
|
Requires: hg = %{version}-%{release}
|
|
|
|
Requires: tk
|
2008-03-26 00:35:20 +00:00
|
|
|
|
|
|
|
%description hgk
|
2008-03-26 14:57:05 +00:00
|
|
|
A Mercurial extension for displaying the change history graphically
|
|
|
|
using Tcl/Tk. Displays branches and merges in an easily
|
|
|
|
understandable way and shows diffs for each revision. Based on
|
|
|
|
gitk for the git SCM.
|
|
|
|
|
2018-08-11 18:07:03 +00:00
|
|
|
Adds the "hg view" command. See
|
2021-09-01 21:26:24 +00:00
|
|
|
https://www.mercurial-scm.org/wiki/HgkExtension for more
|
2008-03-26 14:57:05 +00:00
|
|
|
documentation.
|
2008-03-26 00:35:20 +00:00
|
|
|
|
2019-08-05 19:39:10 +00:00
|
|
|
|
2018-05-13 05:14:08 +00:00
|
|
|
%package chg
|
|
|
|
Summary: A fast client for Mercurial command server running on Unix. It saves time of slow Python startup.
|
|
|
|
Requires: hg = %{version}-%{release}
|
|
|
|
|
|
|
|
%description chg
|
|
|
|
chg is a C wrapper for the hg command. Typically, when you type hg, a new
|
|
|
|
Python process is created, Mercurial is loaded, and your requested command runs
|
|
|
|
and the process exits.
|
|
|
|
|
|
|
|
With chg, a Mercurial command server background process is created that runs
|
|
|
|
Mercurial. When you type chg, a C program connects to that background process
|
|
|
|
and executes Mercurial commands.
|
|
|
|
|
2022-04-15 03:11:07 +00:00
|
|
|
%if %{with rust}
|
|
|
|
%package rust
|
|
|
|
Summary: Mercurial Rust binaries and extensions
|
|
|
|
# Effective license for the rust binaries, computed from statically linked dependencies:
|
|
|
|
# BSD
|
|
|
|
# GPLv2+
|
|
|
|
# MIT
|
|
|
|
# MIT or ASL 2.0
|
|
|
|
# MPLv2.0
|
|
|
|
# Python
|
|
|
|
# Unlicense or MIT
|
|
|
|
# zlib or ASL 2.0 or MIT
|
|
|
|
License: GPLv2+
|
|
|
|
Requires: hg = %{version}-%{release}
|
|
|
|
|
|
|
|
%description rust
|
|
|
|
This subpackage provides following Mercurial components implemented in Rust:
|
|
|
|
|
|
|
|
The `rustext` extension speeds up some functionality of Mercurial, e.g.
|
|
|
|
ancestry computations in revision graphs, status or discovery of differences
|
|
|
|
between repositories.
|
|
|
|
|
|
|
|
The experimental `rhg` executable implements a subset of the functionality of `hg` using
|
|
|
|
only Rust, to avoid the startup cost of a Python interpreter. This subset is
|
|
|
|
initially small but grows over time as `rhg` is improved. When fallback to the
|
|
|
|
Python implementation is configured, `rhg` aims to be a drop-in replacement
|
|
|
|
for `hg` that should behave the same, except that some commands run faster.
|
|
|
|
%endif
|
2018-05-13 05:14:08 +00:00
|
|
|
|
2005-07-01 19:53:16 +00:00
|
|
|
%prep
|
2022-04-15 03:11:07 +00:00
|
|
|
%autosetup -p1 -n %{name}-%{upstreamversion}
|
|
|
|
|
|
|
|
%if %{with rust}
|
|
|
|
pushd rust
|
|
|
|
%cargo_prep
|
|
|
|
popd
|
|
|
|
|
|
|
|
%generate_buildrequires
|
|
|
|
for crate in rust/hg-core rust/hg-cpython rust/rhg; do
|
|
|
|
cd $crate
|
|
|
|
# Temporarily remove hg-core = { path = "../hg-core"} dependencies while generating buildrequires.
|
|
|
|
sed -i.br -r -e '/=\s*\{[^}]+path\s*=/d' Cargo.toml
|
|
|
|
%cargo_generate_buildrequires
|
|
|
|
mv -f Cargo.toml{.br,}
|
|
|
|
cd - >/dev/null
|
|
|
|
done
|
|
|
|
%endif
|
|
|
|
# /with rust
|
2020-12-08 16:08:47 +00:00
|
|
|
|
2005-07-01 19:53:16 +00:00
|
|
|
%build
|
2022-04-06 07:50:27 +00:00
|
|
|
PYTHON=%{python3} make all
|
2006-04-10 19:20:25 +00:00
|
|
|
|
2020-12-08 15:54:41 +00:00
|
|
|
# chg will invoke the 'hg' command - no direct Python dependency
|
2018-05-13 05:14:08 +00:00
|
|
|
pushd contrib/chg
|
|
|
|
make
|
|
|
|
popd
|
|
|
|
|
2022-04-15 03:11:07 +00:00
|
|
|
%if %{with rust}
|
|
|
|
# Mercurial build system hardcodes too much. Instead, just build with Fedora macro.
|
|
|
|
pushd rust
|
|
|
|
%cargo_build
|
|
|
|
popd
|
|
|
|
%endif
|
|
|
|
|
2005-07-01 19:53:16 +00:00
|
|
|
%install
|
2022-04-06 07:50:27 +00:00
|
|
|
%{python3} setup.py install -O1 --root %{buildroot} --prefix %{_prefix} --record=%{name}.files
|
|
|
|
make install-doc DESTDIR=%{buildroot} MANDIR=%{_mandir}
|
2007-10-23 02:28:25 +00:00
|
|
|
|
2022-04-15 03:11:07 +00:00
|
|
|
# Overrule setup.py policy "c" for module usage: always allow rust extension (if available)
|
|
|
|
echo 'modulepolicy = b"rust+c-allow"' > %{buildroot}%{python3_sitearch}/mercurial/__modulepolicy__.py
|
|
|
|
|
|
|
|
%if %{with rust}
|
|
|
|
# We are not using the Mercurial build system to build rust, and must thus manually install relevant parts.
|
|
|
|
install -D -m 755 -pv rust/target/release/rhg %{buildroot}%{_bindir}
|
|
|
|
install -D -m 755 -pv rust/target/release/librusthg.so \
|
|
|
|
%{buildroot}%{python3_sitearch}/mercurial/rustext%{python3_ext_suffix}
|
|
|
|
%endif
|
|
|
|
|
2019-11-26 11:17:56 +00:00
|
|
|
grep -v -e 'hgk.py*' \
|
|
|
|
-e "%{python3_sitearch}/mercurial/" \
|
|
|
|
-e "%{python3_sitearch}/hgext/" \
|
2020-12-05 13:30:17 +00:00
|
|
|
-e "%{python3_sitearch}/hgext3rd/" \
|
|
|
|
-e "%{python3_sitearch}/hgdemandimport/" \
|
2019-11-26 11:17:56 +00:00
|
|
|
-e "%{_bindir}" \
|
2020-12-08 23:01:03 +00:00
|
|
|
< %{name}.files > %{name}-base.files
|
|
|
|
grep 'hgk.py*' < %{name}.files > %{name}-hgk.files
|
2008-04-08 14:33:59 +00:00
|
|
|
|
2020-06-17 07:09:40 +00:00
|
|
|
install -D -m 755 contrib/hgk %{buildroot}%{_libexecdir}/mercurial/hgk
|
|
|
|
install -m 755 contrib/hg-ssh %{buildroot}%{_bindir}
|
2007-10-23 02:28:25 +00:00
|
|
|
|
2020-06-17 07:09:40 +00:00
|
|
|
bash_completion_dir=%{buildroot}$(pkg-config --variable=completionsdir bash-completion)
|
2007-10-23 02:28:25 +00:00
|
|
|
mkdir -p $bash_completion_dir
|
2015-01-24 22:37:17 +00:00
|
|
|
install -m 644 contrib/bash_completion $bash_completion_dir/hg
|
2007-10-23 02:28:25 +00:00
|
|
|
|
2020-06-17 07:09:40 +00:00
|
|
|
zsh_completion_dir=%{buildroot}%{_datadir}/zsh/site-functions
|
2007-10-23 02:28:25 +00:00
|
|
|
mkdir -p $zsh_completion_dir
|
|
|
|
install -m 644 contrib/zsh_completion $zsh_completion_dir/_mercurial
|
|
|
|
|
2020-06-17 07:09:40 +00:00
|
|
|
mkdir -p %{buildroot}%{_emacs_sitelispdir}/mercurial
|
2008-04-12 13:54:53 +00:00
|
|
|
|
2008-04-08 14:33:59 +00:00
|
|
|
pushd contrib
|
|
|
|
for file in mercurial.el mq.el; do
|
2012-03-10 13:50:11 +00:00
|
|
|
#emacs -batch -l mercurial.el --no-site-file -f batch-byte-compile $file
|
|
|
|
%{_emacs_bytecompile} $file
|
2020-06-17 07:09:40 +00:00
|
|
|
install -p -m 644 $file ${file}c %{buildroot}%{_emacs_sitelispdir}/mercurial
|
2008-04-08 14:33:59 +00:00
|
|
|
rm ${file}c
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
|
2018-05-13 05:14:08 +00:00
|
|
|
pushd contrib/chg
|
2020-06-17 07:09:40 +00:00
|
|
|
make install DESTDIR=%{buildroot} PREFIX=%{_usr} MANDIR=%{_mandir}/man1
|
2018-05-13 05:14:08 +00:00
|
|
|
popd
|
2008-04-08 14:33:59 +00:00
|
|
|
|
|
|
|
|
2020-06-17 07:09:40 +00:00
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/mercurial/hgrc.d
|
2005-07-01 19:53:16 +00:00
|
|
|
|
2020-06-17 07:09:40 +00:00
|
|
|
mkdir -p %{buildroot}%{_emacs_sitestartdir} && install -m644 %SOURCE1 %{buildroot}%{_emacs_sitestartdir}
|
2008-04-08 14:33:59 +00:00
|
|
|
|
|
|
|
cat >hgk.rc <<EOF
|
|
|
|
[extensions]
|
|
|
|
# enable hgk extension ('hg help' shows 'view' as a command)
|
|
|
|
hgk=
|
2008-04-09 14:44:18 +00:00
|
|
|
|
|
|
|
[hgk]
|
|
|
|
path=%{_libexecdir}/mercurial/hgk
|
2008-04-08 14:33:59 +00:00
|
|
|
EOF
|
2020-06-17 07:09:40 +00:00
|
|
|
install -m 644 hgk.rc %{buildroot}%{_sysconfdir}/mercurial/hgrc.d
|
2008-04-08 14:33:59 +00:00
|
|
|
|
2012-05-25 14:46:42 +00:00
|
|
|
cat > certs.rc <<EOF
|
2021-09-01 21:26:24 +00:00
|
|
|
# see: https://www.mercurial-scm.org/wiki/CACertificates
|
2012-05-25 14:46:42 +00:00
|
|
|
[web]
|
|
|
|
cacerts = /etc/pki/tls/certs/ca-bundle.crt
|
|
|
|
EOF
|
2020-06-17 07:09:40 +00:00
|
|
|
install -m 644 certs.rc %{buildroot}%{_sysconfdir}/mercurial/hgrc.d
|
2012-05-25 14:46:42 +00:00
|
|
|
|
2020-12-08 15:02:52 +00:00
|
|
|
mv %{buildroot}%{python3_sitearch}/mercurial/locale %{buildroot}%{_datadir}/locale
|
2020-06-17 07:09:40 +00:00
|
|
|
rm -rf %{buildroot}%{python3_sitearch}/mercurial/locale
|
2010-10-06 12:39:14 +00:00
|
|
|
|
2010-10-05 15:25:31 +00:00
|
|
|
%find_lang hg
|
|
|
|
|
2021-01-03 01:41:30 +00:00
|
|
|
pathfix.py -pni "%{python3}" %{buildroot}%{_bindir}/hg-ssh
|
2019-11-26 11:17:56 +00:00
|
|
|
|
|
|
|
|
2021-01-03 01:22:16 +00:00
|
|
|
%files -f %{name}-base.files -f hg.lang
|
2019-11-26 11:17:56 +00:00
|
|
|
%doc CONTRIBUTORS COPYING doc/README doc/hg*.txt doc/hg*.html *.cgi contrib/*.fcgi contrib/*.wsgi
|
|
|
|
%doc %attr(644,root,root) %{_mandir}/man?/hg*.gz
|
|
|
|
%doc %attr(644,root,root) contrib/*.svg
|
|
|
|
%dir %{_datadir}/zsh/
|
|
|
|
%dir %{_datadir}/zsh/site-functions/
|
|
|
|
%dir %{_sysconfdir}/mercurial
|
|
|
|
%dir %{_sysconfdir}/mercurial/hgrc.d
|
|
|
|
%{_datadir}/bash-completion/
|
|
|
|
%{_datadir}/zsh/site-functions/_mercurial
|
2022-04-15 03:11:07 +00:00
|
|
|
%exclude %{python3_sitearch}/mercurial/rustext%{python3_ext_suffix}
|
2019-11-26 11:17:56 +00:00
|
|
|
%{python3_sitearch}/mercurial/
|
|
|
|
%{python3_sitearch}/hgext/
|
2020-12-05 13:30:17 +00:00
|
|
|
%{python3_sitearch}/hgext3rd/
|
|
|
|
%{python3_sitearch}/hgdemandimport/
|
2019-11-26 11:17:56 +00:00
|
|
|
%{_emacs_sitelispdir}/mercurial
|
|
|
|
%{_emacs_sitestartdir}/*.el
|
2021-01-03 01:41:30 +00:00
|
|
|
%{_bindir}/hg
|
|
|
|
%{_bindir}/hg-ssh
|
2019-08-05 19:39:10 +00:00
|
|
|
|
2019-11-26 11:17:56 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/mercurial/hgrc.d/certs.rc
|
|
|
|
|
2020-12-08 23:01:03 +00:00
|
|
|
%files hgk -f %{name}-hgk.files
|
2008-04-09 14:44:18 +00:00
|
|
|
%{_libexecdir}/mercurial/
|
2008-04-08 14:33:59 +00:00
|
|
|
%{_sysconfdir}/mercurial/hgrc.d/hgk.rc
|
2008-03-26 00:35:20 +00:00
|
|
|
|
2018-05-13 05:14:08 +00:00
|
|
|
%files chg
|
|
|
|
%{_bindir}/chg
|
|
|
|
%doc %attr(644,root,root) %{_mandir}/man?/chg.*.gz
|
|
|
|
|
2022-04-15 03:11:07 +00:00
|
|
|
%if %{with rust}
|
|
|
|
%files rust
|
|
|
|
%{_bindir}/rhg
|
|
|
|
%{python3_sitearch}/mercurial/rustext%{python3_ext_suffix}
|
|
|
|
%endif
|
|
|
|
|
2019-08-05 19:39:10 +00:00
|
|
|
|
|
|
|
#%%check
|
|
|
|
# This will now fail everytime. Mercurial is not ported properly for Python3
|
|
|
|
# and current split of mercurial for Py2 and Py3 brings additional problems
|
|
|
|
# for extensions then pure Python3 packaging.
|
2020-06-17 07:26:22 +00:00
|
|
|
#cd tests && HGPYTHON3=1 %%{python3} run-tests.py
|
2018-05-13 05:14:08 +00:00
|
|
|
|
2008-03-26 00:35:20 +00:00
|
|
|
|
2005-07-01 19:53:16 +00:00
|
|
|
%changelog
|
2022-04-15 03:11:07 +00:00
|
|
|
* Thu Apr 14 2022 Aleksei Bavshin <alebastr@fedoraproject.org> - 6.1.1-3
|
|
|
|
- Build Rust components
|
|
|
|
|
2022-04-06 07:52:53 +00:00
|
|
|
* Wed Apr 06 2022 Mads Kiilerich <mads@kiilerich.com> - 6.1.1-2
|
|
|
|
- Undo accicental commit
|
|
|
|
|
2022-04-06 07:43:54 +00:00
|
|
|
* Wed Apr 06 2022 Mads Kiilerich <mads@kiilerich.com> - 6.1.1-1
|
|
|
|
- mercurial 6.1.1
|
|
|
|
|
2022-03-01 16:35:17 +00:00
|
|
|
* Tue Mar 01 2022 Mads Kiilerich <mads@kiilerich.com> - 6.1-1
|
|
|
|
- mercurial 6.1
|
|
|
|
|
2022-02-18 12:21:56 +00:00
|
|
|
* Fri Feb 18 2022 Mads Kiilerich <mads@kiilerich.com> - 6.0.3-1
|
|
|
|
- mercurial 6.0.3
|
|
|
|
|
2022-02-02 16:30:17 +00:00
|
|
|
* Wed Feb 02 2022 Mads Kiilerich <mads@kiilerich.com> - 6.0.2-1
|
|
|
|
- mercurial 6.0.2
|
|
|
|
|
2022-01-20 19:05:56 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-01-05 21:26:14 +00:00
|
|
|
* Wed Jan 05 2022 Mads Kiilerich <mads@kiilerich.com> - 6.0.1-1
|
|
|
|
- mercurial 6.0.1
|
|
|
|
|
2021-12-10 15:16:45 +00:00
|
|
|
* Wed Nov 24 2021 Mads Kiilerich <mads@kiilerich.com> - 6.0-1
|
|
|
|
- mercurial 6.0
|
|
|
|
|
2021-11-18 13:56:55 +00:00
|
|
|
* Thu Nov 18 2021 Mads Kiilerich <mads@kiilerich.com> - 5.9.3-2
|
|
|
|
- Drop old upgrade path
|
|
|
|
- Recommend python3-fb-re2 which will speed up some operations
|
|
|
|
|
2021-10-27 23:11:52 +00:00
|
|
|
* Wed Oct 27 2021 Mads Kiilerich <mads@kiilerich.com> - 5.9.3-1
|
|
|
|
- mercurial 5.9.3
|
|
|
|
|
2021-10-06 11:06:15 +00:00
|
|
|
* Wed Oct 06 2021 Mads Kiilerich <mads@kiilerich.com> - 5.9.2-1
|
|
|
|
- mercurial 5.9.2
|
|
|
|
|
2021-09-01 21:26:24 +00:00
|
|
|
* Wed Sep 01 2021 Mads Kiilerich <mads@kiilerich.com> - 5.9.1-1
|
|
|
|
- mercurial 5.9.1
|
|
|
|
|
2021-07-22 14:08:47 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.8.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-12 16:29:31 +00:00
|
|
|
* Mon Jul 12 2021 Mads Kiilerich <mads@kiilerich.com> - 5.8.1-1
|
|
|
|
- mercurial 5.8.1
|
|
|
|
|
2021-06-03 12:55:06 +00:00
|
|
|
* Thu Jun 03 2021 Python Maint <python-maint@redhat.com> - 5.8-2
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-05-11 22:18:07 +00:00
|
|
|
* Tue May 11 2021 Mads Kiilerich <mads@kiilerich.com> - 5.8-1
|
|
|
|
- mercurial 5.8
|
|
|
|
|
2021-03-09 23:20:30 +00:00
|
|
|
* Tue Mar 09 2021 Mads Kiilerich <mads@kiilerich.com> - 5.7.1-1
|
|
|
|
- mercurial 5.7.1
|
|
|
|
|
2021-02-03 11:44:04 +00:00
|
|
|
* Wed Feb 03 2021 Mads Kiilerich <mads@kiilerich.com> - 5.7-1
|
|
|
|
- mercurial 5.7
|
|
|
|
|
2021-01-26 19:38:51 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.6.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-20 08:31:14 +00:00
|
|
|
* Wed Jan 20 2021 Petr Stodulka <pstodulk@redhat.com> - 5.6.1-6
|
|
|
|
- Set Provides for the obsoleted mercurial-py3 and mercurial-lang rpms
|
|
|
|
- Relates: #1917946
|
|
|
|
|
2021-01-03 02:41:46 +00:00
|
|
|
* Sun Jan 3 03:39:35 CET 2021 Mads Kiilerich <mads@kiilerich.com> - 5.6.1-5
|
|
|
|
- Stop providing hg3 - that is the only hg we have
|
|
|
|
- Drop alternatives - there is no alternative
|
|
|
|
- Move main package back to mercurial without py3 suffix
|
|
|
|
- Drop the -lang package
|
|
|
|
|
2020-12-08 16:21:01 +00:00
|
|
|
* Tue Dec 8 17:14:14 CET 2020 Mads Kiilerich <mads@kiilerich.com> - 5.6.1-4
|
|
|
|
- Change mercurial-hgk to use py3
|
|
|
|
- Use py3 for locales - py2 is going away
|
|
|
|
- Clarify in comment that chg has no py2/py3 concerns
|
|
|
|
- Drop comment left over from 53899096 when it introduced use of PYTHON=
|
|
|
|
- Let mercurial-py3 obsolete mercurial-py2 - it is going away soon
|
|
|
|
- Trivial removal of py2 package - no cleanup
|
|
|
|
|
2020-12-05 13:58:51 +00:00
|
|
|
* Sat Dec 5 14:50:30 CET 2020 Mads Kiilerich <mads@kiilerich.com> - 5.6.1-3
|
2020-12-05 13:30:17 +00:00
|
|
|
- Fix ownership of hgext3rd and hgdemandimport (#1897681)
|
|
|
|
|
2020-12-03 20:26:33 +00:00
|
|
|
* Thu Dec 3 21:24:26 CET 2020 Mads Kiilerich <mads@kiilerich.com> - 5.6.1-2
|
|
|
|
- Drop hgdemandimport_ast.patch - it has been fixed both in Mercurial 5.5.2 and
|
|
|
|
Python 3.9.0rc2
|
|
|
|
|
2020-12-03 20:11:17 +00:00
|
|
|
* Thu Dec 3 20:39:41 CET 2020 Mads Kiilerich <mads@kiilerich.com> - 5.6.1-1
|
|
|
|
- mercurial 5.6.1
|
|
|
|
|
2020-11-30 17:28:21 +00:00
|
|
|
* Mon Nov 30 2020 Miro Hrončok <mhroncok@redhat.com> - 5.4-5
|
|
|
|
- Install Python 3 based mercurial by default
|
|
|
|
|
2020-09-02 09:15:10 +00:00
|
|
|
* Wed Sep 02 2020 Petr Viktorin <pviktori@redhat.com> - 5.4-4
|
|
|
|
- Add _ast to hgdemandimport ignore list
|
|
|
|
Works around: BZ#1871992
|
|
|
|
|
2020-08-10 18:21:34 +00:00
|
|
|
* Mon Aug 10 2020 Petr Stodulka <pstodulk@redhat.com> - 5.4-3
|
|
|
|
- Fix upgrade from previous mercurial 4.9 causing broken alternatives for
|
|
|
|
mercurial
|
|
|
|
- Resolves: #1831562
|
|
|
|
|
2020-07-28 07:16:28 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-03 21:45:29 +00:00
|
|
|
* Wed Jun 3 2020 Neal Becker <ndbecker2@gmail.com> - 5.4-1
|
|
|
|
- Update to 5.4
|
|
|
|
|
2020-05-26 00:52:52 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 5.2-5
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-01-29 12:35:18 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-12-12 12:34:05 +00:00
|
|
|
* Thu Dec 12 2019 Miro Hrončok <mhroncok@redhat.com> - 5.2-3
|
|
|
|
- Remove stray Python 2 files from the Python 3 package
|
|
|
|
|
2019-11-26 11:17:56 +00:00
|
|
|
* Tue Nov 26 2019 Miro Hrončok <mhroncok@redhat.com> - 5.2-2
|
|
|
|
- Use alternatives for /usr/bin/hg
|
|
|
|
|
2019-11-25 12:02:26 +00:00
|
|
|
* Mon Nov 25 2019 Petr Stodulka <pstodulk@redhat.com> - 5.2-1
|
|
|
|
- Update to 5.2
|
|
|
|
- Mercurial port is now much more stable on Python3 than before;
|
|
|
|
still some issues can be discovered regarding the Python3
|
|
|
|
- Relates: #1737931
|
|
|
|
|
2019-08-05 19:39:10 +00:00
|
|
|
* Sat Oct 19 2019 Petr Stodulka <pstodulk@redhat.com> - 5.1.2-2
|
|
|
|
- first attempt to create builds for py2 & py3 version
|
|
|
|
- separate lang into the own subpackage as files are shared between
|
|
|
|
mercurial for both pythons
|
|
|
|
- extensions are now prepared and working only under Python2
|
|
|
|
- the core mercurial is prepared in mercurial-python3 subpackage providing
|
|
|
|
the hg3 executable
|
|
|
|
- Relates: #1737931
|
|
|
|
|
2019-10-19 18:46:05 +00:00
|
|
|
* Sat Oct 19 2019 Petr Stodulka <pstodulk@redhat.com> - 5.1.2-1
|
|
|
|
- Update to 5.1.2
|
|
|
|
- fix patching of Makefiles
|
|
|
|
|
2019-07-25 16:23:11 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-04-08 11:08:22 +00:00
|
|
|
* Mon Apr 8 2019 Neal Becker <ndbecker2@gmail.com> - 4.9-1
|
|
|
|
- Update to 4.9
|
|
|
|
|
2019-03-05 12:44:06 +00:00
|
|
|
* Tue Mar 5 2019 Neal Becker <ndbecker2@gmail.com> - 4.7-3
|
|
|
|
- Fix shebang for python2
|
|
|
|
|
2019-02-01 10:11:51 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-10-19 18:46:05 +00:00
|
|
|
* Mon Aug 20 2018 Petr Stodulka <pstodulk@redhat.com> - 4.7-1
|
2018-08-20 20:48:59 +00:00
|
|
|
- Update to 4.7
|
|
|
|
|
2018-08-11 18:41:19 +00:00
|
|
|
* Sat Aug 11 2018 Tom Prince <tom.prince@ualberta.net> - 4.5.3-1
|
2018-05-13 05:14:08 +00:00
|
|
|
- Package chg extension.
|
|
|
|
|
2018-08-11 18:25:58 +00:00
|
|
|
* Sat Aug 11 2018 Petr Stodulka <pstodulk@redhat.com> - 4.5.3-1
|
|
|
|
- Update to 4.5.3
|
|
|
|
- Resolves: CVE-2018-1000132
|
|
|
|
|
2018-07-24 08:58:42 +00:00
|
|
|
* Tue Jul 24 2018 Sebastian Kisela <skisela@redhat.com> - 4.4.2-6
|
|
|
|
- Stop using deprecated python macros: https://fedoraproject.org/wiki/Packaging:Python
|
2018-07-24 08:59:16 +00:00
|
|
|
- Add gcc build time dependency, as gcc was removed from default buildroot package set.
|
2018-07-24 08:58:42 +00:00
|
|
|
|
2018-07-13 10:08:50 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-02-09 08:05:08 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.4.2-4
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-08 01:40:26 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-09 18:10:38 +00:00
|
|
|
* Tue Jan 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 4.4.2-2
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2017-12-29 13:45:31 +00:00
|
|
|
* Fri Dec 29 2017 Neal Becker <nbecker@nbecker2> - 4.4.2-1
|
|
|
|
- Update to 4.4.2
|
|
|
|
|
2017-08-11 09:47:27 +00:00
|
|
|
* Fri Aug 11 2017 Petr Stodulka <pstodulk@redhat.com> - 4.2.3-1
|
|
|
|
- Update to 4.2.3
|
|
|
|
- Resolves: CVE-2017-1000115 CVE-2017-1000116
|
|
|
|
|
2017-08-03 03:14:39 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 21:18:53 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-12 12:30:50 +00:00
|
|
|
* Mon Jun 12 2017 Neal Becker <nbecker@nbecker2> - 4.2.1-1
|
|
|
|
- Update to 4.2.1
|
|
|
|
|
2017-02-27 12:04:51 +00:00
|
|
|
* Mon Feb 27 2017 Neal Becker <nbecker@nbecker2> - 4.1-1
|
|
|
|
- Update to 4.1
|
|
|
|
|
2017-02-10 20:51:47 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-23 13:21:35 +00:00
|
|
|
* Fri Dec 23 2016 Neal Becker <nbecker@nbecker2> - 4.0.1-1
|
|
|
|
- Update to 4.0.1
|
|
|
|
|
2016-07-19 07:56:15 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.1-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-05-03 11:17:02 +00:00
|
|
|
* Tue May 03 2016 Neal Becker <ndbecker2@gmail.com> - 3.8.1-1
|
|
|
|
- Update to 3.8.1
|
|
|
|
|
2016-03-29 18:23:36 +00:00
|
|
|
* Tue Mar 29 2016 Neal Becker <ndbecker2@gmail.com> - 3.7.3-1
|
|
|
|
- Update to 3.7.3
|
|
|
|
|
2017-08-11 09:47:27 +00:00
|
|
|
* Thu Feb 25 2016 Neal Becker <ndbecker2@gmail.com> - 3.7.1-1
|
2016-02-25 15:41:29 +00:00
|
|
|
- Update to 3.7.1
|
|
|
|
|
2016-02-04 05:17:19 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-22 13:39:21 +00:00
|
|
|
* Fri Jan 22 2016 Neal Becker <ndbecker2@gmail.com> - 3.6.3-1
|
|
|
|
- Update to 3.6.3
|
|
|
|
|
2015-12-24 22:32:10 +00:00
|
|
|
* Thu Dec 24 2015 Neal Becker <ndbecker2@gmail.com> - 3.6.2-1
|
|
|
|
- Update to 3.6.2
|
|
|
|
|
2015-09-12 00:41:14 +00:00
|
|
|
* Fri Sep 11 2015 Neal Becker <ndbecker2@gmail.com> - 3.5.1-1
|
|
|
|
- Update to 3.5.1
|
|
|
|
|
2015-08-12 11:36:21 +00:00
|
|
|
* Wed Aug 12 2015 Neal Becker <ndbecker2@gmail.com> - 3.5-1
|
|
|
|
- Update to 3.5
|
|
|
|
|
2015-06-23 11:05:29 +00:00
|
|
|
* Tue Jun 23 2015 Neal Becker <ndbecker2@gmail.com> - 3.4.1-1
|
|
|
|
- Update to 3.4.1
|
|
|
|
- Obsolete emacs-mercurial{-el}
|
2015-06-23 13:09:40 +00:00
|
|
|
- own _emacs_sitelispdir/mercurial
|
|
|
|
- use standard emacs macros
|
2015-06-23 11:05:29 +00:00
|
|
|
|
2015-06-17 20:00:35 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-03 11:31:08 +00:00
|
|
|
* Fri Apr 3 2015 Neal Becker <ndbecker2@gmail.com> - 3.3.3-1
|
|
|
|
- update to 3.3.3
|
|
|
|
|
2015-03-16 23:22:03 +00:00
|
|
|
* Mon Mar 16 2015 Neal Becker <ndbecker2@gmail.com> - 3.3.2-1
|
|
|
|
- Update to 3.3.2
|
|
|
|
- upstream dropped mergetools.rc
|
|
|
|
|
2015-01-24 22:37:17 +00:00
|
|
|
* Sat Jan 24 2015 Ville Skyttä <ville.skytta@iki.fi> - 3.2.3-2
|
|
|
|
- Install bash completion to %%{_datadir}/bash-completion/completions
|
|
|
|
|
2014-12-21 21:09:02 +00:00
|
|
|
* Sun Dec 21 2014 nbecker <ndbecker2@gmail.com> - 3.2.3-1
|
|
|
|
- Fixes CVE-2014-9390
|
|
|
|
|
2014-12-16 00:31:46 +00:00
|
|
|
* Tue Dec 16 2014 nbecker <ndbecker2@gmail.com> - 3.2-1
|
|
|
|
- Update to 3.2.2
|
|
|
|
|
2014-12-16 00:41:18 +00:00
|
|
|
* Sun Oct 19 2014 nbecker <ndbecker2@gmail.com> - 3.2-1.rc
|
|
|
|
- Patch0 no longer needed?
|
|
|
|
- Drop sample.hgrc (from upstream)
|
|
|
|
|
2014-08-17 09:14:31 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 09:03:01 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-30 15:19:52 +00:00
|
|
|
* Fri May 30 2014 nbecker <ndbecker2@gmail.com> - 3.0-1
|
|
|
|
- fix Release
|
|
|
|
|
2014-05-30 15:17:38 +00:00
|
|
|
* Fri May 30 2014 nbecker <ndbecker2@gmail.com> - 3.0-
|
|
|
|
- Update to 3.0
|
|
|
|
|
2014-02-05 00:30:16 +00:00
|
|
|
* Wed Feb 5 2014 nbecker <ndbecker2@gmail.com> - 2.9-1
|
|
|
|
- Update to 2.9
|
|
|
|
|
2013-11-08 01:11:43 +00:00
|
|
|
* Fri Nov 8 2013 nbecker <ndbecker2@gmail.com> - 2.8-1
|
|
|
|
- Update to 2.8
|
|
|
|
|
2013-08-03 10:06:26 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-08 13:22:23 +00:00
|
|
|
* Mon Jul 8 2013 nbecker <ndbecker2@gmail.com> - 2.6.3-1
|
|
|
|
- Update to 2.6.3
|
|
|
|
|
2013-06-06 19:15:39 +00:00
|
|
|
|
2013-06-06 19:18:14 +00:00
|
|
|
* Thu Jun 6 2013 nbecker <ndbecker2@gmail.com> - 2.6.2-1
|
2013-06-06 19:15:39 +00:00
|
|
|
- Update to 2.6.2
|
|
|
|
|
2013-05-08 23:46:48 +00:00
|
|
|
* Wed May 8 2013 nbecker <ndbecker2@gmail.com> - 2.6-1
|
|
|
|
- Update to 2.6
|
|
|
|
|
2013-03-18 11:42:41 +00:00
|
|
|
* Mon Mar 18 2013 nbecker <ndbecker2@gmail.com> - 2.5.2-2
|
|
|
|
- Add hgweb.wsgi
|
|
|
|
|
2013-03-02 15:49:34 +00:00
|
|
|
* Sat Mar 2 2013 nbecker <ndbecker2@gmail.com> - 2.5.2-1
|
|
|
|
- Update to 2.5.2
|
|
|
|
|
2013-02-09 13:14:24 +00:00
|
|
|
* Sat Feb 9 2013 Neal Becker <ndbecker2@gmail.com> - 2.5.1-1
|
|
|
|
- Update to 2.5.1
|
|
|
|
|
2013-02-05 19:08:03 +00:00
|
|
|
* Tue Feb 5 2013 Neal Becker <ndbecker2@gmail.com> - 2.5-1
|
|
|
|
- Update to 2.5
|
|
|
|
|
2012-12-16 11:58:41 +00:00
|
|
|
* Sun Dec 16 2012 Neal Becker <ndbecker2@gmail.com> - 2.4.1-1
|
|
|
|
- Update to 2.4.1
|
|
|
|
|
2012-11-04 12:05:29 +00:00
|
|
|
* Sun Nov 4 2012 Neal Becker <ndbecker2@gmail.com> - 2.4-1
|
|
|
|
- Update to 2.4
|
|
|
|
|
2012-09-05 15:47:55 +00:00
|
|
|
* Wed Sep 5 2012 Neal Becker <ndbecker2@gmail.com> - 2.3.1-1
|
|
|
|
- Update to 2.3.1
|
|
|
|
|
2012-08-13 13:28:09 +00:00
|
|
|
* Mon Aug 13 2012 Neal Becker <ndbecker2@gmail.com> - 2.3-1
|
|
|
|
- Update to 2.3
|
|
|
|
|
2012-07-20 00:35:04 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-09 12:10:48 +00:00
|
|
|
* Mon Jul 9 2012 Neal Becker <ndbecker2@gmail.com> - 2.2.3-1
|
|
|
|
- Update to 2.2.3
|
|
|
|
|
2012-06-03 17:59:27 +00:00
|
|
|
* Sun Jun 3 2012 Neal Becker <ndbecker2@gmail.com> - 2.2.2-1
|
|
|
|
- Update to 2.2.2
|
|
|
|
|
2012-05-25 14:46:42 +00:00
|
|
|
* Fri May 25 2012 Neal Becker <ndbecker2@gmail.com> - 2.2.1-2
|
|
|
|
- Add certs.rc
|
|
|
|
|
2012-05-04 10:33:26 +00:00
|
|
|
* Fri May 4 2012 Neal Becker <ndbecker2@gmail.com> - 2.2.1-1
|
|
|
|
- update to 2.2.1
|
|
|
|
|
2012-05-02 11:08:53 +00:00
|
|
|
* Wed May 2 2012 Neal Becker <ndbecker2@gmail.com> - 2.2-1
|
|
|
|
- Update to 2.2
|
|
|
|
|
2012-04-06 01:02:38 +00:00
|
|
|
* Fri Apr 6 2012 Neal Becker <ndbecker2@gmail.com> - 2.1.2-1
|
|
|
|
- Update to 2.1.2
|
|
|
|
|
2012-03-10 13:52:04 +00:00
|
|
|
* Sat Mar 10 2012 Neal Becker <ndbecker2@gmail.com> - 2.1.1-1
|
|
|
|
- Update to 2.1.1
|
|
|
|
|
2012-01-13 09:44:50 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2012-01-01 23:52:43 +00:00
|
|
|
* Sun Jan 1 2012 Neal Becker <ndbecker2@gmail.com> - 2.0.2-1
|
|
|
|
- Update to 2.0.2
|
|
|
|
|
2011-11-16 00:11:04 +00:00
|
|
|
* Wed Nov 16 2011 Neal Becker <ndbecker2@gmail.com> - 2.0-1
|
|
|
|
- Update to 2.0
|
|
|
|
|
2011-10-11 22:55:27 +00:00
|
|
|
* Tue Oct 11 2011 Neal Becker <ndbecker2@gmail.com> - 1.9.3-2
|
|
|
|
- Fix br 744931 (unowned dir)
|
|
|
|
|
2011-10-02 17:54:54 +00:00
|
|
|
* Sun Oct 2 2011 Neal Becker <ndbecker2@gmail.com> - 1.9.3-1
|
|
|
|
- update to 1.9.3
|
|
|
|
|
2011-08-27 11:13:56 +00:00
|
|
|
* Sat Aug 27 2011 Neal Becker <ndbecker2@gmail.com> - 1.9.2-1
|
|
|
|
- Update to 1.9.2
|
|
|
|
|
2011-08-03 11:54:19 +00:00
|
|
|
* Wed Aug 3 2011 Neal Becker <ndbecker2@gmail.com> - 1.9.1-1
|
|
|
|
- Update to 1.9.1
|
|
|
|
|
2011-07-01 23:53:48 +00:00
|
|
|
* Fri Jul 1 2011 Neal Becker <ndbecker2@gmail.com> - 1.9-2
|
|
|
|
- Remove docutils patch
|
|
|
|
|
2011-07-01 23:45:20 +00:00
|
|
|
* Fri Jul 1 2011 Neal Becker <ndbecker2@gmail.com> - 1.9-1
|
|
|
|
- Update to 1.9
|
|
|
|
|
2011-06-02 14:58:33 +00:00
|
|
|
* Thu Jun 2 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.4-2
|
|
|
|
- Add docutils-0.8 patch
|
|
|
|
|
2011-06-01 22:42:43 +00:00
|
|
|
* Wed Jun 1 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.4-1
|
|
|
|
- Update to 1.8.4
|
|
|
|
|
2011-04-02 17:42:47 +00:00
|
|
|
* Sat Apr 2 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.2-1
|
|
|
|
- update to 1.8.2
|
|
|
|
|
2011-03-14 23:12:27 +00:00
|
|
|
* Mon Mar 14 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.1-2
|
|
|
|
- Try BR emacs-nox
|
|
|
|
|
2011-03-14 17:47:29 +00:00
|
|
|
* Mon Mar 14 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.1-1
|
|
|
|
- Update to 1.8.1
|
|
|
|
|
2011-03-02 12:15:16 +00:00
|
|
|
* Wed Mar 2 2011 Neal Becker <ndbecker2@gmail.com> - 1.8-1
|
|
|
|
- Update to 1.8
|
|
|
|
|
2011-02-08 17:27:44 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-05 16:29:48 +00:00
|
|
|
* Sat Feb 5 2011 Neal Becker <ndbecker2@gmail.com> - 1.7.5-1
|
|
|
|
- Update to 1.7.5
|
|
|
|
|
2011-01-02 19:00:22 +00:00
|
|
|
* Sun Jan 2 2011 Neal Becker <ndbecker2@gmail.com> - 1.7.3-1
|
|
|
|
- Update to 1.7.3
|
|
|
|
|
2010-12-02 13:20:23 +00:00
|
|
|
* Thu Dec 2 2010 Neal Becker <ndbecker2@gmail.com> - 1.7.2-1
|
|
|
|
- Update to 1.7.2
|
|
|
|
|
2010-11-16 01:26:42 +00:00
|
|
|
* Mon Nov 15 2010 Neal Becker <ndbecker2@gmail.com> - 1.7.1-1
|
|
|
|
- Update to 1.7.1
|
|
|
|
|
2010-11-01 23:45:06 +00:00
|
|
|
* Mon Nov 1 2010 Neal Becker <ndbecker2@gmail.com> - 1.7-3
|
|
|
|
- BR python-docutils
|
|
|
|
|
2010-11-01 23:33:24 +00:00
|
|
|
* Mon Nov 1 2010 Neal Becker <ndbecker2@gmail.com> - 1.7-2
|
|
|
|
- Make that 1.7
|
|
|
|
|
2010-11-01 23:31:43 +00:00
|
|
|
* Mon Nov 1 2010 Neal Becker <ndbecker2@gmail.com> - 1.7.0-1
|
|
|
|
- Update to 1.7.0
|
|
|
|
|
2010-10-21 17:09:31 +00:00
|
|
|
* Thu Oct 21 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-4
|
|
|
|
- Try another way to own directories
|
|
|
|
|
2010-10-20 21:51:27 +00:00
|
|
|
* Wed Oct 20 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-3
|
|
|
|
- Fixup unowned directories
|
|
|
|
|
2010-10-06 12:41:06 +00:00
|
|
|
* Wed Oct 6 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-3
|
|
|
|
- patch i18n.py so hg will find moved locale files
|
|
|
|
|
2010-10-01 18:08:20 +00:00
|
|
|
* Fri Oct 1 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-1
|
|
|
|
- Update to 1.6.4
|
|
|
|
|
2010-08-27 11:20:43 +00:00
|
|
|
* Fri Aug 27 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.3-1
|
|
|
|
- Fix some rpmlint issues
|
|
|
|
|
2010-08-26 18:25:21 +00:00
|
|
|
* Thu Aug 26 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.3-1
|
|
|
|
- Update to 1.6.3
|
|
|
|
|
2010-08-02 23:10:58 +00:00
|
|
|
* Mon Aug 2 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.2-1
|
|
|
|
- Update to 1.6.2
|
|
|
|
|
2010-07-22 02:30:43 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.6-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-07-04 19:24:55 +00:00
|
|
|
* Sun Jul 4 2010 Neal Becker <ndbecker2@gmail.com> - 1.6-2
|
|
|
|
- Remove hg-viz, git-rev-tree
|
|
|
|
|
2010-07-04 19:14:49 +00:00
|
|
|
* Sun Jul 4 2010 Neal Becker <ndbecker2@gmail.com> - 1.6-1
|
|
|
|
- Update to 1.6
|
2010-07-04 19:23:14 +00:00
|
|
|
- git-viz is removed
|
2010-07-04 19:14:49 +00:00
|
|
|
|
|
|
|
* Fri Jun 25 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.4-1
|
|
|
|
- Don't install mercurial-convert-repo (use hg convert instead)
|
|
|
|
|
2010-06-02 20:39:34 +00:00
|
|
|
* Wed Jun 2 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.4-1
|
|
|
|
- Update to 1.5.4
|
|
|
|
|
2010-05-14 11:31:53 +00:00
|
|
|
* Fri May 14 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.3-1
|
|
|
|
- Update to 1.5.3
|
|
|
|
|
2010-05-03 11:47:26 +00:00
|
|
|
* Mon May 3 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.2-1
|
|
|
|
- update to 1.5.2
|
|
|
|
|
2010-04-05 13:09:36 +00:00
|
|
|
* Mon Apr 5 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.1-1
|
|
|
|
- Update to 1.5.1
|
|
|
|
|
2010-03-07 03:52:06 +00:00
|
|
|
* Sat Mar 6 2010 Neal Becker <ndbecker2@gmail.com> - 1.5-2
|
|
|
|
- doc/ja seems to be gone
|
|
|
|
|
2010-03-07 03:44:23 +00:00
|
|
|
* Sat Mar 6 2010 Neal Becker <ndbecker2@gmail.com> - 1.5-1
|
|
|
|
- Update to 1.5
|
|
|
|
|
|
|
|
* Fri Feb 5 2010 Neal Becker <ndbecker2@gmail.com> - 1.4.3-2
|
|
|
|
- License changed to gplv2+
|
|
|
|
|
2010-02-01 23:52:58 +00:00
|
|
|
* Mon Feb 1 2010 Neal Becker <ndbecker2@gmail.com> - 1.4.3-1
|
|
|
|
- Update to 1.4.3
|
|
|
|
|
2010-01-02 15:29:56 +00:00
|
|
|
* Sat Jan 2 2010 Neal Becker <ndbecker2@gmail.com> - 1.4.2-1
|
|
|
|
- Update to 1.4.2
|
|
|
|
|
2009-12-02 12:22:05 +00:00
|
|
|
* Wed Dec 2 2009 Neal Becker <ndbecker2@gmail.com> - 1.4.1-1
|
|
|
|
- Update to 1.4.1
|
|
|
|
|
|
|
|
* Mon Nov 16 2009 Neal Becker <ndbecker2@gmail.com> - 1.4-1.1
|
|
|
|
- Bump to 1.4-1.1
|
|
|
|
|
2009-11-16 21:42:58 +00:00
|
|
|
* Mon Nov 16 2009 Neal Becker <ndbecker2@gmail.com> - 1.4-1
|
|
|
|
- Update to 1.4
|
|
|
|
|
2009-07-24 14:44:46 +00:00
|
|
|
* Fri Jul 24 2009 Neal Becker <ndbecker2@gmail.com> - 1.3.1-3
|
|
|
|
- Disable self-tests
|
|
|
|
|
2009-07-24 12:03:35 +00:00
|
|
|
* Fri Jul 24 2009 Neal Becker <ndbecker2@gmail.com> - 1.3.1-2
|
|
|
|
- Update to 1.3.1
|
|
|
|
|
2009-07-02 01:38:38 +00:00
|
|
|
* Wed Jul 1 2009 Neal Becker <ndbecker2@gmail.com> - 1.3-2
|
|
|
|
- Re-enable tests since they now pass
|
|
|
|
|
2009-07-02 01:15:38 +00:00
|
|
|
* Wed Jul 1 2009 Neal Becker <ndbecker2@gmail.com> - 1.3-1
|
|
|
|
- Update to 1.3
|
|
|
|
|
2009-03-21 10:52:28 +00:00
|
|
|
* Sat Mar 21 2009 Neal Becker <ndbecker2@gmail.com> - 1.2.1-1
|
|
|
|
- Update to 1.2.1
|
2009-03-21 11:17:23 +00:00
|
|
|
- Tests remain disabled due to failures
|
2009-03-21 10:52:28 +00:00
|
|
|
|
2009-03-05 01:52:29 +00:00
|
|
|
* Wed Mar 4 2009 Neal Becker <ndbecker2@gmail.com> - 1.2-2
|
|
|
|
- patch0 for filemerge bug should not be needed
|
|
|
|
|
2009-03-05 01:42:28 +00:00
|
|
|
* Wed Mar 4 2009 Neal Becker <ndbecker2@gmail.com> - 1.2-1
|
|
|
|
- Update to 1.2
|
|
|
|
|
2009-02-24 19:24:04 +00:00
|
|
|
* Tue Feb 24 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-7
|
|
|
|
- Use noreplace option on config
|
|
|
|
|
2009-02-23 20:06:21 +00:00
|
|
|
* Mon Feb 23 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-6
|
|
|
|
- Fix typo
|
|
|
|
|
2009-02-23 19:53:43 +00:00
|
|
|
* Mon Feb 23 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-5
|
|
|
|
- Own directories bash_completion.d and zsh/site-functions
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=487015
|
|
|
|
|
2009-02-09 12:50:03 +00:00
|
|
|
* Mon Feb 9 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-4
|
|
|
|
- Mark mergetools.rc as config
|
|
|
|
|
2009-02-07 12:23:53 +00:00
|
|
|
* Sat Feb 7 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-3
|
2009-02-07 12:26:11 +00:00
|
|
|
- Patch mergetools.rc to fix filemerge bug
|
2009-02-07 12:23:53 +00:00
|
|
|
|
2009-01-01 17:46:04 +00:00
|
|
|
* Thu Jan 1 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-2
|
|
|
|
- Rename mergetools.rc -> mergetools.rc.sample
|
|
|
|
|
2009-01-01 17:40:35 +00:00
|
|
|
* Thu Jan 1 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-1
|
|
|
|
- Update to 1.1.2
|
|
|
|
|
|
|
|
* Wed Dec 24 2008 Neal Becker <ndbecker2@gmail.com> - 1.1.1-3
|
|
|
|
- Install mergetools.rc as mergetools.rc.sample
|
|
|
|
|
2008-12-21 14:17:05 +00:00
|
|
|
* Sun Dec 21 2008 Neal Becker <ndbecker2@gmail.com> - 1.1.1-2
|
|
|
|
- Fix typo
|
|
|
|
|
2008-12-21 13:50:33 +00:00
|
|
|
* Sun Dec 21 2008 Neal Becker <ndbecker2@gmail.com> - 1.1.1-1
|
|
|
|
- Update to 1.1.1
|
|
|
|
|
2008-12-04 18:02:25 +00:00
|
|
|
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.1-2
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-12-02 23:30:41 +00:00
|
|
|
* Tue Dec 2 2008 Neal Becker <ndbecker2@gmail.com> - 1.1-1
|
|
|
|
- Update to 1.1
|
|
|
|
|
|
|
|
* Mon Dec 1 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.2-4
|
|
|
|
- Bump tag
|
|
|
|
|
2008-12-01 16:21:56 +00:00
|
|
|
* Mon Dec 1 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.2-3
|
|
|
|
- Remove BR asciidoc
|
|
|
|
- Use macro for python executable
|
|
|
|
|
2008-11-29 16:55:38 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0.2-2
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-08-15 21:04:25 +00:00
|
|
|
* Fri Aug 15 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.2-1
|
|
|
|
- Update to 1.0.2
|
|
|
|
|
2008-06-15 14:44:25 +00:00
|
|
|
* Sun Jun 15 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.1-4
|
|
|
|
- Bitten by expansion of commented out macro (again)
|
|
|
|
|
2008-06-15 12:52:43 +00:00
|
|
|
* Sun Jun 15 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.1-3
|
|
|
|
- Add BR pkgconfig
|
|
|
|
|
2008-06-15 12:49:02 +00:00
|
|
|
* Sun Jun 15 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.1-2
|
2008-06-15 12:15:19 +00:00
|
|
|
- Update to 1.0.1
|
2008-06-15 12:49:02 +00:00
|
|
|
- Fix emacs_version, etc macros (need expand)
|
2008-06-15 12:21:31 +00:00
|
|
|
- Remove patch0
|
2008-06-15 12:15:19 +00:00
|
|
|
|
|
|
|
* Mon Jun 2 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-15
|
|
|
|
- Bump release tag
|
|
|
|
|
2008-04-17 10:43:08 +00:00
|
|
|
* Thu Apr 17 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-14
|
|
|
|
- Oops, fix %%files due to last change
|
|
|
|
|
2008-04-16 13:23:23 +00:00
|
|
|
* Wed Apr 16 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-13
|
|
|
|
- install mergetools.hgrc as mergetools.rc
|
|
|
|
|
2008-04-12 13:54:53 +00:00
|
|
|
* Sat Apr 12 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-12
|
|
|
|
- Remove xemacs pkg - this is moved to xemacs-extras
|
2018-02-09 08:05:08 +00:00
|
|
|
- Own %%{python_sitearch}/{mercurial,hgext} dirs
|
2008-04-12 13:54:53 +00:00
|
|
|
|
2008-04-10 11:17:39 +00:00
|
|
|
* Thu Apr 10 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-11
|
|
|
|
- Use install -p to install .el{c} files
|
|
|
|
- Don't (load mercurial) by default.
|
|
|
|
|
2008-04-09 14:44:18 +00:00
|
|
|
* Wed Apr 9 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-10
|
|
|
|
- Patch to hgk from Mads Kiilerich <mads@kiilerich.com>
|
|
|
|
|
2008-04-08 15:14:50 +00:00
|
|
|
* Tue Apr 8 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-9
|
|
|
|
- Add '-l mercurial.el' for emacs also
|
|
|
|
|
2008-04-08 15:01:42 +00:00
|
|
|
* Tue Apr 8 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-8
|
|
|
|
- BR xemacs-packages-extra
|
|
|
|
|
2008-04-08 14:51:57 +00:00
|
|
|
* Tue Apr 8 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-7
|
|
|
|
- Various fixes
|
|
|
|
|
2008-04-08 14:33:59 +00:00
|
|
|
* Tue Apr 8 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-6
|
|
|
|
- fix to comply with emacs packaging guidelines
|
|
|
|
|
|
|
|
* Thu Mar 27 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-5
|
|
|
|
- Move hgk-related py files to hgk
|
|
|
|
- Put mergetools.hgrc in /etc/mercurial/hgrc.d
|
|
|
|
- Add hgk.rc and put in /etc/mercurial/hgrc.d
|
|
|
|
|
2008-03-26 14:57:05 +00:00
|
|
|
* Wed Mar 26 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-4
|
|
|
|
- Rename mercurial-site-start -> mercurial-site-start.el
|
|
|
|
|
|
|
|
* Wed Mar 26 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-3
|
|
|
|
- Incorprate suggestions from hopper@omnifarious.org
|
|
|
|
|
2008-03-26 11:06:47 +00:00
|
|
|
* Wed Mar 26 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-2
|
|
|
|
- Add site-start
|
|
|
|
|
2008-03-26 00:35:20 +00:00
|
|
|
* Tue Mar 25 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-1
|
|
|
|
- Update to 1.0
|
|
|
|
- Disable check for now - 1 test fails
|
|
|
|
- Move emacs to separate package
|
|
|
|
- Add check
|
|
|
|
|
2008-02-19 16:03:38 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.9.5-7
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-11-10 00:34:04 +00:00
|
|
|
* Fri Nov 9 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-6
|
|
|
|
- rpmlint fixes
|
|
|
|
|
2007-11-09 23:34:32 +00:00
|
|
|
* Fri Nov 9 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-5
|
|
|
|
- /etc/mercurial/hgrc.d missing
|
|
|
|
|
2007-11-09 20:17:04 +00:00
|
|
|
* Fri Nov 9 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-3
|
|
|
|
- Fix to last change
|
|
|
|
|
2007-11-09 19:57:45 +00:00
|
|
|
* Fri Nov 9 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-2
|
|
|
|
- mkdir /etc/mercurial/hgrc.d for plugins
|
|
|
|
|
2007-11-04 01:47:40 +00:00
|
|
|
* Tue Oct 23 2007 <ndbecker2@gmail.com> - 0.9.5-2
|
|
|
|
- Bump tag to fix confusion
|
|
|
|
|
2007-10-23 02:28:25 +00:00
|
|
|
* Mon Oct 15 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-1
|
|
|
|
- Sync with spec file from mercurial
|
|
|
|
|
2007-09-23 00:46:12 +00:00
|
|
|
* Sat Sep 22 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-8
|
|
|
|
- Just cp contrib tree.
|
|
|
|
- Revert install -O2
|
|
|
|
|
2007-09-21 01:21:24 +00:00
|
|
|
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-7
|
|
|
|
- Change setup.py install to -O2 to get bytecompile on EL-4
|
|
|
|
|
2007-09-20 23:22:59 +00:00
|
|
|
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-6
|
|
|
|
- Revert last change.
|
|
|
|
|
2007-09-20 23:06:17 +00:00
|
|
|
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-5
|
2007-11-10 00:34:04 +00:00
|
|
|
- Use {ghost} on contrib, otherwise EL-4 build fails
|
2007-09-20 23:06:17 +00:00
|
|
|
|
2007-09-20 22:02:29 +00:00
|
|
|
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-4
|
2007-11-10 00:34:04 +00:00
|
|
|
- remove {_datadir}/contrib stuff for now
|
2007-09-20 22:02:29 +00:00
|
|
|
|
2007-09-20 18:58:24 +00:00
|
|
|
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-3
|
|
|
|
- Fix mercurial-install-contrib.patch (/usr/share/mercurial->/usr/share/mercurial/contrib)
|
|
|
|
|
|
|
|
* Wed Aug 29 2007 Jonathan Shapiro <shap@eros-os.com> - 0.9.4-2
|
|
|
|
- update to 0.9.4-2
|
|
|
|
- install contrib directory
|
|
|
|
- set up required path for hgk
|
|
|
|
- install man5 man pages
|
|
|
|
|
2007-08-23 16:09:33 +00:00
|
|
|
* Thu Aug 23 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-1
|
|
|
|
- update to 0.9.4
|
|
|
|
|
2007-01-05 20:32:11 +00:00
|
|
|
* Wed Jan 3 2007 Jeremy Katz <katzj@redhat.com> - 0.9.3-1
|
|
|
|
- update to 0.9.3
|
|
|
|
- remove asciidoc files now that we have them as manpages
|
|
|
|
|
2006-12-11 19:13:43 +00:00
|
|
|
* Mon Dec 11 2006 Jeremy Katz <katzj@redhat.com> - 0.9.2-1
|
|
|
|
- update to 0.9.2
|
|
|
|
|
2006-08-29 03:06:29 +00:00
|
|
|
* Mon Aug 28 2006 Jeremy Katz <katzj@redhat.com> - 0.9.1-2
|
|
|
|
- rebuild
|
|
|
|
|
2006-07-25 18:57:45 +00:00
|
|
|
* Tue Jul 25 2006 Jeremy Katz <katzj@redhat.com> - 0.9.1-1
|
|
|
|
- update to 0.9.1
|
|
|
|
|
2006-05-12 20:57:53 +00:00
|
|
|
* Fri May 12 2006 Mihai Ibanescu <misa@redhat.com> - 0.9-1
|
|
|
|
- update to 0.9
|
|
|
|
|
2006-04-10 19:20:25 +00:00
|
|
|
* Mon Apr 10 2006 Jeremy Katz <katzj@redhat.com> - 0.8.1-1
|
|
|
|
- update to 0.8.1
|
|
|
|
- add man pages (#188144)
|
|
|
|
|
2006-03-17 07:02:33 +00:00
|
|
|
* Fri Mar 17 2006 Jeremy Katz <katzj@redhat.com> - 0.8-3
|
|
|
|
- rebuild
|
|
|
|
|
2006-02-17 20:05:53 +00:00
|
|
|
* Fri Feb 17 2006 Jeremy Katz <katzj@redhat.com> - 0.8-2
|
|
|
|
- rebuild
|
|
|
|
|
2006-01-30 16:54:55 +00:00
|
|
|
* Mon Jan 30 2006 Jeremy Katz <katzj@redhat.com> - 0.8-1
|
|
|
|
- update to 0.8
|
|
|
|
|
2005-09-22 18:45:44 +00:00
|
|
|
* Thu Sep 22 2005 Jeremy Katz <katzj@redhat.com>
|
|
|
|
- add contributors to %%doc
|
|
|
|
|
2005-09-20 21:07:51 +00:00
|
|
|
* Tue Sep 20 2005 Jeremy Katz <katzj@redhat.com> - 0.7
|
|
|
|
- update to 0.7
|
|
|
|
|
2005-08-22 17:06:49 +00:00
|
|
|
* Mon Aug 22 2005 Jeremy Katz <katzj@redhat.com> - 0.6c
|
|
|
|
- update to 0.6c
|
|
|
|
|
2005-07-12 21:51:47 +00:00
|
|
|
* Tue Jul 12 2005 Jeremy Katz <katzj@redhat.com> - 0.6b
|
|
|
|
- update to new upstream 0.6b
|
|
|
|
|
2005-07-01 19:53:16 +00:00
|
|
|
* Fri Jul 1 2005 Jeremy Katz <katzj@redhat.com> - 0.6-1
|
|
|
|
- Initial build.
|
|
|
|
|