From b8a1dd1d88e2fc53590853d18914fa08248fac0b Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 29 Aug 2007 19:59:57 +0000 Subject: [PATCH 01/15] Initialize branch F-7 for wdaemon --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..c48525c --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-7 From 14e2d8fb44d590278a017a005456d0b0b0e4a601 Mon Sep 17 00:00:00 2001 From: Aristeu Sergio Rozanski Filho Date: Tue, 11 Sep 2007 12:48:00 +0000 Subject: [PATCH 02/15] 0.11-1 --- .cvsignore | 1 + sources | 1 + wdaemon.spec | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 90 insertions(+) create mode 100644 wdaemon.spec diff --git a/.cvsignore b/.cvsignore index e69de29..4dc9f8b 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +wdaemon-0.11.tar.bz2 diff --git a/sources b/sources index e69de29..83aa4f1 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +ccf216d77a096613aa7ddc9da7976102 wdaemon-0.11.tar.bz2 diff --git a/wdaemon.spec b/wdaemon.spec new file mode 100644 index 0000000..08c8469 --- /dev/null +++ b/wdaemon.spec @@ -0,0 +1,88 @@ +Name: wdaemon +Version: 0.11 +Release: 1%{?dist} +Summary: Hotplug helper for Wacom X.org driver + +Group: User Interface/X Hardware Support +License: GPL +URL: http://jake.ruivo.org/~aris/wdaemon/ +Source0: http://jake.ruivo.org/~aris/wdaemon/wdaemon-%{version}.tar.bz2 + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} +BuildRequires: glibc-devel +Requires: udev >= 030-21 + +%description +Helper application which emulates persistent input devices for Wacom tablets +so they can be plugged and unplugged while X.org server is running. This should +go away as soon X.org properly supports hotplugging. + +%prep +%setup -q + +%build +export CFLAGS="$RPM_OPT_FLAGS" +make + +%install +rm -rf $RPM_BUILD_ROOT + +make DESTDIR=$RPM_BUILD_ROOT bindir=%{_bindir} sysconfdir=%{_sysconfdir} install; +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/scripts/ +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/ +install -m 0755 udev/is_uinput.sh $RPM_BUILD_ROOT%{_sysconfdir}/udev/scripts/ +install -m 0644 udev/61-uinput-wacom.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/ +install -m 0644 udev/61-uinput-stddev.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/ + +%clean +rm -rf $RPM_BUILD_ROOT + +%post +if [ $1 = 1 ]; then + /sbin/chkconfig --add %{name} +fi + +%preun +if [ $1 = 0 ]; then + /sbin/service %{name} stop > /dev/null 2>&1 + /sbin/chkconfig --del %{name} +fi + +%postun +if [ $1 -ge 1 ]; then + /sbin/service %{name} condrestart >/dev/null 2>&1 +fi + +%files +%defattr(-,root,root,-) +%doc AUTHORS LICENSE Changelog README simple.conf +%{_bindir}/wdaemon +%config(noreplace) %{_sysconfdir}/udev/rules.d/61-uinput-wacom.rules +%config(noreplace) %{_sysconfdir}/udev/rules.d/61-uinput-stddev.rules +%{_sysconfdir}/rc.d/init.d/wdaemon +%{_sysconfdir}/udev/scripts/is_uinput.sh + +%changelog +* Wed Aug 01 2007 Aristeu Rozanski 0.11-1 +- Updated to version 0.11 + +* Tue Jul 24 2007 Aristeu S. Rozanski F. 0.10-3 +- More problems found by Jarod Wilson fixed: +- Removing exclusive architectures, it used to be in sync with linuxwacom + package +- marking udev rules as non-replaceable config files +- using install on makefile + +* Mon Jul 23 2007 Aristeu S. Rozanski F. 0.10-2 +- Fixing the problems found by Jarod Wilson: +- Fixing make install target +- Fixing Makefile so it honors the provided CFLAGS +- not using makeinstall macro +- installing is_uinput.sh as 755 instead of changing later with attr + +* Fri Jul 20 2007 Aristeu S. Rozanski F. 0.10-1 +* upgrading to version 0.10 + +* Thu Jul 19 2007 Aristeu S. Rozanski F. 0.09-1 +- first release + From d00c6719b359e34e57ff66e0d72fa3eda77389f6 Mon Sep 17 00:00:00 2001 From: Aristeu Sergio Rozanski Filho Date: Tue, 11 Sep 2007 12:58:58 +0000 Subject: [PATCH 03/15] 0.11-1 --- .cvsignore | 1 + sources | 1 + wdaemon.spec | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 90 insertions(+) create mode 100644 wdaemon.spec diff --git a/.cvsignore b/.cvsignore index e69de29..4dc9f8b 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +wdaemon-0.11.tar.bz2 diff --git a/sources b/sources index e69de29..83aa4f1 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +ccf216d77a096613aa7ddc9da7976102 wdaemon-0.11.tar.bz2 diff --git a/wdaemon.spec b/wdaemon.spec new file mode 100644 index 0000000..08c8469 --- /dev/null +++ b/wdaemon.spec @@ -0,0 +1,88 @@ +Name: wdaemon +Version: 0.11 +Release: 1%{?dist} +Summary: Hotplug helper for Wacom X.org driver + +Group: User Interface/X Hardware Support +License: GPL +URL: http://jake.ruivo.org/~aris/wdaemon/ +Source0: http://jake.ruivo.org/~aris/wdaemon/wdaemon-%{version}.tar.bz2 + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} +BuildRequires: glibc-devel +Requires: udev >= 030-21 + +%description +Helper application which emulates persistent input devices for Wacom tablets +so they can be plugged and unplugged while X.org server is running. This should +go away as soon X.org properly supports hotplugging. + +%prep +%setup -q + +%build +export CFLAGS="$RPM_OPT_FLAGS" +make + +%install +rm -rf $RPM_BUILD_ROOT + +make DESTDIR=$RPM_BUILD_ROOT bindir=%{_bindir} sysconfdir=%{_sysconfdir} install; +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/scripts/ +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/ +install -m 0755 udev/is_uinput.sh $RPM_BUILD_ROOT%{_sysconfdir}/udev/scripts/ +install -m 0644 udev/61-uinput-wacom.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/ +install -m 0644 udev/61-uinput-stddev.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/ + +%clean +rm -rf $RPM_BUILD_ROOT + +%post +if [ $1 = 1 ]; then + /sbin/chkconfig --add %{name} +fi + +%preun +if [ $1 = 0 ]; then + /sbin/service %{name} stop > /dev/null 2>&1 + /sbin/chkconfig --del %{name} +fi + +%postun +if [ $1 -ge 1 ]; then + /sbin/service %{name} condrestart >/dev/null 2>&1 +fi + +%files +%defattr(-,root,root,-) +%doc AUTHORS LICENSE Changelog README simple.conf +%{_bindir}/wdaemon +%config(noreplace) %{_sysconfdir}/udev/rules.d/61-uinput-wacom.rules +%config(noreplace) %{_sysconfdir}/udev/rules.d/61-uinput-stddev.rules +%{_sysconfdir}/rc.d/init.d/wdaemon +%{_sysconfdir}/udev/scripts/is_uinput.sh + +%changelog +* Wed Aug 01 2007 Aristeu Rozanski 0.11-1 +- Updated to version 0.11 + +* Tue Jul 24 2007 Aristeu S. Rozanski F. 0.10-3 +- More problems found by Jarod Wilson fixed: +- Removing exclusive architectures, it used to be in sync with linuxwacom + package +- marking udev rules as non-replaceable config files +- using install on makefile + +* Mon Jul 23 2007 Aristeu S. Rozanski F. 0.10-2 +- Fixing the problems found by Jarod Wilson: +- Fixing make install target +- Fixing Makefile so it honors the provided CFLAGS +- not using makeinstall macro +- installing is_uinput.sh as 755 instead of changing later with attr + +* Fri Jul 20 2007 Aristeu S. Rozanski F. 0.10-1 +* upgrading to version 0.10 + +* Thu Jul 19 2007 Aristeu S. Rozanski F. 0.09-1 +- first release + From 363dc0ff0799d558041204baf11ddceaf2c3bc7f Mon Sep 17 00:00:00 2001 From: Aristeu Sergio Rozanski Filho Date: Wed, 19 Sep 2007 15:51:44 +0000 Subject: [PATCH 04/15] updating to upstream version 0.12 --- .cvsignore | 1 + sources | 1 + wdaemon.spec | 5 ++++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.cvsignore b/.cvsignore index 4dc9f8b..27b7b0b 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1,2 @@ wdaemon-0.11.tar.bz2 +wdaemon-0.12.tar.bz2 diff --git a/sources b/sources index 83aa4f1..eb739b2 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ ccf216d77a096613aa7ddc9da7976102 wdaemon-0.11.tar.bz2 +3ca0ff8aad51a12a6deb1fe0734da33c wdaemon-0.12.tar.bz2 diff --git a/wdaemon.spec b/wdaemon.spec index 08c8469..e633709 100644 --- a/wdaemon.spec +++ b/wdaemon.spec @@ -1,5 +1,5 @@ Name: wdaemon -Version: 0.11 +Version: 0.12 Release: 1%{?dist} Summary: Hotplug helper for Wacom X.org driver @@ -63,6 +63,9 @@ fi %{_sysconfdir}/udev/scripts/is_uinput.sh %changelog +* Wed Sep 19 2007 Aristeu Rozanski 0.12-1 +- Updated to version 0.12 + * Wed Aug 01 2007 Aristeu Rozanski 0.11-1 - Updated to version 0.11 From 09f5c896645d2414b811e5678dee7405ec908e54 Mon Sep 17 00:00:00 2001 From: Aristeu Sergio Rozanski Filho Date: Mon, 28 Jan 2008 20:45:10 +0000 Subject: [PATCH 05/15] updating to version 0.13 --- .cvsignore | 2 +- sources | 2 +- wdaemon.spec | 5 ++++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 4dc9f8b..65ed3e1 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -wdaemon-0.11.tar.bz2 +wdaemon-0.13.tar.bz2 diff --git a/sources b/sources index 83aa4f1..8542cae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ccf216d77a096613aa7ddc9da7976102 wdaemon-0.11.tar.bz2 +4061282edd35cc80291323c4225e4e93 wdaemon-0.13.tar.bz2 diff --git a/wdaemon.spec b/wdaemon.spec index 08c8469..d9e0f71 100644 --- a/wdaemon.spec +++ b/wdaemon.spec @@ -1,5 +1,5 @@ Name: wdaemon -Version: 0.11 +Version: 0.13 Release: 1%{?dist} Summary: Hotplug helper for Wacom X.org driver @@ -63,6 +63,9 @@ fi %{_sysconfdir}/udev/scripts/is_uinput.sh %changelog +* Mon Jan 28 2008 Aristeu Rozanski 0.13-1 +- Updated to version 0.13 + * Wed Aug 01 2007 Aristeu Rozanski 0.11-1 - Updated to version 0.11 From cece81f546247f5507adf58be5337a5eed111119 Mon Sep 17 00:00:00 2001 From: Aristeu Sergio Rozanski Filho Date: Wed, 6 Feb 2008 20:48:59 +0000 Subject: [PATCH 06/15] adding missing entries on udev rules for Bamboo and Intuos3 4x6" --- ...13-add_missing_entries_to_udev_rules.patch | 27 +++++++++++++++++++ wdaemon.spec | 7 ++++- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 wdaemon-0.13-add_missing_entries_to_udev_rules.patch diff --git a/wdaemon-0.13-add_missing_entries_to_udev_rules.patch b/wdaemon-0.13-add_missing_entries_to_udev_rules.patch new file mode 100644 index 0000000..c66d95b --- /dev/null +++ b/wdaemon-0.13-add_missing_entries_to_udev_rules.patch @@ -0,0 +1,27 @@ +--- + udev/60-wacom.rules | 4 +++- + udev/61-uinput-wacom.rules | 4 +++- + 2 files changed, 6 insertions(+), 2 deletions(-) + +--- wdaemon-0.13.orig/udev/60-wacom.rules 2008-01-28 16:51:12.000000000 -0500 ++++ wdaemon-0.13/udev/60-wacom.rules 2008-01-28 16:53:22.000000000 -0500 +@@ -47,5 +47,7 @@ SUBSYSTEM=="usb", KERNEL=="event*", ATTR + SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="00b4", SYMLINK+="input/wacom-tablets/intuos3-12x19 input/wacom-tablets/intuos3-12x19-%b" + SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="00b5", SYMLINK+="input/wacom-tablets/intuos3-6x11 input/wacom-tablets/intuos3-6x11-%b" + SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="003f", SYMLINK+="input/wacom-tablets/cintiq21ux input/wacom-tablets/cintiq21ux-%b" +-SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="0047", SYMLINK+="input/wacom-tablets/intuos2-6x8a input/wacom-tablets/intuos2-6x8a-%b" ++SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="0047", SYMLINK+="input/wacom-tablets/intuos2-6x8 input/wacom-tablets/intuos2-6x8-%b" ++SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="00b7", SYMLINK+="input/wacom-tablets/intuos3-4x6 input/wacom-tablets/intuos3-4x6-%b" ++SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="0065", SYMLINK+="input/wacom-tablets/bamboo input/wacom-tablets/bamboo-%b" + +--- wdaemon-0.13.orig/udev/61-uinput-wacom.rules 2007-07-20 11:47:16.000000000 -0400 ++++ wdaemon-0.13/udev/61-uinput-wacom.rules 2008-01-28 16:53:22.000000000 -0500 +@@ -44,5 +44,7 @@ KERNEL=="event*", PROGRAM=="/etc/udev/sc + KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-00b4", SYMLINK+="input/uinput-devices/uinput-wacom-intuos3-12x19-tablet" + KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-00b5", SYMLINK+="input/uinput-devices/uinput-wacom-intuos3-6x11-tablet" + KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-003f", SYMLINK+="input/uinput-devices/uinput-wacom-cintiq21ux-tablet" +-KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-0047", SYMLINK+="input/uinput-devices/uinput-wacom-intuos2-6x8a-tablet" ++KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-0047", SYMLINK+="input/uinput-devices/uinput-wacom-intuos2-6x8-tablet" ++KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-00b7", SYMLINK+="input/uinput-devices/uinput-wacom-intuos3-4x6-tablet" ++KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-0065", SYMLINK+="input/uinput-devices/uinput-wacom-bamboo-tablet" + diff --git a/wdaemon.spec b/wdaemon.spec index d9e0f71..ef8a3d6 100644 --- a/wdaemon.spec +++ b/wdaemon.spec @@ -1,12 +1,13 @@ Name: wdaemon Version: 0.13 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Hotplug helper for Wacom X.org driver Group: User Interface/X Hardware Support License: GPL URL: http://jake.ruivo.org/~aris/wdaemon/ Source0: http://jake.ruivo.org/~aris/wdaemon/wdaemon-%{version}.tar.bz2 +Patch: wdaemon-0.13-add_missing_entries_to_udev_rules.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} BuildRequires: glibc-devel @@ -19,6 +20,7 @@ go away as soon X.org properly supports hotplugging. %prep %setup -q +%patch -p1 %build export CFLAGS="$RPM_OPT_FLAGS" @@ -63,6 +65,9 @@ fi %{_sysconfdir}/udev/scripts/is_uinput.sh %changelog +* Wed Feb 06 2008 Aristeu Rozanski 0.13-2 +- adding missing udev entries (Bamboo and Intuos3 4x6") + * Mon Jan 28 2008 Aristeu Rozanski 0.13-1 - Updated to version 0.13 From 9d9f372a92bd8c3655566f8e3bcb2df12657b295 Mon Sep 17 00:00:00 2001 From: Aristeu Sergio Rozanski Filho Date: Wed, 6 Feb 2008 20:54:38 +0000 Subject: [PATCH 07/15] - Updated to version 0.13 - Added missing entries in udev rules (Bamboo and Intuos3 4x6") --- .cvsignore | 3 +-- sources | 3 +-- ...13-add_missing_entries_to_udev_rules.patch | 27 +++++++++++++++++++ wdaemon.spec | 8 +++++- 4 files changed, 36 insertions(+), 5 deletions(-) create mode 100644 wdaemon-0.13-add_missing_entries_to_udev_rules.patch diff --git a/.cvsignore b/.cvsignore index 27b7b0b..65ed3e1 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1,2 +1 @@ -wdaemon-0.11.tar.bz2 -wdaemon-0.12.tar.bz2 +wdaemon-0.13.tar.bz2 diff --git a/sources b/sources index eb739b2..8542cae 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -ccf216d77a096613aa7ddc9da7976102 wdaemon-0.11.tar.bz2 -3ca0ff8aad51a12a6deb1fe0734da33c wdaemon-0.12.tar.bz2 +4061282edd35cc80291323c4225e4e93 wdaemon-0.13.tar.bz2 diff --git a/wdaemon-0.13-add_missing_entries_to_udev_rules.patch b/wdaemon-0.13-add_missing_entries_to_udev_rules.patch new file mode 100644 index 0000000..c66d95b --- /dev/null +++ b/wdaemon-0.13-add_missing_entries_to_udev_rules.patch @@ -0,0 +1,27 @@ +--- + udev/60-wacom.rules | 4 +++- + udev/61-uinput-wacom.rules | 4 +++- + 2 files changed, 6 insertions(+), 2 deletions(-) + +--- wdaemon-0.13.orig/udev/60-wacom.rules 2008-01-28 16:51:12.000000000 -0500 ++++ wdaemon-0.13/udev/60-wacom.rules 2008-01-28 16:53:22.000000000 -0500 +@@ -47,5 +47,7 @@ SUBSYSTEM=="usb", KERNEL=="event*", ATTR + SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="00b4", SYMLINK+="input/wacom-tablets/intuos3-12x19 input/wacom-tablets/intuos3-12x19-%b" + SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="00b5", SYMLINK+="input/wacom-tablets/intuos3-6x11 input/wacom-tablets/intuos3-6x11-%b" + SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="003f", SYMLINK+="input/wacom-tablets/cintiq21ux input/wacom-tablets/cintiq21ux-%b" +-SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="0047", SYMLINK+="input/wacom-tablets/intuos2-6x8a input/wacom-tablets/intuos2-6x8a-%b" ++SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="0047", SYMLINK+="input/wacom-tablets/intuos2-6x8 input/wacom-tablets/intuos2-6x8-%b" ++SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="00b7", SYMLINK+="input/wacom-tablets/intuos3-4x6 input/wacom-tablets/intuos3-4x6-%b" ++SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="0065", SYMLINK+="input/wacom-tablets/bamboo input/wacom-tablets/bamboo-%b" + +--- wdaemon-0.13.orig/udev/61-uinput-wacom.rules 2007-07-20 11:47:16.000000000 -0400 ++++ wdaemon-0.13/udev/61-uinput-wacom.rules 2008-01-28 16:53:22.000000000 -0500 +@@ -44,5 +44,7 @@ KERNEL=="event*", PROGRAM=="/etc/udev/sc + KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-00b4", SYMLINK+="input/uinput-devices/uinput-wacom-intuos3-12x19-tablet" + KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-00b5", SYMLINK+="input/uinput-devices/uinput-wacom-intuos3-6x11-tablet" + KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-003f", SYMLINK+="input/uinput-devices/uinput-wacom-cintiq21ux-tablet" +-KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-0047", SYMLINK+="input/uinput-devices/uinput-wacom-intuos2-6x8a-tablet" ++KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-0047", SYMLINK+="input/uinput-devices/uinput-wacom-intuos2-6x8-tablet" ++KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-00b7", SYMLINK+="input/uinput-devices/uinput-wacom-intuos3-4x6-tablet" ++KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-0065", SYMLINK+="input/uinput-devices/uinput-wacom-bamboo-tablet" + diff --git a/wdaemon.spec b/wdaemon.spec index e633709..0a768ed 100644 --- a/wdaemon.spec +++ b/wdaemon.spec @@ -1,5 +1,5 @@ Name: wdaemon -Version: 0.12 +Version: 0.13 Release: 1%{?dist} Summary: Hotplug helper for Wacom X.org driver @@ -7,6 +7,7 @@ Group: User Interface/X Hardware Support License: GPL URL: http://jake.ruivo.org/~aris/wdaemon/ Source0: http://jake.ruivo.org/~aris/wdaemon/wdaemon-%{version}.tar.bz2 +Patch: wdaemon-0.13-add_missing_entries_to_udev_rules.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} BuildRequires: glibc-devel @@ -19,6 +20,7 @@ go away as soon X.org properly supports hotplugging. %prep %setup -q +%patch -p1 %build export CFLAGS="$RPM_OPT_FLAGS" @@ -63,6 +65,10 @@ fi %{_sysconfdir}/udev/scripts/is_uinput.sh %changelog +* Wed Feb 06 2008 Aristeu Rozanski 0.13-1 +- Updated to version 0.13 +- Added missing entries in udev rules (Bamboo and Intuos3 4x6") + * Wed Sep 19 2007 Aristeu Rozanski 0.12-1 - Updated to version 0.12 From af010b34a209b2a9a718fb0a04fbf17cdb00cef2 Mon Sep 17 00:00:00 2001 From: Aristeu Sergio Rozanski Filho Date: Wed, 12 Mar 2008 17:26:27 +0000 Subject: [PATCH 08/15] updating to version 0.14 to support more tablets --- .cvsignore | 2 +- sources | 2 +- ...13-add_missing_entries_to_udev_rules.patch | 27 ------------------- wdaemon-add_abs_z.patch | 27 +++++++++++++++++++ wdaemon.spec | 8 ++++-- 5 files changed, 35 insertions(+), 31 deletions(-) delete mode 100644 wdaemon-0.13-add_missing_entries_to_udev_rules.patch create mode 100644 wdaemon-add_abs_z.patch diff --git a/.cvsignore b/.cvsignore index 65ed3e1..3af642d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -wdaemon-0.13.tar.bz2 +wdaemon-0.14.tar.bz2 diff --git a/sources b/sources index 8542cae..06a43fe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4061282edd35cc80291323c4225e4e93 wdaemon-0.13.tar.bz2 +121b74766daa0c58e05090758e796c35 wdaemon-0.14.tar.bz2 diff --git a/wdaemon-0.13-add_missing_entries_to_udev_rules.patch b/wdaemon-0.13-add_missing_entries_to_udev_rules.patch deleted file mode 100644 index c66d95b..0000000 --- a/wdaemon-0.13-add_missing_entries_to_udev_rules.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- - udev/60-wacom.rules | 4 +++- - udev/61-uinput-wacom.rules | 4 +++- - 2 files changed, 6 insertions(+), 2 deletions(-) - ---- wdaemon-0.13.orig/udev/60-wacom.rules 2008-01-28 16:51:12.000000000 -0500 -+++ wdaemon-0.13/udev/60-wacom.rules 2008-01-28 16:53:22.000000000 -0500 -@@ -47,5 +47,7 @@ SUBSYSTEM=="usb", KERNEL=="event*", ATTR - SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="00b4", SYMLINK+="input/wacom-tablets/intuos3-12x19 input/wacom-tablets/intuos3-12x19-%b" - SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="00b5", SYMLINK+="input/wacom-tablets/intuos3-6x11 input/wacom-tablets/intuos3-6x11-%b" - SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="003f", SYMLINK+="input/wacom-tablets/cintiq21ux input/wacom-tablets/cintiq21ux-%b" --SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="0047", SYMLINK+="input/wacom-tablets/intuos2-6x8a input/wacom-tablets/intuos2-6x8a-%b" -+SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="0047", SYMLINK+="input/wacom-tablets/intuos2-6x8 input/wacom-tablets/intuos2-6x8-%b" -+SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="00b7", SYMLINK+="input/wacom-tablets/intuos3-4x6 input/wacom-tablets/intuos3-4x6-%b" -+SUBSYSTEM=="usb", KERNEL=="event*", ATTR{idVendor}=="056a", ATTR{idProduct}=="0065", SYMLINK+="input/wacom-tablets/bamboo input/wacom-tablets/bamboo-%b" - ---- wdaemon-0.13.orig/udev/61-uinput-wacom.rules 2007-07-20 11:47:16.000000000 -0400 -+++ wdaemon-0.13/udev/61-uinput-wacom.rules 2008-01-28 16:53:22.000000000 -0500 -@@ -44,5 +44,7 @@ KERNEL=="event*", PROGRAM=="/etc/udev/sc - KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-00b4", SYMLINK+="input/uinput-devices/uinput-wacom-intuos3-12x19-tablet" - KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-00b5", SYMLINK+="input/uinput-devices/uinput-wacom-intuos3-6x11-tablet" - KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-003f", SYMLINK+="input/uinput-devices/uinput-wacom-cintiq21ux-tablet" --KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-0047", SYMLINK+="input/uinput-devices/uinput-wacom-intuos2-6x8a-tablet" -+KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-0047", SYMLINK+="input/uinput-devices/uinput-wacom-intuos2-6x8-tablet" -+KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-00b7", SYMLINK+="input/uinput-devices/uinput-wacom-intuos3-4x6-tablet" -+KERNEL=="event*", PROGRAM=="/etc/udev/scripts/is_uinput.sh", RESULT=="056a-0065", SYMLINK+="input/uinput-devices/uinput-wacom-bamboo-tablet" - diff --git a/wdaemon-add_abs_z.patch b/wdaemon-add_abs_z.patch new file mode 100644 index 0000000..3881fe8 --- /dev/null +++ b/wdaemon-add_abs_z.patch @@ -0,0 +1,27 @@ +--- a/wacom.c (revision 102) ++++ b/wacom.c (revision 103) +@@ -201,6 +201,7 @@ + set_event(info, UI_SET_KEYBIT, BTN_1); + set_event(info, UI_SET_KEYBIT, BTN_2); + set_event(info, UI_SET_KEYBIT, BTN_3); ++ set_event(info, UI_SET_ABSBIT, ABS_Z); + /* fall thru */ + case INTUOS: + set_event(info, UI_SET_EVBIT, EV_MSC); +@@ -318,6 +319,7 @@ + case GRAPHIRE: + break; + ++ case BEE: + case INTUOS3: + case INTUOS3L: + case CINTIQ: +@@ -325,6 +327,8 @@ + /* fall through */ + case INTUOS3S: + dev->absmax[ABS_RX] = 4096; ++ dev->absmax[ABS_Z] = 899; ++ dev->absmin[ABS_Z] = -900; + /* fall through */ + case INTUOS: + dev->absmax[ABS_WHEEL] = 1023; diff --git a/wdaemon.spec b/wdaemon.spec index 0a768ed..8bb5cc8 100644 --- a/wdaemon.spec +++ b/wdaemon.spec @@ -1,5 +1,5 @@ Name: wdaemon -Version: 0.13 +Version: 0.14 Release: 1%{?dist} Summary: Hotplug helper for Wacom X.org driver @@ -7,7 +7,7 @@ Group: User Interface/X Hardware Support License: GPL URL: http://jake.ruivo.org/~aris/wdaemon/ Source0: http://jake.ruivo.org/~aris/wdaemon/wdaemon-%{version}.tar.bz2 -Patch: wdaemon-0.13-add_missing_entries_to_udev_rules.patch +Patch: wdaemon-add_abs_z.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} BuildRequires: glibc-devel @@ -65,6 +65,10 @@ fi %{_sysconfdir}/udev/scripts/is_uinput.sh %changelog +* Wed Mar 12 2008 Aristeu Rozanski 0.14-1 +- Updated to version 0.14 +- Added fix for Z axis on newer tablets + * Wed Feb 06 2008 Aristeu Rozanski 0.13-1 - Updated to version 0.13 - Added missing entries in udev rules (Bamboo and Intuos3 4x6") From 916228755f68be57a3819373d6d4319e33e10c2a Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Wed, 21 May 2008 18:27:26 +0000 Subject: [PATCH 09/15] fix license tag --- wdaemon.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wdaemon.spec b/wdaemon.spec index 8bb5cc8..413e605 100644 --- a/wdaemon.spec +++ b/wdaemon.spec @@ -1,10 +1,10 @@ Name: wdaemon Version: 0.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Hotplug helper for Wacom X.org driver Group: User Interface/X Hardware Support -License: GPL +License: GPLv2+ URL: http://jake.ruivo.org/~aris/wdaemon/ Source0: http://jake.ruivo.org/~aris/wdaemon/wdaemon-%{version}.tar.bz2 Patch: wdaemon-add_abs_z.patch @@ -65,6 +65,9 @@ fi %{_sysconfdir}/udev/scripts/is_uinput.sh %changelog +* Wed May 21 2008 Tom "spot" Callaway 0.14-2 +- fix license tag + * Wed Mar 12 2008 Aristeu Rozanski 0.14-1 - Updated to version 0.14 - Added fix for Z axis on newer tablets From c74518f17800cadc582054364545695c45bc0a73 Mon Sep 17 00:00:00 2001 From: Aristeu Sergio Rozanski Filho Date: Tue, 2 Sep 2008 19:13:34 +0000 Subject: [PATCH 10/15] updating to version 0.15 --- .cvsignore | 2 +- sources | 2 +- wdaemon.spec | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index 3af642d..754f716 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -wdaemon-0.14.tar.bz2 +wdaemon-0.15.tar.bz2 diff --git a/sources b/sources index 06a43fe..a21be5e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -121b74766daa0c58e05090758e796c35 wdaemon-0.14.tar.bz2 +814152b327aea3cf5e373d92f7472f52 wdaemon-0.15.tar.bz2 diff --git a/wdaemon.spec b/wdaemon.spec index 413e605..744f64d 100644 --- a/wdaemon.spec +++ b/wdaemon.spec @@ -1,13 +1,12 @@ Name: wdaemon -Version: 0.14 -Release: 2%{?dist} +Version: 0.15 +Release: 1%{?dist} Summary: Hotplug helper for Wacom X.org driver Group: User Interface/X Hardware Support License: GPLv2+ URL: http://jake.ruivo.org/~aris/wdaemon/ Source0: http://jake.ruivo.org/~aris/wdaemon/wdaemon-%{version}.tar.bz2 -Patch: wdaemon-add_abs_z.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} BuildRequires: glibc-devel @@ -20,7 +19,6 @@ go away as soon X.org properly supports hotplugging. %prep %setup -q -%patch -p1 %build export CFLAGS="$RPM_OPT_FLAGS" @@ -65,6 +63,9 @@ fi %{_sysconfdir}/udev/scripts/is_uinput.sh %changelog +* Tue Sep 02 2008 Aristeu Rozanski 0.15-1 +- updated to version 0.15 + * Wed May 21 2008 Tom "spot" Callaway 0.14-2 - fix license tag From 8e4509047be7b01236c029edcbb0ffda5c6abc42 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 25 Feb 2009 18:16:02 +0000 Subject: [PATCH 11/15] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- wdaemon.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wdaemon.spec b/wdaemon.spec index 744f64d..084393e 100644 --- a/wdaemon.spec +++ b/wdaemon.spec @@ -1,6 +1,6 @@ Name: wdaemon Version: 0.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Hotplug helper for Wacom X.org driver Group: User Interface/X Hardware Support @@ -63,6 +63,9 @@ fi %{_sysconfdir}/udev/scripts/is_uinput.sh %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 0.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Tue Sep 02 2008 Aristeu Rozanski 0.15-1 - updated to version 0.15 From 6e1781fe8784a7c3fde10c3a7633e6479b91e280 Mon Sep 17 00:00:00 2001 From: Aristeu Sergio Rozanski Filho Date: Wed, 20 May 2009 17:50:56 +0000 Subject: [PATCH 12/15] Xorg now provides input hotplugging --- Makefile | 21 -------- dead.package | 2 + sources | 1 - wdaemon-add_abs_z.patch | 27 ---------- wdaemon.spec | 108 ---------------------------------------- 5 files changed, 2 insertions(+), 157 deletions(-) delete mode 100644 Makefile create mode 100644 dead.package delete mode 100644 sources delete mode 100644 wdaemon-add_abs_z.patch delete mode 100644 wdaemon.spec diff --git a/Makefile b/Makefile deleted file mode 100644 index 029ac21..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wdaemon -# $Id$ -NAME := wdaemon -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 -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/dead.package b/dead.package new file mode 100644 index 0000000..42463a6 --- /dev/null +++ b/dead.package @@ -0,0 +1,2 @@ +Obsolete package with Xorg's new input layer + diff --git a/sources b/sources deleted file mode 100644 index a21be5e..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -814152b327aea3cf5e373d92f7472f52 wdaemon-0.15.tar.bz2 diff --git a/wdaemon-add_abs_z.patch b/wdaemon-add_abs_z.patch deleted file mode 100644 index 3881fe8..0000000 --- a/wdaemon-add_abs_z.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/wacom.c (revision 102) -+++ b/wacom.c (revision 103) -@@ -201,6 +201,7 @@ - set_event(info, UI_SET_KEYBIT, BTN_1); - set_event(info, UI_SET_KEYBIT, BTN_2); - set_event(info, UI_SET_KEYBIT, BTN_3); -+ set_event(info, UI_SET_ABSBIT, ABS_Z); - /* fall thru */ - case INTUOS: - set_event(info, UI_SET_EVBIT, EV_MSC); -@@ -318,6 +319,7 @@ - case GRAPHIRE: - break; - -+ case BEE: - case INTUOS3: - case INTUOS3L: - case CINTIQ: -@@ -325,6 +327,8 @@ - /* fall through */ - case INTUOS3S: - dev->absmax[ABS_RX] = 4096; -+ dev->absmax[ABS_Z] = 899; -+ dev->absmin[ABS_Z] = -900; - /* fall through */ - case INTUOS: - dev->absmax[ABS_WHEEL] = 1023; diff --git a/wdaemon.spec b/wdaemon.spec deleted file mode 100644 index 084393e..0000000 --- a/wdaemon.spec +++ /dev/null @@ -1,108 +0,0 @@ -Name: wdaemon -Version: 0.15 -Release: 2%{?dist} -Summary: Hotplug helper for Wacom X.org driver - -Group: User Interface/X Hardware Support -License: GPLv2+ -URL: http://jake.ruivo.org/~aris/wdaemon/ -Source0: http://jake.ruivo.org/~aris/wdaemon/wdaemon-%{version}.tar.bz2 - -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} -BuildRequires: glibc-devel -Requires: udev >= 030-21 - -%description -Helper application which emulates persistent input devices for Wacom tablets -so they can be plugged and unplugged while X.org server is running. This should -go away as soon X.org properly supports hotplugging. - -%prep -%setup -q - -%build -export CFLAGS="$RPM_OPT_FLAGS" -make - -%install -rm -rf $RPM_BUILD_ROOT - -make DESTDIR=$RPM_BUILD_ROOT bindir=%{_bindir} sysconfdir=%{_sysconfdir} install; -mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/scripts/ -mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/ -install -m 0755 udev/is_uinput.sh $RPM_BUILD_ROOT%{_sysconfdir}/udev/scripts/ -install -m 0644 udev/61-uinput-wacom.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/ -install -m 0644 udev/61-uinput-stddev.rules $RPM_BUILD_ROOT%{_sysconfdir}/udev/rules.d/ - -%clean -rm -rf $RPM_BUILD_ROOT - -%post -if [ $1 = 1 ]; then - /sbin/chkconfig --add %{name} -fi - -%preun -if [ $1 = 0 ]; then - /sbin/service %{name} stop > /dev/null 2>&1 - /sbin/chkconfig --del %{name} -fi - -%postun -if [ $1 -ge 1 ]; then - /sbin/service %{name} condrestart >/dev/null 2>&1 -fi - -%files -%defattr(-,root,root,-) -%doc AUTHORS LICENSE Changelog README simple.conf -%{_bindir}/wdaemon -%config(noreplace) %{_sysconfdir}/udev/rules.d/61-uinput-wacom.rules -%config(noreplace) %{_sysconfdir}/udev/rules.d/61-uinput-stddev.rules -%{_sysconfdir}/rc.d/init.d/wdaemon -%{_sysconfdir}/udev/scripts/is_uinput.sh - -%changelog -* Wed Feb 25 2009 Fedora Release Engineering - 0.15-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Tue Sep 02 2008 Aristeu Rozanski 0.15-1 -- updated to version 0.15 - -* Wed May 21 2008 Tom "spot" Callaway 0.14-2 -- fix license tag - -* Wed Mar 12 2008 Aristeu Rozanski 0.14-1 -- Updated to version 0.14 -- Added fix for Z axis on newer tablets - -* Wed Feb 06 2008 Aristeu Rozanski 0.13-1 -- Updated to version 0.13 -- Added missing entries in udev rules (Bamboo and Intuos3 4x6") - -* Wed Sep 19 2007 Aristeu Rozanski 0.12-1 -- Updated to version 0.12 - -* Wed Aug 01 2007 Aristeu Rozanski 0.11-1 -- Updated to version 0.11 - -* Tue Jul 24 2007 Aristeu S. Rozanski F. 0.10-3 -- More problems found by Jarod Wilson fixed: -- Removing exclusive architectures, it used to be in sync with linuxwacom - package -- marking udev rules as non-replaceable config files -- using install on makefile - -* Mon Jul 23 2007 Aristeu S. Rozanski F. 0.10-2 -- Fixing the problems found by Jarod Wilson: -- Fixing make install target -- Fixing Makefile so it honors the provided CFLAGS -- not using makeinstall macro -- installing is_uinput.sh as 755 instead of changing later with attr - -* Fri Jul 20 2007 Aristeu S. Rozanski F. 0.10-1 -* upgrading to version 0.10 - -* Thu Jul 19 2007 Aristeu S. Rozanski F. 0.09-1 -- first release - From cfe36ea2268c39d27dc63d0dd2f0d3d66c161f19 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:15:45 +0000 Subject: [PATCH 13/15] 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 029ac21..ca5ba3c 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := wdaemon 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 af5d469ca1c122363e946c870414ea4a9790a2a7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:13:49 +0000 Subject: [PATCH 14/15] 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 ca5ba3c..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wdaemon -# $Id$ -NAME := wdaemon -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 c48525c..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-7 From 919c2c35d2373589bd06571694a639d731795da6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:13:50 +0000 Subject: [PATCH 15/15] dist-git conversion --- .cvsignore => .gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .cvsignore => .gitignore (100%) diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore