~ubuntu-branches/ubuntu/wily/smplayer/wily

« back to all changes in this revision

Viewing changes to zlib-1.2.6/contrib/puff/Makefile

  • Committer: Package Import Robot
  • Author(s): Maia Kozheva, Maia Kozheva, Alessio Treglia
  • Date: 2012-04-14 12:01:57 UTC
  • mfrom: (1.1.13)
  • mto: (20.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: package-import@ubuntu.com-20120414120157-mndwobcslgisomso
[ Maia Kozheva ]
* New upstream release:
  - Changes since 0.7.1:
    + A toolbar editor has been added. Now it's possible to select the
      buttons and controls that want to appear in the toolbars.
    + New video filters: gradfun, blur and sharpen.
    + Now it's possible to change the GUI (default, mini, mpc) at runtime,
      no restart required.
    + sub files from opensubtitles should work again.
    + (Youtube) Recognize short urls (like this one:
      http://y2u.be/F5OcZBVPwOA)
    + Better support for chapters in video files.
    + Bug fix: remote m3u files work from the favorites menu or command line.
    + Internal changes in the single instance option (switch to 
      QtSingleApplication).
  - Fixes since 0.7.0:
    + SMPlayer took more than 10 seconds to show when running for the very
      first time.
    + The links to download subtitles from Opensubtitles were wrong.
    + SMPlayer crashed in the favorite editor when trying to select a file
      if the KDE open dialog was used.
  - Changes since 0.7.0:
    + By default the screenshots are saved in the user's pictures folder
      instead of the SMPlayer's config folder.
    + Now it's possible to change the opensubtitles server.
    + Youtube: seeking is slow with flv videos, so now flv videos have the
      lowest priority.
    + Youtube: now it's possible to search and download videos from youtube.
      This is provided by an external application (in linux you have to
      install an independent package: smtube).
* debian/copyright:
  - Rewrite according to DEP-5 specification.
* debian/control:
  - Depend on mplayer2 | mplayer. (Closes: #638279)
  - Update Standards-Version to 3.9.3.
* Remove debian/patches/handle_local_urls.diff, merged upstream.

[ Alessio Treglia ]
* Mention smplayer is also a front-end for MPlayer2.
* Fix small typo in the description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CFLAGS=-O
 
2
 
 
3
puff: puff.o pufftest.o
 
4
 
 
5
puff.o: puff.h
 
6
 
 
7
pufftest.o: puff.h
 
8
 
 
9
test: puff
 
10
        puff zeros.raw
 
11
 
 
12
puft: puff.c puff.h pufftest.o
 
13
        cc -fprofile-arcs -ftest-coverage -o puft puff.c pufftest.o
 
14
 
 
15
# puff full coverage test (should say 100%)
 
16
cov: puft
 
17
        @rm -f *.gcov *.gcda
 
18
        @puft -w zeros.raw 2>&1 | cat > /dev/null
 
19
        @echo '04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
 
20
        @echo '00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
 
21
        @echo '00 00 00 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 254
 
22
        @echo '00 01 00 fe ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
 
23
        @echo '01 01 00 fe ff 0a' | xxd -r -p | puft -f 2>&1 | cat > /dev/null
 
24
        @echo '02 7e ff ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246
 
25
        @echo '02' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
 
26
        @echo '04 80 49 92 24 49 92 24 0f b4 ff ff c3 04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
 
27
        @echo '04 80 49 92 24 49 92 24 71 ff ff 93 11 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 249
 
28
        @echo '04 c0 81 08 00 00 00 00 20 7f eb 0b 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246
 
29
        @echo '0b 00 00' | xxd -r -p | puft -f 2>&1 | cat > /dev/null
 
30
        @echo '1a 07' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246
 
31
        @echo '0c c0 81 00 00 00 00 00 90 ff 6b 04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 245
 
32
        @puft -f zeros.raw 2>&1 | cat > /dev/null
 
33
        @echo 'fc 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 253
 
34
        @echo '04 00 fe ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 252
 
35
        @echo '04 00 24 49' | xxd -r -p | puft 2> /dev/null || test $$? -eq 251
 
36
        @echo '04 80 49 92 24 49 92 24 0f b4 ff ff c3 84' | xxd -r -p | puft 2> /dev/null || test $$? -eq 248
 
37
        @echo '04 00 24 e9 ff ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 250
 
38
        @echo '04 00 24 e9 ff 6d' | xxd -r -p | puft 2> /dev/null || test $$? -eq 247
 
39
        @gcov -n puff.c
 
40
 
 
41
clean:
 
42
        rm -f puff puft *.o *.gc*