~ubuntu-branches/ubuntu/trusty/config-package-dev/trusty-proposed

« back to all changes in this revision

Viewing changes to examples/cdbs/debathena-transform-example-1.0/debian/transform_lynx.cfg.debathena

  • Committer: Package Import Robot
  • Author(s): Geoffrey Thomas
  • Date: 2013-03-06 17:14:42 UTC
  • Revision ID: package-import@ubuntu.com-20130306171442-k3sj6klfu28zghqr
Tags: 5.0
* Add Debhelper support (Debathena: #867) (Closes: #693672).  This
  release includes a new command, dh_configpackage, and a sequencer
  extension, dh --with config-package.
* Use the terms "displace" and "hide" for actions of the
  config-package-dev system, instead of the terms "divert" and
  "remove", which already have existing (related) meanings in the
  context of Debian packages.
* Move examples/* to examples/cdbs/*, and create examples/debhelper/*,
  with the same packages using Debhelper 7-style packaging.

* Change config-package-dev's own packaging to Debhelper 7.
* Bump Standards-Version to 3.9.4 (no changes required).
* Update Vcs-Git and Vcs-Browser locations to new upstream.
* Drop CDBS runtime dependency. CDBS users should be explicitly
  Build-Depending on CDBS, probably through use of the @cdbs@ macro in
  debian/control.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl -0p
 
2
# perl -0p is useful for writing efficient transform scripts.
 
3
 
 
4
# Set the default lynx home page to web.mit.edu. As noted in the
 
5
# comments in lynx.cfg, if the lynx home page is down, lynx will refuse
 
6
# to run. This caused a number of helpdesk complaints when the default
 
7
# lynx home page was down for a day.
 
8
 
 
9
s|^#STARTFILE:.*$|$&\nSTARTFILE:http://web.mit.edu/|m or die;