remote
This commit is contained in:
parent
2e366f71f1
commit
f9584f4458
3 changed files with 4 additions and 3 deletions
|
@ -2,7 +2,7 @@ import argparse
|
||||||
import os
|
import os
|
||||||
|
|
||||||
import architecture
|
import architecture
|
||||||
import msys
|
import remote as r
|
||||||
import subsystem
|
import subsystem
|
||||||
|
|
||||||
ACTION = 'action'
|
ACTION = 'action'
|
||||||
|
@ -75,7 +75,7 @@ compression applying to archive
|
||||||
|
|
||||||
action='info',
|
action='info',
|
||||||
|
|
||||||
remote=msys.REPOSITORY,
|
remote=r.MAIN,
|
||||||
architectures=[architecture.MAIN],
|
architectures=[architecture.MAIN],
|
||||||
subsystems=[subsystem.MAIN, 'mingw'],
|
subsystems=[subsystem.MAIN, 'mingw'],
|
||||||
|
|
||||||
|
|
1
msys.py
1
msys.py
|
@ -1,2 +1 @@
|
||||||
CHARSET = 'u8'
|
CHARSET = 'u8'
|
||||||
REPOSITORY = 'https://repo.msys2.org'
|
|
||||||
|
|
|
@ -5,6 +5,8 @@ import arguments
|
||||||
import hypertext
|
import hypertext
|
||||||
import repository
|
import repository
|
||||||
|
|
||||||
|
MAIN = 'https://repo.msys2.org'
|
||||||
|
|
||||||
|
|
||||||
class Remote(repository.Repository):
|
class Remote(repository.Repository):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
Loading…
Reference in a new issue