From eb9f51966a4b9ebd76eb3ad08867775a8c63b533 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 29 Sep 2009 07:20:55 +0000 Subject: [PATCH 1/7] Initialize branch F-12 for xdx --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..06de2d2 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-12 From 6fe9e23a809c4c9c1054b1f9b85f9d2e5d0d8ec7 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:40:56 +0000 Subject: [PATCH 2/7] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2129159..0c7bb5d 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := xdx 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 ad0dc1687466781f5369e0b30bf8f09fcc52355e Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:30:28 +0000 Subject: [PATCH 3/7] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2129159..0c7bb5d 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := xdx 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 4ac85e22f923e77dd57972b35d0f4735e58cfeee Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:38:45 +0000 Subject: [PATCH 4/7] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch 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 0c7bb5d..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xdx -# $Id$ -NAME := xdx -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/branch b/branch deleted file mode 100644 index 06de2d2..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-12 From 24dbe2cca91aa5983d82986490a881d4537716ff Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:38:46 +0000 Subject: [PATCH 5/7] 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 0c7bb5d..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xdx -# $Id$ -NAME := xdx -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 312a21cc7d5c2d90c4720e8825cfb9284e40ef4a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 22:01:35 -0600 Subject: [PATCH 6/7] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- xdx.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xdx.spec b/xdx.spec index e622aa3..591b075 100644 --- a/xdx.spec +++ b/xdx.spec @@ -1,6 +1,6 @@ Name: xdx Version: 2.4.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: DX-cluster tcp/ip client for amateur radio Group: Applications/Communications @@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 2.4.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon Jul 27 2009 Fedora Release Engineering - 2.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 1ea4abe8f294123ead63d7966577e4dfdde4bbe6 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 25 Jul 2011 17:03:05 -0400 Subject: [PATCH 7/7] Retire xdx. --- dead.package | 1 + sources | 1 - xdx.spec | 86 ---------------------------------------------------- 3 files changed, 1 insertion(+), 87 deletions(-) create mode 100644 dead.package delete mode 100644 sources delete mode 100644 xdx.spec diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..6c90bdc --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +This package was retired on 2011-07-25 due to it being unable to build this package for multiple releases (FTBFS). diff --git a/sources b/sources deleted file mode 100644 index bd807ce..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -b6ba2d4fb8dd3b9cf2806902a7a284e7 xdx-2.4.1.tar.gz diff --git a/xdx.spec b/xdx.spec deleted file mode 100644 index 591b075..0000000 --- a/xdx.spec +++ /dev/null @@ -1,86 +0,0 @@ -Name: xdx -Version: 2.4.1 -Release: 4%{?dist} -Summary: DX-cluster tcp/ip client for amateur radio - -Group: Applications/Communications -License: GPLv2+ -URL: http://pg4i.chronos.org.uk/linux/%{name}.html -Source0: http://pg4i.chronos.org.uk/download/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: pkgconfig, gtk2-devel, gettext, desktop-file-utils -#Requires: - -%description -Xdx is a client to connect to a DX-cluster. Dx messages will be displayed -in a list, announcements will go to a text display. - -As well as the usual functions, if you have hamlib installed it can control -the radio and set the frequency simply by double clicking a DX-spot -(using rigctl). - -%prep -%setup -q - - -%build -%configure -make %{?_smp_mflags} - - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT - -%find_lang %{name} - -desktop-file-install --vendor fedora --delete-original \ - --dir $RPM_BUILD_ROOT%{_datadir}/applications \ - --remove-category Application \ - $RPM_BUILD_ROOT%{_datadir}/applications/Xdx.desktop - -#don't include backup file in package -rm -f `find $RPM_BUILD_ROOT -name *~` - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -f %{name}.lang -%defattr(-,root,root,-) -%doc README AUTHORS ChangeLog COPYING NEWS -%{_bindir}/%{name} -%{_datadir}/%{name} -%{_datadir}/applications/* -%{_datadir}/man/man1/%{name}.1.gz - - -%changelog -* Mon Feb 07 2011 Fedora Release Engineering - 2.4.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Mon Jul 27 2009 Fedora Release Engineering - 2.4.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Thu Feb 26 2009 Fedora Release Engineering - 2.4.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Sun Dec 22 2008 Sindre Pedersen Bjørdal 2.4.1-1 -- Upstream update - -* Thu Feb 28 2008 Robert 'Bob' Jensen 2.4-2 -- Submit for review - -* Tue Dec 05 2007 Robert 'Bob' Jensen 2.4-1 -- Upstream update - -* Thu Nov 22 2007 Sindre Pedersen Bjørdal 2.3-2 -- Update License to GPLv2+ -- Add gettext dependency -- Add desktop-file-utils shebang -- Don't include backup files - -* Tue Nov 20 2007 Robert 'Bob' Jensen 2.3-1 -- Initial SPEC -