/usr/share/pyshared/pybitclient/apt.py is in pybit-client 1.0.0-2.
This file is owned by root:root, with mode 0o664.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# apt.py
#
# Copyright 2012 Neil Williams <codehelp@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
import os
import logging
import pybitclient
from pybitclient.buildclient import VersionControlHandler
class AptClient(VersionControlHandler):
def fetch_source(self, buildreq, conn_data):
retval = None
command = None
if buildreq.transport.method != "apt":
retval = "wrong_method"
if not retval:
self.workdir = os.path.join(self.settings["buildroot"],
buildreq.get_suite(), buildreq.transport.method, buildreq.get_package())
if not os.path.isdir(self.workdir):
pybitclient.mkdir_p(self.workdir)
apt_path = os.path.join(self.workdir, "lists", "partial")
pybitclient.mkdir_p(apt_path)
apt_path = os.path.join(self.workdir, "archives", "partial")
pybitclient.mkdir_p(apt_path)
apt_path = os.path.join(self.workdir, "etc", "apt", "preferences.d")
pybitclient.mkdir_p(apt_path)
apt_path = os.path.join(self.workdir, "sources.list")
src_list = os.open(apt_path, os.O_CREAT | os.O_WRONLY)
url = "deb-src http://cdn.debian.net/debian %s main " % buildreq.get_suite()
os.write(src_list, url)
cfg_str = "-o Apt::Get::AllowUnauthenticated=true -o Dir=%s -o Dir::State=%s -o Dir::Etc::SourceList=%s/sources.list -o Dir::Cache=%s" % \
(self.workdir, self.workdir, self.workdir, self.workdir)
command = "(cd %s && apt-get %s update 2>/dev/null || true)" % (self.workdir, cfg_str)
if not retval:
if pybitclient.run_cmd(command, self.settings["dry_run"], None):
retval = "update_apt"
if buildreq.get_version() is not None:
command = "(cd %s/.. && apt-get %s -d source %s=%s )" % (self.workdir, cfg_str,
buildreq.get_package(), buildreq.get_version())
else:
command = "(cd %s && apt-get %s -d source %s )" % (self.workdir, cfg_str, buildreq.get_package())
if not retval:
if pybitclient.run_cmd(command, self.settings["dry_run"], None):
retval = "fetch_source"
if not retval:
retval = "success"
pybitclient.send_message(conn_data, retval)
# return the exit value of the process - exit (0) for success.
if retval == "success":
return 0
else:
return 1
def get_srcdir(self):
return self.workdir
def clean_source(self, buildreq, conn_data):
retval = None
if buildreq.transport.method != "apt":
retval = "wrong_method"
if not retval:
src_dir = os.path.join(self.settings["buildroot"], buildreq.get_suite(), buildreq.transport.method)
src_changes = "%s/%s_%s.dsc" % (src_dir, buildreq.get_package(), buildreq.get_version())
command = "dcmd rm -f %s" % src_changes
if not os.path.exists(src_changes):
retval = "success"
elif pybitclient.run_cmd(command, self.settings["dry_run"], None):
retval = "source-clean-fail"
if not retval:
self.cleandir = os.path.join(self.settings["buildroot"], buildreq.get_suite(), buildreq.transport.method,
buildreq.get_package())
command = "rm -rf %s/" % self.cleandir
if pybitclient.run_cmd(command, self.settings["dry_run"], None):
retval = "failed_clean"
if not retval:
retval = "success"
pybitclient.send_message(conn_data, retval)
if retval == "success":
return 0
else:
return 1
def __init__(self, settings):
VersionControlHandler.__init__(self, settings)
self.method = "apt"
def createPlugin(settings):
return AptClient(settings)
|