AshtonKem / Butler

Jenkins/Hudson plugin for Emacs
44 stars 10 forks source link

Trying it out and getting: (void-variable butler-servers-list) #6

Closed bjbishop closed 10 years ago

bjbishop commented 11 years ago

Hi! Thanks for writing this for Emacs! I was interested in trying this out to impress my non-emacs friends but I'm having some trouble. I've tried installing butler from melpa packages, and from putting a clone of your repo in my load-path, and still not getting very far at all. I'm sure this is my inability to read elisp or your directions :)

I've included this code into my .emacs file:

(add-to-list butler-servers
         '(jenkins "Jenkins"
               (server-address . "http://some/url")
               (server-user . "myusername")
               (server-password . "mypassword")))

..and emacs tells me this when I'm starting up:

eval: Symbol's value as variable is void: butler-servers

Can you help? I'm really interested in trying this out

bjbishop commented 11 years ago

Sorry for lack of details: I'm on this version, using Emacs.app on Mac OSX 10.8.4 GNU Emacs 24.3.50.1 (i386-apple-darwin12.4.0, NS apple-appkit-1187.39) of 2013-07-03

killdash9 commented 11 years ago

I got the same error. Solved it by doing this:

(setq butler-server-list
             '((jenkins "Jenkins"
                       (server-address . "http://some/url")
                       (server-user . "user")
                       (server-password . "pass"))))

But then I got another error saying

error in process filter: Symbol's function definition is void: org-link-unescape

Looks like org-mode may have pulled that function. My emacs version is GNU Emacs 24.3.1 (x86_64-apple-darwin, NS apple-appkit-1038.36) of 2013-03-12

bjbishop commented 11 years ago

Hey! Thank you for the tip! I got the same message about org-link-unescape that you did. I managed to get past that and butler-status shows me a page now! I'm excited to try this tool out

(load-library "org-exp")

Then I was able to do a "butler-status", thanks a lot for your help and direction

AshtonKem commented 11 years ago

Hey, sorry about the silence on my part. I just relocated across the country, so I haven't exactly been on top of my open source stuff. I'll get back to maintaining my projects now.

AshtonKem commented 10 years ago

9 fixed the org-link-unescape issue, I'll close this as soon as I deploy that change.

AshtonKem commented 10 years ago

I updated the README to fix the typo that confused you, and merged a pullreq that fixed the org issue. Please update to the latest version of Butler from MELPA (20140331), as Marmalade is broken and I cannot deploy the latest version of Butler to it.