mirrorkit-0.2.1/0000755000000000000000000000000012233067467010434 5ustar mirrorkit-0.2.1/share/0000755000000000000000000000000012233067467011536 5ustar mirrorkit-0.2.1/share/log.html.tpl0000644000000000000000000000416112233037240013767 0ustar [$status] Mirror update - $name - $date
Date $date
Name $name
Status $status_html
Size $size MB
Source $source
Destination $destination
Pockets $pockets
Components $components
Architecture $architectures
Command $command

Syncronisation log

$log
mirrorkit-0.2.1/bin/0000755000000000000000000000000012233067467011204 5ustar mirrorkit-0.2.1/bin/mirrorkit0000755000000000000000000002612212233057400013141 0ustar #!/usr/bin/python3 # -*- coding: utf-8 -*- # Copyright (C) 2008-2013 Stéphane Graber # Author: Stéphane Graber # 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 can find the license on Debian systems in the file # /usr/share/common-licenses/GPL-2 import argparse import configparser import logging import os import string import subprocess import sys import tempfile import time import urllib.parse def get_path_size(path): total_size = 0 for dirpath, dirnames, filenames in os.walk(path): for f in filenames: fp = os.path.join(dirpath, f) total_size += os.path.getsize(fp) return total_size def parse_config(path): """ Return a dict representation of a .ini config """ config = {} configp = configparser.ConfigParser() try: configp.read(path) except: return config for section in configp.sections(): config_section = {} for option in configp.options(section): value = configp.get(section, option) if ", " in value: value = [entry.strip('"').strip() for entry in value.split(", ")] else: value = value.strip('"').strip() config_section[option] = value config[section] = config_section return config def load_config(config_path): """ Read an ini configuration file and return a MirrorKitConfig object. """ # Get a dict representation of the config config = parse_config(config_path) # Process the global section settings = {} if not "global" in config: logging.error("Missing 'global' config section.") return None if not config['global'].get("publish_path", None): logging.error("Missing 'publish_path' value.") return None settings['publish_path'] = config['global']['publish_path'] settings['log_path'] = config['global'].get("log_path", None) if settings['log_path']: if not config['global'].get("log_template_path", None): logging.error("Missing 'log_template_path' value.") return None settings['log_template_path'] = config['global'].get( "log_template_path", None) settings['apache_conf_path'] = config['global'].get("apache_conf_path", None) settings['http_base'] = config['global'].get("http_base", "/") settings['mirrors'] = [] for mirror_name in config['global'].get("mirrors", []): mirror = {} mirror['name'] = mirror_name if mirror_name not in config: logging.error("Couldn't find settings for mirror: %s" % mirror_name) return None mirror['source'] = config[mirror_name].get("source", None) mirror['sources'] = config[mirror_name].get("sources", False) == "true" for key in ("pockets", "components", "sub-components", "architectures"): value = config[mirror_name].get(key, None) if not isinstance(value, list): value = [value] mirror[key] = value # Expand sub-components extra_components = [] for entry in mirror['sub-components']: for component in mirror['components']: extra_components.append("%s/%s" % (component, entry)) mirror['components'] += extra_components mirror.pop("sub-components") for key in ("source", "pockets", "components", "architectures"): if not mirror[key]: logging.error("Missing value for '%s' in mirror: %s" % (key, mirror_name)) return None settings['mirrors'].append(type("MirrorKitMirror", (object,), mirror)) # Create our fake object return type("MirrorKitConfig", (object,), settings) def debmirror_command(config, mirror): """ Generate the appropriate debmirror command. """ url = urllib.parse.urlparse(mirror.source) if not url: logging.error("Invalid URL: %s" % url) return None if url.scheme not in ("http", "https", "ftp", "rsync"): logging.error("Invalid URL scheme: %s" % url.scheme) return None cmd = ["debmirror", "-v", "--host=%s" % url.netloc, "--root=%s" % url.path, "--arch=%s" % ",".join(mirror.architectures), "--dist=%s" % ",".join(mirror.pockets), "--section=%s" % ",".join(mirror.components), "--progress", "--method=%s" % url.scheme, "--ignore-release-gpg"] if not mirror.sources: cmd += ["--nosource"] cmd += [os.path.join(config.publish_path, mirror.name)] return cmd def run_debmirror(config, mirror, log): """ Run debmirror. Output is written to stdout and stderr. """ cmd = debmirror_command(config, mirror) if not cmd: return None if subprocess.call(cmd, stdout=log, stderr=log, universal_newlines=True) != 0: logging.error("debmirror failed to run for: %s" % mirror.name) return None return (True, cmd) def generate_report(config, mirror, success, log): log_filename = "%s.%s.html" % (mirror.name, time.strftime("%Y%m%d.%H-%M-%S", time.gmtime())) log_file = os.path.join(config.log_path, log_filename) log.seek(0) variables = {'date': time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()), 'name': mirror.name, 'status': "Success" if success else "Failure", 'status_html': "Success" if success else "Failure", 'size': round(get_path_size(os.path.join( config.publish_path, mirror.name)) / 1048576, 2), 'source': mirror.source, 'destination': os.path.join(config.publish_path, mirror.name), 'pockets': ", ".join(mirror.pockets), 'components': ", ".join(mirror.components), 'architectures': ", ".join(mirror.architectures), 'sources': "yes" if mirror.sources else "no", 'command': " ".join(debmirror_command(config, mirror)), 'log': log.read()} # Generate the html file with open(log_file, "w+") as log_fd: with open(config.log_template_path, "r") as fd: template_str = fd.read() template = string.Template(template_str) log_fd.write(template.safe_substitute(variables)) # Create symlink log_symlink = os.path.join(config.log_path, "%s.html" % mirror.name) if os.path.exists(log_symlink): os.remove(log_symlink) os.symlink(log_filename, log_symlink) def generate_apache_conf(config): if not os.path.exists(os.path.dirname(config.apache_conf_path)): logging.info("Apache configuration directory doesn't exist, skipping") return with open(config.apache_conf_path, "w+") as fd: for mirror in config.mirrors: fd.write("Alias %s %s\n" % (os.path.join(config.http_base, mirror.name), os.path.join(config.publish_path, mirror.name))) if config.log_path: fd.write("Alias %s %s\n" % (os.path.join(config.http_base, "logs"), config.log_path)) fd.write(""" Options Indexes FollowSymLinks MultiViews Order allow,deny Allow from all = 2.3> Require all granted """ % (os.path.join(config.http_base, "logs"))) for mirror in config.mirrors: rel_path = os.path.join(config.http_base, mirror.name) rel_path_escaped = rel_path.replace("/", "\\/") fd.write(""" RewriteEngine On RewriteCond %%{REQUEST_FILENAME} !-f RewriteCond %%{REQUEST_FILENAME} !-d RewriteRule .*%s\/pool\/(.*) %s.orig/pool/$1 [L] RewriteRule .*%s\/dists\/(.*) %s.orig/dists/$1 [L] Options Indexes FollowSymLinks MultiViews Order allow,deny Allow from all = 2.3> Require all granted Deny from all ProxyPass %s.orig/ %s/ """ % (rel_path, rel_path_escaped, rel_path, rel_path_escaped, rel_path, rel_path, rel_path, mirror.source)) fd.write("ProxyRequests off") if __name__ == '__main__': parser = argparse.ArgumentParser(description="mirrorkit") parser.add_argument("--config", metavar="CONFIG", help="Path to the configuration file", default="/etc/mirrorkit.conf") args = parser.parse_args() # Basic checks if not os.path.exists(args.config): parser.error("Configuration file doesn't exist: %s" % args.config) sys.exit(1) # Load the configuration config = load_config(args.config) if not config: sys.error(1) if not config.mirrors: sys.exit(0) # Check if template exists if config.log_template_path: if not os.path.exists(config.log_template_path): parser.error("Missing log template: %s" % config.log_template_path) sys.exit(1) # Create any missing path if not os.path.exists(config.publish_path): logging.debug("Creating missing path: %s" % config.publish_path) os.makedirs(config.publish_path) if config.log_path and not os.path.exists(config.log_path): logging.debug("Creating missing path: %s" % config.log_path) os.makedirs(config.log_path) # Start the mirroring for mirror in config.mirrors: logging.info("Beginning to mirror: %s" % mirror.name) log_fd, log_path = tempfile.mkstemp() log = os.fdopen(log_fd) retval = run_debmirror(config, mirror, log) logging.info("Done mirroring: %s" % mirror.name) if config.log_path: logging.info("Generating html report for: %s" % mirror.name) generate_report(config, mirror, retval is not None, log) log.close() os.remove(log_path) # Generate the http configuration if config.apache_conf_path: logging.info("Generating apache2 configuration: %s" % config.apache_conf_path) generate_apache_conf(config) mirrorkit-0.2.1/AUTHORS0000644000000000000000000000145712207204606011500 0ustar Copyright (applies if no explicit header in the file): 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. Authors: Copyright (c) 2012-2013 Stéphane Graber mirrorkit-0.2.1/COPYING0000644000000000000000000004311012207204561011453 0ustar GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. mirrorkit-0.2.1/debian/0000755000000000000000000000000012233067467011656 5ustar mirrorkit-0.2.1/debian/control0000644000000000000000000000104612233067113013246 0ustar Source: mirrorkit Section: misc Priority: optional Maintainer: Ubuntu Developers Build-Depends: debhelper (>= 9), help2man, python3 Standards-Version: 3.9.4 Package: mirrorkit Architecture: all Depends: debmirror, python3, ${misc:Depends} Recommends: apache2 | httpd Description: Python frontend to debmirror MirrorKit is a Python frontend to debmirror that uses a xml configuration file to generate a Ubuntu mirror. It also generates an html report page to monitor the mirror status from a template file. mirrorkit-0.2.1/debian/changelog0000644000000000000000000000262512233067443013527 0ustar mirrorkit (0.2.1) trusty; urgency=low * Wrap and sort. * Add missing build-depends help2man. -- Stéphane Graber Sat, 26 Oct 2013 21:40:43 -0400 mirrorkit (0.2) trusty; urgency=low * Upstream is dead, converting to native package. * Rewrite entirely: - Use ini instead of xml config file - Default to python3 - Add logging - Generate apache2 config file on the fly -- Stéphane Graber Sat, 26 Oct 2013 21:35:44 -0400 mirrorkit (0.1.1-0ubuntu4) precise; urgency=low * Rebuild to drop python2.6 dependencies. -- Matthias Klose Sat, 31 Dec 2011 02:05:24 +0000 mirrorkit (0.1.1-0ubuntu3) oneiric; urgency=low * debian/control: removed Provides: ${python:Provides} (LP: #801245) -- Samuel Taylor Thu, 15 Sep 2011 21:41:38 +0100 mirrorkit (0.1.1-0ubuntu2) oneiric; urgency=low * Convert to dh_python2 and dh7. * Convert to source format 3.0 (quilt). * Bump Standards-Version to 3.9.2. * Drop old Vcs-Bzr field. It should now be maintained in the official lp:ubuntu/mirriorkit branch. * Drop the definite article from the package synopsis. -- Andrew Starr-Bochicchio Tue, 21 Jun 2011 15:08:58 -0400 mirrorkit (0.1.1-0ubuntu1) lucid; urgency=low * Initial release. (LP: #340189) -- Michael Jeanson Tue, 26 Jan 2010 13:20:24 -0500 mirrorkit-0.2.1/debian/compat0000644000000000000000000000000212001613100013022 0ustar 9 mirrorkit-0.2.1/debian/install0000644000000000000000000000010412233067113013226 0ustar bin/* usr/bin/ etc/mirrorkit.conf etc/ share/* usr/share/mirrorkit/ mirrorkit-0.2.1/debian/rules0000755000000000000000000000052712232777124012737 0ustar #!/usr/bin/make -f VERSION=$(shell head -n1 debian/changelog |sed -e 's/.*(\(.*\)).*/\1/') %: dh $@ override_dh_installman: mkdir -p $(CURDIR)/debian/mirrorkit/usr/share/man/man1/ help2man --name="Mirrorkit" --version-string=$(VERSION) -N $(CURDIR)/bin/mirrorkit > $(CURDIR)/debian/mirrorkit/usr/share/man/man1/mirrorkit.1 dh_installman mirrorkit-0.2.1/debian/copyright0000644000000000000000000000171412233067113013600 0ustar This package was debianized by Stéphane Graber. Authors: Stéphane Graber Copyright: Stéphane Graber Copyright (c) 2007-2013 Stéphane Graber License: 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 can find the license on Debian systems in the file /usr/share/common-licenses/GPL-2 The Debian packaging is Copyright 2010-2012, Stéphane Graber and is licensed under the GPL, see `/usr/share/common-licenses/GPL-2'. mirrorkit-0.2.1/debian/source/0000755000000000000000000000000012233067467013156 5ustar mirrorkit-0.2.1/debian/source/format0000644000000000000000000000001512232776425014365 0ustar 3.0 (native) mirrorkit-0.2.1/etc/0000755000000000000000000000000012233067467011207 5ustar mirrorkit-0.2.1/etc/mirrorkit.conf0000644000000000000000000000217612233050061014064 0ustar [global] # Destination path for the mirror (mandatory) publish_path = /var/lib/mirrorkit/www/ # Destination path for the html log files (optional) log_path = /var/lib/mirrorkit/www/logs/ # Path of the html template for the logs (mandatory if log_path is set) log_template_path = /usr/share/mirrorkit/log.html.tpl # Path to the mirror relative to the http server root (optional, default to /) http_base = / # Path to the auto-generated apache configuration file (optional) apache_conf_path = /etc/apache2/conf-available/mirrorkit.conf # List of mirrors that are enabled (optional, off if empty) # mirrors = ubuntu, ubuntu-ports # [ubuntu] # source = http://archive.ubuntulinux.org/ubuntu # pockets = trusty, trusty-updates, trusty-security # components = main, restricted, universe, multiverse # sub-components = i18n, debian-installer # architectures = i386, amd64 # sources = true # [ubuntu-ports] # source = http://ports.ubuntulinux.org/ubuntu-ports # pockets = trusty, trusty-updates, trusty-security # components = main, restricted, universe, multiverse # sub-components = i18n, debian-installer # architectures = armhf # sources = false