diff -Nru config-package-dev-5.2/debian/changelog config-package-dev-5.4~ubuntu17.10.1/debian/changelog --- config-package-dev-5.2/debian/changelog 2017-07-01 12:48:25.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/debian/changelog 2017-10-19 22:08:37.000000000 -0400 @@ -1,3 +1,31 @@ +config-package-dev (5.4~ubuntu17.10.1) artful; urgency=medium + + * Backport to artful to pick up regression fix from 5.3 (LP: #1725110). + + -- Geoffrey Thomas Thu, 19 Oct 2017 22:08:37 -0400 + +config-package-dev (5.4) unstable; urgency=medium + + * Add a basic autopkgtest to make sure the examples build. + * Move packaging to GitHub, and add the .travis.yml from + http://travis.debian.net/ to run autopkgtests on each push. + * examples/*: Bump debian/compat to 9 (no changes) and + Standards-Version to 4.1.0 (change priority to "optional"). + + -- Geoffrey Thomas Wed, 18 Oct 2017 10:14:41 -0400 + +config-package-dev (5.3) unstable; urgency=high + + * Fix a regression in the change that permitted omission of leading + slashes, which completely broke transforms (Closes: #873966). Thanks + to Bruno Maitre for the report and the patch. + * Fix the paths in the two transform examples to work with the current + version of lynx. + * Update Standards-Version to 4.1.0 by changing priority from "extra" + to "optional". + + -- Geoffrey Thomas Fri, 01 Sep 2017 14:39:35 -0400 + config-package-dev (5.2) unstable; urgency=medium * Permit debian/$package.displace-extension to omit the leading dot diff -Nru config-package-dev-5.2/debian/control config-package-dev-5.4~ubuntu17.10.1/debian/control --- config-package-dev-5.2/debian/control 2017-07-01 12:48:25.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,13 +1,14 @@ Source: config-package-dev Section: devel -Priority: extra -Maintainer: Debathena Project +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debathena Project Uploaders: Tim Abbott , Anders Kaseorg , Geoffrey Thomas Homepage: https://debathena.mit.edu/config-package-dev -Vcs-Git: git://debathena.mit.edu/config-package-dev.git -Vcs-Browser: https://debathena.mit.edu/trac/browser/config-package-dev/ +Vcs-Git: https://github.com/sipb/config-package-dev +Vcs-Browser: https://github.com/sipb/config-package-dev Build-Depends: debhelper (>= 9) -Standards-Version: 4.0.0 +Standards-Version: 4.1.0 Package: config-package-dev Architecture: all diff -Nru config-package-dev-5.2/debian/tests/control config-package-dev-5.4~ubuntu17.10.1/debian/tests/control --- config-package-dev-5.2/debian/tests/control 1969-12-31 19:00:00.000000000 -0500 +++ config-package-dev-5.4~ubuntu17.10.1/debian/tests/control 2017-10-19 22:08:37.000000000 -0400 @@ -0,0 +1,3 @@ +Tests: examples +Depends: @, debhelper, cdbs, dh-buildinfo, lynx +Restrictions: allow-stderr diff -Nru config-package-dev-5.2/debian/tests/examples config-package-dev-5.4~ubuntu17.10.1/debian/tests/examples --- config-package-dev-5.2/debian/tests/examples 1969-12-31 19:00:00.000000000 -0500 +++ config-package-dev-5.4~ubuntu17.10.1/debian/tests/examples 2017-10-19 22:08:37.000000000 -0400 @@ -0,0 +1,7 @@ +#!/bin/sh + +set -eu + +for pkg in examples/*/*/; do + (cd "$pkg" && dpkg-buildpackage --no-sign) +done diff -Nru config-package-dev-5.2/dh_configpackage config-package-dev-5.4~ubuntu17.10.1/dh_configpackage --- config-package-dev-5.2/dh_configpackage 2017-07-01 12:48:25.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/dh_configpackage 2017-10-19 22:08:37.000000000 -0400 @@ -163,7 +163,7 @@ cases, it is useful to use a file in the current package's build directory as the transformation source. In this case, the package's build directory is assumed to be clean, and no dpkg ownership check is -performe. +performed. B There is no "untransform" operation. Because a transform operation is a special case of a displace operation, the "undisplace" @@ -376,7 +376,7 @@ @transformfiles = filedoublearray($transformfile) if $transformfile; } - foreach my $listref (\@displacefiles, \@hidefiles, \@undisplacefiles, \@unhidefiles, \@transformfiles) { + foreach my $listref (\@displacefiles, \@hidefiles, \@undisplacefiles, \@unhidefiles) { foreach my $file (@$listref) { $file =~ s|^/?|/|; } @@ -392,6 +392,7 @@ foreach my $line (@transformfiles) { my $file = shift @$line; + $file =~ s|^/?|/|; my $source; my $source_is_local = 0; if (@$line[0] =~ /^ Build-Depends: cdbs, debhelper, dh-buildinfo, config-package-dev (>= 4.5~) -Standards-Version: 3.8.0 +Standards-Version: 4.1.0 Package: debathena-bin-example Architecture: all diff -Nru config-package-dev-5.2/examples/cdbs/debathena-bin-example-1.1/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-bin-example-1.1/debian/compat --- config-package-dev-5.2/examples/cdbs/debathena-bin-example-1.1/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-bin-example-1.1/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -4 +9 diff -Nru config-package-dev-5.2/examples/cdbs/debathena-bin-example-1.1/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-bin-example-1.1/debian/control --- config-package-dev-5.2/examples/cdbs/debathena-bin-example-1.1/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-bin-example-1.1/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,12 +1,12 @@ Source: debathena-bin-example Section: config -Priority: extra +Priority: optional Maintainer: Tim Abbott Build-Depends: cdbs, debhelper, dh-buildinfo, config-package-dev (>= 4.5~) -Standards-Version: 3.8.0 +Standards-Version: 4.1.0 Package: debathena-bin-example Architecture: all diff -Nru config-package-dev-5.2/examples/cdbs/debathena-conffile-example-1.0/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-conffile-example-1.0/debian/compat --- config-package-dev-5.2/examples/cdbs/debathena-conffile-example-1.0/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-conffile-example-1.0/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -4 +9 diff -Nru config-package-dev-5.2/examples/cdbs/debathena-conffile-example-1.0/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-conffile-example-1.0/debian/control --- config-package-dev-5.2/examples/cdbs/debathena-conffile-example-1.0/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-conffile-example-1.0/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,12 +1,12 @@ Source: debathena-conffile-example Section: config -Priority: extra +Priority: optional Maintainer: Tim Abbott Build-Depends: cdbs, debhelper, dh-buildinfo, config-package-dev (>= 4.5~) -Standards-Version: 3.8.0 +Standards-Version: 4.1.0 Package: debathena-conffile-example Architecture: all diff -Nru config-package-dev-5.2/examples/cdbs/debathena-conffile-example-1.1/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-conffile-example-1.1/debian/compat --- config-package-dev-5.2/examples/cdbs/debathena-conffile-example-1.1/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-conffile-example-1.1/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -4 +9 diff -Nru config-package-dev-5.2/examples/cdbs/debathena-conffile-example-1.1/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-conffile-example-1.1/debian/control --- config-package-dev-5.2/examples/cdbs/debathena-conffile-example-1.1/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-conffile-example-1.1/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,12 +1,12 @@ Source: debathena-conffile-example Section: config -Priority: extra +Priority: optional Maintainer: Jonathan Reed Build-Depends: cdbs, debhelper, dh-buildinfo, config-package-dev (>= 4.5~) -Standards-Version: 3.8.0 +Standards-Version: 4.1.0 Package: debathena-conffile-example Architecture: all diff -Nru config-package-dev-5.2/examples/cdbs/debathena-cron-example-1.0/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-cron-example-1.0/debian/compat --- config-package-dev-5.2/examples/cdbs/debathena-cron-example-1.0/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-cron-example-1.0/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -4 +9 diff -Nru config-package-dev-5.2/examples/cdbs/debathena-cron-example-1.0/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-cron-example-1.0/debian/control --- config-package-dev-5.2/examples/cdbs/debathena-cron-example-1.0/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-cron-example-1.0/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,12 +1,12 @@ Source: debathena-cron-example Section: config -Priority: extra +Priority: optional Maintainer: Tim Abbott Build-Depends: cdbs, debhelper, dh-buildinfo, config-package-dev (>= 4.5~) -Standards-Version: 3.8.0 +Standards-Version: 4.1.0 Package: debathena-cron-example Architecture: all diff -Nru config-package-dev-5.2/examples/cdbs/debathena-transform-example-1.0/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-transform-example-1.0/debian/compat --- config-package-dev-5.2/examples/cdbs/debathena-transform-example-1.0/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-transform-example-1.0/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -4 +9 diff -Nru config-package-dev-5.2/examples/cdbs/debathena-transform-example-1.0/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-transform-example-1.0/debian/control --- config-package-dev-5.2/examples/cdbs/debathena-transform-example-1.0/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-transform-example-1.0/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,12 +1,12 @@ Source: debathena-transform-example Section: config -Priority: extra +Priority: optional Maintainer: Tim Abbott Build-Depends: cdbs, debhelper, dh-buildinfo, config-package-dev (>= 4.5~), lynx -Standards-Version: 3.8.0 +Standards-Version: 4.1.0 Package: debathena-transform-example Architecture: all diff -Nru config-package-dev-5.2/examples/cdbs/debathena-transform-example-1.0/debian/rules config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-transform-example-1.0/debian/rules --- config-package-dev-5.2/examples/cdbs/debathena-transform-example-1.0/debian/rules 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/cdbs/debathena-transform-example-1.0/debian/rules 2017-10-19 22:08:37.000000000 -0400 @@ -2,7 +2,7 @@ DEB_DISPLACE_EXTENSION = .debathena DEB_TRANSFORM_FILES_debathena-transform-example += \ - /etc/lynx-cur/lynx.cfg.debathena + /etc/lynx/lynx.cfg.debathena include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/rules/config-package.mk diff -Nru config-package-dev-5.2/examples/debhelper/debathena-bin-example-1.0/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-bin-example-1.0/debian/compat --- config-package-dev-5.2/examples/debhelper/debathena-bin-example-1.0/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-bin-example-1.0/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -7 +9 diff -Nru config-package-dev-5.2/examples/debhelper/debathena-bin-example-1.0/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-bin-example-1.0/debian/control --- config-package-dev-5.2/examples/debhelper/debathena-bin-example-1.0/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-bin-example-1.0/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,9 +1,9 @@ Source: debathena-bin-example Section: config -Priority: extra +Priority: optional Maintainer: Geoffrey Thomas Build-Depends: debhelper (>= 7.0.0~), config-package-dev (>= 4.15~) -Standards-Version: 3.9.2 +Standards-Version: 4.1.0 Package: debathena-bin-example Architecture: all diff -Nru config-package-dev-5.2/examples/debhelper/debathena-bin-example-1.1/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-bin-example-1.1/debian/compat --- config-package-dev-5.2/examples/debhelper/debathena-bin-example-1.1/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-bin-example-1.1/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -7 +9 diff -Nru config-package-dev-5.2/examples/debhelper/debathena-bin-example-1.1/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-bin-example-1.1/debian/control --- config-package-dev-5.2/examples/debhelper/debathena-bin-example-1.1/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-bin-example-1.1/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,9 +1,9 @@ Source: debathena-bin-example Section: config -Priority: extra +Priority: optional Maintainer: Geoffrey Thomas Build-Depends: debhelper (>= 7.0.0~), config-package-dev (>= 4.15~) -Standards-Version: 3.9.2 +Standards-Version: 4.1.0 Package: debathena-bin-example Architecture: all diff -Nru config-package-dev-5.2/examples/debhelper/debathena-conffile-example-1.0/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-conffile-example-1.0/debian/compat --- config-package-dev-5.2/examples/debhelper/debathena-conffile-example-1.0/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-conffile-example-1.0/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -7 +9 diff -Nru config-package-dev-5.2/examples/debhelper/debathena-conffile-example-1.0/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-conffile-example-1.0/debian/control --- config-package-dev-5.2/examples/debhelper/debathena-conffile-example-1.0/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-conffile-example-1.0/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,9 +1,9 @@ Source: debathena-conffile-example Section: config -Priority: extra +Priority: optional Maintainer: Geoffrey Thomas Build-Depends: debhelper (>= 7.0.0~), config-package-dev (>= 4.15~) -Standards-Version: 3.9.2 +Standards-Version: 4.1.0 Package: debathena-conffile-example Architecture: all diff -Nru config-package-dev-5.2/examples/debhelper/debathena-conffile-example-1.1/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-conffile-example-1.1/debian/compat --- config-package-dev-5.2/examples/debhelper/debathena-conffile-example-1.1/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-conffile-example-1.1/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -7 +9 diff -Nru config-package-dev-5.2/examples/debhelper/debathena-conffile-example-1.1/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-conffile-example-1.1/debian/control --- config-package-dev-5.2/examples/debhelper/debathena-conffile-example-1.1/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-conffile-example-1.1/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,9 +1,9 @@ Source: debathena-conffile-example Section: config -Priority: extra +Priority: optional Maintainer: Geoffrey Thomas Build-Depends: debhelper (>= 7.0.50~), config-package-dev (>= 4.15~) -Standards-Version: 3.9.2 +Standards-Version: 4.1.0 Package: debathena-conffile-example Architecture: all diff -Nru config-package-dev-5.2/examples/debhelper/debathena-cron-example-1.0/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-cron-example-1.0/debian/compat --- config-package-dev-5.2/examples/debhelper/debathena-cron-example-1.0/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-cron-example-1.0/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -7 +9 diff -Nru config-package-dev-5.2/examples/debhelper/debathena-cron-example-1.0/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-cron-example-1.0/debian/control --- config-package-dev-5.2/examples/debhelper/debathena-cron-example-1.0/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-cron-example-1.0/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,9 +1,9 @@ Source: debathena-cron-example Section: config -Priority: extra +Priority: optional Maintainer: Geoffrey Thomas Build-Depends: debhelper (>= 7.0.0~), config-package-dev (>= 4.15~) -Standards-Version: 3.9.2 +Standards-Version: 4.1.0 Package: debathena-cron-example Architecture: all diff -Nru config-package-dev-5.2/examples/debhelper/debathena-transform-example-1.0/debian/compat config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-transform-example-1.0/debian/compat --- config-package-dev-5.2/examples/debhelper/debathena-transform-example-1.0/debian/compat 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-transform-example-1.0/debian/compat 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -7 +9 diff -Nru config-package-dev-5.2/examples/debhelper/debathena-transform-example-1.0/debian/control config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-transform-example-1.0/debian/control --- config-package-dev-5.2/examples/debhelper/debathena-transform-example-1.0/debian/control 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-transform-example-1.0/debian/control 2017-10-19 22:08:37.000000000 -0400 @@ -1,9 +1,9 @@ Source: debathena-transform-example Section: config -Priority: extra +Priority: optional Maintainer: Geoffrey Thomas Build-Depends: debhelper (>= 7.0.0~), config-package-dev (>= 4.15), lynx -Standards-Version: 3.9.2 +Standards-Version: 4.1.0 Package: debathena-transform-example Architecture: all diff -Nru config-package-dev-5.2/examples/debhelper/debathena-transform-example-1.0/debian/debathena-transform-example.transform config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-transform-example-1.0/debian/debathena-transform-example.transform --- config-package-dev-5.2/examples/debhelper/debathena-transform-example-1.0/debian/debathena-transform-example.transform 2017-07-01 11:50:37.000000000 -0400 +++ config-package-dev-5.4~ubuntu17.10.1/examples/debhelper/debathena-transform-example-1.0/debian/debathena-transform-example.transform 2017-10-19 22:08:37.000000000 -0400 @@ -1 +1 @@ -/etc/lynx-cur/lynx.cfg.debathena perl -0pe 's|^#STARTFILE:.*$|$&\nSTARTFILE:http://web.mit.edu/|m or die' +/etc/lynx/lynx.cfg.debathena perl -0pe 's|^#STARTFILE:.*$|$&\nSTARTFILE:http://web.mit.edu/|m or die' diff -Nru config-package-dev-5.2/README.md config-package-dev-5.4~ubuntu17.10.1/README.md --- config-package-dev-5.2/README.md 1969-12-31 19:00:00.000000000 -0500 +++ config-package-dev-5.4~ubuntu17.10.1/README.md 2017-10-19 22:08:37.000000000 -0400 @@ -0,0 +1,48 @@ +config-package-dev +=== + +config-package-dev is a tool for building Debian _configuration +packages_, that is, packages that configure other Debian packages +already on your system. It is an alternative to configuration-management +tools (e.g., Ansible, Chef, Puppet, cfengine) that integrates cleanly +with the Debian packaging system: you can apply configuration by +installing a configuration package, and remove it cleanly by +uninstalling it. config-package-dev uses `dpkg-divert` to inform the +packaging system that it is changing files owned by another package, +which means that your changes remain applied even when the original +package is upgraded. + +Configuration packages are particularly useful for sites using Debian or +Ubuntu (or another dpkg-based distribution) and are already running +their own interrnal apt repository. You can provide site defaults and +configuration through your existing package-update processes, and make +sure systems are up-to-date in both software and configuration by +checking what versions of packages they have installed. +(config-package-dev is not intended for use by packages in Debian +itself.) + +config-package-dev is a project of [MIT SIPB](https://sipb.mit.edu/), +and was originally developed for the +[Debathena](https://debathena.mit.edu) project to provide functionality +to access MIT computing services (e.g., Kerberos and AFS configuration) +on privately owned machines. + +To get started, install `config-package-dev` from your package manager; +we support the versions in the Debian and Ubuntu archives. Take a look +at the [examples](examples/debhelper), or check out the full +documentation at +[https://debathena.mit.edu/config-package-dev](https://debathena.mit.edu/config-package-dev). +If you're using config-package-dev, please also join the +[config-package-dev@mit.edu mailing +list](https://mailman.mit.edu/mailman/listinfo/config-package-dev). + +config-package-dev itself is [licensed under the +GPLv2+](debian/copyright), but the code it +adds to configuration packages is [released under the MIT +license](https://github.com/sipb/config-package-dev/commit/8d36c7611f0b3f3a16447b613d0e2a6ad0b1059f#diff-e93fa5c394e60f185a53f9ff00b68eb2) +and automatically includes the MIT license in the added code. + +Feel free to report bugs or submit patches either on GitHub or [on the Debian +bug tracker](https://bugs.debian.org/src:config-package-dev). + +[![Build Status](https://travis-ci.org/sipb/config-package-dev.svg?branch=master)](https://travis-ci.org/sipb/config-package-dev) diff -Nru config-package-dev-5.2/.travis.yml config-package-dev-5.4~ubuntu17.10.1/.travis.yml --- config-package-dev-5.2/.travis.yml 1969-12-31 19:00:00.000000000 -0500 +++ config-package-dev-5.4~ubuntu17.10.1/.travis.yml 2017-10-19 22:08:37.000000000 -0400 @@ -0,0 +1,11 @@ +sudo: required +language: generic + +services: + - docker + +script: + - wget -O- http://travis.debian.net/script.sh | sh - + +env: + - TRAVIS_DEBIAN_DISTRIBUTION=unstable