1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
|
avifile (1:0.7.48~20090503.ds-25) unstable; urgency=low
* Fix autopkgtest fail on armhf: disable neon. (Closes: #1008752)
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Tue, 05 Apr 2022 06:49:17 +0800
avifile (1:0.7.48~20090503.ds-24) unstable; urgency=low
* Fix autopkgtest fail on s390x: endian conversion.
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Tue, 05 Apr 2022 00:45:36 +0800
avifile (1:0.7.48~20090503.ds-23) unstable; urgency=low
* Fix autopkgtest fail by adding g++ and pkg-config to depends.
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Sat, 19 Mar 2022 04:07:19 +0800
avifile (1:0.7.48~20090503.ds-22) unstable; urgency=low
* Add debian/patches/ffmpeg5.0.patch: (Closes: #1004790)
- ported to ffmpeg5.0 (Closes: #1004789)
* Add autopkgtest for testing the decoding.
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Fri, 18 Mar 2022 18:19:49 +0800
avifile (1:0.7.48~20090503.ds-21) unstable; urgency=low
[ Ying-Chun Liu (PaulLiu) <paulliu@debian.org> ]
* Use libswresample-dev instead of libavresample-dev (Closes: #971333)
- Update debian/patches/libav10.patch
* Bump debhelper version to 11
* Bump Standards-Version to 4.5.0: nothing needs to be changed
[ Helmut Grohne <helmut@subdivi.de> ]
* Fix FTCBFS: Explicitly disable --without-xvid4. (Closes: #922150)
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Wed, 30 Sep 2020 03:28:20 +0800
avifile (1:0.7.48~20090503.ds-20.1) unstable; urgency=medium
* Non-maintainer upload.
* debian/patches: Fix build against ffmpeg 4.0. Thanks to James Cowgill for
the patch. (Closes: #888370)
-- Sebastian Ramacher <sramacher@debian.org> Wed, 11 Jul 2018 21:30:18 +0200
avifile (1:0.7.48~20090503.ds-20) unstable; urgency=low
* Bump Standards-Version to 4.0.0: nothing needs to be changed
* Add debian/patches/reproducible-build.patch (Closes: #860203)
* Fix spell error in README.debian
* Fix debian/copyright for license short name
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Wed, 26 Jul 2017 01:18:07 +0800
avifile (1:0.7.48~20090503.ds-19) unstable; urgency=low
* Fix FTBFS with gcc6 (Closes: #811721)
- debian/patches/port-to-gcc6.patch
* Bump Standards-Version to 3.9.5: nothing needs to be changed
* Fix crash when playing AVI files. Updated the following patches:
- debian/patches/ffmpeg_2.9.patch
- debian/patches/libav10.patch
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Tue, 16 Aug 2016 15:14:33 +0800
avifile (1:0.7.48~20090503.ds-18) unstable; urgency=low
* Fix FTBFS with FFmpeg 2.9 (Closes: #803801)
- Thanks to Andreas Cadhalpun <andreas.cadhalpun@googlemail.com>
* debian/copyright: Add DivX Open license (Closes: #801826)
- Thanks to Dmitry Smirnov <onlyjob@debian.org>
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Wed, 04 Nov 2015 14:40:38 +0800
avifile (1:0.7.48~20090503.ds-17) unstable; urgency=low
* Fix FTBFS for gcc 5.0 (Closes: #777790)
- Update debian/patches/gcc45.patch for gcc 5.x
* Bump Standards-Version to 3.9.5: nothing needs to be changed
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Mon, 29 Jun 2015 10:03:57 +0800
avifile (1:0.7.48~20090503.ds-16.2) unstable; urgency=medium
* Non-maintainer upload.
* Fix dpkg-maintscript-helper to handle symlink to directory conversion
Closes: #771753
* Pre-Depends: ${misc:Pre-Depends} also for *-bin, *-dev package
-- Andreas Tille <tille@debian.org> Fri, 12 Dec 2014 10:05:48 +0100
avifile (1:0.7.48~20090503.ds-16.1) unstable; urgency=medium
* Make the package binNMUable (Closes: #765669)
+ Use >= ${source:Version} instead of = ${source:Version}
+ Remove the dh_linkdoc any->all relation that doesn't work and add
maintscript(s) to change symlink to docs
-- Ondřej Surý <ondrej@debian.org> Mon, 20 Oct 2014 13:27:50 +0200
avifile (1:0.7.48~20090503.ds-16.1) unstable; urgency=medium
* Non-maintainer upload
* Use >= ${source:Version} instead of = ${source:Version} to allow
binNMUs (Closes: #765669)
-- Ondřej Surý <ondrej@debian.org> Mon, 20 Oct 2014 13:18:51 +0200
avifile (1:0.7.48~20090503.ds-16) unstable; urgency=low
* Make libavifile-0.7-common binNMU version safe. (Closes: #760067)
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Wed, 03 Sep 2014 01:20:38 +0800
avifile (1:0.7.48~20090503.ds-15) unstable; urgency=low
* Bump Standards-Version to 3.9.5: nothing needs to be changed
* Upload from experimental to unstable for libav10 transition.
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Mon, 12 May 2014 14:37:08 +0800
avifile (1:0.7.48~20090503.ds-14.1) experimental; urgency=low
* Non-maintainer upload.
* Compile against libav10, compile against libavresample. (Closes: #739213)
-- Reinhard Tartler <siretart@tauware.de> Sun, 16 Mar 2014 15:06:32 -0400
avifile (1:0.7.48~20090503.ds-14) unstable; urgency=low
* Port to libav9. (Closes: #692867)
- debian/patches/fix-ftbfs-libav9.patch
* Enable hardening.
* Use dh-exec to handle Multi-Arch install.
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Sun, 02 Jun 2013 03:13:08 +0800
avifile (1:0.7.48~20090503.ds-13) unstable; urgency=low
* Use --link-doc for documentation installation. (Closes: #700792)
- Add preinst to remove real directory in libavifile-0.7c2
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Fri, 22 Feb 2013 14:47:49 +0800
avifile (1:0.7.48~20090503.ds-12) unstable; urgency=low
* Add ftbfs-gcc4.7.patch to fix FTBFS by gcc-4.7 (Closes: #667107)
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Wed, 09 May 2012 16:19:34 +0800
avifile (1:0.7.48~20090503.ds-11) unstable; urgency=low
* Add libxt-dev to Build-Depends. Fix FTBFS on kfreebsd (Closes: #670450)
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Tue, 01 May 2012 12:07:09 +0800
avifile (1:0.7.48~20090503.ds-10) unstable; urgency=low
* Multi-Arch support
- Use debhelper 9
- Move common files to libavifile-0.7-common
- Move toolkit to libavifile-0.7-bin
* Bump Standards-Version to 3.9.3: nothing needs to be changed
* Don't install vidix files. (Closes: #669516)
* debian/copyright: use machine-readable 1.0 format
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Tue, 24 Apr 2012 02:11:21 +0800
avifile (1:0.7.48~20090503.ds-9.1) unstable; urgency=low
* Non-maintainer upload.
* Remove unnecessary build-dependency on libaudiofile-dev (Closes: #654737)
-- Alessio Treglia <alessio@debian.org> Thu, 05 Jan 2012 15:16:03 +0100
avifile (1:0.7.48~20090503.ds-9) unstable; urgency=low
* Add debian/patches/ftbfs-freebsd.patch: Fix FTBFS on FreeBSD platform
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Wed, 21 Dec 2011 14:43:25 +0800
avifile (1:0.7.48~20090503.ds-8) unstable; urgency=low
* Adopt this package. (Closes: #540906)
* clean empty package subdirectory.
* debian/rules: not to build empty packages
* debian/control: add version constraints on Break field
* Bump Standards-Version to 3.9.2: nothing needs to be changed
* Use DebHelper7 debian/rules
-- Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Sat, 17 Dec 2011 17:22:27 +0800
avifile (1:0.7.48~20090503.ds-7) unstable; urgency=low
* QA upload.
* Really disable MAD
-- Moritz Muehlenhoff <jmm@debian.org> Thu, 08 Sep 2011 21:36:24 +0200
avifile (1:0.7.48~20090503.ds-6) unstable; urgency=low
* QA upload.
* Fix build with libav 0.7 (Closes: #640151)
* Drop build dep on libmad-dev, this was only used for the now removed
avifile player.
-- Moritz Muehlenhoff <jmm@debian.org> Sat, 03 Sep 2011 18:34:42 +0200
avifile (1:0.7.48~20090503.ds-5) unstable; urgency=low
* Add build dependency on libxi-dev, which was formerly pulled
in indirectly (Closes: #639199)
* Add Breaks on old player binaries (Closes: #639256)
-- Moritz Muehlenhoff <jmm@debian.org> Sat, 27 Aug 2011 15:11:53 +0200
avifile (1:0.7.48~20090503.ds-4) unstable; urgency=low
* QA upload.
* Build-depend on libjpeg-dev, not libjpeg62-dev (Closes: #633688)
* Begin work on avifile depreaction. The library will be kept for now
until the reverse deps have been cleared, but the player and utils
are being removed now. They have far better replacements in the
archive and are still actively maintained upstream. The removal
closes a few bugs:
(Closes: #450633, #604343, #188495, #331038, #372547, #416448)
* Fix compatibility with libav/0.7.1 (Closes: #638566)
-- Moritz Muehlenhoff <jmm@debian.org> Sun, 21 Aug 2011 15:12:06 +0200
avifile (1:0.7.48~20090503.ds-3) unstable; urgency=low
* QA upload.
* Fix FTBFS with GCC4.5 (Closes: #564868).
* debian/control:
- Fix duplicate-in-relation-field in avifile-win32-plugin
depends: ${shlibs:Depends}.
- Fix debhelper-but-no-misc-depends avifile-win32-plugin.
-- Alessio Treglia <alessio@debian.org> Fri, 06 May 2011 10:30:19 +0200
avifile (1:0.7.48~20090503.ds-2) unstable; urgency=low
* QA upload.
* debian/source/format: New file; switch to source format 3.0 (quilt).
* Add DEP-3 headers to all patches.
* debian/control (Build-Depends): Drop quilt.
* debian/rules: Remove patch/unpatch logic.
* debian/patches/no-lame.patch: Split from autotools.patch as it is
Debian-specific.
* debian/patches/ftbfs-ia64.patch: New; fixes FTBFS on ia64.
* debian/patches/series: Update.
-- Yavor Doganov <yavor@gnu.org> Thu, 19 Nov 2009 14:39:52 +0200
avifile (1:0.7.48~20090503.ds-1) unstable; urgency=low
* QA upload.
* New upstream release/snapshot:
+ No longer adds -ldts to Libs in the .pc file (Closes: #492040).
+ Includes some portability fixes, crossing fingers that it'll build
on more archs (Closes: #206467).
* Repackage the upstream tarball, removing the embedded copy of LAME
(Closes: #538753). While here, kill also the bundled ffmpeg copy
and /debian.
* debian/compat: New file.
* debian/control: Wrap all fields for diff-friendliness. Add
${misc:Depends} to all binary packages' Depends.
(Section): Change to `libs' to match the override.
(Maintainer): The package is orphaned (#540906), set to the Debian QA
Group.
(Standards-Version): Claim compliance with 3.8.3 as of this release.
(Build-Depends): Bump debhelper to >= 7. Remove ancient version from
libqt3-mt-dev. Replace automake1.9 with automake. Remove autoconf,
always pulled in by automake. Remove libdts-dev; not needed. Remove
redundant gettext and patch. Remove alternative dependency on
pnmtopng, merged ages ago into netpbm. Add quilt, libavformat-dev,
libxxf86dga-dev and libxxf86vm-dev.
(Homepage): New field.
(Conflicts, Replaces, Suggests): Remove -- the former ancient, the
latter not needed.
(Description): s/x86 Linux/GNU/ -- should work on GNU/kFreeBSD too,
and eventually on more archs. Remove Homepage(s).
(libavifile-0.7-dev) <Depends>: Use ${binary:Version} instead of
${Source-Version}. Remove libxft-dev, libxrender-dev and
libfontconfig1-dev, not required by the .pc file.
<Section>: Change to `libdevel'.
(avifile-mad-plugin, avifile-mjpeg-plugin, avifile-vorbis-plugin)
(avifile-player, avidile-utils) <Section>: Change to `video'.
(avifile-win32-plugin) <Section>: Change to contrib/video.
<Architecture>: Add hurd-i386, thanks Samuel Thibault (Closes:
#473414).
(avifile-xvid-plugin, avifile-divx-plugin) <Section>: Change to
contrib/video.
* debian/rules: Use automatic variables where possible. Include
/usr/share/quilt/quilt.make.
(DH_COMPAT, FFMPEG_CFLAGS): Do not define.
(installprefix): Use $(CURDIR) instead of $(PWD).
(CFLAGS, CXXFLAGS): Define to the common -Wall -g before the
conditionals.
(LDFLAGS): Define to -Wl,-z,defs -Wl,--as-needed.
(debug, nostrip): Remove unnecessary conditionals.
(CROSS): New conditionally defined variable to enter cross-compilation
mode only when necessary, thanks Kumar Appaiah (Closes: #542527).
(build): Depend on the patch target.
(cleanB): Remove target.
(clean-patched): New target; merge the recipe from clean and cleanB.
Delete acinclude.m4.
(configure-stamp): Change --disable-lame to --without-lame and
--enable-lame-bin to --enable-lamebin following upstream change. Pass
CROSS, CFLAGS, CXXFLAGS, LDFLAGS and --with-mad-prefix=/usr to avoid
building the bundled libmad.
(install): Use the $(MAKE) variable instead of plain make. Amend rule
for the libqavm move. Delete mandir from the library package. Delete
all .la files.
(binary-arch): Remove cleanB from prerequisites. Remove unnecessary
dh_* commands. Remove hardcoded libc6 in the plugins' shlibs:Depends,
thanks Petr Salinger (Closes: #448736). Don't pass -k to
dh_installchangelogs. Run dh_makeshlibs twice to avoid adding
ldconfig calls in avifile-player's maintainer scripts. Adjust
dh_shlibdeps's arguments.
(checkscripts, source, diff): Annihilate; useless targets.
* debian/builddeb:
* debian/Makefile.am:
* debian/postinst:
* debian/postrm:
* debian/avifile-player.postinst:
* debian/avifile-player.postrm: Delete.
* debian/watch:
* debian/README.source:
* debian/patches/series: New file.
* debian/patches/autotools.patch: New; make the build system work with
current autotools and fix some linking issues (Closes: #553940).
* debian/patches/ffmpeg.patch: New; various fixes to build and link with
Debian's ffmpeg (Closes: #227408, #526536, #538750).
* debian/patches/libqavm-private.patch: New; install libqavm in
pkglibdir as it is a private library.
* debian/patches/avifile-config.patch: New; don't exit with error code
upon success, thanks James Westby and Lionel Le Folgoc (Closes:
#489012).
* debian/avifile-player.menu (section):
* debian/avifile-utils.menu (section): Change to `Applications/Video'.
* debian/avifile-player.dirs: Amend for pkglibdir.
* debian/libavifile-0.7-dev.dirs: Remove usr/share/lintian/overrides.
* debian/libavifile-0.7c2.lintian: Remove non-existent libraries.
* debian/avifile-utils.lintian: Remove unused overrides, amend
binary-or-shlib-defines-rpath for the 2 programs that link against
libqavm.
* debian/copyright: Add the GPL blurb and exclude ffmpeg copyrights as
the bundled copy has been removed (Closes: #290069).
* debian/README.debian: Correct the repositories for the Woe32 codecs,
thanks Lionel Le Folgoc (Closes: #435169).
-- Yavor Doganov <yavor@gnu.org> Tue, 03 Nov 2009 10:45:50 +0200
avifile (1:0.7.47.20070718-1.2) unstable; urgency=low
* Non-maintainer upload.
* Added -s option to dh_gencontrol, dh_md5sums and dh_builddep to avoid
trying to build avifile-win32-plugin on amd64. Closes: #438106.
-- Lucas Nussbaum <lucas@lucas-nussbaum.net> Sat, 29 Sep 2007 17:37:27 +0200
avifile (1:0.7.47.20070718-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Medium urgency for fixing RC bug.
* Add a liba52-dev to Build-Depends. (Closes: #434202)
-- Mohammed Adnène Trojette <adn+deb@diwi.org> Sat, 04 Aug 2007 20:36:46 +0200
avifile (1:0.7.47.20070718-1) unstable; urgency=medium
* compilable with latest compilers (Closes: 395386, 423742, 356968)
* compiles with the libraries available on system (Closes: 349463)
* I'm upstream :) - patch applied (Closes: 409050)
* removing -rpath from avifile-config --libs output (Closes: 347536)
* closing NMU bug (already fixed in previous version) (Closes: 202992)
* fixed compilation bug for LIBXXF86DGA (Closes: 356969)
* dependency on automake fixed (Closes: 376333)
* fixed man page spelling (Closes: 408368)
* another spelling fix (Closes: 362744)
-- Zdenek Kabelac <kabi@debian.org> Wed, 18 Jul 2007 10:49:49 +0200
avifile (1:0.7.44.20051021-2.2) unstable; urgency=low
* NMU.
* debian/control: Build-depend on only automake1.9. (Closes: #376333)
-- Eric Dorland <eric@debian.org> Sat, 19 Aug 2006 01:21:19 -0400
avifile (1:0.7.44.20051021-2.1) unstable; urgency=low
* Remove extra qualifications from more C++ files (Closes: #372193).
-- Martin Michlmayr <tbm@cyrius.com> Thu, 08 Jun 2006 21:55:07 +0200
avifile (1:0.7.44.20051021-2) unstable; urgency=low
* NMU as part of the GCC 4.1 transition.
* Update the paths of the man page so the package builds again,
thanks Florent Bayle (Closes: #369094).
* Remove extra qualifications from C++ files (Closes: #356968).
-- Martin Michlmayr <tbm@cyrius.com> Sat, 03 Jun 2006 21:14:01 +0200
avifile (1:0.7.44.20051021-1) unstable; urgency=medium
* thread were already fixed long time ago - just forget to close
this bug (Closes: 223101)
* some thing applies to this error (Closes: 220056) - no undefined
symbols are shown to me...
* Rebuilt for Qt/KDE transition
(Closes: 321550, 324848, 220056, 318233, 320883, 325435)
* C++ ABI transition (Closes: 327932, 330012)
* Fix gcc-4.0 compilation (Closes: 300179)
* Fix some copyright statements (Closes: 324970)
* Add s390 to supported platforms (Closes: 175039)
* Already fixed, but not closed (Closes: 317889, 328558)
-- Zdenek Kabelac <kabi@debian.org> Thu, 21 Oct 2005 10:49:49 +0100
avifile (1:0.7.43.20050224-1) unstable; urgency=low
* updated to latest ffmpeg
* fix packaging (Closes: 252982, 259417, 295486)
* fixed xvid plugin (Closes: 225172)
it's users responsibility to install this libxvidcore4 library
as it is no a part of default debian project.
this is just plugin which utilizies this library.
* Xserver crashes are really Xserver crashes (Closes: 260808)
I affraid you will have to bother the author of your XV driver
directly - forwarding this bug to Xserver maintainer won't help you
try to use Xorg server - should be doing fairly better job...
* fixed the bug with ffmpeg pictures (Closes: 274730)
of course some other bugs might appear elsewhere
* fixed long time ago (Closes: 274591)
there are no defaults and code compiles fine with gcc-4.0
* removed COPYING file - the copyright file already proprer links
for licencies (Closes: 290069)
* only decoding for new API is supported at this moment
(Closes: 225081)
* fixed link to marillat site (Closes: 264322)
* fixed this changlog file so it contains also previous NMU
* package should be compilable by any automake tool found in debian
* partialy fixed info about some packages (Closes: 209432)
but more will come later ;)
-- Zdenek Kabelac <kabi@debian.org> Thu, 24 Feb 2005 10:49:49 +0100
avifile (1:0.7.42.20050215-1) unstable; urgency=low
* fix libmad compilation for X86_64 (Closes: 253504)
* quoted AM_PATH_AVIFILE (Closes: 267807)
* unless I'm proven with buggy compiler output I'm closing this bug report
as it compiles fine with current gcc-4.0 (Closes: 294473, 285677, 264543)
* compiles fine with freetype2 (Closes: 228072)
* removed compilation with qt2 (Closes: 245653)
* name change fixed (Closes: 202627)
-- Zdenek Kabelac <kabi@debian.org> Thu, 15 Feb 2005 13:40:44 +0100
avifile (1:0.7.38.20030710-1.2) unstable; urgency=low
* NMU
* Fix avifile.pc to return the right include path (Closes: 205203)
* Add missin dependencies in the -dev package. libxft-dev libxrender-dev (Closes: 20
* Apply a patch to fix build under amd64 (Closes: 253504)
* Move the pkgconfig file to the -dev package nad add replaces.
-- Christian Marillat <marillat@debian.org> Thu, 4 Nov 2004 16:23:45 +0100
avifile (1:0.7.38.20030710-1.1) unstable; urgency=low
* Non-maintainer upload (old RC bug).
* debian/control:
+ Removed g++ from the build dependencies (build essential).
+ Removed deprecated conditional build dependencies (Closes: 245653).
+ Uncapitalised short descriptions.
+ Mention libavifile in the plugins' short descriptions.
+ Set the debhelper build dependency to (>= 2.0).
* debian/avifile-utils.menu:
+ Quoted strings where appropriate.
* autogen.sh:
+ Specifically call aclocal-1.4 and automake-1.4 because of
incompatibilities with newer versions.
* lib/video/sub_ft.cpp:
+ Fixed compilation with recent FreeType versions (Closes: 228072).
* plugins/libwin32/loader/ldt_keeper.c:
+ Applied patch from Daniel Schepler which fixes another build issue.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Tue, 1 Jun 2004 04:15:30 +0200
avifile (1:0.7.38.20030710-1) unstable; urgency=low
* closing report for xvid as its already part of debian (Closes: 191459)
* it's been most probably fixed with VCR itself - next time this bug
belongs to vcr package - and it's not problem of avifile package
to keep vcr uptodate - moreover it already provides package with same
usability (Closes: 186313)
* modified Description info slightly (Closes: 190710)
* surely I know CVS compiles with gcc-3.3 - I'm the developer :)
(Closes: 196980)
* unless provided with a sample of such problematic movie I can't
see such problem with current version. (Closes: 180327)
* bashism has been removed from Makefiles. (Closes: 186716)
* finaly released new version. (Closes: 189469)
* library renamed to use -0.7 (are you know happy now :)? (Closes: 145860)
* fixed some documentation files (Closes: 191462)
empty manpage template has been deprecated unfortunaly,
missing pages will be written when enough time will be found
-- Zdenek Kabelac <kabi@debian.org> Thu, 10 Jul 2003 13:40:44 +0200
avifile (0.7.36.20030401-1) unstable; urgency=low
* reduced amount of debug messages
* support for timertables in Avicap by Alexander Rawass
* fixed bashism in vidix Makefile.am (Closes: 186716)
-- Zdenek Kabelac <kabi@debian.org> Fri, 01 Apr 2003 13:40:44 +0200
avifile (0.7.33.20030314-1) unstable; urgency=low
* better usage of shared libraries (smaller vidix part)
-- Zdenek Kabelac <kabi@debian.org> Fri, 14 Mar 2003 13:40:44 +0200
avifile (0.7.32.20030219-1) unstable; urgency=low
* again fixed some stupid bugs with ffmpeg decompression
* recompiled with new Qt (Closes: 179723)
* aviplay is compiled with -fPIC - non-PIC part
were not discovered inside current release (Closes: 176994)
* Qt dependencies are somewhat wrong with latest Qt packages
(Closes: 179875, 180506)
* added manpages instead of undocumented (but there is not big
difference)
* accepted c102 modification by Andreas Metzler.
-- Zdenek Kabelac <kabi@debian.org> Wed, 19 Feb 2003 13:40:44 +0200
avifile (0.7.29.20030204-1) unstable; urgency=low
* oops fixed somewhat fatal bug
the lame plugin went in because plugin name change
added configure options so it will not happen again this way
* aviplay is compiled with fPIC - the only problem
is that some parts aren't easily compilable
with PIC - also it makes the code slower (Closes: 169474)
-- Zdenek Kabelac <kabi@debian.org> Tue, 04 Feb 2003 23:40:44 +0200
avifile (0.7.28.20030129-1) unstable; urgency=low
* xvid's been already moved to contrib (Closes: 145024)
* it's playing some mpegs (though so far not very
comfortable) (Closes: 100809)
* linked libavqt with libaviplay (Closes: 176761)
* new version, fixed Replaces (Closes: 178390, 178861, 168801, 165243)
* subtitles are using special option -sub
(updated manpage) (Closes: 178626)
-- Zdenek Kabelac <kabi@debian.org> Thu, 29 Jan 2003 23:40:44 +0200
avifile (0.7.27.20030122-1) unstable; urgency=low
* ok long time has passed from the last update - meanwhile a lot
of code has been made - especially the ffmpeg has a lot of
improvements.
* no user has reported such problem (Closes: 160461)
maybe user has some bad local configuration/options
* ok xvid/win32 plugins are now in contrib (though I still disagree
with this - but when other developer has made somewhat simple NMU
let's leave them there for now (Closes: 143356)
* divx plugin also moved to separate package which goes
into contrib and requires separate instalation of divx4linux.
(Closes: 167406)
* fixed some compilation options (Closes: 132994)
for building use debian/builddeb - configure will detect
configure options best for given platform.
* hopefully icon location is now fixed (Closes: 167742)
(it looks like some bug for an old version of avifile)
* compiled with incorect flags by NMU (Closes: 169134, 169701)
-- Zdenek Kabelac <kabi@debian.org> Thu, 22 Jan 2003 14:40:44 +0200
avifile (0.7.15.20020816-1.1) unstable; urgency=low
* NMU
* move avifile-win32-plugin and avifile-xvid-plugin into contrib
(closes: 145024).
-- Robert Bihlmeyer <robbe@debian.org> Sun, 27 Oct 2002 21:40:44 +0100
avifile (0.7.15.20020816-1) unstable; urgency=low
* fixing some memory leaks
* better MP3 VBR support
-- Zdenek Kabelac <kabi@debian.org> Fri, 16 Aug 2002 14:00:14 +0100
avifile (0.7.14.20020802-1) unstable; urgency=low
* heavily updated networking support for asf streaming servers
* this cvs snapshot already contains fix for (Closes: 154745)
-- Zdenek Kabelac <kabi@debian.org> Fri, 2 Aug 2002 14:00:14 +0100
avifile (0.7.12.20020719-1) unstable; urgency=low
* many many many (really) fixes again - completely redesigned some internal
library parts (and yet it's just half of the work)
* fixed support for mjpeg/vp31
* slightly better avirecompress
* minimalized usage of exception (Closes: 119633, 120828)
it's actually not a fix for gcc bug but it works at least
* fixed problem with segmentation (Closes: 149242)
* liblcms is not avifile dependency (Closes: 153019)
hopefully should be fixed with this recompilation
-- Zdenek Kabelac <kabi@debian.org> Wed, 19 Jul 2002 22:00:14 +0100
avifile (0.7.7.20020524-1) unstable; urgency=low
* fixed build problem (Closes: 147243)
-- Zdenek Kabelac <kabi@debian.org> Fri, 24 May 2002 15:00:14 +0100
avifile (0.7.6.20020508-1) unstable; urgency=low
* removed config.h from avifile include directory (Closes: 146026)
-- Zdenek Kabelac <kabi@debian.org> Wed, 08 May 2002 15:00:14 +0100
avifile (0.7.4.20020426-1) unstable; urgency=low
* removed dependency for xvid plugin (Closes: 143847)
but user still has to install it himself - he might
use Christians site for apt-getting package - see Readme
* fixed empty source packages (Closes: 144425)
currious how just that happened - but at least
the netraffic was saved as package had some serious bugs inside
* removed any i386 flag from configure (Closes: 1322994)
however for packages compilation for given platform user has
to specify his CFLAGS/CXXFLAGS - otherwice configure will
discover something by itself!
* in this release several stupid bugs were fixed - in case
there are problems with sound - remove ~/.avirc
-- Zdenek Kabelac <kabi@debian.org> Fri, 26 Apr 2002 15:00:14 +0100
avifile (0.7.3.20020419-1) unstable; urgency=low
* fixed dependencies (Closes: 141319)
* DivX plugins are back (Closes: 142968)
- though now it's a bit complicated they are build with divx4 version
not divx4 (ffmpeg is better in decoding divx5 movies for now anyway)
* rounding applied (Closes: 126231)
but the word 'processor' is left in - it looks like this
changes with kernel - for Intel there is no such word
* CVS has some bugfixes
* debian/rules now works on Debian Potato - though some plugin packages
will have empty content - but it's surely better then nothing.
Also it should be better for cross compilation on non i386 platforms
* spelling fixes (Closes: 143265) I would be more then happy
if some native English speaker would be checking my texts.
* I'm agains any split for contrib / main part of Avifile package
(Closes: 143356) - Avifile win32 plugin is able to run freely available
GPL win32 dll codecs - e.g. XviD, Huffyuv and soon ffmpeg as well.
It's only the question how to package such plugins - but they
are GPL & source available - but most probably uncompilable on Linux
(Win32 compilers are probably needed)
I do not want to sound rude here, but avifile development takes me 99%
of free time and I do not have more to split project into two parts,
maintain them separately just because someone sees only the usage
of M$ Wm8 codecs - ok quite long entry...
-- Zdenek Kabelac <kabi@debian.org> Fri, 19 Apr 2002 15:00:14 +0100
avifile (0.7.2.20020412-1) unstable; urgency=low
* using debhelper compatibility mode 3
* Fixed icon location in menu files (Closes: 129598)
* Fixed >81 chars description length for libavifile (Closes: 130962)
* Fixed libmmxnow.so & libavqt.so problem (Closes: 124096)
mmxnow is for now still private experimet
libavqt is private library used by avifile programs as it's
API is not yet finished only the library is distributed with player
* Extended win32 plugins description - codecs have to be downloaded
separately as they can't be regular part of Debian. (Closes: 138487)
* more verbose message when the file can't be open. (Closes: 136075)
* fixing build problems for PowerPC (Closes: 136580, 128132)
(but likely new might appear with new version
* basicaly update to the current CVS version - which means increase
of version to 0.7 - library should allow coexistance of older
aviplay library in the system - expecting some minor remaing
compatibility problems - hard to catch them all at once)
-- Zdenek Kabelac <kabi@debian.org> Fri, 12 Apr 2002 14:00:14 +0100
avifile (0.6.0.20011220-1.1) unstable; urgency=low
* Non-Maintainer Upload
* debian/rules: call make without -j option
-- David Schleef <ds@schleef.org> Fri, 1 Mar 2002 20:36:13 -0800
avifile (0.6.0.20011220-1) unstable; urgency=low
* fixed spelling error (dll->DLL) (Closes: 124433)
* builds on PPC also
* improved avicap a bit
-- Zdenek Kabelac <kabi@debian.org> Mon, 20 Nov 2001 14:00:14 +0100
avifile (0.6.0.20011207-1) unstable; urgency=low
* I do not see upside down images - so this bug is
currently unreproducible (Closes: 120011)
(Though there might be some problems with some codecs - but
this are very special and rare to be seen by averidge user -
basicaly problematic codecs sits on my hardrive.
* Well not it builds on 64bit alpha (Closes: 122205)
Yet I have no idea how it works :)
Again - if anybody want to help with making it multiplatform...
* Missing dependencies were already fixed (Closes: 118660)
* slightly modified control file to ensure that some qt-mt library
will be installed
* this is just a reminder here -
one library package has been splited into more parts.
-- Zdenek Kabelac <kabi@debian.org> Wed, 7 Nov 2001 14:00:14 +0100
avifile (0.6.0.20011130-1) unstable; urgency=low
* closing bugs (Closes: 116667, 120429, 121561)
* fixed already for some time (Closes: 119052)
* unreproducible (Closes: 113287)
* hopefully fixed (Closes: 114858)
* staying with autoconf (Closes: 119690)
* this is problem of sdl-dev (Closes: 120949)
* updating mime-types (Closes: 117432)
* fixed some spelling problem (Closes: 120708)
* added Video hints (Closes: 121028)
* added some Conflicts: for new plugins
-- Zdenek Kabelac <kabi@debian.org> Fri, 30 Nov 2001 14:00:14 +0100
avifile (0.6.0.20011123-1) unstable; urgency=low
* some updates for avicap tool
-- Zdenek Kabelac <kabi@debian.org> Fri, 23 Nov 2001 12:34:00 +0100
avifile (0.6.0.20011116-1) unstable; urgency=low
* updated build dependencies - added autoconf & automake
* fixed bugs introduced in previous release
-- Zdenek Kabelac <kabi@debian.org> Fri, 16 Nov 2001 12:34:00 +0100
avifile (0.6.0.20011109-1) unstable; urgency=low
* have I mentied I fixed another big set of bugs :)
* disabled AC3 audio decoding for mainstream Debian release
* created few more packages - and more will come...
right now libmad - depend on libmad package - very good MP3 decoder
libvorbis - for those who want to play vorbis files - need Vorbis/Ogg
* added mime type (Closes: 117432)
* corrected dependency for libavifile (Closes: 118660, 116667)
* these bugs are currently not reproducable (Closes: 113287, 114858)
* this package is released with these known bugs:
Streaming is broken
-- Zdenek Kabelac <kabi@debian.org> Fri, 9 Nov 2001 12:34:00 +0100
avifile (0.6.0.20011018-1) unstable; urgency=low
* debian/control - adding gettext dependency for AM_LC_MESSAGES
(it's not used right now, but probably will be)
* some building fixes for non-debian systems
* eliminating usage of STL - using internal avm::string & avm::vector
* recompiled with new SDL
-- Zdenek Kabelac <kabi@debian.org> Thu, 18 Oct 2001 22:34:00 +0200
avifile (0.6.0.20011002-1) unstable; urgency=low
* various coredumps in gui should be mostly fixed (Closes: 114167)
* divx.dll seems to work - though it's not yet perfect
* x2divx should work again (Closes: 112079)
thought we have introduces minor change in infotypes which
requires minor updates on tools
* fixed few minor problems with vorbis plugin
* again closing bug closed in REJECTed release (Closes: 109947, 110046)
* I'm plaining to make it architecture-any (Closes: 112803)
(But I do need help - I'm only i386 programmer - so please send me
bugreports preferably together with fixes
* changed audio timing (but it's still experimental - so it's disabled
for debian release - CVS has this enable - but with problems with
scrambled asf streams)
-- Zdenek Kabelac <kabi@debian.org> Tue, 02 Oct 2001 22:34:00 +0200
avifile (0.6.0.20010907-1) unstable; urgency=low
* switch to arch any - let's just get more bugreports...
* vorbis plugin
* someone doesn't like my idea of adding empty packages ahead :(
so for now still without libmmxnow (one of the last such packages)
* dependency for libqt removed from libavifile (Closes: 110362)
-- Zdenek Kabelac <kabi@debian.org> Fri, 07 Sep 2001 12:34:00 +0200
avifile (0.6.0.20010831-1) unstable; urgency=low
* compiled again with -march=i586 - we do not need any extra optimalizations
(Closes: 109947)
* new video scheduling code
* fixed couple things which just get broken during some last updates
* extra Audio stream support
* added build depend to libqt-mt (Closes: 110046)
-- Zdenek Kabelac <kabi@debian.org> Fri, 31 Aug 2001 12:34:00 +0200
avifile (0.6.0.20010824-1) unstable; urgency=low
* lot of new features - especially better support for X11 rendering
with ffmpeg
* ac3 pass-through for SBLive
-- Zdenek Kabelac <kabi@debian.org> Fri, 24 Aug 2001 12:34:00 +0200
avifile (0.6.0.20010817-1) unstable; urgency=low
* stupid fix - actually added those renamed avirecompress, avicap
and avibench tools
* fixed some menu and building scripts
* just recompilation was needed - already fixed in previous release
(Closes: 106953,107096)
* fixed avifile-config (Closes: 108748)
-- Zdenek Kabelac <kabi@debian.org> Fri, 17 Aug 2001 12:34:00 +0200
avifile (0.6.0.20010810-1) unstable; urgency=low
* improved versioning (Closes: 106647)
* no svgalib depedency for now (Closes: 106526)
* building with Qt2 - should be much more stable for now
and we should stay binary compatible for more than one week :)
* support AC3, ALaw, uLaw audio streams supported
* renaming some applications -> avirecompress, avicap, avibench
-- Zdenek Kabelac <kabi@debian.org> Fri, 10 Aug 2001 12:34:00 +0200
avifile (0.6.0.20010803-1) unstable; urgency=low
* rebuild with latest Qt (Closed: 106953, 107096)
* oh my god what they have made to autoconf - anyway you will be
probably unable to recompile this package with current autoconf
package - so enjoy this binary release
(if you find libtool.m4 from previous autoconf package - it might
be really useful)
anyway avifile work with autoconf2.50 without problems
complain elsewhere (Closes: 107348)
* better versioning for library to complain Debian policy
(using 0.6 - not just 0 because 0.7 will be probably incompatible with 0.6)
(Closes: 106645)
* not my problem (Closes: 106998)
* I've no idea what is the reason for the fault in testing -
I'm closing it as it's obviously bug elsewhere (Closes: 107350)
I would suspect author is using some broken automake/autoconf
(as is present in current unstable)
-- Zdenek Kabelac <kabi@debian.org> Fri, 3 Aug 2001 12:34:00 +0200
avifile (0.6.0.20010719-1) unstable; urgency=low
* /usr/local/lib/win32 supported
* libmp3lamebin is able to encode mp3 if you have libmp3lame instaled
on your system (/usr/lib, /usr/local/lib or anywhere in LD_LIBRARY_PATH)
* cleanup in makefiles and autoconfigure scripts
support for autoconf2.50 (Closes: 104262)
* previous build was made with old /var/lib/dpkg/info (Closes: 104273)
* using inttypes.h (Closes: 102659)
* lot of fixes in qtrecompresor
-- Zdenek Kabelac <kabi@debian.org> Mon, 19 Jul 2001 12:34:00 +0200
avifile (0.6.0.20010709-1) unstable; urgency=low
* add ffmpeg - playing OpenDiv through YV12 hw acceleration
* I believe recompilation fixes (Closes: 103886, 104097)
* libarts-dev is actually not a depedency problem of avifile
but rather libsdl1.2-dev itself as this is the library which
actually needs libarts (Closes: 104027, 104028, 103072)
but its not a problem add this dependency for some time
* fixed problem with WIN32_PATH (Closes: 102934)
* rebuild with latest SDL package (Closes: 102100)
-- Zdenek Kabelac <kabi@debian.org> Mon, 07 Jul 2001 17:34:00 +0200
avifile (0.6.0.20010629-1) unstable; urgency=low
* new scheduler
* should be even more smooth - using various priorities for various threads
* added few more tools - avicat, avitype, avimake - for now without
manpages
* has been reject because of dpkg bug
-- Zdenek Kabelac <kabi@debian.org> Fri, 29 Jun 2001 17:34:00 +0200
avifile (0.6.0.20010622-1) unstable; urgency=low
* fixed some upgrade info Joye Hess (Closes: 101061)
* improtant fixes to make playing almost enjoyable even
on very slow P200MMX machine (this is really slow machine)
* direct rendering is supported also for x11 rendering
(in non buffered mode)
* very fast file seeking
* better support for streamed .asf files over the network
* libGLUT was not the problem in avifile (Closes: 100763)
-- Zdenek Kabelac <kabi@debian.org> Thu, 22 Jun 2001 12:34:00 +0200
avifile (0.6.0.20010614-1) unstable; urgency=low
* (Closes: 97198) - currently the mp3 encoder is not builded
(which effectivly ruins the usage of qtrecompress - well
I've not inveted stupid american law..)
* as usually 100% better playing...
* supporting more formats (uncompressed YUY2, YV12)
* kv4lsetup is now suid (Closes: 99057)
* using Qt3 libraries - for they they are not fully integrated
so some unmet dependecies are overridden
assume this will require recompilation when everything will be
cleaned
-- Zdenek Kabelac <kabi@debian.org> Thu, 14 Jun 2001 12:34:00 +0200
avifile (0.6.0.20010518-1) unstable; urgency=low
* (Closes: 97853) - integer overflow
* new video image scheduling - much more precise
* cripled qtrecompress - for now we are not shipping lame encoder - as
some people 'believe' this is illegal - but I'm expecting those people
will send me some good reason for their believing....
-- Zdenek Kabelac <kabi@debian.org> Fri, 18 May 2001 12:34:00 +0100
avifile (0.6.0.20010503-1) unstable; urgency=low
* fixed many many bugs
* aviplayer is also faster now
* added some 'or' packages to building dependencies so
Woody users could use the same package
(Closes: 95972)
* added some info about DLL codecs to postinst (Closes: 94560)
* TODO is original file from CVS archive (Closes: 94555)
* (Closes: 95518) this release should probably fix this problem
if not please prepare problematic short cuted version of this file.
* (Closes: 95114) this package contains soon to be stable version
and I don't see the point in packaging old broken software
-- Zdenek Kabelac <kabi@debian.org> Thu, 03 May 2001 12:34:00 +0200
avifile (0.6.0.20010426-1) unstable; urgency=low
* fixed few more bugreports
* this should be soon stable release
-- Zdenek Kabelac <kabi@debian.org> Thu, 26 Apr 2001 12:34:00 +0100
avifile (0.6.0.20010419-1) unstable; urgency=low
* CVS date: 2001/04/19 (this message is boring so its the last one)
* (Closes: 94196) - player moved to section Viewers from Tools
Janos Holanyi <csani@lme.linux.hu>
* audio & seek are now quite good
-- Zdenek Kabelac <kabi@debian.org> Thu, 19 Apr 2001 12:34:00 +0100
avifile (0.6.0.20010412-1) unstable; urgency=low
* CVS date: 2001/04/12
* (Closes: 92349) - I believe this was a problem with wierd GCC version
used for build and should no longer be present
* few more files are now cleaned in debian/rules
* few sample programs should be at least able to run
(qtrecompress, qtvidcap)
-- Zdenek Kabelac <kabi@debian.org> Thu, 12 Apr 2001 12:34:00 +0100
avifile (0.6.0.20010405-1) unstable; urgency=low
* CVS date: 2001/04/05
* (Closes: 92437) thanks to Ilya Konstantinov for pointing out this problem
* audio should be in sync with video most of this time now
(yet some problematic .avis' still exist)
if you have such please report...
-- Zdenek Kabelac <kabi@debian.org> Thu, 05 Apr 2001 12:34:00 +0100
avifile (0.6.0.20010329-1) unstable; urgency=low
* CVS date: 2001/03/29
-- Zdenek Kabelac <kabi@debian.org> Thu, 29 Mar 2001 12:34:00 +0100
avifile (0.6.0.20010322-1) unstable; urgency=low
* CVS date: 2001/03/22
* see ChangeLog file
-- Zdenek Kabelac <kabi@debian.org> Thu, 22 Mar 2001 12:34:00 +0100
avifile (0.6.0.20010315-1) unstable; urgency=low
* CVS date: 2001/03/15
* changed naming convention for package
* updated man page for avifile
* cleans in debian/rules
* cleaned manpages mess a bit (Closes: 86757)
* forgotton .so lib files are now back in place for -dev package
static libraries aren't really need and they woudln't
work anyway (Closes: 88808)
* there will be zero lenght diffs comming now with this package for
a while as the maintainer (kabi@debian.org) has got the write access
to CVS so all the changes should be in CVS tree too.
* fixed build dependency libgl-dev - removed not needed (Closes: 86966)
* limited to i386 architecture only for this moment (Closes: 88236)
* fixed many many many bugs & problems I've discovered
now its almost equal to 0.53 version (on SMP computer it's faster)
the video playback is smother, audio is still a bit off sometimes
* fixed build dependency for libsdl
* fixed build dependency for pnmtopng - removed
-- Zdenek Kabelac <kabi@debian.org> Thu, 15 Mar 2001 12:33:53 +0100
avifile (0.6.0-2) unstable; urgency=low
* changes to debian/rules (added -dev package and various other tweaks
to reflect changes in Makefiles
* configure is using --enable-release -enable-quite --prefix /usr
* renamed package name of libaviplay to libavifile to stay consistent
* added few more lines to aviplay's man page
* using CVS source from 2001/02/12
-- Zdenek Kabelac <kabi@debian.org> Sat, 10 Feb 2001 00:41:59 +0100
avifile (0.6.0-1) unstable; urgency=low
* using latest CVS source for version 0.6 (2001/01/30) (with 1 fix)
* added some tricks to rules for reasonable good installation
-- Zdenek Kabelac <kabi@debian.org> Sat, 10 Feb 2001 00:41:54 +0100
avifile (0.53-1) unstable; urgency=low
* using latest source 0.53.1 (however original directory is 0.53)
(CVS tree is not the latest source at this moment)
-- Zdenek Kabelac <kabi@debian.org> Wed, 4 Jan 2001 14:53:28 +0100
avifile (20001030-1) unstable; urgency=low
* separated libraries to separate package libaviplay
* updated CVS
-- Zdenek Kabelac <kabi@debian.org> Wed, 3 Jan 2001 21:53:12 +0100
avifile (20001025-1) unstable; urgency=low
* initial release
-- Zdenek Kabelac <kabi@debian.org> Wed, 25 Oct 2000 19:52:19 +0200
|