#linuxcnc-devel | Logs for 2015-05-16

Back
[10:43:39] <jthornton> cradek, glade-gtk2
[11:29:48] <cradek> wonder if I should add that to the cd next time around
[11:30:01] <cradek> I thought everything needed was already on it, but guess not
[11:34:44] <cradek> AXIS's view/grid doesn't do anything here in 2.6.7
[11:41:31] <seb_kuzminsky> glade-gtk2 isn't a build-dependency, it's a dependency for editing our glade files, as i understand it
[11:41:48] <jthornton> seems to only be valid in Z view
[11:41:51] <seb_kuzminsky> view/grid shows a grid on some of my machines, in some view-angle orientations
[11:42:09] <jthornton> works in 2.7
[11:42:23] <cradek> weird
[11:43:44] <cradek> tinkerer: still, Failed to communicate with pluto-servo board after programming firmware.
[11:43:46] <jthornton> well I should restate that is doesn't show in perspective view or rotate view
[11:44:32] <cradek> oh wait, it IS there in the Z view, it's just invisible on my monitor in the daylight
[11:44:35] <cradek> duuuh
[11:48:44] <jthornton> hey seb_kuzminsky I'm working on combining the user + integrator + hal manuals to avoid duplication of chapters and have unlimited links possible instead of "see the x manual for more info"
[11:49:04] <jthornton> I made a branch and as soon as I get it shook out I'll push it for review
[11:49:26] <cradek> you're a wizard
[12:17:12] <kwallace2> I'm trying to get my head around using .dxf with LinuxCNC. In the past, I've used LibreCAD/QCAD to draw tool paths or shapes, then open the .dxf file in dxf2gcode and set the path direction or other minor tweaks and create a .ngc file. I open the .ngc file in gEdit, fix all the code I don't like, then open it in LinuxCNC, check and repeat if needed. My goal is to add a .dxf feature to a conversational screen. Are there any examples I can refe
[12:17:47] <kwallace2> Are there any examples I can reference?
[12:28:55] <jthornton> I have examples of how to remove a branch but not how to push one, is it git push origin 2.7_Docs:2.7 --dry-run to test?
[12:29:51] <jthornton> john@cave:~/emc-dev/src$ git push origin 2.7_Docs:2.7 --dry-run
[12:29:52] <jthornton> To ssh://jthornton@git.linuxcnc.org/git/emc2.git
[12:29:52] <jthornton> fde52dc..08a96d0 2.7_Docs -> 2.7
[12:29:58] <jthornton> is that correct?
[12:32:26] <jthornton> fde52dc is a merge so that don't sound right to me
[12:32:52] <jthornton> oh that was Norberts merge so I guess it is from there
[12:34:19] <cradek> nope
[12:34:29] <cradek> git push origin newbranchname
[12:34:50] <jthornton> git push 2.7 2.7_Docs
[12:34:55] <cradek> no
[12:35:01] <cradek> git push origin 2.7_Docs
[12:35:05] <jthornton> thanks
[12:35:12] <cradek> don't mess with the existing 2.7
[12:35:26] <jthornton> that's what I'm trying to not do
[12:35:28] <cradek> :-)
[12:35:49] <cradek> your command with the : would have pushed 2.7_Docs as 2.7
[12:36:11] <cradek> when you git push origin 2.7_Docs --dry-run you should see it creates a branch
[12:36:21] <jthornton> this looks correct to me now:
[12:36:23] <jthornton> john@cave:~/emc-dev/src$ git push origin 2.7_Docs --dry-run
[12:36:23] <jthornton> To ssh://jthornton@git.linuxcnc.org/git/emc2.git
[12:36:24] <jthornton> * [new branch] 2.7_Docs -> 2.7_Docs
[12:36:29] <cradek> yep!
[12:36:35] <jthornton> awesome
[12:36:36] <cradek> thanks for asking :-)
[12:36:43] <cradek> that also makes you a wizard
[12:36:50] <jthornton> if I don't have notes on it I ask
[12:38:39] <KGB-linuxcnc> 03John Thornton 052.7_Docs 1570147 06linuxcnc 03docs/src/Master_Documentation.txt 10docs/src/Submakefile create a single documentation pdf * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=1570147
[12:38:39] <KGB-linuxcnc> 03John Thornton 052.7_Docs 842e609 06linuxcnc 10docs/src/gcode/overview.txt remove markup that prevented the pdf sidebar index from generating * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=842e609
[12:38:39] <KGB-linuxcnc> 03John Thornton 052.7_Docs 3564427 06linuxcnc 10docs/src/Master_Documentation.txt add gcode overview to master documentation * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=3564427
[12:38:41] <KGB-linuxcnc> 03John Thornton 052.7_Docs 4ecac24 06linuxcnc 10(7 files in 2 dirs) add documentation to debian and remove hal, user, and integrator * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=4ecac24
[12:38:45] <KGB-linuxcnc> 03John Thornton 052.7_Docs fa7cfe7 06linuxcnc 04docs/src/Master_HAL.txt 04docs/src/Master_Integrator.txt 04docs/src/Master_User.txt 10docs/src/Submakefile remove user, hal and integrator manuals * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=fa7cfe7
[12:38:49] <KGB-linuxcnc> 03John Thornton 052.7_Docs 08a96d0 06linuxcnc 10docs/src/Master_Getting_Started.txt make master docs build the same way * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=08a96d0
[12:39:46] <jthornton> I did get this "remote: fatal: bad object 0000000000000000000000000000000000000000"
[12:39:56] <cradek> that is normal when creating a new branch :-/
[12:40:07] <jthornton> ok, thanks
[12:40:22] <cradek> it's a bug in some of our automation that I've never fixed
[12:41:16] <jthornton> now to see if buildbot is happy
[12:41:57] <cradek> 1.584 1.273-p
[12:41:59] <cradek> oops
[12:43:07] <jthornton> me?
[12:43:47] <cradek> no I typed dc commands into irc instead of dc
[12:43:59] <jthornton> whew
[12:45:12] <jthornton> I have some more cross checks to do after while on the 2.7_Docs but the basic is done
[12:45:20] <linuxcnc-build_> build #3134 of 1300.rip-precise-i386 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1300.rip-precise-i386/builds/3134 blamelist: John Thornton <bjt128@gmail.com>
[12:45:27] <linuxcnc-build_> build #3135 of 1200.rip-lucid-i386 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1200.rip-lucid-i386/builds/3135 blamelist: John Thornton <bjt128@gmail.com>
[12:45:42] <linuxcnc-build_> build #3136 of 1306.rip-precise-amd64 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1306.rip-precise-amd64/builds/3136 blamelist: John Thornton <bjt128@gmail.com>
[12:45:44] <linuxcnc-build_> build #2338 of 1301.rip-precise-rtai-i386 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1301.rip-precise-rtai-i386/builds/2338 blamelist: John Thornton <bjt128@gmail.com>
[12:46:11] <linuxcnc-build_> build #3135 of 1201.rip-lucid-rtai-i386 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1201.rip-lucid-rtai-i386/builds/3135 blamelist: John Thornton <bjt128@gmail.com>
[12:46:31] <linuxcnc-build_> build #3135 of 1202.rip-lucid-amd64 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1202.rip-lucid-amd64/builds/3135 blamelist: John Thornton <bjt128@gmail.com>
[12:47:33] <linuxcnc-build_> build #1292 of 1403.rip-wheezy-amd64 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1403.rip-wheezy-amd64/builds/1292 blamelist: John Thornton <bjt128@gmail.com>
[12:47:59] <linuxcnc-build_> build #1292 of 1400.rip-wheezy-i386 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1400.rip-wheezy-i386/builds/1292 blamelist: John Thornton <bjt128@gmail.com>
[12:48:00] <linuxcnc-build_> build #1483 of 1404.rip-wheezy-rtpreempt-amd64 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1404.rip-wheezy-rtpreempt-amd64/builds/1483 blamelist: John Thornton <bjt128@gmail.com>
[12:49:13] <linuxcnc-build_> build #803 of 1402.rip-wheezy-rtpreempt-i386 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1402.rip-wheezy-rtpreempt-i386/builds/803 blamelist: John Thornton <bjt128@gmail.com>
[12:49:33] <linuxcnc-build_> build #955 of 1401.rip-wheezy-rtai-i386 is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1401.rip-wheezy-rtai-i386/builds/955 blamelist: John Thornton <bjt128@gmail.com>
[12:50:05] <cradek> I think the errors are these things: /home/buildslave/emc2-buildbot/wheezy-i386/tmpfs/build/docs/src/Master_Documentation.xml:48707: element anchor: validity error : ID cha:Parport already defined
[12:50:26] <cradek> there's only a few of them, all parport related
[12:50:35] <cradek> maybe you have some duplicate stuff?
[12:54:51] <linuxcnc-build_> build #1322 of 1405.rip-wheezy-armhf is complete: Failure [4failed compile] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/1405.rip-wheezy-armhf/builds/1322 blamelist: John Thornton <bjt128@gmail.com>
[13:00:09] <linuxcnc-build_> build #3145 of 0000.checkin is complete: Failure [4failed] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/0000.checkin/builds/3145 blamelist: John Thornton <bjt128@gmail.com>
[13:57:06] <jthornton> let me check
[14:05:16] <jthornton> yep, had duplicate of hal/parallel_port.txt... a copy and paste error because it was in two master documents :(
[14:14:47] <KGB-linuxcnc> 03John Thornton 052.7_Docs 05c512d 06linuxcnc 10docs/src/Master_Documentation.txt remove duplicate copy and paste error * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=05c512d
[14:14:47] <KGB-linuxcnc> 03John Thornton 052.7_Docs 383a65a 06linuxcnc 10docs/src/Master_Getting_Started.txt fix spelling error that prevented building the pdf * 14http://git.linuxcnc.org/?p=linuxcnc.git;a=commitdiff;h=383a65a
[14:16:00] <jthornton> john@cave:~/emc-dev/src$ git pull --rebase
[14:16:01] <jthornton> There is no tracking information for the current branch.
[14:16:01] <jthornton> Please specify which branch you want to rebase against.
[14:16:01] <jthornton> See git-pull(1) for details
[14:16:01] <jthornton> git pull <remote> <branch>
[14:16:03] <jthornton> If you wish to set tracking information for this branch you can do so with:
[14:16:05] <jthornton> git branch --set-upstream 2.7_Docs origin/<branch>
[15:19:27] <cradek> I think we should remove unmaintained GUIs from the docs. Specifically that means TkLinuxCNC, mini, keystick.
[15:19:39] <cradek> jthornton: I like your changes
[15:20:34] <JT-Shop> thanks
[15:20:58] <JT-Shop> is mini and keystick useful to some?
[15:21:35] <JT-Shop> well keystick maybe
[15:22:07] <cradek> I think it is a mistake for people to choose them, because they are unmaintained. by unmaintained I mean they don't allow you to use features of linuxcnc that are newer than they are
[15:22:29] <cradek> for example they don't support UVW axes or rapid override
[15:23:07] <cradek> and I have little confidence in them actually working right for the things they do support
[15:23:29] <JT-Shop> I agree with mini and tk but if you need a non graphical gui for testing maybe keystick fills that
[15:23:51] <cradek> notice I'm not proposing we remove the code
[15:24:17] <cradek> I think it's at best noise in the docs, and at worst giving the impression that things are supported when they're not
[15:24:17] <JT-Shop> right, just remove them from the docs
[15:24:26] <JT-Shop> I agree
[15:24:46] <cradek> this isn't really related to the 2.7_Docs changes
[15:24:51] <cradek> I just noticed it, looking through there
[15:28:13] <linuxcnc-build_> build #2535 of 4003.deb-lucid-i386 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4003.deb-lucid-i386/builds/2535 blamelist: John Thornton <bjt128@gmail.com>
[15:30:31] <linuxcnc-build_> build #2538 of 4007.deb-precise-i386 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4007.deb-precise-i386/builds/2538 blamelist: John Thornton <bjt128@gmail.com>
[15:31:20] <linuxcnc-build_> build #2538 of 4008.deb-precise-amd64 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4008.deb-precise-amd64/builds/2538 blamelist: John Thornton <bjt128@gmail.com>
[15:34:17] <linuxcnc-build_> build #1366 of 4009.deb-precise-rtai-i386 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4009.deb-precise-rtai-i386/builds/1366 blamelist: John Thornton <bjt128@gmail.com>
[15:49:51] <linuxcnc-build_> build #2529 of 4006.deb-lucid-rtai-i386 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4006.deb-lucid-rtai-i386/builds/2529 blamelist: John Thornton <bjt128@gmail.com>
[15:50:50] <linuxcnc-build_> build #2534 of 4004.deb-lucid-amd64 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4004.deb-lucid-amd64/builds/2534 blamelist: John Thornton <bjt128@gmail.com>
[15:51:03] <linuxcnc-build_> build #1105 of 4017.deb-wheezy-amd64 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4017.deb-wheezy-amd64/builds/1105 blamelist: John Thornton <bjt128@gmail.com>
[15:51:43] <linuxcnc-build_> build #559 of 4015.deb-wheezy-rtpreempt-amd64 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4015.deb-wheezy-rtpreempt-amd64/builds/559 blamelist: John Thornton <bjt128@gmail.com>
[15:52:01] <linuxcnc-build_> build #1104 of 4016.deb-wheezy-i386 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4016.deb-wheezy-i386/builds/1104 blamelist: John Thornton <bjt128@gmail.com>
[15:52:32] <linuxcnc-build_> build #520 of 4014.deb-wheezy-rtpreempt-i386 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4014.deb-wheezy-rtpreempt-i386/builds/520 blamelist: John Thornton <bjt128@gmail.com>
[15:53:25] <linuxcnc-build_> build #799 of 4018.deb-wheezy-rtai-i386 is complete: Failure [4failed shell_3] Build details are at http://buildbot.linuxcnc.org/buildbot/builders/4018.deb-wheezy-rtai-i386/builds/799 blamelist: John Thornton <bjt128@gmail.com>
[19:03:14] <cradek> huh, I had to remove some of the pullups to make it work again on the old machine (14, 16, 17)
[19:03:46] <cradek> it loaded, but the encoder counts jumped around, so it was slightly wonky
[23:43:59] <cradek> ahh, I quit screwing with hardware and actually cut something. it was glorious.