Blame SPECS/clufter.spec

5706e2
# virtual provides:
5706e2
#   clufter        -> clufter-cli
5706e2
#   clufter-lib    -> python.+-clufter (any if multiple)
5706e2
#   python-clufter -> python2-clufter (subject of change)
5706e2
5706e2
# conditionals:
5706e2
%bcond_with python2
5706e2
5706e2
# https://fedoraproject.org/wiki/Packaging:Python_Appendix#Manual_byte_compilation
5706e2
%global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
5706e2
5706e2
Name:           clufter
5706e2
Version:        0.77.1
5706e2
Release:        5%{?dist}
5706e2
Summary:        Tool/library for transforming/analyzing cluster configuration formats
5706e2
License:        GPLv2+
5706e2
URL:            https://pagure.io/%{name}
5706e2
5706e2
BuildRequires:  gcc
5706e2
# required for autosetup macro
5706e2
BuildRequires:  git-core
5706e2
5706e2
%if %{with python2}
5706e2
# Python 2 related
5706e2
BuildRequires:  python2-devel
5706e2
BuildRequires:  python2-setuptools
5706e2
BuildRequires:  python2-lxml
5706e2
%endif
5706e2
5706e2
# Python 3 related
5706e2
BuildRequires:  python3-devel
5706e2
BuildRequires:  python3-setuptools
5706e2
BuildRequires:  python3-lxml
5706e2
5706e2
# following to ensure "which bash" (and, in extension, "which sh") works
5706e2
BuildRequires:  bash which
5706e2
5706e2
BuildRequires:  pkgconfig(libxml-2.0)
5706e2
# needed for schemadir path pointer
5706e2
BuildRequires:  pkgconfig(pacemaker)
5706e2
# needed for schemas themselves
5706e2
BuildRequires:  pacemaker
5706e2
# needed to squash multi-file schemas to single file
5706e2
BuildRequires:  jing
5706e2
# needed for xsltproc and xmllint respectively
5706e2
BuildRequires:  libxslt libxml2
5706e2
5706e2
#global test_version
5706e2
%global testver      %{?test_version}%{?!test_version:%{version}}
5706e2
5706e2
Source0:        https://people.redhat.com/jpokorny/pkgs/%{name}/%{name}-%{version}.tar.gz
5706e2
Source1:        https://people.redhat.com/jpokorny/pkgs/%{name}/%{name}-%{testver}-tests.tar.xz
5706e2
Source2:        https://pagure.io/%{name}/raw/v%{version}/f/misc/fix-jing-simplified-rng.xsl
5706e2
Source3:        https://pagure.io/%{name}/raw/v%{version}/f/misc/pacemaker-borrow-schemas
5706e2
5706e2
%description
5706e2
While primarily aimed at (CMAN,rgmanager)->(Corosync/CMAN,Pacemaker) cluster
5706e2
stacks configuration conversion (as per RHEL trend), the command-filter-format
5706e2
framework (capable of XSLT) offers also other uses through its plugin library.
5706e2
5706e2
%package cli
5706e2
Summary:        Tool for transforming/analyzing cluster configuration formats
5706e2
Provides:       %{name} = %{version}-%{release}
5706e2
5706e2
BuildRequires:  bash-completion
5706e2
5706e2
BuildRequires:  help2man
5706e2
5706e2
# following for pkg_resources module
5706e2
%if 0%{?rhel} > 7
5706e2
Requires:       platform-python-setuptools
5706e2
%else
5706e2
Requires:       python3-setuptools
5706e2
%endif
5706e2
Requires:       python3-%{name} = %{version}-%{release}
5706e2
Requires:       %{_bindir}/nano
5706e2
BuildArch:      noarch
5706e2
5706e2
%description cli
5706e2
While primarily aimed at (CMAN,rgmanager)->(Corosync/CMAN,Pacemaker) cluster
5706e2
stacks configuration conversion (as per RHEL trend), the command-filter-format
5706e2
framework (capable of XSLT) offers also other uses through its plugin library.
5706e2
5706e2
This package contains %{name} command-line interface for the underlying
5706e2
library (packaged as python3-%{name}).
5706e2
5706e2
%if %{with python2}
5706e2
%package -n python2-%{name}
5706e2
Summary:        Library for transforming/analyzing cluster configuration formats
5706e2
License:        GPLv2+ and GFDL
5706e2
5706e2
Provides:       %{name}-lib = %{version}-%{release}
5706e2
%{?python_provide:%python_provide python2-%{name}}
5706e2
Requires:       %{name}-bin = %{version}-%{release}
5706e2
Requires:       python2-lxml
5706e2
BuildArch:      noarch
5706e2
5706e2
%description -n python2-%{name}
5706e2
While primarily aimed at (CMAN,rgmanager)->(Corosync/CMAN,Pacemaker) cluster
5706e2
stacks configuration conversion (as per RHEL trend), the command-filter-format
5706e2
framework (capable of XSLT) offers also other uses through its plugin library.
5706e2
5706e2
This package contains %{name} library including built-in plugins.
5706e2
%endif
5706e2
5706e2
%package -n python3-%{name}
5706e2
Summary:        Library for transforming/analyzing cluster configuration formats
5706e2
License:        GPLv2+ and GFDL
5706e2
5706e2
Provides:       %{name}-lib = %{version}-%{release}
5706e2
%{?python_provide:%python_provide python3-%{name}}
5706e2
%if %{without python2}
5706e2
Obsoletes:      python-%{name} < %{version}-%{release}
5706e2
Obsoletes:      python2-%{name} < %{version}-%{release}
5706e2
%endif
5706e2
Requires:       python3-lxml
5706e2
Requires:       %{name}-bin = %{version}-%{release}
5706e2
BuildArch:      noarch
5706e2
5706e2
%description -n python3-%{name}
5706e2
While primarily aimed at (CMAN,rgmanager)->(Corosync/CMAN,Pacemaker) cluster
5706e2
stacks configuration conversion (as per RHEL trend), the command-filter-format
5706e2
framework (capable of XSLT) offers also other uses through its plugin library.
5706e2
5706e2
This package contains %{name} library including built-in plugins.
5706e2
5706e2
%package bin
5706e2
Summary:        Common internal compiled files for %{name}
5706e2
License:        GPLv2+
5706e2
5706e2
Requires:       %{name}-common = %{version}-%{release}
5706e2
5706e2
%description bin
5706e2
While primarily aimed at (CMAN,rgmanager)->(Corosync/CMAN,Pacemaker) cluster
5706e2
stacks configuration conversion (as per RHEL trend), the command-filter-format
5706e2
framework (capable of XSLT) offers also other uses through its plugin library.
5706e2
5706e2
This package contains internal, arch-specific files for %{name}.
5706e2
5706e2
%package common
5706e2
Summary:        Common internal data files for %{name}
5706e2
License:        GPLv2+
5706e2
BuildArch:      noarch
5706e2
5706e2
%description common
5706e2
While primarily aimed at (CMAN,rgmanager)->(Corosync/CMAN,Pacemaker) cluster
5706e2
stacks configuration conversion (as per RHEL trend), the command-filter-format
5706e2
framework (capable of XSLT) offers also other uses through its plugin library.
5706e2
5706e2
This package contains internal, arch-agnostic files for %{name}.
5706e2
5706e2
%package lib-general
5706e2
Summary:        Extra %{name} plugins usable for/as generic/auxiliary products
5706e2
Requires:       %{name}-lib = %{version}-%{release}
5706e2
BuildArch:      noarch
5706e2
5706e2
%description lib-general
5706e2
This package contains set of additional plugins targeting variety of generic
5706e2
formats often serving as a byproducts in the intermediate steps of the overall
5706e2
process arrangement: either experimental commands or internally unused,
5706e2
reusable formats and filters.
5706e2
5706e2
%package lib-ccs
5706e2
Summary:        Extra plugins for transforming/analyzing CMAN configuration
5706e2
Requires:       %{name}-lib-general = %{version}-%{release}
5706e2
BuildArch:      noarch
5706e2
5706e2
%description lib-ccs
5706e2
This package contains set of additional plugins targeting CMAN cluster
5706e2
configuration: either experimental commands or internally unused, reusable
5706e2
formats and filters.
5706e2
5706e2
%package lib-pcs
5706e2
Summary:        Extra plugins for transforming/analyzing Pacemaker configuration
5706e2
Requires:       %{name}-lib-general = %{version}-%{release}
5706e2
BuildArch:      noarch
5706e2
5706e2
%description lib-pcs
5706e2
This package contains set of additional plugins targeting Pacemaker cluster
5706e2
configuration: either experimental commands or internally unused, reusable
5706e2
formats and filters.
5706e2
5706e2
%prep
5706e2
%autosetup -p1 -S git -b 1
5706e2
5706e2
%if "%{testver}" != "%{version}"
5706e2
    %{__cp} -a ../"%{name}-%{testver}"/* .
5706e2
%endif
5706e2
5706e2
## for some esoteric reason, the line above has to be empty
5706e2
%{__python3} setup.py saveopts -f setup.cfg pkg_prepare \
5706e2
                      --ccs-flatten='%{_libexecdir}/%{name}-%{version}/ccs_flatten' \
5706e2
                      --editor='%{_bindir}/nano' \
5706e2
                      --extplugins-shared='%{_datarootdir}/%{name}/ext-plugins' \
5706e2
                      --ra-metadata-dir='%{_datadir}/cluster' \
5706e2
                      --ra-metadata-ext='metadata' \
5706e2
                      --shell-posix='%(which sh 2>/dev/null || echo /bin/SHELL-POSIX)' \
5706e2
                      --shell-bashlike='%(which bash 2>/dev/null || echo /bin/SHELL-BASHLIKE)'
5706e2
%{__python3} setup.py saveopts -f setup.cfg pkg_prepare \
5706e2
  --report-bugs='https://bugzilla.redhat.com/enter_bug.cgi?product=Fedora&component=%{name}'
5706e2
5706e2
%build
5706e2
%if %{with python2}
5706e2
%py2_build
5706e2
%endif
5706e2
# see https://fedoraproject.org/wiki/Changes/python3_c.utf-8_locale;
5706e2
# specifically:
5706e2
#   File "setup.py", line 466, in _pkg_prepare_file
5706e2
#     content = fr.read()
5706e2
#   File "/usr/lib64/python3.5/encodings/ascii.py", line 26, in decode
5706e2
#     return codecs.ascii_decode(input, self.errors)[0]
5706e2
# UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 221: ordinal not in range(128)
5706e2
export LC_ALL=C.UTF-8 LANG=C.UTF-8
5706e2
%py3_build
5706e2
5706e2
%{__python3} -I ./run-dev --skip-ext --completion-bash 2>/dev/null \
5706e2
  | sed 's|run[-_]dev|%{name}|g' > .bashcomp
5706e2
# generate man pages (proper commands and aliases from a sorted sequence)
5706e2
%{__mkdir_p} -- .manpages/man1
5706e2
{ echo; %{__python3} -I ./run-dev -l | sed -n 's|^  \(\S\+\).*|\1|p' \
5706e2
  | sort; } > .subcmds
5706e2
sed -e 's:\(.\+\):\\\&\\fIrun_dev-\1\\fR\\\|(1), :' \
5706e2
  -e '1s|\(.*\)|\[SEE ALSO\]\n|' \
5706e2
  -e '$s|\(.*\)|\1\nand perhaps more|' \
5706e2
  .subcmds > .see-also
5706e2
help2man -N -h -H -i .see-also \
5706e2
  -n "$(sed -n '2s|[^(]\+(\([^)]\+\))|\1|p' README)" \
5706e2
  '%{__python3} -I ./run-dev' | sed 's|run\\\?[-_]dev|%{name}|g' \
5706e2
  > ".manpages/man1/%{name}.1"
5706e2
while read cmd; do
5706e2
  [ -n "${cmd}" ] || continue
5706e2
  echo -e "#\!/bin/sh\n{ [ \$# -ge 1 ] && [ \"\$1\" = \"--version\" ] \
5706e2
  && %{__python3} -I ./run-dev \"\$@\" \
5706e2
  || %{__python3} -I ./run-dev \"${cmd}\" \"\$@\"; }" > ".tmp-${cmd}"
5706e2
  chmod +x ".tmp-${cmd}"
5706e2
  grep -v "^${cmd}\$" .subcmds \
5706e2
    | grep -e '^$' -e "$(echo ${cmd} | cut -d- -f1)\(-\|\$\)" \
5706e2
    | sed -e 's:\(.\+\):\\\&\\fIrun_dev-\1\\fR\\\|(1), :' \
5706e2
      -e '1s|\(.*\)|\[SEE ALSO\]\n\\\&\\fIrun_dev\\fR\\\|(1), \n|' \
5706e2
      -e '$s|\(.*\)|\1\nand perhaps more|' > .see-also
5706e2
  # XXX uses ";;&" bashism
5706e2
  case "${cmd}" in
5706e2
  ccs[2-]*)
5706e2
    sed -i \
5706e2
      '1s:\(.*\):\1\n\\\&\\fIcluster.conf\\fR\\\|(5), \\\&\\fIccs\\fR\\\|(7), :' \
5706e2
    .see-also
5706e2
    ;;&
5706e2
  ccs2pcs*)
5706e2
    sed -i \
5706e2
      '1s:\(.*\):\1\n\\\&\\fI%{_pkgdocdir}/rgmanager-pacemaker\\fR\\\|, :' \
5706e2
    .see-also
5706e2
    ;;&
5706e2
  *[2-]pcscmd*)
5706e2
    sed -i '1s:\(.*\):\1\n\\\&\\fIpcs\\fR\\\|(8), :' .see-also
5706e2
    ;;&
5706e2
  esac
5706e2
  help2man -N -h -H -i .see-also -n "${cmd}" "./.tmp-${cmd}" \
5706e2
    | sed 's|run\\\?[-_]dev|%{name}|g' \
5706e2
  > ".manpages/man1/%{name}-${cmd}.1"
5706e2
done < .subcmds
5706e2
5706e2
OUTPUTDIR=.schemas POSTPROCESS="%{SOURCE2}" sh "%{SOURCE3}" --clobber
5706e2
5706e2
%install
5706e2
%if %{with python2}
5706e2
%py2_install
5706e2
%endif
5706e2
# see build section
5706e2
export LC_ALL=C.UTF-8 LANG=C.UTF-8
5706e2
%py3_install
5706e2
5706e2
# following is needed due to umask 022 not taking effect(?) leading to 775
5706e2
%{__chmod} -- g-w '%{buildroot}%{_libexecdir}/%{name}-%{version}/ccs_flatten'
5706e2
# %%{_bindir}/%%{name} should have been created
5706e2
test -f '%{buildroot}%{_bindir}/%{name}' \
5706e2
  || %{__install} -D -pm 644 -- '%{buildroot}%{_bindir}/%{name}' \
5706e2
                                '%{buildroot}%{_bindir}/%{name}'
5706e2
5706e2
# move data files from python-specific locations to a single common one
5706e2
# and possibly symlink that back
5706e2
%{__mkdir_p} -- '%{buildroot}%{_datarootdir}/%{name}/formats'
5706e2
for format in cib corosync; do
5706e2
  %{__cp} -a -t '%{buildroot}%{_datarootdir}/%{name}/formats' \
5706e2
          -- "%{buildroot}%{python3_sitelib}/%{name}/formats/${format}"
5706e2
%if %{with python2}
5706e2
  %{__rm} -f -- "%{buildroot}%{python2_sitelib}/%{name}/formats/${format}"/*
5706e2
  ln -s -t "%{buildroot}%{python2_sitelib}/%{name}/formats/${format}" \
5706e2
     -- $(pushd "%{buildroot}%{_datarootdir}/%{name}/formats/${format}" >/dev/null; \
5706e2
          ls -1A | sed "s:.*:%{_datarootdir}/%{name}/formats/${format}/\\0:")
5706e2
%endif
5706e2
  %{__rm} -f -- "%{buildroot}%{python3_sitelib}/%{name}/formats/${format}"/*
5706e2
  ln -s -t "%{buildroot}%{python3_sitelib}/%{name}/formats/${format}" \
5706e2
     -- $(pushd "%{buildroot}%{_datarootdir}/%{name}/formats/${format}" >/dev/null; \
5706e2
          ls -1A | sed "s:.*:%{_datarootdir}/%{name}/formats/${format}/\\0:")
5706e2
done
5706e2
5706e2
# move ext-plugins from python-specific locations to a single common one
5706e2
# incl. the different sorts of precompiled bytecodes
5706e2
%{__mkdir_p} -- '%{buildroot}%{_datarootdir}/%{name}/ext-plugins'
5706e2
%if %{with python2}
5706e2
mv -t '%{buildroot}%{_datarootdir}/%{name}/ext-plugins' \
5706e2
   -- '%{buildroot}%{python2_sitelib}/%{name}'/ext-plugins/*/
