[aur-general] can not update community package
Hi, Packages does not appear on ftp and web interface after uploading and tagging. (both arch trac, openmotif-x86_64) It seems something broken...
On Sun, 23 Nov 2008, Sergej Pupykin wrote:
Hi,
Packages does not appear on ftp and web interface after uploading and tagging.
(both arch trac, openmotif-x86_64)
It seems something broken...
Community repo is not being updated. The db script needs to be updated to the neth server paths. From log: Sun Nov 23 15:30:01 EST 2008 /home/cvs-community: no such repository /home/paul /usr/lib/python2.6/site-packages/MySQLdb/__init__.py:34: DeprecationWarning: the sets module is deprecated from sets import ImmutableSet /srv/http/sites/aur/aur/tupkg/update/tupkgupdate:233: DeprecationWarning: os.popen2 is deprecated. Use the subprocess module. pf_stdin, pf_stdout = os.popen2("/bin/bash", 't', 0) Sun Nov 23 15:30:31 EST 2008 -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
On Sun, Nov 23, 2008 at 03:29:27PM -0500, Eric Bélanger wrote:
Community repo is not being updated. The db script needs to be updated to the neth server paths. From log:
Sun Nov 23 15:30:01 EST 2008 /home/cvs-community: no such repository /home/paul /usr/lib/python2.6/site-packages/MySQLdb/__init__.py:34: DeprecationWarning: the sets module is deprecated from sets import ImmutableSet /srv/http/sites/aur/aur/tupkg/update/tupkgupdate:233: DeprecationWarning: os.popen2 is deprecated. Use the subprocess module. pf_stdin, pf_stdout = os.popen2("/bin/bash", 't', 0)
That's odd because everything looks like it's updated. Paul might be running some alternate run-tupkgupdate script. But the right tupkgupdate is being called. Hmm. Someone needs to have a look at what the cron job is running.
On Sun, 23 Nov 2008, Loui Chang wrote:
On Sun, Nov 23, 2008 at 03:29:27PM -0500, Eric Bélanger wrote:
Community repo is not being updated. The db script needs to be updated to the neth server paths. From log:
Sun Nov 23 15:30:01 EST 2008 /home/cvs-community: no such repository /home/paul /usr/lib/python2.6/site-packages/MySQLdb/__init__.py:34: DeprecationWarning: the sets module is deprecated from sets import ImmutableSet /srv/http/sites/aur/aur/tupkg/update/tupkgupdate:233: DeprecationWarning: os.popen2 is deprecated. Use the subprocess module. pf_stdin, pf_stdout = os.popen2("/bin/bash", 't', 0)
That's odd because everything looks like it's updated. Paul might be running some alternate run-tupkgupdate script.
But the right tupkgupdate is being called. Hmm. Someone needs to have a look at what the cron job is running.
you could grep the scripts (I don't know which one) for /home/cvs-community to change it to the new location I think it's the cause of the problem. -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
On Sun, 23 Nov 2008, Eric Bélanger wrote:
On Sun, 23 Nov 2008, Loui Chang wrote:
On Sun, Nov 23, 2008 at 03:29:27PM -0500, Eric Bélanger wrote:
Community repo is not being updated. The db script needs to be updated to the neth server paths. From log:
Sun Nov 23 15:30:01 EST 2008 /home/cvs-community: no such repository /home/paul /usr/lib/python2.6/site-packages/MySQLdb/__init__.py:34: DeprecationWarning: the sets module is deprecated from sets import ImmutableSet /srv/http/sites/aur/aur/tupkg/update/tupkgupdate:233: DeprecationWarning: os.popen2 is deprecated. Use the subprocess module. pf_stdin, pf_stdout = os.popen2("/bin/bash", 't', 0)
That's odd because everything looks like it's updated. Paul might be running some alternate run-tupkgupdate script.
But the right tupkgupdate is being called. Hmm. Someone needs to have a look at what the cron job is running.
you could grep the scripts (I don't know which one) for /home/cvs-community to change it to the new location I think it's the cause of the problem.
I followed my suggestion and found that /home/cvs-community is referenced in the cvs* dir in /srv/http/sites/aur I don't know how to change it properly or even if it's safe to change it. Hopefully someone with more knowledge of the AUR will be able to use this info. -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
On Sun, Nov 23, 2008 at 05:28:44PM -0500, Eric Bélanger wrote:
On Sun, 23 Nov 2008, Eric Bélanger wrote:
you could grep the scripts (I don't know which one) for /home/cvs-community to change it to the new location I think it's the cause of the problem.
I followed my suggestion and found that /home/cvs-community is referenced in the cvs* dir in /srv/http/sites/aur I don't know how to change it properly or even if it's safe to change it. Hopefully someone with more knowledge of the AUR will be able to use this info.
Ahh right. That needs to be run: find . -path '*CVS/Root' -exec sed -i 's#/home/cvs-community#/srv/cvs/cvs-community#g' {} ';
On Sun, Nov 23, 2008 at 5:08 PM, Loui Chang <louipc.ist@gmail.com> wrote:
On Sun, Nov 23, 2008 at 05:28:44PM -0500, Eric Bélanger wrote:
On Sun, 23 Nov 2008, Eric Bélanger wrote:
you could grep the scripts (I don't know which one) for /home/cvs-community to change it to the new location I think it's the cause of the problem.
I followed my suggestion and found that /home/cvs-community is referenced in the cvs* dir in /srv/http/sites/aur I don't know how to change it properly or even if it's safe to change it. Hopefully someone with more knowledge of the AUR will be able to use this info.
Ahh right.
That needs to be run: find . -path '*CVS/Root' -exec sed -i 's#/home/cvs-community#/srv/cvs/cvs-community#g' {} ';
Done. Just an FYI, lots of unsupported packages seem to have CVS dirs.
Aaron Griffin wrote:
On Sun, Nov 23, 2008 at 5:08 PM, Loui Chang <louipc.ist@gmail.com> wrote:
On Sun, Nov 23, 2008 at 05:28:44PM -0500, Eric Bélanger wrote:
On Sun, 23 Nov 2008, Eric Bélanger wrote:
you could grep the scripts (I don't know which one) for /home/cvs-community to change it to the new location I think it's the cause of the problem.
I followed my suggestion and found that /home/cvs-community is referenced in the cvs* dir in /srv/http/sites/aur I don't know how to change it properly or even if it's safe to change it. Hopefully someone with more knowledge of the AUR will be able to use this info.
Ahh right.
That needs to be run: find . -path '*CVS/Root' -exec sed -i 's#/home/cvs-community#/srv/cvs/cvs-community#g' {} ';
Done. Just an FYI, lots of unsupported packages seem to have CVS dirs.
Yeah, CVS can't remove directories AFAIK. Most/all of the files in these directories should be removed. Allan
On Mon, Nov 24, 2008 at 12:10 AM, Allan McRae <allan@archlinux.org> wrote:
Aaron Griffin wrote:
On Sun, Nov 23, 2008 at 5:08 PM, Loui Chang <louipc.ist@gmail.com> wrote:
On Sun, Nov 23, 2008 at 05:28:44PM -0500, Eric Bélanger wrote:
On Sun, 23 Nov 2008, Eric Bélanger wrote:
you could grep the scripts (I don't know which one) for /home/cvs-community to change it to the new location I think it's the cause of the problem.
I followed my suggestion and found that /home/cvs-community is referenced in the cvs* dir in /srv/http/sites/aur I don't know how to change it properly or even if it's safe to change it. Hopefully someone with more knowledge of the AUR will be able to use this info.
Ahh right.
That needs to be run: find . -path '*CVS/Root' -exec sed -i 's#/home/cvs-community#/srv/cvs/cvs-community#g' {} ';
Done. Just an FYI, lots of unsupported packages seem to have CVS dirs.
Yeah, CVS can't remove directories AFAIK. Most/all of the files in these directories should be removed.
I was under the impression that unsupported was not tracked in CVS. That's why I said that - I assumed the CVS dirs were a result of erroneous copying from *other* CVS controlled dirs
Aaron Griffin wrote:
On Mon, Nov 24, 2008 at 12:10 AM, Allan McRae <allan@archlinux.org> wrote:
Aaron Griffin wrote:
On Sun, Nov 23, 2008 at 5:08 PM, Loui Chang <louipc.ist@gmail.com> wrote:
On Sun, Nov 23, 2008 at 05:28:44PM -0500, Eric Bélanger wrote:
On Sun, 23 Nov 2008, Eric Bélanger wrote:
you could grep the scripts (I don't know which one) for /home/cvs-community to change it to the new location I think it's the cause of the problem.
I followed my suggestion and found that /home/cvs-community is referenced in the cvs* dir in /srv/http/sites/aur I don't know how to change it properly or even if it's safe to change it. Hopefully someone with more knowledge of the AUR will be able to use this info.
Ahh right.
That needs to be run: find . -path '*CVS/Root' -exec sed -i 's#/home/cvs-community#/srv/cvs/cvs-community#g' {} ';
Done. Just an FYI, lots of unsupported packages seem to have CVS dirs.
Yeah, CVS can't remove directories AFAIK. Most/all of the files in these directories should be removed.
I was under the impression that unsupported was not tracked in CVS. That's why I said that - I assumed the CVS dirs were a result of erroneous copying from *other* CVS controlled dirs
My bad. I though you meant old packages in the community CVS that are now in unsupported.
Sergj, Did you update the packages? -- Kessia Pinheiro Student at Computer Science - UFBa Trainee with ProCaTI founds - DiSup/CPD - UFBa Arch Linux Trusted User Linux Counter User #389695 - [http://counter.li.org] http://even.archlinux-br.org
On Mon, Nov 24, 2008 at 7:23 AM, Sergej Pupykin <pupykin.s@gmail.com> wrote:
They appear in abs, but still missing on ftp.
Loui, could you track this down? You know the AUR better than I. If you need extra permissions to do anything, let me know (jabber is best)
On Mon, Nov 24, 2008 at 09:43:24AM -0600, Aaron Griffin wrote:
On Mon, Nov 24, 2008 at 7:23 AM, Sergej Pupykin <pupykin.s@gmail.com> wrote:
They appear in abs, but still missing on ftp.
Loui, could you track this down? You know the AUR better than I. If you need extra permissions to do anything, let me know (jabber is best)
Here's where it's snagging: cvs update: authorization failed: server cvs.archlinux.org rejected access to /srv/cvs/cvs-community for user pjmattal cvs update: used empty password; try "cvs login" with a real password /home/paul I think you just need to go in that directory and `cvs login`. If paul has a .cvspass file he'll just need to change the paths in that, and it should work. (I did that when updating locally).
I'm still unable to update gcompris [1] (new version is 8.4.8-1). I've uploaded it twice but the AUR page hasn't been updated yet. ------ http://aur.archlinux.org/packages.php?ID=3215
participants (7)
-
Aaron Griffin
-
Allan McRae
-
Eric Bélanger
-
Evangelos Foutras
-
Kessia 'even' Pinheiro
-
Loui Chang
-
Sergej Pupykin