From 16e751889ba2cda586194199e6467c637ea2118a Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 19 Feb 2008 18:33:35 +0000 Subject: [PATCH 01/52] - Autorebuild for GCC 4.3 --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index a2053c2..7a7dc38 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -177,6 +177,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 19 2008 Fedora Release Engineering - 4.60.4-9 +- Autorebuild for GCC 4.3 + * Wed Aug 22 2007 Patrice Dumas 4.60.4-8 - fix license and source url From 2289a72b6cbea68f058c7acfdd3c5d13f2a7b828 Mon Sep 17 00:00:00 2001 From: pertusus Date: Sat, 1 Mar 2008 12:48:10 +0000 Subject: [PATCH 02/52] use __dist instead of __fedora --- xbae.spec | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/xbae.spec b/xbae.spec index 7a7dc38..3807b9b 100644 --- a/xbae.spec +++ b/xbae.spec @@ -121,36 +121,36 @@ install -p -m644 ac_find_xbae.m4 $RPM_BUILD_ROOT%{_datadir}/aclocal rm $RPM_BUILD_ROOT%{_libdir}/libXbae.la # prepare the main docs -# Use systematically __fedora_* to avoid directory name clash. -rm -rf __fedora_Xbae-docs -mv $RPM_BUILD_ROOT%{_datadir}/Xbae/ __fedora_Xbae-docs +# Use systematically __dist_* to avoid directory name clash. +rm -rf __dist_Xbae-docs +mv $RPM_BUILD_ROOT%{_datadir}/Xbae/ __dist_Xbae-docs # remove duplicate files already in %%doc -rm __fedora_Xbae-docs/README -rm __fedora_Xbae-docs/NEWS +rm __dist_Xbae-docs/README +rm __dist_Xbae-docs/NEWS # examples for builderXcessory are arch specific, this avoids clash of # doc files between arches -mv __fedora_Xbae-docs/examples/builderXcessory __fedora_Xbae-docs/examples/builderXcessory-%{_arch} +mv __dist_Xbae-docs/examples/builderXcessory __dist_Xbae-docs/examples/builderXcessory-%{_arch} # first clean examples -rm -rf __fedora_examples -cp -pr examples __fedora_examples -make -C __fedora_examples clean -find __fedora_examples -name '*akefile*' -exec rm {} \; -rm __fedora_examples/extest -rm __fedora_examples/testall +rm -rf __dist_examples +cp -pr examples __dist_examples +make -C __dist_examples clean +find __dist_examples -name '*akefile*' -exec rm {} \; +rm __dist_examples/extest +rm __dist_examples/testall # the builderXcessory directory is duplicated in the main doc and in the # example code. The master dir is considered to be in the main doc. # the README is better with the main examples doc, not in code examples -mv __fedora_examples/builderXcessory/README __fedora_Xbae-docs/examples/builderXcessory-%{_arch}/ +mv __dist_examples/builderXcessory/README __dist_Xbae-docs/examples/builderXcessory-%{_arch}/ # remove the duplicate dir and replace it with a link -rm -rf __fedora_examples/builderXcessory/ -ln -s ../examples/builderXcessory-%{_arch}/ __fedora_examples/builderXcessory-%{_arch} +rm -rf __dist_examples/builderXcessory/ +ln -s ../examples/builderXcessory-%{_arch}/ __dist_examples/builderXcessory-%{_arch} # then put the examples in a code_examples directory -rm -rf __fedora_code_examples -mkdir __fedora_code_examples -mv __fedora_examples __fedora_code_examples/code_examples +rm -rf __dist_code_examples +mkdir __dist_code_examples +mv __dist_examples __dist_code_examples/code_examples %clean @@ -169,7 +169,7 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%doc __fedora_Xbae-docs/* __fedora_code_examples/code_examples +%doc __dist_Xbae-docs/* __dist_code_examples/code_examples %{_includedir}/Xbae/ %{_libdir}/libXbae.so %{_mandir}/man*/Xbae* From 374b7f969c40d8c233d78b15e00b5bf736b7f0a0 Mon Sep 17 00:00:00 2001 From: pertusus Date: Sat, 20 Sep 2008 17:44:45 +0000 Subject: [PATCH 03/52] - use %patch0 instead of %patch (#463002) --- xbae.spec | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/xbae.spec b/xbae.spec index 3807b9b..db08203 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -92,9 +92,15 @@ developing applications that use %{name}. %prep %setup -q -%patch -p1 +%patch0 -p1 %patch1 -p1 -b .multilib +for file in COPYING ChangeLog NEWS; do + iconv -f latin1 -t utf8 < $file > $file.utf8 + touch -c -r $file $file.utf8 + mv $file.utf8 $file +done + %build %configure --disable-static --disable-dependency-tracking @@ -139,6 +145,12 @@ find __dist_examples -name '*akefile*' -exec rm {} \; rm __dist_examples/extest rm __dist_examples/testall +for file in __dist_examples/*/*.c __dist_examples/README; do + iconv -f latin1 -t utf8 < $file > $file.utf8 + touch -c -r $file $file.utf8 + mv $file.utf8 $file +done + # the builderXcessory directory is duplicated in the main doc and in the # example code. The master dir is considered to be in the main doc. # the README is better with the main examples doc, not in code examples @@ -177,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Sep 20 2008 Patrice Dumas 4.60.4-10 +- use %%patch0 instead of %%patch (#463002) + * Tue Feb 19 2008 Fedora Release Engineering - 4.60.4-9 - Autorebuild for GCC 4.3 From 651980dd3621cf2acf368738c78755865fee680c Mon Sep 17 00:00:00 2001 From: pertusus Date: Sat, 25 Oct 2008 12:46:05 +0000 Subject: [PATCH 04/52] use a more robust conditional --- xbae.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index db08203..7477070 100644 --- a/xbae.spec +++ b/xbae.spec @@ -3,7 +3,7 @@ # motif switched to lesstif in fedora 6 and fedora extras 5 is not # maintained anymore, it could be possible to add the conditionals %if 0%{?rhel} -%if "%rhel" <= "4" +%if 0%rhel <= 4 %define monolithic_X 1 %endif %endif From 10ffd77c5dc862df89d4e59a132ba9d9a85aa6e3 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Thu, 26 Feb 2009 07:47:13 +0000 Subject: [PATCH 05/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 7477070..b8135f1 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 26 2009 Fedora Release Engineering - 4.60.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sat Sep 20 2008 Patrice Dumas 4.60.4-10 - use %%patch0 instead of %%patch (#463002) From 27bac72c7ef34f8080368b5dd55f2d424018970e Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 07:36:06 +0000 Subject: [PATCH 06/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index b8135f1..8ccbd12 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.60.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Thu Feb 26 2009 Fedora Release Engineering - 4.60.4-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From ed4d01b68e4e2e12f1e215f55b9edba9022d5a83 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:40:54 +0000 Subject: [PATCH 07/52] 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 3b0ffd2..eb9e253 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xbae -# $Id$ +# $Id: Makefile,v 1.1 2006/09/09 15:18:13 pertusus Exp $ NAME := xbae 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 e060e8f72327a0fc8ff77557f3d3e7c01fe02dbf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:32:58 +0000 Subject: [PATCH 08/52] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile 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 eb9e253..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xbae -# $Id: Makefile,v 1.1 2006/09/09 15:18:13 pertusus Exp $ -NAME := xbae -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) From c9845116a29a7e4a1c1950218a707a81a3c0cdb1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 21:35:46 -0600 Subject: [PATCH 09/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 8ccbd12..fa7103f 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 4.60.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Jul 27 2009 Fedora Release Engineering - 4.60.4-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 51d33897c9db156c1b0b26fcf1ab21852cf0fa75 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 02:37:23 -0600 Subject: [PATCH 10/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index fa7103f..9653981 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 4.60.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 4.60.4-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 87fb645a79f760dd9cc364ca1465085687cb8bd9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 23:24:34 -0500 Subject: [PATCH 11/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 9653981..1d88707 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 4.60.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 4.60.4-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From f50fde2332d6e686d66ef00b31ee2aacc7e6a5ae Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 21:26:32 -0600 Subject: [PATCH 12/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 1d88707..8916a26 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 4.60.4-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Jul 22 2012 Fedora Release Engineering - 4.60.4-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From cc15292b3d84be56c5e84071a07855779ef0e1fc Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 02:34:36 -0500 Subject: [PATCH 13/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 8916a26..4ff55ff 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 4.60.4-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Feb 15 2013 Fedora Release Engineering - 4.60.4-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From a65ffaf6b97f579daf02789a47ba949da0596711 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 00:12:57 -0500 Subject: [PATCH 14/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 4ff55ff..743c32b 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 4.60.4-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 4.60.4-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 120a12cd28e9b5942a3be53a2bbff4ef9b4c8d45 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 09:14:55 +0000 Subject: [PATCH 15/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 743c32b..0bec1cb 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 4.60.4-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 4.60.4-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From eb46a2050b1733d654f9de25fc71d029c1987164 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 03:43:57 +0000 Subject: [PATCH 16/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 0bec1cb..c281a74 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 4.60.4-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Aug 18 2014 Fedora Release Engineering - 4.60.4-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 66436a33d8bf4470494d342b8d684ae1f9bd3dc7 Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Thu, 1 Oct 2015 07:34:59 -0500 Subject: [PATCH 17/52] Switch from lesstif to motif. --- xbae.spec | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/xbae.spec b/xbae.spec index c281a74..e3c2e80 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -38,10 +38,10 @@ BuildRequires: libXmu-devel %if 0%{?rhel} BuildRequires: openmotif-devel %else -BuildRequires: lesstif-devel +BuildRequires: motif-devel # to be sure that we link against lesstif even if openmotif provides the same # soname -Requires: lesstif +#Requires: lesstif %endif # Wcl-devel should only needed by an example, which adds the Xbae widgets # to Wcl, so there is no real need for it. @@ -73,7 +73,7 @@ Requires: %{name} = %{version}-%{release} %if 0%{?rhel} Requires: openmotif-devel %else -Requires: lesstif-devel +Requires: motif-devel %endif %if 0%{?monolithic_X} Requires: xorg-x11-devel @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Oct 01 2015 Jon Ciesla - 4.60.4-21 +- Move from lesstif to motif, BZ 1267852. + * Fri Jun 19 2015 Fedora Release Engineering - 4.60.4-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 138944a81b0a812632a04d3bb9158435ba30abf6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 03:16:29 +0000 Subject: [PATCH 18/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index e3c2e80..d6bd7ab 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 4.60.4-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Oct 01 2015 Jon Ciesla - 4.60.4-21 - Move from lesstif to motif, BZ 1267852. From 5bcc0633a1aa58fae5a5674930eadb5c121b5b16 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:39:10 +0000 Subject: [PATCH 19/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index d6bd7ab..c6d3c85 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 22%{?dist} +Release: 23%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 4.60.4-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 4.60.4-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 1556bd3bd3236e2bd0afbf0fdb170382217992fa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 21:53:00 +0000 Subject: [PATCH 20/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index c6d3c85..f7bf707 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 23%{?dist} +Release: 24%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 4.60.4-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 4.60.4-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 6dd65abbff3b9d0b5ea61060055cac10618cd0d7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:28:29 +0000 Subject: [PATCH 21/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index f7bf707..d9ac8de 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 24%{?dist} +Release: 25%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 4.60.4-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 4.60.4-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 4880e4348ea8b93248881a45aca799d43e1e4590 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 21:19:58 +0000 Subject: [PATCH 22/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index d9ac8de..4cae351 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 25%{?dist} +Release: 26%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -189,6 +189,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 4.60.4-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 4.60.4-25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 2c0a7c8ce0b3feccee69aefc00f61052da5604f2 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 00:49:57 +0100 Subject: [PATCH 23/52] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- xbae.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 4cae351..2e56888 100644 --- a/xbae.spec +++ b/xbae.spec @@ -21,7 +21,6 @@ Source0: http://downloads.sourceforge.net/xbae/xbae-%{version}.tar.gz # now that Wcl isn't buildrequired, but it is still better. Patch0: xbae-link_Mri_with_lXmp.diff Patch1: xbae-4.60.4-multilib.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %if 0%{?monolithic_X} # this could certainly be left out since it is an openmotif-devel From c76344944bcb7466c9adce59abd4b695cd19d4a7 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 08:59:59 +0100 Subject: [PATCH 24/52] 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 --- xbae.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/xbae.spec b/xbae.spec index 2e56888..7faacc0 100644 --- a/xbae.spec +++ b/xbae.spec @@ -164,9 +164,6 @@ mkdir __dist_code_examples mv __dist_examples __dist_code_examples/code_examples -%clean -rm -rf $RPM_BUILD_ROOT - %post -p /sbin/ldconfig From 668ea7cc1ed920f60995c382f94f6b7752e4d04e Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:53 +0200 Subject: [PATCH 25/52] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- xbae.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xbae.spec b/xbae.spec index 7faacc0..337208a 100644 --- a/xbae.spec +++ b/xbae.spec @@ -25,6 +25,7 @@ Patch1: xbae-4.60.4-multilib.patch %if 0%{?monolithic_X} # this could certainly be left out since it is an openmotif-devel # dependency, but it is also a direct dependency +BuildRequires: gcc BuildRequires: xorg-x11-devel %else # libXp-devel and libXext-devel are required by openmotif-devel or From 4a358da818823cd0ea90bdfac51690b47b4d67f4 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Mon, 9 Jul 2018 23:53:11 -0500 Subject: [PATCH 26/52] Remove needless use of %defattr --- xbae.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/xbae.spec b/xbae.spec index 337208a..ef1144c 100644 --- a/xbae.spec +++ b/xbae.spec @@ -172,12 +172,10 @@ mv __dist_examples __dist_code_examples/code_examples %files -%defattr(-,root,root,-) %doc AUTHORS ChangeLog NEWS COPYING README %{_libdir}/libXbae.so.* %files devel -%defattr(-,root,root,-) %doc __dist_Xbae-docs/* __dist_code_examples/code_examples %{_includedir}/Xbae/ %{_libdir}/libXbae.so From 382086d96ad4f40262a5abeba736fb5009cf3dd9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 09:06:06 +0000 Subject: [PATCH 27/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index ef1144c..c1ba81e 100644 --- a/xbae.spec +++ b/xbae.spec @@ -10,7 +10,7 @@ Name: xbae Version: 4.60.4 -Release: 26%{?dist} +Release: 27%{?dist} Summary: Motif matrix, caption and text input widgets Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ @@ -184,6 +184,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 4.60.4-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 4.60.4-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From f936aa211a767a5b788c852b7195dc328afd9f45 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 24 Jul 2018 17:06:37 +0200 Subject: [PATCH 28/52] Add missing BuildRequires on gcc configure: error: no acceptable C compiler found in $PATH References: https://bugzilla.redhat.com/show_bug.cgi?id=1606723 Signed-off-by: Igor Gnatenko --- xbae.spec | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/xbae.spec b/xbae.spec index c1ba81e..8f48a11 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,13 +1,3 @@ -# xbae wasn't in fedora with monolithic X (fedora < 5), but it -# could be possible to do the needed conditionals -# motif switched to lesstif in fedora 6 and fedora extras 5 is not -# maintained anymore, it could be possible to add the conditionals -%if 0%{?rhel} -%if 0%rhel <= 4 -%define monolithic_X 1 -%endif -%endif - Name: xbae Version: 4.60.4 Release: 27%{?dist} @@ -22,18 +12,12 @@ Source0: http://downloads.sourceforge.net/xbae/xbae-%{version}.tar.gz Patch0: xbae-link_Mri_with_lXmp.diff Patch1: xbae-4.60.4-multilib.patch -%if 0%{?monolithic_X} -# this could certainly be left out since it is an openmotif-devel -# dependency, but it is also a direct dependency BuildRequires: gcc -BuildRequires: xorg-x11-devel -%else # libXp-devel and libXext-devel are required by openmotif-devel or # lesstif-devel BuildRequires: libXpm-devel # needed for examples BuildRequires: libXmu-devel -%endif %if 0%{?rhel} BuildRequires: openmotif-devel @@ -75,11 +59,7 @@ Requires: openmotif-devel %else Requires: motif-devel %endif -%if 0%{?monolithic_X} -Requires: xorg-x11-devel -%else Requires: libXpm-devel -%endif # for the aclocal directory Requires: automake Provides: Xbae-devel = %{version}-%{release} From 03c7025c680b7c0525614fc00db4616c02404314 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:41:20 +0100 Subject: [PATCH 29/52] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- xbae.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/xbae.spec b/xbae.spec index 8f48a11..513043f 100644 --- a/xbae.spec +++ b/xbae.spec @@ -146,9 +146,7 @@ mv __dist_examples __dist_code_examples/code_examples -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files From d5d7915103eaf408f515c7d0c387e306579f90ef Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:30 +0100 Subject: [PATCH 30/52] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- xbae.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/xbae.spec b/xbae.spec index 513043f..68c8eaa 100644 --- a/xbae.spec +++ b/xbae.spec @@ -2,7 +2,6 @@ Name: xbae Version: 4.60.4 Release: 27%{?dist} Summary: Motif matrix, caption and text input widgets -Group: System Environment/Libraries # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ URL: http://xbae.sourceforge.net/ @@ -52,7 +51,6 @@ that provides generic customised data entry and formatting for strings. %package devel Summary: Development files for %{name} -Group: Development/Libraries Requires: %{name} = %{version}-%{release} %if 0%{?rhel} Requires: openmotif-devel From dd4f4a9d6dc2742f388a51844a37b4e7494cd669 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 12:06:51 +0000 Subject: [PATCH 31/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 68c8eaa..02544c0 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 27%{?dist} +Release: 28%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -160,6 +160,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 4.60.4-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 4.60.4-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 186172a61cdc1947660c40768b9c11999f1b1260 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 03:52:55 +0000 Subject: [PATCH 32/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 02544c0..a9bb635 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 28%{?dist} +Release: 29%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -160,6 +160,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 4.60.4-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 4.60.4-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From eca8a312b94ce1e022eedf824c55410c1c0768bc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 04:06:41 +0000 Subject: [PATCH 33/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index a9bb635..49c42e5 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 29%{?dist} +Release: 30%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -160,6 +160,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 4.60.4-30 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 4.60.4-29 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From ec6faf4c7cd913cefd18a1baf6c69bea5b362cbc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:27:44 +0000 Subject: [PATCH 34/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 49c42e5..e32d5bd 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 30%{?dist} +Release: 31%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -160,6 +160,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 4.60.4-31 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 4.60.4-30 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 1bf185ec1048e9108789280c543a5b5f250e5e20 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 01:08:38 +0000 Subject: [PATCH 35/52] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- xbae.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xbae.spec b/xbae.spec index e32d5bd..8c8f515 100644 --- a/xbae.spec +++ b/xbae.spec @@ -11,6 +11,7 @@ Source0: http://downloads.sourceforge.net/xbae/xbae-%{version}.tar.gz Patch0: xbae-link_Mri_with_lXmp.diff Patch1: xbae-4.60.4-multilib.patch +BuildRequires: make BuildRequires: gcc # libXp-devel and libXext-devel are required by openmotif-devel or # lesstif-devel From 83fb8e816ec3521b19dd078a02e20f207cd63958 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:48:05 +0000 Subject: [PATCH 36/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 8c8f515..9239ce8 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 31%{?dist} +Release: 32%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -161,6 +161,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 4.60.4-32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 4.60.4-31 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 2cbe57c137d72c15ba49aa774915f7873df48259 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 21:17:15 +0000 Subject: [PATCH 37/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 9239ce8..87fa931 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 32%{?dist} +Release: 33%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -161,6 +161,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 4.60.4-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 4.60.4-32 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From ff2bef1c5f6ac45f8a4fb333afee09dbbf6c679b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:48:52 +0000 Subject: [PATCH 38/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 87fa931..03fad32 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 33%{?dist} +Release: 34%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -161,6 +161,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 4.60.4-34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 4.60.4-33 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From b9e81cac5e0af79a411f500a9caea2028b0a322f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:47:40 +0000 Subject: [PATCH 39/52] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 03fad32..bab11cd 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 34%{?dist} +Release: 35%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -161,6 +161,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 4.60.4-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 4.60.4-34 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 313c132bc25b07af5a0d6abfe0d0371d914643f2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 07:09:25 +0000 Subject: [PATCH 40/52] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index bab11cd..e95d905 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 35%{?dist} +Release: 36%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -161,6 +161,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 4.60.4-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 4.60.4-35 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 7a28e8a24e967c9e4bb36646ea09062bb2da28ce Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 16 Feb 2023 13:03:02 +0100 Subject: [PATCH 41/52] Port configure script to C99 Related to: --- xbae-configure-c99.patch | 65 ++++++++++++++++++++++++++++++++++++++++ xbae.spec | 7 ++++- 2 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 xbae-configure-c99.patch diff --git a/xbae-configure-c99.patch b/xbae-configure-c99.patch new file mode 100644 index 0000000..0427aa7 --- /dev/null +++ b/xbae-configure-c99.patch @@ -0,0 +1,65 @@ +Fix an implicit declaration of the exit function in the +libXp/rc=XpQueryVersion autoconf probe. Future compilers will not +support implicit function declarations by default, causing the probe +to always fail. + +Also included are C99 compatibility fixes for historic autoconf +incompatibilities, long since fixed in autoconf upstream. + +Submitted upstream: + +diff --git a/acinclude.m4 b/acinclude.m4 +index 36b4569680ea8531..0bda82ef7480beaf 100644 +--- a/acinclude.m4 ++++ b/acinclude.m4 +@@ -334,7 +334,7 @@ Display *display=NULL; + short major_version, minor_version; + Status rc; + rc=XpQueryVersion(display, &major_version, &minor_version); +-exit(0); ++return 0; + } + ], + lt_cv_libxp=yes, +diff --git a/configure b/configure +index f43d920c33b055ff..5e82cda106a450e8 100755 +--- a/configure ++++ b/configure +@@ -2937,7 +2937,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + for ac_declaration in \ +- '' \ ++ '#include ' \ + 'extern "C" void std::exit (int) throw (); using std::exit;' \ + 'extern "C" void std::exit (int); using std::exit;' \ + 'extern "C" void exit (int) throw ();' \ +@@ -4120,7 +4120,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + for ac_declaration in \ +- '' \ ++ '#include ' \ + 'extern "C" void std::exit (int) throw (); using std::exit;' \ + 'extern "C" void std::exit (int); using std::exit;' \ + 'extern "C" void exit (int) throw ();' \ +@@ -4477,8 +4477,8 @@ main () + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) +- exit(2); +- exit (0); ++ return 2; ++ return 0; + } + _ACEOF + rm -f conftest$ac_exeext +@@ -21418,7 +21418,7 @@ Display *display=NULL; + short major_version, minor_version; + Status rc; + rc=XpQueryVersion(display, &major_version, &minor_version); +-exit(0); ++return 0; + } + + ; diff --git a/xbae.spec b/xbae.spec index e95d905..2243d15 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 36%{?dist} +Release: 37%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPLv2+ @@ -10,6 +10,7 @@ Source0: http://downloads.sourceforge.net/xbae/xbae-%{version}.tar.gz # now that Wcl isn't buildrequired, but it is still better. Patch0: xbae-link_Mri_with_lXmp.diff Patch1: xbae-4.60.4-multilib.patch +Patch2: xbae-configure-c99.patch BuildRequires: make BuildRequires: gcc @@ -73,6 +74,7 @@ developing applications that use %{name}. %setup -q %patch0 -p1 %patch1 -p1 -b .multilib +%patch2 -p1 for file in COPYING ChangeLog NEWS; do iconv -f latin1 -t utf8 < $file > $file.utf8 @@ -161,6 +163,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Thu Feb 16 2023 Florian Weimer - 4.60.4-37 +- Port configure script to C99 + * Sat Jan 21 2023 Fedora Release Engineering - 4.60.4-36 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 55fe3e8ba1dd7c4605a3cbb9ffdec372a30260d2 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Fri, 3 Mar 2023 14:51:20 -0600 Subject: [PATCH 42/52] migrated to SPDX license --- xbae.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xbae.spec b/xbae.spec index 2243d15..ed234fa 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,9 +1,9 @@ Name: xbae Version: 4.60.4 -Release: 37%{?dist} +Release: 38%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ -License: LGPLv2+ +License: LGPL-2.0-or-later URL: http://xbae.sourceforge.net/ Source0: http://downloads.sourceforge.net/xbae/xbae-%{version}.tar.gz # this fixes the link of the example using Wcl, it shouldn't be of use @@ -163,6 +163,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Fri Mar 03 2023 Gwyn Ciesla - 4.60.4-38 +- migrated to SPDX license + * Thu Feb 16 2023 Florian Weimer - 4.60.4-37 - Port configure script to C99 From 5ce2245688d13cf1a3a46c0daa2e9e35980073e8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:31:42 +0000 Subject: [PATCH 43/52] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index ed234fa..191f1ac 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 38%{?dist} +Release: 39%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPL-2.0-or-later @@ -163,6 +163,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 4.60.4-39 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Fri Mar 03 2023 Gwyn Ciesla - 4.60.4-38 - migrated to SPDX license From a2ec0136d79c3baa70f1f73d888b0977ff0ce95b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 09:20:12 +0000 Subject: [PATCH 44/52] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 191f1ac..80e1a6d 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 39%{?dist} +Release: 40%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPL-2.0-or-later @@ -163,6 +163,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 4.60.4-40 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 4.60.4-39 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 2b6a128a178033b4cc47ad6e987577657593828b Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Mon, 5 Feb 2024 14:57:03 -0600 Subject: [PATCH 45/52] Patch for stricter flags --- pointer-types.patch | 22 ++++++++++++++++++++++ xbae.spec | 15 ++++++++++----- 2 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 pointer-types.patch diff --git a/pointer-types.patch b/pointer-types.patch new file mode 100644 index 0000000..9548d83 --- /dev/null +++ b/pointer-types.patch @@ -0,0 +1,22 @@ +--- src/Methods.c~ 2006-05-26 03:57:25.000000000 -0500 ++++ src/Methods.c 2024-02-05 14:31:58.138011816 -0600 +@@ -1688,7 +1688,7 @@ + * The event must have occurred in a legal position + * otherwise control wouldn't have made it here + */ +- xbaeEventToRowColumn(mw, event, &r, &c, &x, &y); ++ xbaeEventToRowColumn((Widget)mw, event, &r, &c, &x, &y); + x -= mw->matrix.cell_shadow_thickness; + y -= mw->matrix.cell_shadow_thickness; + position = XmTextXYToPos(TextField(mw), x, y); +--- examples/tests/leak2.c~ 2003-06-21 04:38:46.000000000 -0500 ++++ examples/tests/leak2.c 2024-02-05 14:45:03.587744588 -0600 +@@ -20,7 +20,7 @@ + + XtResource resources[] = { + { "numIter", "NumIter", XtRInt, sizeof(int), +- XtOffsetOf(AppRes, numIter), XtRImmediate, 1000 }, ++ XtOffsetOf(AppRes, numIter), XtRImmediate, (void *)1000 }, + }; + + int diff --git a/xbae.spec b/xbae.spec index 80e1a6d..7f7bdd0 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 40%{?dist} +Release: 41%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPL-2.0-or-later @@ -10,7 +10,8 @@ Source0: http://downloads.sourceforge.net/xbae/xbae-%{version}.tar.gz # now that Wcl isn't buildrequired, but it is still better. Patch0: xbae-link_Mri_with_lXmp.diff Patch1: xbae-4.60.4-multilib.patch -Patch2: xbae-configure-c99.patch +Patch2: xbae-configure-c99.patch +Patch3: pointer-types.patch BuildRequires: make BuildRequires: gcc @@ -72,9 +73,10 @@ developing applications that use %{name}. %prep %setup -q -%patch0 -p1 -%patch1 -p1 -b .multilib -%patch2 -p1 +%patch -P 0 -p1 +%patch -P 1 -p1 -b .multilib +%patch -P 2 -p1 +%patch -P 3 -p0 for file in COPYING ChangeLog NEWS; do iconv -f latin1 -t utf8 < $file > $file.utf8 @@ -163,6 +165,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Mon Feb 05 2024 Gwyn Ciesla - 4.60.4-41 +- Patch for stricter flags + * Sat Jan 27 2024 Fedora Release Engineering - 4.60.4-40 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From a369563749f789d140fac3de74892c449eb9fdf4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:43:15 +0000 Subject: [PATCH 46/52] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 7f7bdd0..8cd4d75 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 41%{?dist} +Release: 42%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPL-2.0-or-later @@ -165,6 +165,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 4.60.4-42 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Mon Feb 05 2024 Gwyn Ciesla - 4.60.4-41 - Patch for stricter flags From 92fa9f17688eddfbddfd04782657980cbd7256fb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:26:11 +0000 Subject: [PATCH 47/52] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 8cd4d75..e40fdbe 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 42%{?dist} +Release: 43%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPL-2.0-or-later @@ -165,6 +165,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 4.60.4-43 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 4.60.4-42 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 6c8856f4bf8d325218c016cfc840829748c4426b Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Thu, 30 Jan 2025 13:57:12 -0600 Subject: [PATCH 48/52] Fix FTBFS --- xbae.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xbae.spec b/xbae.spec index e40fdbe..1ffef69 100644 --- a/xbae.spec +++ b/xbae.spec @@ -86,6 +86,7 @@ done %build +export CFLAGS="$CFLAGS -std=gnu17" %configure --disable-static --disable-dependency-tracking make %{?_smp_mflags} From a5f1867e8da64aaa0558dc02fffbb7bd3650d9e2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:37:59 +0000 Subject: [PATCH 49/52] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 1ffef69..10fd9cb 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 43%{?dist} +Release: 44%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPL-2.0-or-later @@ -166,6 +166,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 4.60.4-44 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 4.60.4-43 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From a9475f5997c84b6caf3caccfdb60581c0878769a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:27:50 +0000 Subject: [PATCH 50/52] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- xbae.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbae.spec b/xbae.spec index 10fd9cb..a74f3a1 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 44%{?dist} +Release: 45%{?dist} Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPL-2.0-or-later @@ -166,6 +166,9 @@ mv __dist_examples __dist_code_examples/code_examples %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 4.60.4-45 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 4.60.4-44 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From d6740dee71eff38dfbbe5bf832d323a0b78500a0 Mon Sep 17 00:00:00 2001 From: Steve Traylen Date: Thu, 14 May 2026 21:05:16 +0200 Subject: [PATCH 51/52] Convert to %autorelease and %autochangelog [skip changelog] --- changelog | 137 ++++++++++++++++++++++++++++++++++++++++++++++++++++ xbae.spec | 140 +----------------------------------------------------- 2 files changed, 139 insertions(+), 138 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..dbf6d50 --- /dev/null +++ b/changelog @@ -0,0 +1,137 @@ +* Sat Jan 17 2026 Fedora Release Engineering - 4.60.4-45 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + +* Fri Jul 25 2025 Fedora Release Engineering - 4.60.4-44 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + +* Sun Jan 19 2025 Fedora Release Engineering - 4.60.4-43 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Sat Jul 20 2024 Fedora Release Engineering - 4.60.4-42 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Mon Feb 05 2024 Gwyn Ciesla - 4.60.4-41 +- Patch for stricter flags + +* Sat Jan 27 2024 Fedora Release Engineering - 4.60.4-40 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jul 22 2023 Fedora Release Engineering - 4.60.4-39 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Fri Mar 03 2023 Gwyn Ciesla - 4.60.4-38 +- migrated to SPDX license + +* Thu Feb 16 2023 Florian Weimer - 4.60.4-37 +- Port configure script to C99 + +* Sat Jan 21 2023 Fedora Release Engineering - 4.60.4-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Sat Jul 23 2022 Fedora Release Engineering - 4.60.4-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Sat Jan 22 2022 Fedora Release Engineering - 4.60.4-34 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 4.60.4-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jan 27 2021 Fedora Release Engineering - 4.60.4-32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering - 4.60.4-31 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Jan 31 2020 Fedora Release Engineering - 4.60.4-30 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Sat Jul 27 2019 Fedora Release Engineering - 4.60.4-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 03 2019 Fedora Release Engineering - 4.60.4-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering - 4.60.4-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Feb 09 2018 Fedora Release Engineering - 4.60.4-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 4.60.4-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 4.60.4-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 4.60.4-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Feb 05 2016 Fedora Release Engineering - 4.60.4-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Oct 01 2015 Jon Ciesla - 4.60.4-21 +- Move from lesstif to motif, BZ 1267852. + +* Fri Jun 19 2015 Fedora Release Engineering - 4.60.4-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Aug 18 2014 Fedora Release Engineering - 4.60.4-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 4.60.4-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Aug 04 2013 Fedora Release Engineering - 4.60.4-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Feb 15 2013 Fedora Release Engineering - 4.60.4-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sun Jul 22 2012 Fedora Release Engineering - 4.60.4-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jan 14 2012 Fedora Release Engineering - 4.60.4-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon Feb 07 2011 Fedora Release Engineering - 4.60.4-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Jul 27 2009 Fedora Release Engineering - 4.60.4-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Feb 26 2009 Fedora Release Engineering - 4.60.4-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sat Sep 20 2008 Patrice Dumas 4.60.4-10 +- use %%patch0 instead of %%patch (#463002) + +* Tue Feb 19 2008 Fedora Release Engineering - 4.60.4-9 +- Autorebuild for GCC 4.3 + +* Wed Aug 22 2007 Patrice Dumas 4.60.4-8 +- fix license and source url + +* Wed Jul 25 2007 Patrice Dumas 4.60.4-7 +- add rhel conditionals + +* Sat May 12 2007 Patrice Dumas 4.60.4-6 +- keep timestamps +- examples/builderXcessory is arch specific + +* Sun Dec 10 2006 Patrice Dumas 4.60.4-5 +- Requires automake is for -devel (#219047) + +* Sat Sep 9 2006 Patrice Dumas 4.60.4-4 +- add BuildRequires libXmu-devel for examples + +* Thu Aug 31 2006 Patrice Dumas 4.60.4-3 +- rebuild against lesstif +- add Obsolete/Provides for Xbae + +* Fri Aug 25 2006 Patrice Dumas 4.60.4-2 +- remove dependency on Wcl-devel (was only of use for an example) +- clean docs + +* Thu May 18 2006 Patrice Dumas 4.60.4-1 +- Packaged for fedora extras diff --git a/xbae.spec b/xbae.spec index a74f3a1..d7b7f81 100644 --- a/xbae.spec +++ b/xbae.spec @@ -1,6 +1,6 @@ Name: xbae Version: 4.60.4 -Release: 45%{?dist} +Release: %autorelease Summary: Motif matrix, caption and text input widgets # all the files are covered by the MIT license, except DebugUtil.c LGPLv2+ License: LGPL-2.0-or-later @@ -166,140 +166,4 @@ mv __dist_examples __dist_code_examples/code_examples %changelog -* Sat Jan 17 2026 Fedora Release Engineering - 4.60.4-45 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild - -* Fri Jul 25 2025 Fedora Release Engineering - 4.60.4-44 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild - -* Sun Jan 19 2025 Fedora Release Engineering - 4.60.4-43 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Sat Jul 20 2024 Fedora Release Engineering - 4.60.4-42 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Mon Feb 05 2024 Gwyn Ciesla - 4.60.4-41 -- Patch for stricter flags - -* Sat Jan 27 2024 Fedora Release Engineering - 4.60.4-40 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Sat Jul 22 2023 Fedora Release Engineering - 4.60.4-39 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Fri Mar 03 2023 Gwyn Ciesla - 4.60.4-38 -- migrated to SPDX license - -* Thu Feb 16 2023 Florian Weimer - 4.60.4-37 -- Port configure script to C99 - -* Sat Jan 21 2023 Fedora Release Engineering - 4.60.4-36 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Sat Jul 23 2022 Fedora Release Engineering - 4.60.4-35 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Sat Jan 22 2022 Fedora Release Engineering - 4.60.4-34 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering - 4.60.4-33 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jan 27 2021 Fedora Release Engineering - 4.60.4-32 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Wed Jul 29 2020 Fedora Release Engineering - 4.60.4-31 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Fri Jan 31 2020 Fedora Release Engineering - 4.60.4-30 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Sat Jul 27 2019 Fedora Release Engineering - 4.60.4-29 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sun Feb 03 2019 Fedora Release Engineering - 4.60.4-28 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sat Jul 14 2018 Fedora Release Engineering - 4.60.4-27 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Feb 09 2018 Fedora Release Engineering - 4.60.4-26 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Aug 03 2017 Fedora Release Engineering - 4.60.4-25 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 4.60.4-24 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 4.60.4-23 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Feb 05 2016 Fedora Release Engineering - 4.60.4-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Thu Oct 01 2015 Jon Ciesla - 4.60.4-21 -- Move from lesstif to motif, BZ 1267852. - -* Fri Jun 19 2015 Fedora Release Engineering - 4.60.4-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Aug 18 2014 Fedora Release Engineering - 4.60.4-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 4.60.4-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 4.60.4-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Fri Feb 15 2013 Fedora Release Engineering - 4.60.4-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sun Jul 22 2012 Fedora Release Engineering - 4.60.4-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering - 4.60.4-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Mon Feb 07 2011 Fedora Release Engineering - 4.60.4-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Mon Jul 27 2009 Fedora Release Engineering - 4.60.4-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Thu Feb 26 2009 Fedora Release Engineering - 4.60.4-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Sat Sep 20 2008 Patrice Dumas 4.60.4-10 -- use %%patch0 instead of %%patch (#463002) - -* Tue Feb 19 2008 Fedora Release Engineering - 4.60.4-9 -- Autorebuild for GCC 4.3 - -* Wed Aug 22 2007 Patrice Dumas 4.60.4-8 -- fix license and source url - -* Wed Jul 25 2007 Patrice Dumas 4.60.4-7 -- add rhel conditionals - -* Sat May 12 2007 Patrice Dumas 4.60.4-6 -- keep timestamps -- examples/builderXcessory is arch specific - -* Sun Dec 10 2006 Patrice Dumas 4.60.4-5 -- Requires automake is for -devel (#219047) - -* Sat Sep 9 2006 Patrice Dumas 4.60.4-4 -- add BuildRequires libXmu-devel for examples - -* Thu Aug 31 2006 Patrice Dumas 4.60.4-3 -- rebuild against lesstif -- add Obsolete/Provides for Xbae - -* Fri Aug 25 2006 Patrice Dumas 4.60.4-2 -- remove dependency on Wcl-devel (was only of use for an example) -- clean docs - -* Thu May 18 2006 Patrice Dumas 4.60.4-1 -- Packaged for fedora extras +%autochangelog From c4b736d39e45c0203346a0b680024f71c852dc56 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 09:01:15 +0000 Subject: [PATCH 52/52] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild