From 87d30827d2cef72056fb7ea683a13f27ccb6dd30 Mon Sep 17 00:00:00 2001 From: Michael Stahnke Date: Sun, 4 Mar 2007 17:35:12 +0000 Subject: [PATCH 01/12] auto-import x2vnc-1.7.2-4 on branch devel from x2vnc-1.7.2-4.src.rpm --- .cvsignore | 1 + sources | 1 + x2vnc.spec | 61 +++++++++++++++++++++++++++++++++++++++++ x2vnc_makefile.in.patch | 18 ++++++++++++ 4 files changed, 81 insertions(+) create mode 100644 x2vnc.spec create mode 100644 x2vnc_makefile.in.patch diff --git a/.cvsignore b/.cvsignore index e69de29..af90dd0 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +x2vnc-1.7.2.tar.gz diff --git a/sources b/sources index e69de29..47cd7e6 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +f23f86bcfa12a80eaeb886ab9b3ee447 x2vnc-1.7.2.tar.gz diff --git a/x2vnc.spec b/x2vnc.spec new file mode 100644 index 0000000..7709f7f --- /dev/null +++ b/x2vnc.spec @@ -0,0 +1,61 @@ +Name: x2vnc +Version: 1.7.2 +Release: 4%{?dist} +Summary: Dual screen hack for VNC + +Group: User Interface/X +License: GPL +URL: http://fredrik.hubbe.net/x2vnc.html +Source0: http://fredrik.hubbe.net/x2vnc/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch0: x2vnc_makefile.in.patch +BuildRequires: libXxf86dga-devel, libXrandr-devel, libXinerama-devel +BuildRequires: libXScrnSaver-devel + +%description +This program will let you use two screens on two different comptuers +as if they were connected to the same computer even if +one computer runs Windows. + + +%prep +%setup -q +%patch -b .patch0 +#Fix a file-not-utf8 warning in rpmlint +for file in README x2vnc.man ; do + iconv -f ISO-8859-5 -t UTF-8 $file > $file.tmp && \ + mv $file.tmp $file || rm -f $file.tmp +done + + +%build +%configure +make %{?_smp_mflags} + + +%install rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc README ChangeLog COPYING +%{_bindir}/* +%{_mandir}/man1/* + + +%changelog +* Sat Mar 03 2007 Michael Stahnke - 1.7.2-4 +- Removed ls and pwd from spec (was used for debugging). +* Sat Feb 24 2007 Michael Stahnke - 1.7.2-3 +- Fixing a few more items presented in Bug #228434. + +* Tue Feb 20 2007 Michael Stahnke - 1.7.2-2 +- Fixing Items presented in Bug #228434. + +* Tue Feb 12 2007 Michael Stahnke - 1.7.2-1 +- Initial packaging. diff --git a/x2vnc_makefile.in.patch b/x2vnc_makefile.in.patch new file mode 100644 index 0000000..6a55018 --- /dev/null +++ b/x2vnc_makefile.in.patch @@ -0,0 +1,18 @@ +--- Makefile.in 2007-02-12 14:53:13.000000000 -0600 ++++ Makefile.in.new 2007-02-12 14:53:42.000000000 -0600 +@@ -19,12 +19,12 @@ + install:: install.bin install.man + + install.bin: +- test -d "$(DESTDIR)$(BINDIR)" || mkdir "$(DESTDIR)$(BINDIR)" ++ test -d "$(DESTDIR)$(BINDIR)" || mkdir -p "$(DESTDIR)$(BINDIR)" + @INSTALL_PROGRAM@ x2vnc "$(DESTDIR)$(BINDIR)/x2vnc" + + install.man: +- test -d "$(DESTDIR)$(MANDIR)" || mkdir "$(DESTDIR)$(MANDIR)" +- test -d "$(DESTDIR)$(MANDIR)/man1" || mkdir "$(DESTDIR)$(MANDIR)/man1" ++ test -d "$(DESTDIR)$(MANDIR)" || mkdir -p "$(DESTDIR)$(MANDIR)" ++ test -d "$(DESTDIR)$(MANDIR)/man1" || mkdir -p "$(DESTDIR)$(MANDIR)/man1" + @INSTALL_DATA@ x2vnc.man "$(DESTDIR)$(MANDIR)/man1/x2vnc.1" + + clean: From 26ae10718ec9a6b19911e97f579fd3328571b838 Mon Sep 17 00:00:00 2001 From: Michael Stahnke Date: Sun, 4 Mar 2007 17:37:26 +0000 Subject: [PATCH 02/12] Changed for -5 release by cleaning up spec file --- x2vnc.spec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/x2vnc.spec b/x2vnc.spec index 7709f7f..79e6a0e 100644 --- a/x2vnc.spec +++ b/x2vnc.spec @@ -1,6 +1,6 @@ Name: x2vnc Version: 1.7.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Dual screen hack for VNC Group: User Interface/X @@ -17,7 +17,6 @@ This program will let you use two screens on two different comptuers as if they were connected to the same computer even if one computer runs Windows. - %prep %setup -q %patch -b .patch0 @@ -27,7 +26,6 @@ for file in README x2vnc.man ; do mv $file.tmp $file || rm -f $file.tmp done - %build %configure make %{?_smp_mflags} @@ -49,8 +47,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Mar 04 2007 Michael Stahnke - 1.7.2-5 +- Cleaned up spec file + * Sat Mar 03 2007 Michael Stahnke - 1.7.2-4 - Removed ls and pwd from spec (was used for debugging). + * Sat Feb 24 2007 Michael Stahnke - 1.7.2-3 - Fixing a few more items presented in Bug #228434. From 350977e416a5c7aa9090beaa7e1ce5a94c1efa34 Mon Sep 17 00:00:00 2001 From: Michael Stahnke Date: Sun, 4 Mar 2007 17:45:39 +0000 Subject: [PATCH 03/12] Fixed a rm -rf $RPM_BUILD_ROOT issue (forgot a newline) --- x2vnc.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/x2vnc.spec b/x2vnc.spec index 79e6a0e..934ad05 100644 --- a/x2vnc.spec +++ b/x2vnc.spec @@ -1,6 +1,6 @@ Name: x2vnc Version: 1.7.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Dual screen hack for VNC Group: User Interface/X @@ -31,7 +31,8 @@ done make %{?_smp_mflags} -%install rm -rf $RPM_BUILD_ROOT +%install +rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" @@ -47,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Mar 04 2007 Michael Stahnke - 1.7.2-6 +- Fixed a bug in spec + * Sun Mar 04 2007 Michael Stahnke - 1.7.2-5 - Cleaned up spec file From 0a45d5ffcbbda9292f451c5ef3f2429a71512186 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Mon, 15 Oct 2007 13:18:27 +0000 Subject: [PATCH 04/12] fix typo in description --- x2vnc.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x2vnc.spec b/x2vnc.spec index 934ad05..009d81b 100644 --- a/x2vnc.spec +++ b/x2vnc.spec @@ -13,7 +13,7 @@ BuildRequires: libXxf86dga-devel, libXrandr-devel, libXinerama-devel BuildRequires: libXScrnSaver-devel %description -This program will let you use two screens on two different comptuers +This program will let you use two screens on two different computers as if they were connected to the same computer even if one computer runs Windows. From dcee64872ee5d1990aa49d6fa4f0c5297a435c01 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 20 Feb 2008 02:43:47 +0000 Subject: [PATCH 05/12] - Autorebuild for GCC 4.3 --- x2vnc.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/x2vnc.spec b/x2vnc.spec index 009d81b..714d2f6 100644 --- a/x2vnc.spec +++ b/x2vnc.spec @@ -1,6 +1,6 @@ Name: x2vnc Version: 1.7.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Dual screen hack for VNC Group: User Interface/X @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 19 2008 Fedora Release Engineering - 1.7.2-7 +- Autorebuild for GCC 4.3 + * Sun Mar 04 2007 Michael Stahnke - 1.7.2-6 - Fixed a bug in spec From 1413c402c48dfe35f60aea68e75138ca48a14249 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jason=20=E3=83=86=E3=82=A3=E3=83=93=E3=83=84?= Date: Tue, 12 Aug 2008 14:15:13 +0000 Subject: [PATCH 06/12] - Fix license tag. --- x2vnc.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/x2vnc.spec b/x2vnc.spec index 714d2f6..682d1af 100644 --- a/x2vnc.spec +++ b/x2vnc.spec @@ -1,10 +1,10 @@ Name: x2vnc Version: 1.7.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Dual screen hack for VNC Group: User Interface/X -License: GPL +License: GPLv2+ URL: http://fredrik.hubbe.net/x2vnc.html Source0: http://fredrik.hubbe.net/x2vnc/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Aug 12 2008 Jason L Tibbitts III - 1.7.2 -8 +- Fix license tag. + * Tue Feb 19 2008 Fedora Release Engineering - 1.7.2-7 - Autorebuild for GCC 4.3 From aeba83cbe90f5a72b560676ea6ba2b6413efa1f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jason=20=E3=83=86=E3=82=A3=E3=83=93=E3=83=84?= Date: Wed, 13 Aug 2008 02:39:52 +0000 Subject: [PATCH 07/12] - Fix %patch without corresponding "Patch:" tag error which broke the build. --- x2vnc.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/x2vnc.spec b/x2vnc.spec index 682d1af..79ef548 100644 --- a/x2vnc.spec +++ b/x2vnc.spec @@ -1,6 +1,6 @@ Name: x2vnc Version: 1.7.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Dual screen hack for VNC Group: User Interface/X @@ -19,7 +19,7 @@ one computer runs Windows. %prep %setup -q -%patch -b .patch0 +%patch0 -b .patch0 #Fix a file-not-utf8 warning in rpmlint for file in README x2vnc.man ; do iconv -f ISO-8859-5 -t UTF-8 $file > $file.tmp && \ @@ -48,7 +48,10 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Tue Aug 12 2008 Jason L Tibbitts III - 1.7.2 -8 +* Tue Aug 12 2008 Jason L Tibbitts III - 1.7.2-9 +- Fix %%patch without corresponding "Patch:" tag error which broke the build. + +* Tue Aug 12 2008 Jason L Tibbitts III - 1.7.2-8 - Fix license tag. * Tue Feb 19 2008 Fedora Release Engineering - 1.7.2-7 From ba86d38766300da2dea6905adf7c21e3126efdf6 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Thu, 26 Feb 2009 07:32:14 +0000 Subject: [PATCH 08/12] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- x2vnc.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/x2vnc.spec b/x2vnc.spec index 79ef548..6c5be13 100644 --- a/x2vnc.spec +++ b/x2vnc.spec @@ -1,6 +1,6 @@ Name: x2vnc Version: 1.7.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Dual screen hack for VNC Group: User Interface/X @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 1.7.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Aug 12 2008 Jason L Tibbitts III - 1.7.2-9 - Fix %%patch without corresponding "Patch:" tag error which broke the build. From 5dee8e89f3dfc04b0498d3b6427517c3a9575af0 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 07:32:32 +0000 Subject: [PATCH 09/12] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- x2vnc.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/x2vnc.spec b/x2vnc.spec index 6c5be13..3c909d7 100644 --- a/x2vnc.spec +++ b/x2vnc.spec @@ -1,6 +1,6 @@ Name: x2vnc Version: 1.7.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Dual screen hack for VNC Group: User Interface/X @@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 1.7.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.7.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 03365f67404c0721307a0ea65d7955e82f2784eb Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:40:53 +0000 Subject: [PATCH 10/12] 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 0af8035..0847b1a 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: x2vnc -# $Id$ +# $Id: Makefile,v 1.1 2007/03/04 17:01:39 jwboyer Exp $ NAME := x2vnc 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 e47bd69ac861e314f99b53aded3b2108297a8306 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:30:04 +0000 Subject: [PATCH 11/12] 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 0847b1a..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: x2vnc -# $Id: Makefile,v 1.1 2007/03/04 17:01:39 jwboyer Exp $ -NAME := x2vnc -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 4edaa3ffad40b8acd4d93c07eff43f869d5ffd8a Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 27 Aug 2010 15:15:58 -0400 Subject: [PATCH 12/12] Retire x2vnc. --- dead.package | 1 + sources | 1 - x2vnc.spec | 82 ----------------------------------------- x2vnc_makefile.in.patch | 18 --------- 4 files changed, 1 insertion(+), 101 deletions(-) create mode 100644 dead.package delete mode 100644 sources delete mode 100644 x2vnc.spec delete mode 100644 x2vnc_makefile.in.patch diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..7dcad86 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +This package was retired due to no active owner on 2010-08-27 diff --git a/sources b/sources deleted file mode 100644 index 47cd7e6..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -f23f86bcfa12a80eaeb886ab9b3ee447 x2vnc-1.7.2.tar.gz diff --git a/x2vnc.spec b/x2vnc.spec deleted file mode 100644 index 3c909d7..0000000 --- a/x2vnc.spec +++ /dev/null @@ -1,82 +0,0 @@ -Name: x2vnc -Version: 1.7.2 -Release: 11%{?dist} -Summary: Dual screen hack for VNC - -Group: User Interface/X -License: GPLv2+ -URL: http://fredrik.hubbe.net/x2vnc.html -Source0: http://fredrik.hubbe.net/x2vnc/%{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Patch0: x2vnc_makefile.in.patch -BuildRequires: libXxf86dga-devel, libXrandr-devel, libXinerama-devel -BuildRequires: libXScrnSaver-devel - -%description -This program will let you use two screens on two different computers -as if they were connected to the same computer even if -one computer runs Windows. - -%prep -%setup -q -%patch0 -b .patch0 -#Fix a file-not-utf8 warning in rpmlint -for file in README x2vnc.man ; do - iconv -f ISO-8859-5 -t UTF-8 $file > $file.tmp && \ - mv $file.tmp $file || rm -f $file.tmp -done - -%build -%configure -make %{?_smp_mflags} - - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -%defattr(-,root,root,-) -%doc README ChangeLog COPYING -%{_bindir}/* -%{_mandir}/man1/* - - -%changelog -* Mon Jul 27 2009 Fedora Release Engineering - 1.7.2-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Wed Feb 25 2009 Fedora Release Engineering - 1.7.2-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Tue Aug 12 2008 Jason L Tibbitts III - 1.7.2-9 -- Fix %%patch without corresponding "Patch:" tag error which broke the build. - -* Tue Aug 12 2008 Jason L Tibbitts III - 1.7.2-8 -- Fix license tag. - -* Tue Feb 19 2008 Fedora Release Engineering - 1.7.2-7 -- Autorebuild for GCC 4.3 - -* Sun Mar 04 2007 Michael Stahnke - 1.7.2-6 -- Fixed a bug in spec - -* Sun Mar 04 2007 Michael Stahnke - 1.7.2-5 -- Cleaned up spec file - -* Sat Mar 03 2007 Michael Stahnke - 1.7.2-4 -- Removed ls and pwd from spec (was used for debugging). - -* Sat Feb 24 2007 Michael Stahnke - 1.7.2-3 -- Fixing a few more items presented in Bug #228434. - -* Tue Feb 20 2007 Michael Stahnke - 1.7.2-2 -- Fixing Items presented in Bug #228434. - -* Tue Feb 12 2007 Michael Stahnke - 1.7.2-1 -- Initial packaging. diff --git a/x2vnc_makefile.in.patch b/x2vnc_makefile.in.patch deleted file mode 100644 index 6a55018..0000000 --- a/x2vnc_makefile.in.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- Makefile.in 2007-02-12 14:53:13.000000000 -0600 -+++ Makefile.in.new 2007-02-12 14:53:42.000000000 -0600 -@@ -19,12 +19,12 @@ - install:: install.bin install.man - - install.bin: -- test -d "$(DESTDIR)$(BINDIR)" || mkdir "$(DESTDIR)$(BINDIR)" -+ test -d "$(DESTDIR)$(BINDIR)" || mkdir -p "$(DESTDIR)$(BINDIR)" - @INSTALL_PROGRAM@ x2vnc "$(DESTDIR)$(BINDIR)/x2vnc" - - install.man: -- test -d "$(DESTDIR)$(MANDIR)" || mkdir "$(DESTDIR)$(MANDIR)" -- test -d "$(DESTDIR)$(MANDIR)/man1" || mkdir "$(DESTDIR)$(MANDIR)/man1" -+ test -d "$(DESTDIR)$(MANDIR)" || mkdir -p "$(DESTDIR)$(MANDIR)" -+ test -d "$(DESTDIR)$(MANDIR)/man1" || mkdir -p "$(DESTDIR)$(MANDIR)/man1" - @INSTALL_DATA@ x2vnc.man "$(DESTDIR)$(MANDIR)/man1/x2vnc.1" - - clean: