~ubuntu-branches/ubuntu/vivid/system-config-printer/vivid

« back to all changes in this revision

Viewing changes to po/remove-potcdate.sin

  • Committer: Package Import Robot
  • Author(s): Till Kamppeter
  • Date: 2014-07-06 09:41:43 UTC
  • mfrom: (1.1.81)
  • Revision ID: package-import@ubuntu.com-20140706094143-yvp3kzo7ti1ghih8
Tags: 1.4.5+20140706-0ubuntu1
* New upstream release
   o GIT 1.4.x snapshot from 6 July 2014
   o Some codec fixes
   o Traceback fixes
   o IPv6 address entry fix
   o Auth info saving improvement
   o Some loop/hang bug fixes
   o Use LockButton for fewer auth dialogs
* 30_newprinter-driver-download-override-false-error-alarm.patch,
  33_dont-use-hp-makeuri-with-non-hp-printers.patch:
  Removed, included upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Sed script that remove the POT-Creation-Date line in the header entry
 
2
# from a POT file.
 
3
#
 
4
# The distinction between the first and the following occurrences of the
 
5
# pattern is achieved by looking at the hold space.
 
6
/^"POT-Creation-Date: .*"$/{
 
7
x
 
8
# Test if the hold space is empty.
 
9
s/P/P/
 
10
ta
 
11
# Yes it was empty. First occurrence. Remove the line.
 
12
g
 
13
d
 
14
bb
 
15
:a
 
16
# The hold space was nonempty. Following occurrences. Do nothing.
 
17
x
 
18
:b
 
19
}