You are not logged in.
On the server http://pkgmaster.devuan.org/merged/dists/ none of the InRelease, Release, or Release.gpg files in any of the folders have been updated since 14-Jun-2019. This prevents any updating or upgrading of packages.
Offline
They seem to have been updated yesterday.
Brianna Ghey — Rest In Power
Offline
Well, today is 6/19 and now the last versions of the files are 6/17. Once again, no updates for packages.
Offline
Perhaps you can find the needle in the haystack that is causing this?
https://pkgmaster.devuan.org/amprolla.txt
Offline
On the issue from 6/14, all that I could find were a lot of error 404 on the debian website. It as as if it was not online. Then it ended with :
2019/06/14 15:02:31 [ERR] ("Connection broken: ConnectionResetError(104, 'Connection reset by peer')", ConnectionResetError(104, 'Connection reset by peer'))
It seems that the internet connection to the devuan server was terminated.
On the issue from 6/17, the same massive 404 messages from debian, but no internet disconnection message.
That's all I can see from that. Does that make any sense to anyone?
Offline
Thanks for taking a look. That actually surprised me so good for you!
There are some other ideas here:
https://lists.dyne.org/lurker/message/2 … 89.en.html
But the real issue is somewhere here:
https://git.devuan.org/devuan-infrastructure/amprolla3
Offline
I am afraid I have reached the level of my incompetence here. I am not a python programmer, so a lot of this is gibberish to me.
I am going to keep trying to understand it, but don't hold your breath waiting for help from me.
Offline
I won't be venturing there either. I'm just the messenger . . .
Offline
I'm no coder either, but scripts (and programs for that matter) follow a logical sequence. But I don't understand this section:
(from https://git.devuan.org/devuan-infrastru … _update.py)
if get_time(rem_date) > get_time(loc_date):
info('Remote Release is newer!')
return True
return False
What I think is happening here is that when a newer time code is found, the program returns, but only to one level up, where the next code line tells it to return false (i.e. the time code was not newer). But perhaps I misinterpreted (s'cuse the pun ) the code.
HTH!
Offline
What I think is happening here is that when a newer time code is found, the program returns, but only to one level up, where the next code line tells it to return false (i.e. the time code was not newer). But perhaps I misinterpreted (s'cuse the pun ) the code.
amprolla_update.py#L22-36 simplified:
$ cat asdds.py
def left_is_bigger(left, right):
if left > right:
print('%d > %d' % (left,right))
return True
print('%d <= %d' % (left,right))
return False
left_is_bigger(1337, 42)
left_is_bigger(42, 1337)
$ python3 asdds.py
1337 > 42
42 <= 1337
return does not leave indentation levels, it leaves the function.
*𝚛𝚒𝚋𝚋𝚒𝚝!*
Offline
Ah, ok. Thx for the explanation.
Offline
It has happened again. The release files for all the http://pkgmaster.devuan.org/merged/dists/ directories have not been updated since 7/07/19 01:30.
Offline