5706e2
%endif
5706e2
%{__cp} -af -t '%{buildroot}%{_datarootdir}/%{name}/ext-plugins' \
5706e2
        -- '%{buildroot}%{python3_sitelib}/%{name}'/ext-plugins/*
5706e2
%{__rm} -rf -- '%{buildroot}%{python3_sitelib}/%{name}'/ext-plugins/*/
5706e2
5706e2
# byte-compilation
5706e2
%if %{with python2}
5706e2
%if "%{?quote:1}" != "" && "%{?quote:1}" != "1"
5706e2
%py_byte_compile %{quote:%{__python2} -Es} %{python2_sitelib}/%{name}
5706e2
%py_byte_compile %{quote:%{__python2} -Es} %{buildroot}%{_datarootdir}/%{name}/ext-plugins
5706e2
%else
5706e2
%py_byte_compile %{__python2} %{python2_sitelib}/%{name}
5706e2
%py_byte_compile %{__python2} %{buildroot}%{_datarootdir}/%{name}/ext-plugins
5706e2
%endif
5706e2
%endif
5706e2
%if "%{?quote:1}" != "" && "%{?quote:1}" != "1"
5706e2
%py_byte_compile %{quote:%{__python3} -I} %{python3_sitelib}/%{name}
5706e2
%py_byte_compile %{quote:%{__python3} -I} %{buildroot}%{_datarootdir}/%{name}/ext-plugins
5706e2
%else
5706e2
%py_byte_compile %{__python3} %{python3_sitelib}/%{name}
5706e2
%py_byte_compile %{__python3} %{buildroot}%{_datarootdir}/%{name}/ext-plugins
5706e2
%endif
5706e2
5706e2
declare bashcompdir="$(pkg-config --variable=completionsdir bash-completion \
5706e2
                       || echo '%{_datadir}/bash-completion/completions')"
