From f85a7ee4fe2270d24c9ca33b46f58fd622eb2deb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sindre=20Pedersen=20Bj=C3=B8rdal?= Date: Thu, 5 Mar 2009 21:09:21 +0000 Subject: [PATCH 01/40] adding txt2man, maintained by me --- .cvsignore | 1 + import.log | 1 + sources | 1 + txt2man-1.5.5-fixbashisms.patch | 23 ++++++++++++++ txt2man.spec | 55 +++++++++++++++++++++++++++++++++ 5 files changed, 81 insertions(+) create mode 100644 import.log create mode 100644 txt2man-1.5.5-fixbashisms.patch create mode 100644 txt2man.spec diff --git a/.cvsignore b/.cvsignore index e69de29..167f71f 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +txt2man-1.5.5.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..9c2bd53 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +txt2man-1_5_5-1_fc10:HEAD:txt2man-1.5.5-1.fc10.src.rpm:1236287080 diff --git a/sources b/sources index e69de29..a14704e 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +d10fe6e9876a2969201ea4d75ac9ea48 txt2man-1.5.5.tar.gz diff --git a/txt2man-1.5.5-fixbashisms.patch b/txt2man-1.5.5-fixbashisms.patch new file mode 100644 index 0000000..ff30a97 --- /dev/null +++ b/txt2man-1.5.5-fixbashisms.patch @@ -0,0 +1,23 @@ +diff -Nru txt2man-1.5.5/bookman txt2man-1.5.5/bookman +--- txt2man-1.5.5/bookman 2007-03-21 11:07:24.000000000 +0000 ++++ txt2man-1.5.5/bookman 2008-04-12 03:29:07.000000000 +0100 +@@ -83,16 +83,16 @@ + shift $(($OPTIND - 1)) + date=${date:-$(date +'%d %B %Y')} + +-[[ $1 ]] || set -- $(while read; do echo $REPLY; done) ++[ $1 ] || set -- $(while read REPLY; do echo $REPLY; done) + +-[[ $outfile ]] && post="$post >$outfile" ++[ $outfile ] && post="$post >$outfile" + + { + # Compute table of content from postscript output. + # Generate output in gtroff intermediate format, so + # it can be merged with content. + { +- [[ -f $cover ]] && cat $cover || { ++ [ -f $cover ] && cat $cover || { + printf ".af %% i\n.P1\n" + printf ".OH ||%s||\n" "$volume" + printf ".EH ||%s||\n" "$volume" diff --git a/txt2man.spec b/txt2man.spec new file mode 100644 index 0000000..2c5b4ca --- /dev/null +++ b/txt2man.spec @@ -0,0 +1,55 @@ +Name: txt2man +Version: 1.5.5 +Release: 1%{?dist} +Summary: Convert flat ASCII text to man page format + +Group: Applications/Text +License: GPLv2+ +URL: http://mvertes.free.fr/txt2man/ +Source0: http://mvertes.free.fr/download/%{name}-%{version}.tar.gz +#Fixes bug with bashisms in /bin/sh script, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473696 +Patch0: txt2man-1.5.5-fixbashisms.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch + +Requires: gawk + +%description +tx2man is a shell script using gnu awk, that should run on any +Unix-like system. The syntax of the ASCII text is very straightforward +and looks very much like the output of the man(1) program. + +%prep +%setup -q +%patch0 -p1 + +%build +#no build needed + +%install +rm -rf $RPM_BUILD_ROOT +#manual install +install -p -m 0755 -D bookman $RPM_BUILD_ROOT%{_bindir}/bookman +install -p -m 0755 -D src2man $RPM_BUILD_ROOT%{_bindir}/src2man +install -p -m 0755 -D txt2man $RPM_BUILD_ROOT%{_bindir}/txt2man + +install -p -m 0644 -D bookman.1 $RPM_BUILD_ROOT%{_mandir}/man1/bookman.1 +install -p -m 0644 -D src2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/src2man.1 +install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc COPYING Changelog README +%{_bindir}/* +%{_mandir}/man?/* + + +%changelog +* Tue Mar 04 2009 Sindre Pedersen Bjordal - 1.5.5-1 +- Initial build +- Include debian patch to fix bashisms From a49c8e0aa395bb2002c81c0e14dfbd95de0dd49c Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 06:24:52 +0000 Subject: [PATCH 02/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 2c5b4ca..3cccb58 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 04 2009 Sindre Pedersen Bjordal - 1.5.5-1 - Initial build - Include debian patch to fix bashisms From a43ccdd240beb6a6adba733b85e44901b8922260 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:52:27 +0000 Subject: [PATCH 03/40] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 969a8ab..476e038 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: txt2man -# $Id$ +# $Id: Makefile,v 1.1 2009/03/05 20:53:20 kevin Exp $ NAME := txt2man SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From cf04377d7917df26566b6e192a2655fcc8379162 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:35:04 +0000 Subject: [PATCH 04/40] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 476e038..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: txt2man -# $Id: Makefile,v 1.1 2009/03/05 20:53:20 kevin Exp $ -NAME := txt2man -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index 9c2bd53..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -txt2man-1_5_5-1_fc10:HEAD:txt2man-1.5.5-1.fc10.src.rpm:1236287080 From a2f9fb5d9ce8821d66ad613b313d78eadbeb780f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 9 Feb 2011 15:44:49 -0600 Subject: [PATCH 05/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 3cccb58..2027000 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 09 2011 Fedora Release Engineering - 1.5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sun Jul 26 2009 Fedora Release Engineering - 1.5.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From a9fcaf92273c8212e5760d5dd587cfd4290882fc Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Mon, 9 May 2011 11:56:05 -0500 Subject: [PATCH 06/40] Updated to latest upstream and applied altered patch to remove old bash-isms --- txt2man.spec | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/txt2man.spec b/txt2man.spec index 2027000..4def22b 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man -Version: 1.5.5 -Release: 3%{?dist} +Version: 1.5.6 +Release: 1%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -8,7 +8,8 @@ License: GPLv2+ URL: http://mvertes.free.fr/txt2man/ Source0: http://mvertes.free.fr/download/%{name}-%{version}.tar.gz #Fixes bug with bashisms in /bin/sh script, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473696 -Patch0: txt2man-1.5.5-fixbashisms.patch +#Patch0: txt2man-1.5.5-fixbashisms.patch # Fixed in upstream 1.5.6 + BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -21,7 +22,7 @@ and looks very much like the output of the man(1) program. %prep %setup -q -%patch0 -p1 +#%patch0 -p1 %build #no build needed @@ -50,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon May 09 2011 Adam Miller - 1.5.6-1 +- New upstream release, fixes old bug converting bash script to POSIX shell code + * Wed Feb 09 2011 Fedora Release Engineering - 1.5.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From d58379c62b5e26502ba5b8170df1302abc0f2786 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 01:21:37 -0600 Subject: [PATCH 07/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 4def22b..ad2170f 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 1.5.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon May 09 2011 Adam Miller - 1.5.6-1 - New upstream release, fixes old bug converting bash script to POSIX shell code From 679c2d4cfd9f802ef81f2cf5c6a5d9c47130aff3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 20:07:23 -0500 Subject: [PATCH 08/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index ad2170f..fa1f9f7 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 1.5.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 1.5.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 7702a628986c98c25c9f3239f29249602dc052a0 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 26 Jul 2012 17:29:09 +0200 Subject: [PATCH 09/40] Copy working 1.5.6 package from f15 branch, as f16 up to master were incomplete and missing the source tarball, for example. --- .gitignore | 1 + sources | 2 +- txt2man-1.5.5-fixbashisms.patch | 23 ----------------------- txt2man-1.5.6-fixbashisms.patch | 14 ++++++++++++++ txt2man.spec | 19 ++++++++++--------- 5 files changed, 26 insertions(+), 33 deletions(-) delete mode 100644 txt2man-1.5.5-fixbashisms.patch create mode 100644 txt2man-1.5.6-fixbashisms.patch diff --git a/.gitignore b/.gitignore index 167f71f..3312619 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ txt2man-1.5.5.tar.gz +/txt2man-1.5.6.tar.gz diff --git a/sources b/sources index a14704e..6b106df 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d10fe6e9876a2969201ea4d75ac9ea48 txt2man-1.5.5.tar.gz +f301b3dc1872fab1b7740f9f69ff281b txt2man-1.5.6.tar.gz diff --git a/txt2man-1.5.5-fixbashisms.patch b/txt2man-1.5.5-fixbashisms.patch deleted file mode 100644 index ff30a97..0000000 --- a/txt2man-1.5.5-fixbashisms.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -Nru txt2man-1.5.5/bookman txt2man-1.5.5/bookman ---- txt2man-1.5.5/bookman 2007-03-21 11:07:24.000000000 +0000 -+++ txt2man-1.5.5/bookman 2008-04-12 03:29:07.000000000 +0100 -@@ -83,16 +83,16 @@ - shift $(($OPTIND - 1)) - date=${date:-$(date +'%d %B %Y')} - --[[ $1 ]] || set -- $(while read; do echo $REPLY; done) -+[ $1 ] || set -- $(while read REPLY; do echo $REPLY; done) - --[[ $outfile ]] && post="$post >$outfile" -+[ $outfile ] && post="$post >$outfile" - - { - # Compute table of content from postscript output. - # Generate output in gtroff intermediate format, so - # it can be merged with content. - { -- [[ -f $cover ]] && cat $cover || { -+ [ -f $cover ] && cat $cover || { - printf ".af %% i\n.P1\n" - printf ".OH ||%s||\n" "$volume" - printf ".EH ||%s||\n" "$volume" diff --git a/txt2man-1.5.6-fixbashisms.patch b/txt2man-1.5.6-fixbashisms.patch new file mode 100644 index 0000000..ec0a504 --- /dev/null +++ b/txt2man-1.5.6-fixbashisms.patch @@ -0,0 +1,14 @@ +--- bookman.orig 2011-05-09 08:53:22.000000000 -0500 ++++ bookman 2011-05-09 08:54:02.000000000 -0500 +@@ -83,9 +83,9 @@ + shift $(($OPTIND - 1)) + date=${date:-$(date +'%d %B %Y')} + +-[[ $1 ]] || set -- $(while read; do echo $REPLY; done) ++[ $1 ] || set -- $(while read; do echo $REPLY; done) + +-[[ $outfile ]] && post="$post >$outfile" ++[ $outfile ] && post="$post >$outfile" + + { + # Compute table of content from postscript output. diff --git a/txt2man.spec b/txt2man.spec index fa1f9f7..93754af 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.6 -Release: 3%{?dist} +Release: 1%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -8,7 +8,11 @@ License: GPLv2+ URL: http://mvertes.free.fr/txt2man/ Source0: http://mvertes.free.fr/download/%{name}-%{version}.tar.gz #Fixes bug with bashisms in /bin/sh script, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473696 -#Patch0: txt2man-1.5.5-fixbashisms.patch # Fixed in upstream 1.5.6 +#Patch0: txt2man-1.5.5-fixbashisms.patch + +# Fixes same bug as above, but code was changed in new release so old patch +# no longer worked. +Patch1: txt2man-1.5.6-fixbashisms.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -23,6 +27,7 @@ and looks very much like the output of the man(1) program. %prep %setup -q #%patch0 -p1 +%patch1 %build #no build needed @@ -51,14 +56,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Sun Jul 22 2012 Fedora Release Engineering - 1.5.6-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering - 1.5.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - * Mon May 09 2011 Adam Miller - 1.5.6-1 -- New upstream release, fixes old bug converting bash script to POSIX shell code +- New upstream release, fixes old bugs. +- Upstream release notes claim POSIX shell code, but bookman still relies on + bash styled syntax so we continue to patch it out. * Wed Feb 09 2011 Fedora Release Engineering - 1.5.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From f7e236bf28074c4447302abbbf207ae036e60665 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 20:17:39 -0600 Subject: [PATCH 10/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 93754af..7d56130 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 1.5.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Mon May 09 2011 Adam Miller - 1.5.6-1 - New upstream release, fixes old bugs. - Upstream release notes claim POSIX shell code, but bookman still relies on From 78867c06b4ebbdc97e61345248b93c4c9edc402c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 00:15:52 -0500 Subject: [PATCH 11/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 7d56130..83f4158 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 1.5.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Feb 15 2013 Fedora Release Engineering - 1.5.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 75a735678ad4a658886b61a535fb96e8da28da56 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 04:18:24 -0500 Subject: [PATCH 12/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 83f4158..9adb578 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 1.5.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 1.5.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 7a9e13340df0abd272cc8d354066b416e20970db Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 03:37:05 +0000 Subject: [PATCH 13/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 9adb578..019a178 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 1.5.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 1.5.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 89008ccf23845f1316711b63ca7f724ddc68cc91 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 02:11:02 +0000 Subject: [PATCH 14/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 019a178..0f896e4 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.5.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 1.5.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 1.5.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From ec88d15382cab531b9077a6d9a1a2302e21f2ad1 Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Wed, 17 Aug 2016 08:35:28 -0500 Subject: [PATCH 15/40] update to latest upstream --- .gitignore | 1 + sources | 2 +- txt2man-1.5.6-fixbashisms.patch | 14 -------------- txt2man.spec | 25 ++++++++++--------------- 4 files changed, 12 insertions(+), 30 deletions(-) delete mode 100644 txt2man-1.5.6-fixbashisms.patch diff --git a/.gitignore b/.gitignore index 3312619..89ad213 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ txt2man-1.5.5.tar.gz /txt2man-1.5.6.tar.gz +/txt2man-1.6.0.tar.gz diff --git a/sources b/sources index 6b106df..61b85b9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f301b3dc1872fab1b7740f9f69ff281b txt2man-1.5.6.tar.gz +71f4a1758f19759f8f7d20bd92d53fda txt2man-1.6.0.tar.gz diff --git a/txt2man-1.5.6-fixbashisms.patch b/txt2man-1.5.6-fixbashisms.patch deleted file mode 100644 index ec0a504..0000000 --- a/txt2man-1.5.6-fixbashisms.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- bookman.orig 2011-05-09 08:53:22.000000000 -0500 -+++ bookman 2011-05-09 08:54:02.000000000 -0500 -@@ -83,9 +83,9 @@ - shift $(($OPTIND - 1)) - date=${date:-$(date +'%d %B %Y')} - --[[ $1 ]] || set -- $(while read; do echo $REPLY; done) -+[ $1 ] || set -- $(while read; do echo $REPLY; done) - --[[ $outfile ]] && post="$post >$outfile" -+[ $outfile ] && post="$post >$outfile" - - { - # Compute table of content from postscript output. diff --git a/txt2man.spec b/txt2man.spec index 0f896e4..cd1e733 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,20 +1,13 @@ Name: txt2man -Version: 1.5.6 -Release: 6%{?dist} +Version: 1.6.0 +Release: 1%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text License: GPLv2+ -URL: http://mvertes.free.fr/txt2man/ -Source0: http://mvertes.free.fr/download/%{name}-%{version}.tar.gz -#Fixes bug with bashisms in /bin/sh script, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473696 -#Patch0: txt2man-1.5.5-fixbashisms.patch +URL: https://github.com/mvertes/txt2man +Source0: https://github.com/mvertes/%{name}/archive/%{name}-%{version}.tar.gz -# Fixes same bug as above, but code was changed in new release so old patch -# no longer worked. -Patch1: txt2man-1.5.6-fixbashisms.patch - -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: gawk @@ -22,12 +15,11 @@ Requires: gawk %description tx2man is a shell script using gnu awk, that should run on any Unix-like system. The syntax of the ASCII text is very straightforward -and looks very much like the output of the man(1) program. +and looks very much like the output of the man(1) program. %prep -%setup -q -#%patch0 -p1 -%patch1 +# No idea why but github archive is prepending the name twice +%setup -q -n %{name}-%{name}-%{version} %build #no build needed @@ -56,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Aug 17 2016 Adam Miller - 1.6.0-1 +- Update to latest upstream release + * Fri Feb 05 2016 Fedora Release Engineering - 1.5.6-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From cf768e31593211142ab60aa1c73ae3b86db4154b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 16:33:16 +0000 Subject: [PATCH 16/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index cd1e733..6ffcc91 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Aug 17 2016 Adam Miller - 1.6.0-1 - Update to latest upstream release From 58ef29c3dab91f727a9f77285cf21ea1dc56f7ae Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 20:49:06 +0000 Subject: [PATCH 17/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 6ffcc91..747045c 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 1.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 8f254ce41d3b59f300a8a4ba667dc8dba29f2d59 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 19:46:53 +0000 Subject: [PATCH 18/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 747045c..5613c54 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 1.6.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 4ba997558ddb4ad335263690f4188d9de06d10a2 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 08:56:39 +0100 Subject: [PATCH 19/40] Remove %clean section None of currently supported distributions need that. Last one was EL5 which is EOL for a while. Signed-off-by: Igor Gnatenko --- txt2man.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/txt2man.spec b/txt2man.spec index 5613c54..cd9a56b 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -36,9 +36,6 @@ install -p -m 0644 -D src2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/src2man.1 install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 -%clean -rm -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root,-) From e700d0d96ffd8fa0ba2b28bc0c0bdaededdc46bc Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 01:39:59 -0500 Subject: [PATCH 20/40] Remove needless use of %defattr --- txt2man.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index cd9a56b..6035945 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -38,7 +38,6 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %files -%defattr(-,root,root,-) %doc COPYING Changelog README %{_bindir}/* %{_mandir}/man?/* From 8451f4e368bb3ddcf01fde05b610da5e5cb8b3af Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:04:56 +0000 Subject: [PATCH 21/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 6035945..d096a14 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert flat ASCII text to man page format Group: Applications/Text @@ -44,6 +44,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 1.6.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 1.6.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 6313f734bbda0de1a76c25ad9ed08d1b9dd5c73f Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:29 +0100 Subject: [PATCH 22/40] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- txt2man.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index d096a14..59e3381 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -3,7 +3,6 @@ Version: 1.6.0 Release: 5%{?dist} Summary: Convert flat ASCII text to man page format -Group: Applications/Text License: GPLv2+ URL: https://github.com/mvertes/txt2man Source0: https://github.com/mvertes/%{name}/archive/%{name}-%{version}.tar.gz From 0748ee0b56f7ec99c63776dd6377c966c26b5dd6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 10:34:32 +0000 Subject: [PATCH 23/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 59e3381..79179bd 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -43,6 +43,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 1.6.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 1.6.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From ec4adb4296a8c50bf3a17513801ddbe2ca6a1fb4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 02:13:30 +0000 Subject: [PATCH 24/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 79179bd..6d56ced 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -43,6 +43,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 1.6.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 1.6.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 5d344c083c39b6b8070941337802678a9d3cbf1d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 02:20:45 +0000 Subject: [PATCH 25/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 6d56ced..63173c5 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -43,6 +43,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 1.6.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 1.6.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 8ae3927bdba9e100bd46e417ef1cc5c8a02e1a26 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:06:00 +0000 Subject: [PATCH 26/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 63173c5..dea37eb 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -43,6 +43,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 1.6.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 1.6.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 8cde8c60f6427d49ac44766cde578eaa70f61685 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 22:29:43 +0000 Subject: [PATCH 27/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index dea37eb..cf83f77 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -43,6 +43,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.6.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 1.6.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 028dcf6f31e312d42ebbcdac60526b1b5599b3a0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 19:50:49 +0000 Subject: [PATCH 28/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index cf83f77..ea947e4 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.6.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -43,6 +43,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.6.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 1.6.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 241c1cb77ca77c0e2eb5fb57c9f73b903725ad0f Mon Sep 17 00:00:00 2001 From: Thomas Moschny Date: Mon, 29 Nov 2021 21:40:21 +0100 Subject: [PATCH 29/40] Update to 1.7.1. Specfile updates. --- .gitignore | 1 + sources | 2 +- txt2man.spec | 16 +++++++++++----- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 89ad213..3802e04 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ txt2man-1.5.5.tar.gz /txt2man-1.5.6.tar.gz /txt2man-1.6.0.tar.gz +/txt2man-1.7.1.tar.gz diff --git a/sources b/sources index 61b85b9..0955f41 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -71f4a1758f19759f8f7d20bd92d53fda txt2man-1.6.0.tar.gz +SHA512 (txt2man-1.7.1.tar.gz) = 550b1d30a4435f35d03920d89f5f2adc2a937de7575c4ddc51ee9f4fe370975b45e51f5aec0eb865ead4b16d88ad31f3150cd3235362b1fc7e6d7b3c6233852a diff --git a/txt2man.spec b/txt2man.spec index ea947e4..9d17ae4 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man -Version: 1.6.0 -Release: 11%{?dist} +Version: 1.7.1 +Release: 1%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -9,10 +9,13 @@ Source0: https://github.com/mvertes/%{name}/archive/%{name}-%{version}.ta BuildArch: noarch +BuildRequires: make +BuildRequires: gawk + Requires: gawk %description -tx2man is a shell script using gnu awk, that should run on any +txt2man is a shell script using gnu awk, that should run on any Unix-like system. The syntax of the ASCII text is very straightforward and looks very much like the output of the man(1) program. @@ -21,10 +24,9 @@ and looks very much like the output of the man(1) program. %setup -q -n %{name}-%{name}-%{version} %build -#no build needed +%{make_build} %install -rm -rf $RPM_BUILD_ROOT #manual install install -p -m 0755 -D bookman $RPM_BUILD_ROOT%{_bindir}/bookman install -p -m 0755 -D src2man $RPM_BUILD_ROOT%{_bindir}/src2man @@ -43,6 +45,10 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Mon Nov 29 2021 Thomas Moschny - 1.7.1-1 +- Update to 1.7.1. +- Specfile updates. + * Fri Jul 23 2021 Fedora Release Engineering - 1.6.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 60d0d081b05fe3db34f12380fa0697f13bf912e1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 03:19:51 +0000 Subject: [PATCH 30/40] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 9d17ae4..8995f40 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -45,6 +45,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 1.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Mon Nov 29 2021 Thomas Moschny - 1.7.1-1 - Update to 1.7.1. - Specfile updates. From e80f528a5b5f76e2920ab712ec9d045a0553cdd9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 11:10:50 +0000 Subject: [PATCH 31/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 8995f40..a2b85d2 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -45,6 +45,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 1.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 1.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 94feb89950cb9f9f927d5c34949d7e849102ff85 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 05:35:02 +0000 Subject: [PATCH 32/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index a2b85d2..44e94db 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -45,6 +45,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 1.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 1.7.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 9a49aa051d941bb37d9d12a61b50692ee3d21cdf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 16:53:49 +0000 Subject: [PATCH 33/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 44e94db..636e183 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -45,6 +45,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 1.7.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 1.7.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 85ced91377d2bbd5892d0bcb5f0dbb088a12f195 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 06:52:27 +0000 Subject: [PATCH 34/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 636e183..f1500b1 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -45,6 +45,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 1.7.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 1.7.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From cb5eb540c55343945af07dbcd2b230b2e147763e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 08:02:20 +0000 Subject: [PATCH 35/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index f1500b1..7416f4d 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Convert flat ASCII text to man page format License: GPLv2+ @@ -45,6 +45,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 1.7.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 1.7.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 86acd6fd7b5e56bf892a400eab6113500aa7b551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 26 Jul 2024 03:25:15 +0200 Subject: [PATCH 36/40] convert GPLv2+ license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- txt2man.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/txt2man.spec b/txt2man.spec index 7416f4d..80a2b6e 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,9 +1,10 @@ Name: txt2man Version: 1.7.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Convert flat ASCII text to man page format -License: GPLv2+ +# Automatically converted from old format: GPLv2+ - review is highly recommended. +License: GPL-2.0-or-later URL: https://github.com/mvertes/txt2man Source0: https://github.com/mvertes/%{name}/archive/%{name}-%{version}.tar.gz @@ -45,6 +46,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Fri Jul 26 2024 Miroslav Suchý - 1.7.1-8 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 1.7.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 23a9139a339cdb2b4221ff348f67b69d89b360d9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 13:29:59 +0000 Subject: [PATCH 37/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 80a2b6e..751dd38 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Convert flat ASCII text to man page format # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -46,6 +46,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 1.7.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 26 2024 Miroslav Suchý - 1.7.1-8 - convert license to SPDX From 02b0cfb3bd8fc8067a23d5d17de6815ad41b8a4a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 19:39:37 +0000 Subject: [PATCH 38/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index 751dd38..e100015 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Convert flat ASCII text to man page format # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -46,6 +46,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.7.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 1.7.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 1cbcaa5229a6249a3872ca979da7825af9300e55 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 19:29:33 +0000 Subject: [PATCH 39/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index e100015..a80eac5 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Convert flat ASCII text to man page format # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -46,6 +46,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 1.7.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 1.7.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From d7be10c911a1f5f60362314d9304c3ba4e2e928e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:03:00 +0000 Subject: [PATCH 40/40] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- txt2man.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/txt2man.spec b/txt2man.spec index a80eac5..2a097c6 100644 --- a/txt2man.spec +++ b/txt2man.spec @@ -1,6 +1,6 @@ Name: txt2man Version: 1.7.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Convert flat ASCII text to man page format # Automatically converted from old format: GPLv2+ - review is highly recommended. @@ -46,6 +46,9 @@ install -p -m 0644 -D txt2man.1 $RPM_BUILD_ROOT%{_mandir}/man1/txt2man.1 %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 1.7.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 1.7.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild