summaryrefslogtreecommitdiff
path: root/dselect/methods/multicd
AgeCommit message (Collapse)AuthorFilesLines
2018-08-30dselect: Rename $ans variable to $answer in multicd methodGuillem Jover1-2/+2
This is detected by codespell as a spelling error. Just use the non-abbreviated form to make it more clear and stop triggering codespell. Warned-by: codespell
2017-10-09dselect: Remove traces of non-US support from methodsGuillem Jover5-25/+8
This has been obsoleted long ago.
2015-10-18Update Heiko Schlittermann's email addressGuillem Jover3-3/+3
2015-10-18Update Ian Jackson's email addressGuillem Jover3-4/+4
2015-09-17dselect: Switch multicd method license from GPL2 to GPL2+Guillem Jover3-6/+9
All authors have agreed to the change: Heiko in <https://lists.debian.org/debian-dpkg/2010/04/msg00057.html> Martin in <https://lists.debian.org/debian-dpkg/2010/04/msg00055.html> Ian in <https://lists.debian.org/debian-dpkg/2015/08/msg00029.html> Raphaël in <https://lists.debian.org/debian-dpkg/2010/04/msg00054.html> Guillem with this commit. Signed-off-by: Heiko Schlittermann <hs@schlittermann.de> Signed-off-by: Martin Schulze <joey@infodrom.org> Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk> Signed-off-by: Raphaël Hertzog <hertzog@debian.org> Signed-off-by: Guillem Jover <guillem@debian.org>
2015-04-10Consistently use proper quotation marks all over the placeGuillem Jover1-1/+1
That is "" or '', and not the unbalanced `' pair.
2015-03-31Say directory instead of dir in output messagesGuillem Jover1-2/+2
2014-05-17perl: Do not use global match variablesGuillem Jover1-3/+3
Fixes Variables::ProhibitMatchVars. Warned-by: perlcritic
2013-12-07Use https:// URLs instead of http:// when possibleGuillem Jover3-3/+3
2013-12-04dselect: Use warn instead of print STDERR in method scriptsGuillem Jover1-1/+1
Addresses InputOutput::RequireBracedFileHandleWithPrint. Warned-by: perlcritic
2013-12-04perl: Switch to use low precedence boolean operators for error checksGuillem Jover1-1/+1
This will make it safe to remove parenthesis around builtins.
2013-12-04perl: Try to avoid boolean operators after predicates on error checksGuillem Jover1-5/+8
Using boolean operators after predicates for error checking makes the code flow slightly confusing, do that only after actions, to check if they succeeded and error out otherwise.
2013-09-19Decapitalize error and warning messagesGuillem Jover1-3/+4
2013-04-30Do not quote simple identifier hash keys in element accessesGuillem Jover1-1/+1
Addresses ValuesAndExpressions::ProhibitInterpolationOfLiterals. Warned-by: perlcritic
2013-04-19Remove Emacs and vim modelinesGuillem Jover2-4/+0
These just clutter the code base, as adding modelines for each possible editor out there does not scale, and they are currently not exhaustive anyway.
2012-03-27Do not use `' quote pairs for non-translatable stringsGuillem Jover2-44/+44
2011-12-13Do not use absolute paths for programs in perl and shell codeGuillem Jover2-5/+5
The location of programs on the filesystem is not standardized, and as such using absolute paths is not a portable assumption to make. This causes test suite errors on at least Mac OS X. Use just the program name on perl system() calls, when needing the full path use Dpkg::Path::find_command() in perl code and “which” in shell code. Reported-by: Stuart Ambler <stuart@zulazon.com>
2009-11-08Unify format in license headersGuillem Jover3-3/+3
Indent license text to one space after the '#'. Add '#' to blank lines between paragraphs and remove trailing '#' after the license text.
2009-11-08Fix copyright statementsGuillem Jover3-6/+6
Use UTF-8 copyright symbol instead of “(C)”. Add missing “Copyright ©” to copyright statements instead of relying on the first occurance. Use properly spelled names.
2009-11-08Replace FSF address by pointing to the gnu.org URLGuillem Jover3-6/+3
Use the <http://www.gnu.org/licenses/> URL, instead of in most cases the outdated FSF address, which is way more stable, as the latter has changed several times in the past.
2009-11-07Use find with -L instead of deprecated -followGuillem Jover2-3/+3
2009-10-02dselect-multicd: fix bashism in setup scriptRaphaël Hertzog1-3/+3
Use printf instead of echo -e. Closes: #530070
2009-10-02dselect-multicd: replace/drop obsolete dpkg commandsRaphaël Hertzog3-5/+3
dpkg --print-installation-architecture is deprecated in favor of dpkg --print-architecture. dpkg --forget-old-unavail is obsolete.
2009-10-02dselect-multicd: update README wrt the dpkg-scanpackages situationRaphaël Hertzog1-21/+7
The required features have been merged in the official dpkg-scanpackages so don't mention the diverted copy that doesn't exist anymore.
2009-10-02dselect-multicd: add missing copyright statementsRaphaël Hertzog3-0/+55
The copyright statements come from debian/copyright in the dpkg-multicd source package (version 0.21).
2009-10-02Integrate dpkg-multicd into dselectRaphaël Hertzog8-0/+1234
The `multicd' package was initially written by Heiko Schlittermann <heiko@lotte.sax.de> based on builtin access methods written by Ian Jackson <ian@chiark.greenend.org.uk>. The final packaging as well as cleanups were made by Martin Schulze <joey@infodrom.north.de> who also put this package together for the slink release (Debian GNU/Linux 2.1). This commit includes the raw files as provided in version 0.21 of dpkg-multicd (except for a few whitespaces cleanups). The dpkg-scanpackages fork has been left out since the required features have been merged in the official dpkg-scanpackages. Closes: #516631