mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-10 20:01:54 +01:00
Merge branch 'develop'
This commit is contained in:
commit
7aaa945b9f
2 changed files with 3 additions and 3 deletions
2
setup.py
2
setup.py
|
@ -58,7 +58,7 @@ print_logo()
|
||||||
setup(
|
setup(
|
||||||
name="slpkg",
|
name="slpkg",
|
||||||
packages=["slpkg", "slpkg/sbo", "slpkg/pkg", "slpkg/slack",
|
packages=["slpkg", "slpkg/sbo", "slpkg/pkg", "slpkg/slack",
|
||||||
"slpkg/binary"],
|
"slpkg/binary", "slpkg/models"],
|
||||||
scripts=["bin/slpkg"],
|
scripts=["bin/slpkg"],
|
||||||
version=_meta_.__version__,
|
version=_meta_.__version__,
|
||||||
description="Package manager for Slackware installations",
|
description="Package manager for Slackware installations",
|
||||||
|
|
|
@ -25,12 +25,12 @@
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import sqlite3
|
import sqlite3
|
||||||
from models.models import Database
|
|
||||||
|
|
||||||
from slpkg.utils import Utils
|
from slpkg.utils import Utils
|
||||||
from slpkg.repositories import Repo
|
from slpkg.repositories import Repo
|
||||||
from slpkg.file_size import FileSize
|
from slpkg.file_size import FileSize
|
||||||
from slpkg.downloader import Download
|
from slpkg.downloader import Download
|
||||||
|
from slpkg.models.models import Database
|
||||||
from slpkg.__metadata__ import MetaData as _meta_
|
from slpkg.__metadata__ import MetaData as _meta_
|
||||||
|
|
||||||
from slpkg.slack.mirrors import mirrors
|
from slpkg.slack.mirrors import mirrors
|
||||||
|
@ -38,7 +38,7 @@ from slpkg.slack.slack_version import slack_ver
|
||||||
|
|
||||||
|
|
||||||
class Initialization(Utils):
|
class Initialization(Utils):
|
||||||
"""Slpkg initialization starts all from here.
|
"""Slpkg initialization starts all from here.
|
||||||
Creates local package lists and updates or upgrades these.
|
Creates local package lists and updates or upgrades these.
|
||||||
"""
|
"""
|
||||||
def __init__(self, check):
|
def __init__(self, check):
|
||||||
|
|
Loading…
Reference in a new issue