From 83049aa3e68d75179ece7338a1d547194b0f3d57 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 22 Apr 2008 02:11:20 +0000 Subject: [PATCH 1/6] Initialize branch F-9 for xeuphoric --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..1c26f78 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-9 From dc403868420354c87dd485ff1421729e110dc01c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:40:56 +0000 Subject: [PATCH 2/6] 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 5e6fab6..ff8f15b 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xeuphoric -# $Id$ +# $Id: Makefile,v 1.1 2006/10/15 21:55:31 pfj Exp $ NAME := xeuphoric 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 9009b0a7b1de31f46061b1f84783496d812fd864 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:30:48 +0000 Subject: [PATCH 3/6] 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 5e6fab6..ff8f15b 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: xeuphoric -# $Id$ +# $Id: Makefile,v 1.1 2006/10/15 21:55:31 pfj Exp $ NAME := xeuphoric 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 4a7a57b07ce7cadc8be2acb6f2f6af1f886527fb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:42:01 +0000 Subject: [PATCH 4/6] 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 ff8f15b..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xeuphoric -# $Id: Makefile,v 1.1 2006/10/15 21:55:31 pfj Exp $ -NAME := xeuphoric -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 bfeecec24461feee83ec73b16a304ba12f3dd10d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:42:02 +0000 Subject: [PATCH 5/6] 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 ff8f15b..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xeuphoric -# $Id: Makefile,v 1.1 2006/10/15 21:55:31 pfj Exp $ -NAME := xeuphoric -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 1c26f78..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-9 From 90a649deb96009171618d29f58fe4b071db350f8 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 12 Jul 2011 17:25:52 -0400 Subject: [PATCH 6/6] Retire xeuphoric. --- dead.package | 1 + sources | 1 - xeuphoric.png | Bin 244 -> 0 bytes xeuphoric.spec | 205 ------------------------------------------------- 4 files changed, 1 insertion(+), 206 deletions(-) create mode 100644 dead.package delete mode 100644 sources delete mode 100644 xeuphoric.png delete mode 100644 xeuphoric.spec diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..440e457 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +This package was fully retired on 2011-07-12 - it hasn't been shipped in a long time (if ever). Cleaning up some database/SCM discrepancies. diff --git a/sources b/sources deleted file mode 100644 index 585fdf7..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -4a2469ee45d6476350ffc0a92d165990 xeuphoric-0.18.2.tar.gz diff --git a/xeuphoric.png b/xeuphoric.png deleted file mode 100644 index 3cd4f32338aa4ff76def107c247bb44f292b264d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 244 zcmeAS@N?(olHy`uVBq!ia0y~yU{C;I4mJh`hT^KKFANL}Y)RhkE)4%caKYZ?lNlHo zI14-?iy0WWg+Z8+Vb&Z81_lQ95>H=O_G|0{Jle)u2D?E9G{pWXN)`oo+X_UAv!OxVnId;OX%_D6(6Bv`+Axm?!YzF^ xeuphoric.1.conv \ - && /bin/mv -f xeuphoric.1.conv xeuphoric.1 -popd -pushd doc/euphoric-0.99b -sed -i 's|\r||' * -sed -i 's|\x1A\xFF||g' HISTORIC -sed -i 's|\xA3||g' HISTORIC -iconv -f iso8859-1 HISTORIQ -t utf8 > HISTORIQ.conv \ - && /bin/mv -f HISTORIQ.conv HISTORIQ -iconv -f iso8859-1 LISEZMOI -t utf8 > LISEZMOI.conv \ - && /bin/mv -f LISEZMOI.conv LISEZMOI -iconv -f iso8859-1 MANUAL -t utf8 > MANUAL.conv \ - && /bin/mv -f MANUAL.conv MANUAL -iconv -f iso8859-1 MANUEL -t utf8 > MANUEL.conv \ - && /bin/mv -f MANUEL.conv MANUEL -popd - - -%build -# Note, not an autotools configure! -./configure -make CFLAGS="-DX11 %{optflags}" %{?_smp_mflags} - -# Generate desktop files -cat >%{name}-atmos.desktop <%{name}-oric1.desktop <%{name}-telestrat.desktop < - 0.18.2-10 -- Autorebuild for GCC 4.3 - -* Fri Sep 28 2007 Ian Chapman 0.18.2-9 -- Changed to exclusivearch %%{ix86}. (BZ #310391) - -* Tue Aug 21 2007 Ian Chapman 0.18.2-8 -- Release bump for F8 mass rebuild -- License change due to new guidelines - -* Fri Jun 29 2007 Ian Chapman 0.18.2-7 -- Various cleanups to the SPEC including conforming to new guidelines -- Fix BZ #245091 -- Additional .desktop files for other emulator models -- Encoding fixes for documentation -- Fixed installation of broken man page - -* Sat Oct 21 2006 Paul F. Johnson - 0.18.2-6 -- changed ppc64 to ppc - -* Sun Oct 15 2006 Paul F. Johnson - 0.18.2-5 -- corrected iconv - -* Sun Oct 15 2006 Paul F. Johnson - 0.18.2-4 -- fixed sysconfdir issue -- added desktop file and desktop icon -- added post and postun -- added CFLAGS to the make line - -* Sat Oct 14 2006 Paul F. Johnson - 0.18.2-3 -- created new ROM subpackage - -* Sat Aug 26 2006 Paul F. Johnson - 0.18.2-2 -- fixed sysconfdir problem - -* Mon Aug 10 2006 Paul F. Johnson - 0.18.2-1 -- Initial import into FE -- created datapath patch -- added own makeinstall as the provided one is broken