5706e2
declare bashcomp="${bashcompdir}/%{name}"
5706e2
%{__install} -D -pm 644 -- \
5706e2
  .bashcomp '%{buildroot}%{_sysconfdir}/%{name}/bash-completion'
5706e2
%{__mkdir_p} -- "%{buildroot}${bashcompdir}"
5706e2
ln -s '%{_sysconfdir}/%{name}/bash-completion' "%{buildroot}${bashcomp}"
5706e2
# own %%{_datadir}/bash-completion in case of ...bash-completion/completions,
5706e2
# more generally any path up to any of /, /usr, /usr/share, /etc
5706e2
while true; do
5706e2
  test "$(dirname "${bashcompdir}")" != "/" \
5706e2
  && test "$(dirname "${bashcompdir}")" != "%{_prefix}" \
5706e2
  && test "$(dirname "${bashcompdir}")" != "%{_datadir}" \
5706e2
  && test "$(dirname "${bashcompdir}")" != "%{_sysconfdir}" \
5706e2
  || break
5706e2
  bashcompdir="$(dirname "${bashcompdir}")"
5706e2
done
5706e2
cat >.bashcomp-files <<-EOF
5706e2
	${bashcompdir}
5706e2
	%dir %{_sysconfdir}/%{name}
5706e2
	%verify(not size md5 mtime) %{_sysconfdir}/%{name}/bash-completion
5706e2
EOF
5706e2
%{__mkdir_p} -- '%{buildroot}%{_mandir}'
5706e2
%{__cp} -a -t '%{buildroot}%{_mandir}' -- .manpages/*
5706e2
%{__cp} -a -f -t '%{buildroot}%{_datarootdir}/%{name}/formats/cib' \
5706e2
              -- .schemas/pacemaker-*.*.rng
5706e2
%{__mkdir_p} -- '%{buildroot}%{_pkgdocdir}'
5706e2
%{__cp} -a -t '%{buildroot}%{_pkgdocdir}' \
5706e2
           -- gpl-2.0.txt doc/*.txt doc/rgmanager-pacemaker
5706e2
5706e2
%check
5706e2
# just a basic sanity check
5706e2
# we need to massage RA metadata files and PATH so the local run works
5706e2
# XXX we could also inject buildroot's site_packages dir to PYTHONPATH
5706e2
declare ret=0 \
5706e2
        ccs_flatten_dir="$(dirname '%{buildroot}%{_libexecdir}/%{name}-%{version}/ccs_flatten')"
5706e2
ln -s '%{buildroot}%{_datadir}/cluster'/*.'metadata' \
5706e2
      "${ccs_flatten_dir}"
5706e2
%if %{with python2}
5706e2
PATH="${PATH:+${PATH}:}${ccs_flatten_dir}" PYTHONEXEC="%{__python2} -Es" ./run-tests
5706e2
%endif
5706e2
# see build section
5706e2
export LC_ALL=C.UTF-8 LANG=C.UTF-8
5706e2
PATH="${PATH:+${PATH}:}${ccs_flatten_dir}" PYTHONEXEC="%{__python3} -I" ./run-tests
5706e2
ret=$?
5706e2
%{__rm} -f -- "${ccs_flatten_dir}"/*.'metadata'
5706e2
[ ${ret} -eq 0 ] || exit ${ret}
5706e2
5706e2
%post cli
5706e2
if [ $1 -gt 1 ]; then  # no gain regenerating it w/ fresh install (same result)
5706e2
declare bashcomp="%{_sysconfdir}/%{name}/bash-completion"
5706e2
%{_bindir}/%{name} --completion-bash > "${bashcomp}" 2>/dev/null || :
5706e2
fi
5706e2
5706e2
%post lib-general
5706e2
declare bashcomp="%{_sysconfdir}/%{name}/bash-completion"
5706e2
# if the completion file is not present, suppose it is not desired
5706e2
test -x '%{_bindir}/%{name}' && test -f "${bashcomp}" \
5706e2
  && %{_bindir}/%{name} --completion-bash > "${bashcomp}" 2>/dev/null || :
5706e2
5706e2
%post lib-ccs
5706e2
declare bashcomp="%{_sysconfdir}/%{name}/bash-completion"
5706e2
# if the completion file is not present, suppose it is not desired
5706e2
test -x '%{_bindir}/%{name}' && test -f "${bashcomp}" \
5706e2
  && %{_bindir}/%{name} --completion-bash > "${bashcomp}" 2>/dev/null || :
5706e2
5706e2
%post lib-pcs
5706e2
declare bashcomp="%{_sysconfdir}/%{name}/bash-completion"
5706e2
# if the completion file is not present, suppose it is not desired
5706e2
test -x '%{_bindir}/%{name}' && test -f "${bashcomp}" \
5706e2
  && %{_bindir}/%{name} --completion-bash > "${bashcomp}" 2>/dev/null || :
5706e2
5706e2
%files cli -f .bashcomp-files
5706e2
%{_mandir}/man1/*.1*
5706e2
%{_bindir}/%{name}
5706e2
5706e2
%if %{with python2}
5706e2
%files -n python2-%{name}
5706e2
%{python2_sitelib}/%{name}
5706e2
%{python2_sitelib}/%{name}-*.egg-info
5706e2
%endif
5706e2
5706e2
%files -n python3-%{name}
5706e2
%{python3_sitelib}/%{name}
5706e2
%{python3_sitelib}/%{name}-*.egg-info
5706e2
5706e2
%files bin
5706e2
%{_libexecdir}/%{name}-%{version}
5706e2
5706e2
%files common
5706e2
%{_datadir}/cluster
5706e2
%{_datarootdir}/%{name}
5706e2
%dir %{_pkgdocdir}
5706e2
%{_pkgdocdir}/*[^[:digit:]]
5706e2
%license %{_pkgdocdir}/*[[:digit:]].txt
5706e2
5706e2
%files lib-general
5706e2
%{_datarootdir}/%{name}/ext-plugins/lib-general
5706e2
5706e2
%files lib-ccs
5706e2
%{_datarootdir}/%{name}/ext-plugins/lib-ccs
5706e2
5706e2
%files lib-pcs
5706e2
%{_datarootdir}/%{name}/ext-plugins/lib-pcs
5706e2
5706e2
%changelog
5706e2
* Fri Nov 16 2018 Lumír Balhar <lbalhar@redhat.com> - 0.77.1-5
5706e2
- Require platform-python-setuptools instead of python3-setuptools
5706e2
- Resolves: rhbz#1650489
5706e2
5706e2
* Wed Oct 24 2018 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.77.1-4
5706e2
- fix missing explicit BuildRequires to ensure environment for compiling
5706e2
  C code per the guidelines, and to fix FTBFS: rhbz#1603658
5706e2
  (contributed by Igor Gnatenko <ignatenkobrain@fedoraproject.org>)
5706e2
- fix a thinko in py_byte_compile space-contained argument passing
5706e2
  (https://github.com/rpm-software-management/rpm/issues/222#issuecomment-410026431)
5706e2
- fix a violation of "unversioned docdirs" guideline
5706e2
  (https://fedoraproject.org//wiki/Changes/UnversionedDocdirs)
5706e2
  Resolves: rhbz#1638027
5706e2
5706e2
* Mon Mar 19 2018 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.77.1-3
5706e2
- fix previously omitted unqualified python invocations, drop no longer
5706e2
  needed byte-compilation products through a full grip on such a process,
5706e2
  and also use -I switch to python3 instead of possibly weaker -Es
5706e2
5706e2
* Mon Mar 19 2018 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.77.1-2
5706e2
- stop creating Python 2 packages by default (nothing in Fedora uses it)
5706e2
- fix a previously omitted unqualified python invocation
5706e2
5706e2
* Thu Mar 15 2018 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.77.1-1
5706e2
- drop no longer favoured Group tag
5706e2
- replace unqualified python invocations with explicit python3
5706e2
- bump upstream package, see https://pagure.io/clufter/releases
5706e2
5706e2
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.77.0-3
5706e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5706e2
5706e2
* Wed Jan 03 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.77.0-2
5706e2
- Update Python 2 dependency declarations to new packaging standards
5706e2
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
5706e2
5706e2
* Sun Nov 12 2017 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.77.0-1
5706e2
- bump upstream package, see https://pagure.io/clufter/releases
5706e2
5706e2
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.76.0-3
5706e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5706e2
5706e2
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.76.0-2
5706e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5706e2
5706e2
* Tue Jun 06 2017 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.76.0-1
5706e2
- factor "borrow validation schemas from pacemaker" out to a separate script
5706e2
- bump upstream package, see https://pagure.io/clufter/releases
5706e2
5706e2
* Fri May 26 2017 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.75.0-1
5706e2
- move nano fallback editor dependency to -cli package [PGissue#1]
5706e2
- bump upstream package, see https://pagure.io/clufter/releases
5706e2
5706e2
* Tue Mar 21 2017 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.70.0-1
5706e2
- split -bin and -common packages, the former becoming the only arch-specific
5706e2
- also move python-specific (entry points, main files) back from -cli package
5706e2
- also rename python-clufter to python2-clufter (former is a legacy alias)
5706e2
- also leverage the above modularization to package python3-clufter in parallel
5706e2
- bump upstream package (version rolling the above changes out)
5706e2
5706e2
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.59.8-2
5706e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5706e2
5706e2
* Wed Jan 18 2017 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.59.8-1
5706e2
- bump upstream package, see
5706e2
  https://github.com/jnpkrn/clufter/releases/tag/v0.59.8
5706e2
5706e2
* Mon Dec 12 2016 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.59.7-1
5706e2
- bump upstream package, see
5706e2
  https://github.com/jnpkrn/clufter/releases/tag/v0.59.7
5706e2
5706e2
* Fri Oct 21 2016 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.59.6-1
5706e2
- bump upstream package, see https://pagure.io/clufter/releases
5706e2
5706e2
* Tue Aug 09 2016 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.59.5-1
5706e2
- bump upstream package, see https://pagure.io/clufter/releases
5706e2
5706e2
* Wed Jul 27 2016 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.59.1-1
5706e2
- bump upstream package, see https://pagure.io/clufter/releases
5706e2
5706e2
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.58.0-2
5706e2
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
5706e2
5706e2
* Mon Jul 18 2016 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.58.0-1
5706e2
- bump upstream package, see https://pagure.io/clufter/releases
5706e2
5706e2
* Fri Jul 01 2016 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.57.0-1
5706e2
- bump upstream package, see https://pagure.io/clufter/releases
5706e2
  (cumulative update incl. 0.56.3 and 0.57.0 changes)
5706e2
- make Python interpreter execution sane
5706e2
- drop license compatibility macro as pointless for Fedora (and EPEL,
5706e2
  when it comes to it) at this point
5706e2
5706e2
* Fri Mar 18 2016 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.56.2-1
5706e2
- bump upstream package, see
5706e2
  https://github.com/jnpkrn/clufter/releases/tag/v0.56.2
5706e2
5706e2
* Tue Feb 09 2016 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.56.1-1
5706e2
- add ability to borrow validation schemas from pacemaker installed along
5706e2
- bump upstream package, see
5706e2
  https://github.com/jnpkrn/clufter/releases/tag/v0.56.1
5706e2
5706e2
* Tue Feb 02 2016 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.56.0-1
5706e2
- move entry_points.txt to clufter-cli sub-package
5706e2
- general spec file refresh (pagure.io as a default project base, etc.)
5706e2
- bump upstream package, see
5706e2
  https://github.com/jnpkrn/clufter/releases/tag/v0.56.0
5706e2
5706e2
* Mon Dec 21 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.55.0-1
5706e2
- auto-generate SEE ALSO sections for the man pages
5706e2
- bump upstream package (intentional jump on upstream front),
5706e2
  see https://github.com/jnpkrn/clufter/releases/tag/v0.55.0
5706e2
5706e2
* Fri Oct 09 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.50.5-1
5706e2
- generate man pages also for offered commands
5706e2
- bump upstream package
5706e2
5706e2
* Thu Sep 10 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.50.4-1
5706e2
- bump upstream package
5706e2
5706e2
* Mon Sep 07 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.50.3-1
5706e2
- bump upstream package
5706e2
5706e2
* Wed Aug 12 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.50.2-1
5706e2
- bump upstream package
5706e2
5706e2
* Wed Jul 15 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.50.1-1
5706e2
- bump upstream package
5706e2
5706e2
* Fri Jul 03 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.50.0-1
5706e2
- bump upstream package (intentional jump on upstream front)
5706e2
5706e2
* Fri Jun 19 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.12.0-1
5706e2
- bump upstream package
5706e2
5706e2
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.2-2
5706e2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5706e2
5706e2
* Mon Jun 01 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.11.2-1
5706e2
- move completion module to clufter-cli sub-package
5706e2
- bump upstream package
5706e2
5706e2
* Tue May 19 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.11.1-1
5706e2
- bump upstream package
5706e2
5706e2
* Wed Apr 15 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.11.0-1
5706e2
- bump upstream package
5706e2
5706e2
* Wed Apr 08 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.10.4-1
5706e2
- bump upstream package
5706e2
5706e2
* Mon Mar 23 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.10.3-1
5706e2
- bump upstream package
5706e2
5706e2
* Tue Mar 17 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.10.2-1
5706e2
- bump upstream package
5706e2
- add dependency on python-setuptools
5706e2
5706e2
* Wed Mar 04 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.10.1-1
5706e2
- bump upstream package
5706e2
5706e2
* Thu Feb 26 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.10.0-1
5706e2
- packaging enhacements (structure, redundancy, ownership, scriptlets, symlink)
5706e2
- version bump so as not to collide with python-clufter co-packaged with pcs
5706e2
5706e2
* Tue Jan 20 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.3.5-1
5706e2
- packaging enhancements (pkg-config, license tag)
5706e2
5706e2
* Wed Jan 14 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.3.4-1
5706e2
- packaging enhancements (permissions, ownership)
5706e2
- man page for CLI frontend now included
5706e2
5706e2
* Tue Jan 13 2015 Jan Pokorný <jpokorny+rpm-clufter@fedoraproject.org> - 0.3.3-1
5706e2
- initial build