The officially official Devuan Forum!

You are not logged in.

#1 2019-06-17 19:27:51

mknoop
Member
Registered: 2017-05-18
Posts: 67  

InRelease, Release, and Release.gpg files need updating

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

#2 2019-06-18 17:03:01

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: InRelease, Release, and Release.gpg files need updating

They seem to have been updated yesterday.


Brianna Ghey — Rest In Power

Offline

#3 2019-06-19 22:28:06

mknoop
Member
Registered: 2017-05-18
Posts: 67  

Re: InRelease, Release, and Release.gpg files need updating

Well, today is 6/19 and now the last versions of the files are 6/17.  Once again, no updates for packages.

Offline

#4 2019-06-19 22:35:12

golinux
Administrator
Registered: 2016-11-25
Posts: 3,137  

Re: InRelease, Release, and Release.gpg files need updating

Perhaps you can find the needle in the haystack that is causing this?
https://pkgmaster.devuan.org/amprolla.txt

Online

#5 2019-06-20 00:55:40

mknoop
Member
Registered: 2017-05-18
Posts: 67  

Re: InRelease, Release, and Release.gpg files need updating

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

#6 2019-06-20 02:19:59

golinux
Administrator
Registered: 2016-11-25
Posts: 3,137  

Re: InRelease, Release, and Release.gpg files need updating

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

Online

#7 2019-06-20 19:29:43

mknoop
Member
Registered: 2017-05-18
Posts: 67  

Re: InRelease, Release, and Release.gpg files need updating

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

#8 2019-06-20 19:36:47

golinux
Administrator
Registered: 2016-11-25
Posts: 3,137  

Re: InRelease, Release, and Release.gpg files need updating

I won't be venturing there either.   smile  I'm just the messenger . . .

Online

#9 2019-06-20 19:50:21

Dutch_Master
Member
Registered: 2018-05-31
Posts: 275  

Re: InRelease, Release, and Release.gpg files need updating

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 tongue ) the code.

HTH!

Online

#10 2019-06-20 20:25:11

yeti
Member
From: I'm not here: U R halucinating
Registered: 2017-02-23
Posts: 304  

Re: InRelease, Release, and Release.gpg files need updating

Dutch_Master wrote:

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 tongue ) 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

#11 2019-06-20 20:40:33

Dutch_Master
Member
Registered: 2018-05-31
Posts: 275  

Re: InRelease, Release, and Release.gpg files need updating

Ah, ok. Thx for the explanation.

Online

#12 2019-07-08 07:39:10

mknoop
Member
Registered: 2017-05-18
Posts: 67  

Re: InRelease, Release, and Release.gpg files need updating

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

Board footer