# HG changeset patch # User greg # Date 1256734013 -3600 # Node ID fc3399727a06e9b325ecdd8ab9de0c6743b4d7d4 # Parent daa1e1c3fba43ee73a2e827961155b1372ca433e Fix some bug in debian packages diff -r daa1e1c3fba4 -r fc3399727a06 debian/canfestival-doc.docs --- a/debian/canfestival-doc.docs Wed Oct 14 10:13:00 2009 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -debian/canfestival/usr/share/objdictgen/doc/* diff -r daa1e1c3fba4 -r fc3399727a06 debian/canfestival-doc.install --- a/debian/canfestival-doc.install Wed Oct 14 10:13:00 2009 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -#DOCS# - diff -r daa1e1c3fba4 -r fc3399727a06 debian/control-virtual --- a/debian/control-virtual Wed Oct 14 10:13:00 2009 +0200 +++ b/debian/control-virtual Wed Oct 28 13:46:53 2009 +0100 @@ -16,13 +16,7 @@ This package contains some test programs you can use as example for your own developments. - TestMasterSlave : Two CanOpen nodes in the same process - - TestMasterMicromod : A CanOpen master that control a peak MicroMod module - - DS401_Master : Master Node for the DS401_Slave_Gui - - DS401_Slave_Gui : Simulate an I/O module with GUI - -Package: canfestival-doc -Architecture: all -Description: Documentation for canfestival + - CANOpenShell : A CanOpen node that can execute some user commands through stdin Package: canfestival-virtual Architecture: all diff -r daa1e1c3fba4 -r fc3399727a06 debian/objdictedit.desktop --- a/debian/objdictedit.desktop Wed Oct 14 10:13:00 2009 +0200 +++ b/debian/objdictedit.desktop Wed Oct 28 13:46:53 2009 +0100 @@ -1,8 +1,9 @@ [Desktop Entry] Encoding=UTF-8 -Name=Objdictedit -Comment=A CanOpen Node Editor -Comment[fr]=Un Editeur de Noeud CanOpen +Name=CANOpen Object Dictionary Editor +Name[fr]=Editeur de Dictionnaire d'Objets CANOpen +Comment=Create, modifify, configure CANOpen nodes +Comment[fr]=Créer, modifier, configurer des noeuds CANOpen Exec=/usr/bin/objdictedit Icon=/usr/share/CanFestival-3/objdictgen/networkedit.png Terminal=false diff -r daa1e1c3fba4 -r fc3399727a06 debian/rules --- a/debian/rules Wed Oct 14 10:13:00 2009 +0200 +++ b/debian/rules Wed Oct 28 13:46:53 2009 +0100 @@ -1,14 +1,5 @@ #!/usr/bin/make -f # -*- makefile -*- -# Sample debian/rules that uses debhelper. -# -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. -# -# Modified to make a template file for a multi-binary package with separated -# build-arch and build-indep targets by Bill Allombert 2001 # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 @@ -30,7 +21,7 @@ # Add here commands to configure the package. cp debian/control-$(shell echo $(CAN_INTERFACE)) debian/control; \ - ./configure --can=$(shell echo $(CAN_INTERFACE)) --prefix=/usr + ./configure --can=$(shell echo $(CAN_INTERFACE)) --prefix=/usr --wx=0 build: build-indep @@ -95,7 +86,7 @@ dh_testdir dh_testroot dh_installchangelogs CHANGES - dh_installdocs +# dh_installdocs # dh_installexamples # dh_installmenu # dh_installdebconf diff -r daa1e1c3fba4 -r fc3399727a06 objdictgen/Makefile.in --- a/objdictgen/Makefile.in Wed Oct 14 10:13:00 2009 +0200 +++ b/objdictgen/Makefile.in Wed Oct 28 13:46:53 2009 +0100 @@ -36,7 +36,7 @@ install: gnosis mkdir -p $(PREFIX)/objdictgen - cp -r *.py* config doc doc_index examples gnosis $(PREFIX)/objdictgen + cp -r *.py* config doc doc_index locale examples gnosis $(PREFIX)/objdictgen chmod -R a+r $(PREFIX)/objdictgen mkdir -p $(PREFIX)/bin ln -sf $(PREFIX)/objdictgen/objdictedit.py $(PREFIX)/bin/objdictedit diff -r daa1e1c3fba4 -r fc3399727a06 objdictgen/networkedit.py --- a/objdictgen/networkedit.py Wed Oct 14 10:13:00 2009 +0200 +++ b/objdictgen/networkedit.py Wed Oct 28 13:46:53 2009 +0100 @@ -394,7 +394,7 @@ def OnChar(self, event): if event.ControlDown() and event.GetKeyCode() == 83 and getattr(self, "_onsave", None) != None: self._onsave() - event.Skip() + #event.Skip() def OnQuitMenu(self, event): self.Close()