Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package exa for openSUSE:Factory checked in at 2021-08-23 10:07:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/exa (Old) and /work/SRC/openSUSE:Factory/.exa.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "exa" Mon Aug 23 10:07:59 2021 rev:8 rq:912894 version:0.10.1 Changes: -------- --- /work/SRC/openSUSE:Factory/exa/exa.changes 2021-04-14 10:11:42.745567986 +0200 +++ /work/SRC/openSUSE:Factory/.exa.new.1899/exa.changes 2021-08-23 10:08:54.816194360 +0200 @@ -1,0 +2,5 @@ +Tue Aug 3 06:32:47 UTC 2021 - Andreas Schneider <a...@cryptomilk.org> + +- Build the manpages correctly + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ exa.spec ++++++ --- /var/tmp/diff_new_pack.Ecwz8G/_old 2021-08-23 10:08:55.396193683 +0200 +++ /var/tmp/diff_new_pack.Ecwz8G/_new 2021-08-23 10:08:55.404193674 +0200 @@ -30,6 +30,7 @@ BuildRequires: cmake BuildRequires: fish BuildRequires: git +BuildRequires: pandoc BuildRequires: pkgconfig BuildRequires: rust BuildRequires: rust-std @@ -89,11 +90,15 @@ %install mkdir build cargo install --path . --root=build -mkdir -p %{buildroot}%{_bindir} %{buildroot}%{_mandir}/man1 -install -Dm0755 build/bin/exa %{buildroot}%{_bindir}/exa +install -d -m 0755 %{buildroot}%{_bindir} +install -m 0755 build/bin/exa %{buildroot}%{_bindir}/exa # Manpage -install --preserve-timestamps -m0644 man/%{name}.1.md %{buildroot}%{_mandir}/man1/%{name}.1 +install -d -m 0755 %{buildroot}%{_mandir}/man1/ +pandoc --standalone -f markdown -t man man/exa.1.md > %{buildroot}%{_mandir}/man1/exa.1 + +install -d -m 0755 %{buildroot}%{_mandir}/man5/ +pandoc --standalone -f markdown -t man man/exa_colors.5.md > %{buildroot}%{_mandir}/man5/exa_colors.5 # Completion files install -Dm0644 completions/completions.bash \ @@ -105,7 +110,8 @@ %license LICENCE %doc README.md %{_bindir}/exa -%{_mandir}/man1/%{name}*%{ext_man} +%{_mandir}/man1/exa.1%{ext_man} +%{_mandir}/man5/exa_colors.5%{ext_man} %files bash-completion %{_datarootdir}/bash-completion/completions/%{name}