Is something wrong now? SVN server seems down or something. Commit fails with:
Error: Commit failed (details follow):
Error: Unable to connect to a repository at URL
Error: 'svn://svn.curseforge.net/wow/vortex/mainline/trunk'
timed out
Edit: Guess it's technically not related to the packager.
Is something wrong now? SVN server seems down or something. Commit fails with:
Error: Commit failed (details follow):
Error: Unable to connect to a repository at URL
Error: 'svn://svn.curseforge.net/wow/vortex/mainline/trunk'
timed out
Edit: Guess it's technically not related to the packager.
Seeing the same thing here, trying to update some old addons of mine:
OpenSSH_6.4, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /home/<me>/.ssh/config
debug1: /home/<me>/.ssh/config line 6: Applying options for *.curseforge.net
debug1: /home/<me>/.ssh/config line 33: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to svn.curseforge.net [190.93.246.105] port 22.
debug1: connect to address 190.93.246.105 port 22: Connection timed out
<timeout, repeat, etc>
and then it just hangs. I can ping the address, but that's the only sign of life.
A quick look at the recently updated addons on Curseforge seems to indicate that they're all manual uploads, so yeahhh.. WoWAce seems unaffected however.
Looks like the packager is having problems again. Looking at the status page it is giving the following error
Discovered git repository: wow/bcc/mainline
Joining all threads
Updating git://git.curseforge.net/wow/bcc/mainline.git in /media/cf-repositories/packager/git-local-checkout/wow/bcc/mainline...
Done with git://git.curseforge.net/wow/bcc/mainline.git
ERROR 128 with ('/usr/bin/git', '--no-pager', 'ls-tree', 'origin/master', '--', '.pkgmeta'): }}} {{{fatal: Not a valid object name origin/master
ERROR 128 with ('/usr/bin/git', '--no-pager', 'cat-file', 'blob', 'a'): }}} {{{fatal: Not a valid object name a
ERROR 128 with ('/usr/bin/git', '--no-pager', 'log', '--no-merges', '--pretty=format:%an%x00%at%x00%s%x00%b%x00', 'origin/master'): }}} {{{fatal: ambiguous argument 'origin/master': unknown revision or path not in the working tree. Use '--' to separate paths from revisions
Finished joining all threads
Error with localization in media/cf-repositories/packager/git-local-checkout/wow/bcc/mainline: ValueError('invalid literal for int() with base 10: "fatal: bad default revision \'HEAD\'"',)
Traceback (most recent call last):
File "/home/curseforge/curseforge/packager/main.py", line 169, in run
self.unset_unupdated_repos_as_needs_updating()
File "/home/curseforge/curseforge/packager/main.py", line 347, in unset_unupdated_repos_as_needs_updating
if not repo.has_new_alpha():
File "/home/curseforge/curseforge/packager/repository.py", line 487, in has_new_alpha
return self.get_version() != self.get_last_zipped_alpha_version()
File "/home/curseforge/curseforge/packager/utils.py", line 491, in newFunc
value = data[x] = func(self, *args, **kwargs)
File "/home/curseforge/curseforge/packager/repository.py", line 470, in get_version
return self._get_version()
File "/home/curseforge/curseforge/packager/git.py", line 183, in _get_version
assert version != "@project-version@", "%r != %r" % (version, "@project-version@")
AssertionError: '@project-version@' != '@project-version@'
As of last night the packager is no longer making Alpha builds for my addon. I have the repo set to make alpha builds and it was working until last night. On the packager status page it does not even show that the packager even tried to do anything for subversion commit 89 & 90.
FYI, if others encounter this. I just manually tagged my repo and it not only generated my tag as a beta but also generated the last commit as a alpha.
not sure if this is a packager issue or a library issue but when my mod is unzipped i can see two copies of LibDialog-1.0.lua in there (plus some odd test files)
plus for libdialog, libstub.lua is in libstub\libstub and the toc just has libstub
not sure if this is a packager issue or a library issue but when my mod is unzipped i can see two copies of LibDialog-1.0.lua in there (plus some odd test files)
plus for libdialog, libstub.lua is in libstub\libstub and the toc just has libstub
You have two copies of LibDialog because you've hard-embedded it in your repository, then the .pkgmeta file pulls in the latest. I did an SVN checkout of your reporitory and saw LibDialog already there with a MINOR of 1 (latest before this message was 6)
As for the LibStub issue, I've fixed that in the latest release of LibDialog (MINOR of 7 :D).
You have two copies of LibDialog because you've hard-embedded it in your repository, then the .pkgmeta file pulls in the latest. I did an SVN checkout of your reporitory and saw LibDialog already there with a MINOR of 1 (latest before this message was 6)
the lib uses a hg repo and i use svn so it doesnt get updated automatically for me as i dont have a hg client. i've re-arranged my mod structure to remind myself its an external and not internal lib. i also made libdatabroker an external as well while i was there, it uses a git repo (and i dont have a git client either).
the lib uses a hg repo and i use svn so it doesnt get updated automatically for me as i dont have a hg client. i've re-arranged my mod structure to remind myself its an external and not internal lib. i also made libdatabroker an external as well while i was there, it uses a git repo (and i dont have a git client either).
I mirror several libraries in an SVN repo, both because it's easier to use svn:externals to keep the libs in my development addons up to date without doing it by hand, and because the WoWInterface packager doesn't support pulling externals from repositories of different types, and all my addons use SVN. You're welcome to use it:
The external repository feature appears to have been non-functional for the last several months, or at least is failing to package any tags from my external GitHub repo since August:
Error: Commit failed (details follow):
Error: Unable to connect to a repository at URL
Error: 'svn://svn.curseforge.net/wow/vortex/mainline/trunk'
timed out
Edit: Guess it's technically not related to the packager.
Seeing the same thing here, trying to update some old addons of mine:
and then it just hangs. I can ping the address, but that's the only sign of life.
Thx
plus for libdialog, libstub.lua is in libstub\libstub and the toc just has libstub
You have two copies of LibDialog because you've hard-embedded it in your repository, then the .pkgmeta file pulls in the latest. I did an SVN checkout of your reporitory and saw LibDialog already there with a MINOR of 1 (latest before this message was 6)
As for the LibStub issue, I've fixed that in the latest release of LibDialog (MINOR of 7 :D).
the lib uses a hg repo and i use svn so it doesnt get updated automatically for me as i dont have a hg client. i've re-arranged my mod structure to remind myself its an external and not internal lib. i also made libdatabroker an external as well while i was there, it uses a git repo (and i dont have a git client either).
thanks
I mirror several libraries in an SVN repo, both because it's easier to use svn:externals to keep the libs in my development addons up to date without doing it by hand, and because the WoWInterface packager doesn't support pulling externals from repositories of different types, and all my addons use SVN. You're welcome to use it:
svn://svn.wowinterface.com/PhanxLibraryMirrors-805/trunk
(Don't check out the whole thing; use a repo browser to find the path for the specific lib(s) you need.)
Edit: LibDialog is now in there if you need an SVN source for it. Let me know if you need any other libs in there and I'll see about adding them.
Also, just noticed "Arkayenro ... Posts: 666". :o
http://wow.curseforge.com/addons/librealminfo/
(The file from October was manually uploaded.)
Please poke it with a stick or other object suitable for poking.