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
|
clutter-1.0 (1.26.0+dfsg-3) unstable; urgency=medium
* Remove broken /usr/share/doc/libclutter-1.0-doc/html-cally symlink.
(Closes: #857519)
-- Michael Biebl <biebl@debian.org> Sun, 12 Mar 2017 09:23:59 +0100
clutter-1.0 (1.26.0+dfsg-2) unstable; urgency=medium
* d/p/Don-t-create-the-Cogl-GLib-source-multiple-times.patch:
- Added. Avoid clreating multiple glib sources (gbo#768243, upstream git)
* d/p/Rely-on-gdk-to-dispatch-wayland-events.patch
- Added. Don't dispatch wayland events from cogl as gdk will already do
that. Fixes clutter-gst hanging on wayland (bgo#774079)
* d/p/gdk-Ensure-surface-buffer-scale-is-set.patch
- Added. Ensure buffer scale is always set on wayland surfaces. Fixes
clutter applications not being properly scaled on HiDPI (bgo#769190)
-- Sjoerd Simons <sjoerd@debian.org> Fri, 18 Nov 2016 22:23:04 +0100
clutter-1.0 (1.26.0+dfsg-1) unstable; urgency=medium
* Team upload.
[ Jeremy Bicha ]
* debian/copyright: Use https for copyright headers
* debian/watch: Use https and new "special strings"
* Remove cookbook as its licensed under CC-BY-NC-SA 2.5 and not DFSG-free
- Use copyright format 1.0 with Files-Excluded field
- Update debian/watch to repack with cookbook/ removed
- Add 01_do-not-build-cookbook.patch to deal with cookbook/ removal
- Switch from --enable-docs to --disable-docs configure flag
- override get-orig-source target to fetch repacked tarball
(Closes: #821095)
[ Nicolas Dechesne ]
* Drop obsolete [!armel !armhf] from libgl1-mesa-dev dependency
(Closes: #745054)
[ Andreas Henriksson ]
* Bump Standards-Version to 3.9.8
* Fix get-orig-source override to be both policy compliant and
pkg-gnome workflow compliant by downloading to DEB_TARBALL_DOWNLOAD_DIR
(cf. #527626)
-- Andreas Henriksson <andreas@fatal.se> Sun, 09 Oct 2016 16:56:06 +0200
clutter-1.0 (1.26.0-2) unstable; urgency=medium
[ Pino Toscano ]
* Mark all evdev symbols as arch=linux-any (Closes: #819294)
-- Andreas Henriksson <andreas@fatal.se> Sat, 26 Mar 2016 13:44:29 +0100
clutter-1.0 (1.26.0-1) unstable; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Fri, 25 Mar 2016 17:29:13 +0100
clutter-1.0 (1.25.6-1) experimental; urgency=medium
* Bump gtk+ build-dependency to >= 3.16 (Closes: #808991)
* New upstream release.
* Update debian/libclutter-1.0-0.symbols with several additions.
-- Andreas Henriksson <andreas@fatal.se> Wed, 16 Mar 2016 20:26:56 +0100
clutter-1.0 (1.24.2-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 13 Oct 2015 00:20:16 +0200
clutter-1.0 (1.24.0-1) unstable; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Fri, 18 Sep 2015 09:53:51 +0200
clutter-1.0 (1.23.6-1) experimental; urgency=medium
* New upstream development release.
* Update build-dependencies according to configure.ac changes:
- bump libcogl-dev to >= 1.21.2
- bump libglib2.0-dev to >= 2.44.0
- bump libinput-dev to >= 0.19.0
* debian/libclutter-1.0-doc.install:
- drop usr/share/gtk-doc/html/cally, cally api ref now part of clutters.
* Update debian/libclutter-1.0-0.symbols with several additions and
missing clutter_x11_xinput_event_types_get_type which should hopefully
be ok. No users found (except vala wrapping) on codesearch.
-- Andreas Henriksson <andreas@fatal.se> Sat, 29 Aug 2015 10:50:53 +0200
clutter-1.0 (1.22.4-1) unstable; urgency=medium
* New upstream release.
* debian/libclutter-1.0-0.symbols: Add new clutter_gdk_get_visual symbol.
* Bump debhelper compatibility level to 9.
* Install typelib files into multiarch paths and mark gir1.2-clutter-1.0 as
Multi-Arch: same.
-- Michael Biebl <biebl@debian.org> Tue, 30 Jun 2015 23:31:00 +0200
clutter-1.0 (1.22.2-3) unstable; urgency=medium
* Brown paper bag release.
* Really upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 11 Jun 2015 20:07:22 +0200
clutter-1.0 (1.22.2-2) unstable; urgency=medium
* debian/control.in:
+ Break cinnamon-session << 2.6.2. Closes: #787088.
+ Standards-Version is 3.9.6, no changes needed.
+ Drop some obsolete Breaks/Conflicts/Replaces.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 05 Jun 2015 15:59:07 +0200
clutter-1.0 (1.22.2-1) unstable; urgency=medium
* New upstream release.
* Upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 24 May 2015 09:26:15 +0200
clutter-1.0 (1.22.0-1) experimental; urgency=medium
* New upstream release
* d/control: Bump build-depends
-- Sjoerd Simons <sjoerd@debian.org> Mon, 04 May 2015 15:15:53 +0200
clutter-1.0 (1.20.0-1) unstable; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Wed, 24 Sep 2014 16:28:22 +0200
clutter-1.0 (1.19.10-1) unstable; urgency=medium
* New upstream release candidate.
* debian/libclutter-1.0-0.symbols: uncomment misspelled symbol that
went missing but are now back!
-- Andreas Henriksson <andreas@fatal.se> Fri, 19 Sep 2014 21:07:44 +0200
clutter-1.0 (1.19.8-1) experimental; urgency=medium
[ Andreas Henriksson ]
* New upstream development release.
* Bump libinput-dev build-dependency to >= 0.4.0
* Update debian/libclutter-1.0-0.symbols
- many additions, 2 missing symbols.
* libclutter-1.0-0: add breaks against mutter version older then 3.14
- "the symbol was marked as experimental, and also used only by mutter".
* libclutter-1.0-dev: bump libinput-dev dependency to >= 0.4.0
[ Rico Tzschichholz ]
* libclutter-1.0-0: Add breaks against libmutter0d, libmutter0e (<< 3.13.4)
to match reality
-- Andreas Henriksson <andreas@fatal.se> Fri, 05 Sep 2014 14:27:32 -0700
clutter-1.0 (1.18.4-1) unstable; urgency=medium
* New upstream release 1.18.4
- Improve touch events handling on X11
- Fix opacity issues with canvas contents
-- Iain Lane <iain@orangesquash.org.uk> Thu, 14 Aug 2014 18:03:48 +0100
clutter-1.0 (1.18.2-2) unstable; urgency=medium
* Re-enable libinput support.
-- Andreas Henriksson <andreas@fatal.se> Mon, 09 Jun 2014 19:33:46 +0200
clutter-1.0 (1.18.2-1) unstable; urgency=medium
* New upstrema release
* d/p/0001-wayland-Add-missing-CLUTTER_AVAILABLE-annotations.patch:
+ Dropped, merged upstream
-- Sjoerd Simons <sjoerd@debian.org> Sat, 26 Apr 2014 16:31:33 +0200
clutter-1.0 (1.18.0-2) unstable; urgency=medium
* Brown paper bug release.
* debian/control.in:
+ Drop libclutter-1.0-dev depends on libinput-dev.
* debian/libclutter-1.0-0.symbols:
+ Mark clutter_egl_set_kms_fd as linux-any.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 26 Mar 2014 18:18:11 +0100
clutter-1.0 (1.18.0-1) unstable; urgency=medium
* New upstream release.
* debian/control.in:
+ Bump gtk-doc-tools build dependency.
+ Also break libcogl15.
+ Standards-Version is 3.9.5, no changes needed.
* debian/libclutter-1.0-0.symbols:
+ Drop a few symbols that were accidentally exported in the DSO because
they had a clutter_ prefix but were not in the public headers.
+ Add one new symbol.
+ Drop unnecessary debian revisions from some symbols.
* debian/control.in,
debian/rules,
debian/libclutter-1.0-0.symbols:
+ Temporarily disable evdev input support. It was only enabled in 1.17.6-1
in experimental and there is nothing using it yet, and I would like to
wait a bit before uploading libinput to unstable as the ABI isn't stable
yet.
* d/p/0001-wayland-Add-missing-CLUTTER_AVAILABLE-annotations.patch:
+ Add missing annotations so that a few symbols are exported in the DSO.
* Upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 26 Mar 2014 11:51:28 +0100
clutter-1.0 (1.17.6-1) experimental; urgency=low
[ Sjoerd Simons ]
* debian/rules, debian/libclutter-1.0-0.symbols: Enable wayland backend and
wayland compositor support on linux
* debian/rules, debian/libclutter-1.0-0.symbols: Enable native EGL backend
* debian/rules, debian/libclutter-1.0-0.symbols: Enable evdev input backend
support on linux
[ Andreas Henriksson ]
* New upstream release.
* Update build-dependencies according to configure.ac changes:
- drop libxfixes-dev
- bump cogl 1.17.3, add libcogl-path-dev
- bump cairo 1.12.0
- drop libevdev, bump libudev >= 136, add libinput >= 0.1.0
* Update libclutter-1.0-0.symbols
* Drop debian/patches/fix_test_data_path.patch, obsolete.
[ Emilio Pozuelo Monfort ]
* debian/control.in:
+ Add missing build-depend for the evdev/libinput based input backend:
libgudev-1.0-dev and libxkbcommon-dev.
* debian/libclutter-1.0-0.symbols:
+ Re-add evdev symbols.
* debian/control.in:
+ Let libclutter-1.0-dev depend on libcogl-path-dev.
+ Also depend on libudev-dev, libxkbcommon-dev, libwayland-dev
and libinput-dev, as needed by clutter-1.0.pc.
-- Andreas Henriksson <andreas@fatal.se> Sun, 16 Mar 2014 21:23:06 +0100
clutter-1.0 (1.16.0-1) experimental; urgency=low
* New upstream release.
* Bump build-dependencies according to configure.ac
- libcogl-dev (>= 1.15.1)
- libglib2.0-dev (>= 2.37.3)
* Unfuzz fix_test_data_path.patch
* Drop patches from upstream now included in release:
- git_limit_offscreen_fbo_size.patch
- git_fbo_size_check.patch
- git_cally_weak_pointer.patch
* Add --enable-installed-tests to configure arguments
* Install new tests in clutter-1.0-tests package
* Update libclutter-1.0-0.symbols with newly added symbols
* Make libclutter-1.0-0 also break libcogl12
* Install cookbook examples in libclutter-1.0-doc
-- Andreas Henriksson <andreas@fatal.se> Sat, 12 Oct 2013 20:34:49 +0200
clutter-1.0 (1.14.4-2) unstable; urgency=low
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Fri, 16 Aug 2013 18:50:08 +0200
clutter-1.0 (1.14.4-1) experimental; urgency=low
* New upstream release
+ debian/libclutter-1.0-0.symbols:
- Updated.
* debian/patches/git_limit_offscreen_fbo_size.patch:
- offscreen-effect: limit offscreen fbo size to the stage's size
* debian/patches/git_fbo_size_check.patch:
- conform: add offscreen effects fbo size check
* debian/patches/git_cally_weak_pointer.patch:
- cally: Use a weak pointer to hold the key focus in CallyStage
-- Rico Tzschichholz <ricotz@ubuntu.com> Wed, 22 May 2013 11:59:53 +0200
clutter-1.0 (1.14.0-1) experimental; urgency=low
[ Emilio Pozuelo Monfort ]
* New upstream release.
+ debian/control.in:
- Bump build dependencies.
[ Sjoerd Simons ]
* debian/control.in: Add Breaks on libcogl9 and libcogl11, all rdepends of
libcogl{9,11} also use clutter. But loading two different libcogl versions
into one applications causes little explosions.. Hence adding a breaks.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 26 Mar 2013 01:28:45 +0100
clutter-1.0 (1.13.10-1) experimental; urgency=low
* New upstream release.
+ debian/libclutter-1.0-0.symbols:
- Added a new symbol.
* debian/libclutter-1.0-doc.install,
debian/rules:
+ Build and ship the Clutter cookbook.
* debian/control.in:
+ Build with gobject-introspection from experimental to pick the
new ABI.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 20 Mar 2013 12:41:57 +0100
clutter-1.0 (1.13.8-1) experimental; urgency=low
[ Jeremy Bicha ]
* New upstream release.
* debian/libclutter-1.0-0.symbols: Added new symbols
* Build-depend on cogl 1.13.4 and have libclutter-1.0 break
libcogl11 to ensure complete soname transition
[ Sjoerd Simons ]
* Don't break libcogl11 for now as it makes having gnome 3 in experimental
almost impossible
[ Emilio Pozuelo Monfort ]
* New upstream release.
+ debian/libclutter-1.0-0.symbols:
- Updated.
-- Sjoerd Simons <sjoerd@debian.org> Fri, 15 Mar 2013 23:20:40 +0100
clutter-1.0 (1.12.0-1) experimental; urgency=low
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Fri, 05 Oct 2012 20:59:17 +0200
clutter-1.0 (1.11.10-2) experimental; urgency=low
* debian/control.in:
- make also libclutter-1.0-dev also depend on the new required versions
of pango and atk dev packages
-- Gustavo Noronha Silva <kov@debian.org> Wed, 15 Aug 2012 16:19:23 -0300
clutter-1.0 (1.11.10-1) experimental; urgency=low
* New upstream release
* Sync from ubuntu:
+ debian/control.in: bump libpango1.0-dev and libatk1.0-dev build-depends
+ 01_a11y-atk_add_key_event_listener-listener_id-return-value.patch,
02_a11y-Remove-key-event-listener-hash-table-if-no-longer-required.patch:
Removed, fixed upstream
+ fix_test_data_path.patch: Refreshed
-- Sjoerd Simons <sjoerd@debian.org> Thu, 09 Aug 2012 16:06:34 +0200
clutter-1.0 (1.10.8-2) unstable; urgency=low
[ Josselin Mouette ]
* Add missing epoch on libxcomposite-dev build-dependency.
[ Jordi Mallach ]
* 01_a11y-atk_add_key_event_listener-listener_id-return-value.patch,
02_a11y-Remove-key-event-listener-hash-table-if-no-longer-required.patch:
add patches from git to fix duplicate accessible key events.
-- Laurent Bigonville <bigon@debian.org> Sat, 04 Aug 2012 22:36:28 +0200
clutter-1.0 (1.10.8-1) unstable; urgency=low
* New upstream release.
* Refresh debian/patches/fix_test_data_path.patch.
-- Michael Biebl <biebl@debian.org> Thu, 28 Jun 2012 00:09:06 +0200
clutter-1.0 (1.10.6-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sat, 02 Jun 2012 14:13:10 +0200
clutter-1.0 (1.10.4-3) unstable; urgency=low
* Bump all symbol versions to 1.10.0. The library was renamed from
libclutter-glx-1.0.so.0 to libclutter-1.0.so.0 and while a compat symlink
is provided for backwards compatibility, we need a tight dependency for
packages which have been recompiled against the new clutter version since
they will link against libclutter-1.0.so.0 and this library is not
provided by older versions of libclutter-1.0-0.
-- Michael Biebl <biebl@debian.org> Sun, 06 May 2012 01:47:55 +0200
clutter-1.0 (1.10.4-2) unstable; urgency=low
* Upload to unstable
-- Michael Biebl <biebl@debian.org> Tue, 01 May 2012 23:50:39 +0200
clutter-1.0 (1.10.4-1) experimental; urgency=low
* New upstream release.
* debian/watch: Track stable releases.
-- Michael Biebl <biebl@debian.org> Tue, 01 May 2012 16:49:06 +0200
clutter-1.0 (1.10.2-1) experimental; urgency=low
* New upstream release.
* Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
* Strip debian/tmp/ from .install files.
-- Michael Biebl <biebl@debian.org> Fri, 27 Apr 2012 02:44:08 +0200
clutter-1.0 (1.10.0-1) experimental; urgency=low
[ Jeremy Bicha ]
* New upstream release.
[ Rico Tzschichholz ]
* Updated symbols
* debian/control.in:
- Bump build-dep on libglib-dev (>= 2.31.19), libcogl-dev (>= 1.9.8)
libgtk-3-dev (>= 3.3.18)
* debian/rules:
- Explicitly enable the X11 backend and GDK backend
[ Ricardo Salveti de Araujo ]
* debian/rules:
- EGL support for ARM doesn't mean EGLX anymore, that's now part of cogl.
As we don't yet support EGL framebuffer (EGL native windowing), drop
--enable-egl-backend=yes for ARM (LP: #960893)
* debian/control.in:
- adding libgtk-3-dev as it's now required for gdk related symbols
- removing libgles2-dev dependencies for ARM, as the EGL support is now
part the cogl package
* debian/libclutter-1.0-0.symbols:
- removing egl related symbols as it's not related with the EGLX support
anymore
* debian/patches/eglx_glx_share_same_soname.patch:
- removing patch as this is now fixed with upstream and cogl
[ Sjoerd Simons ]
* let libcutter-1.0 breaks libcogl5. Clutter needs a new cogl soname, which
means it breaks apps that use both it and cogl directly. As there no
applications using cogl that don't use clutter, doing a break directly on
libcogl5 is the most elegant solution
-- Sjoerd Simons <sjoerd@debian.org> Sat, 31 Mar 2012 19:44:55 +0200
clutter-1.0 (1.8.4-1) unstable; urgency=low
[ Laurent Bigonville ]
* debian/rules: Only install debug symbols for the library in -dbg package
[ Michael Biebl ]
* Change section of gir1.2-clutter-1.0 to introspection.
[ Josselin Mouette ]
* Update repository URL.
[ Michael Biebl ]
* New upstream release.
* Remove fallback-non-transparent-stages.patch, merged upstream.
* Refresh eglx_glx_share_same_soname.patch.
-- Michael Biebl <biebl@debian.org> Tue, 31 Jan 2012 09:25:19 +0100
clutter-1.0 (1.8.2-2) unstable; urgency=low
* Add fallback-non-transparent-stages.patch: Fallback to non-transparent
stages if unsupported (taken from upstream) (Closes: #647410)
-- Laurent Bigonville <bigon@debian.org> Tue, 15 Nov 2011 17:54:17 +0100
clutter-1.0 (1.8.2-1) unstable; urgency=low
[ Jordi Mallach ]
* Update Vcs-* fields to non-redirected URLs.
[ Rico Tzschichholz ]
* New upstream release
[ Laurent Bigonville ]
* debian/watch: Switch to .xz tarballs
-- Laurent Bigonville <bigon@debian.org> Fri, 21 Oct 2011 00:11:45 +0200
clutter-1.0 (1.8.0-1) unstable; urgency=low
[ Rico Tzschichholz ]
* New upstream release
* debian/control.in:
- Bump build-dep on libatk1.0-dev (>= 2.1.5), libcogl-dev (>= 1.8.0),
libglib2.0-dev (>= 2.28)
* debian/*.symbols*:
- updated, there was no API break, since the removed symbols are private
and weren't exposed in installed header files
* debian/*.symbols*,debian/rules:
- build with EGL/GLES2 on armhf
[ Laurent Bigonville ]
* debian/control.in: Build-dep on libcogl-pango-dev (>= 1.8.0)
-- Laurent Bigonville <bigon@debian.org> Thu, 29 Sep 2011 12:08:27 +0200
clutter-1.0 (1.7.12-1) experimental; urgency=low
* New upstream release
* debian/libclutter-1.0-0.symbols{.armel}:
- Updated
* debian/control.in:
- Fix build-dep on libcogl-dev
-- Rico Tzschichholz <ricotz@ubuntu.com> Fri, 02 Sep 2011 10:05:24 +0200
clutter-1.0 (1.7.10-2) experimental; urgency=low
* debian/patches/eglx_glx_share_same_soname.patch: Eglx and glx should
share the same SONAME, for compatibility reasons
* debian/libclutter-1.0-0.symbols.armel: Add separate symbol file for
armel, where EGLX/GLES2 is used.
-- Rico Tzschichholz <ricotz@ubuntu.com> Thu, 25 Aug 2011 12:05:08 +0200
clutter-1.0 (1.7.10-1) experimental; urgency=low
[ Rico Tzschichholz ]
* New upstream release
* debian/control.in:
- Add Build-Dep on libcogl-dev (>= 1.7.6)
- Add clutter-1.0-tests package
* debian/*.install:
- Remove cogl references
* debian/libclutter-1.0-0.symbols:
- Updated the symbols
* debian/patches:
- Drop 01-Explicitly-link-the-glx-flavour-against-libdl.patch, not
needed since 1.7.4
- Drop 02_disable_armv5t_specific_optimization.patch, moved to cogl
- Add fix_test_data_path.patch
* debian/watch:
- updated for new location
[ Laurent Bigonville ]
* debian/control.in: Fix short description of clutter-1.0-tests package
-- Laurent Bigonville <bigon@debian.org> Tue, 23 Aug 2011 23:56:07 +0200
clutter-1.0 (1.6.16-1) unstable; urgency=low
* New upstream release
* debian/control.in:
- Drop gir packages as build-dependencies, they are now pulled by -dev
packages
- Bump cdbs and debhelper build-dependencies for multiarch policy
- Add required multiarch fields
- Drop duplicates Sections to please lintian
- Use Breaks instead of Conflicts when versionized
* debian/rules:
- Rely on cdbs to call dh_girepository
- Pass --libdir to configure for multiarch
- Fix GNOME_DOWNLOAD_URL URL
* debian/gir1.2-clutter-1.0.install, debian/libclutter-1.0-0.install,
debian/libclutter-1.0-dev.install: Adjust for multiarch paths
* debian/watch:
- Fix URL
- Switch to .bz2 tarballs.
- Bump version to 3
-- Laurent Bigonville <bigon@debian.org> Thu, 07 Jul 2011 13:55:10 +0200
clutter-1.0 (1.6.14-1) unstable; urgency=low
[ Josselin Mouette ]
* Make the -dev package depend on the gir package.
[ Sjoerd Simons ]
* New upstream release
* debian/watch: Updated to new download URL
* debian/patches/01-Explicitly-link-the-glx-flavour-against-libdl.patch:
* Added, fixes build with binutils-gold (Closes: #554074)
* Use dh-autoreconf to re-generate the autotools bits
-- Sjoerd Simons <sjoerd@debian.org> Sat, 14 May 2011 19:29:37 +0100
clutter-1.0 (1.6.10-3) unstable; urgency=low
* debian/control.in:
+ Add libxi-dev to libclutter-1.0-dev
* debian/control.in:
+ Make libclutter-1.0-0 Recommend libclutter-1.0-common
-- Sjoerd Simons <sjoerd@debian.org> Sat, 26 Mar 2011 22:56:00 +0000
clutter-1.0 (1.6.10-2) unstable; urgency=low
* debian/control.in:
+ Build using the gir binaries from atk and pango instead of the
gir-repository bundle.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 26 Mar 2011 07:33:05 +0000
clutter-1.0 (1.6.10-1) unstable; urgency=low
* debian/control.in:
+ Update the build dependencies to build the gir package with packages
from unstable.
* New upstream release.
+ debian/libclutter-1.0-0.symbols:
- Updated.
* Upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 23 Mar 2011 23:10:26 +0000
clutter-1.0 (1.6.8-1) experimental; urgency=low
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 11 Mar 2011 21:46:47 +0000
clutter-1.0 (1.6.6-1) experimental; urgency=low
* New upstream release.
+ debian/control.in:
- Update build dependencies.
+ debian/libclutter-1.0-0.symbols:
- Updated.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 22 Feb 2011 20:39:37 +0000
clutter-1.0 (1.6.4-1) experimental; urgency=low
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 14 Feb 2011 20:38:26 +0000
clutter-1.0 (1.6.2-1) experimental; urgency=low
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 09 Feb 2011 18:34:39 +0000
clutter-1.0 (1.6.0-1) experimental; urgency=low
* New upstream stable release.
+ debian/libclutter-1.0-0.symbols:
- Updated.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 01 Feb 2011 22:56:03 +0000
clutter-1.0 (1.5.14-1) experimental; urgency=low
* New upstream release.
+ debian/control.in:
- Build depend on libxi-dev for XInput support.
+ debian/libclutter-1.0-0.symbols:
- Updated.
+ debian/rules:
- Make the shlibs file always depend on the latest upstream version.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 25 Jan 2011 21:53:13 +0000
clutter-1.0 (1.5.12-1) experimental; urgency=low
* New upstream release.
- debian/libclutter-1.0-0.symbols:
+ Updated.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 11 Jan 2011 23:15:15 +0000
clutter-1.0 (1.5.10-1) experimental; urgency=low
* New upstream development release.
- debian/libclutter-1.0-0.symbols:
+ Updated.
- debian/control.in,
debian/rules:
+ Remove dh-autoreconf, we don't need it right now and autoconf
is failing in this tarball.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 18 Dec 2010 02:24:20 +0000
clutter-1.0 (1.5.8-2) experimental; urgency=low
* debian/control.in:
- Break pyclutter << 1.3.2, older versions than that don't
work with clutter >= 1.4.
- Remove the libgl-dev alternatives since we need a gl.pc
file and the alternatives may not have it.
* Update to the new gir policy:
- Rename gir1.0-clutter-1.0 to gir1.2-clutter-1.0.
- Bump the gobject-introspection build dependency.
- Build depend on gir1.2 packages.
* debian/control.in,
debian/libclutter-1.0-common.install:
- Add a common package to ship the translations.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 12 Dec 2010 20:05:04 +0100
clutter-1.0 (1.5.8-1) experimental; urgency=low
* New upstream development release.
- debian/control.in:
+ Bump build dependency on libcairo2-dev.
+ Bump libclutter-1.0-dev dependencies on libcairo2-dev
and libjson-glib-dev.
- debian/rules:
+ Remove obsolete flag --with-json=system.
- debian/libclutter-1.0-0.symbols:
+ Updated.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 08 Dec 2010 23:37:10 +0100
clutter-1.0 (1.4.2-2) experimental; urgency=low
* debian/control.in:
- Add more missing dependencies: libx11-dev and libpango1.0-dev.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 05 Dec 2010 16:14:29 +0100
clutter-1.0 (1.4.2-1) experimental; urgency=low
* debian/control.in:
- Don't Build-Depend/Depend on libgtk2.0-dev.
- Build-Depend/Depend on libgdk-pixbuf2.0-dev, libdrm-dev, libxext-dev,
libxfixes-dev, libxdamage-dev, libxcomposite-dev, libjson-glib-dev,
libcairo2-dev, libatk1.0-dev.
- Add a Homepage field.
- Standards-Version is 3.9.1, no changes needed.
* debian/libclutter-1.0-0.symbols:
- Remove debian revisions.
* debian/rules:
- Include dh-autoreconf.mk before debhelper.mk to not leave
*.debhelper.log files after clean.
* New upstream release.
* debian/libclutter-1.0-doc.install:
- Ship the documentation for cally.
* debian/libclutter-1.0-doc.links:
- Fix the symlinks so they are in /usr/share/doc/libclutter-1.0-doc.
- Add a symlink for cally.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 04 Dec 2010 15:56:04 +0100
clutter-1.0 (1.4.0-1) experimental; urgency=low
* New upstream release
* debian/patches/01_fix_build_on_not_linux.patch
- Removed, fixed upstream
* debian/patches/90_autoreconf.patch
- Removed, use dh-autoreconf instead
* debian/libclutter-1.0-0.symbols
- Updated
-- Sjoerd Simons <sjoerd@debian.org> Sun, 28 Nov 2010 14:49:22 +0000
clutter-1.0 (1.2.12-3) unstable; urgency=low
* Acknowledge 1.0.8-1.1 NMU, thanks gregor herrmann and Heiko Stuebner.
Closes: #580106
* debian/patches/0002-fix-spelling-errors.patch:
- Removed, fixed upstream.
* debian/patches/0001-disable-armv5t-specific-optimization.patch:
- Renamed to 02_disable_armv5t_specific_optimization.patch.
Also don't comment all the code in the #if block, just change
#if __arm__ to #if 0.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 07 Aug 2010 00:54:09 +0200
clutter-1.0 (1.2.12-2) unstable; urgency=low
* Fix build on !linux
- debian/patches/01_fix_build_on_not_linux.patch:
+ Don't hardcode libdrm APIs in clutter's source, check for libdrm
on configure and use <drm.h> instead. Also don't fail the build
if libdrm is not available. Closes: #589551.
- debian/patches/90_autoreconf.patch:
+ Run autoreconf on top of the above patch.
- debian/control.in:
+ Build depend on libdrm-dev on linux-any and kfreebsd-any.
* debian/control.in:
- Build depend and depend on libgl1-mesa-dev >= 7.1~rc3-1~ for the
availability of gl.pc. Closes: #551811.
-- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 19 Jul 2010 17:10:08 +0200
clutter-1.0 (1.2.12-1) unstable; urgency=low
* New upstream release.
* debian/libclutter-1.0-0.symbols,
debian/rules:
- Add a symbols file.
* debian/rules,
debian/source/format:
- Switch to source format 3.0 (quilt).
* debian/control.in:
- Standards-Version is 3.9.0, no changes needed.
* Upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 18 Jul 2010 17:21:49 +0200
clutter-1.0 (1.2.8-1) experimental; urgency=low
* New upstream development release
* debian/control.in:
- make libclutter-1.0-dev depend on libjson-glib-dev (Closes: #578855)
-- Gustavo Noronha Silva <kov@debian.org> Mon, 31 May 2010 11:10:01 -0300
clutter-1.0 (1.2.4-1) experimental; urgency=low
* New upstream release. Closes: #575249.
* debian/control.in:
- Bump Standards-Version to 3.8.4, no changes needed.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 25 Mar 2010 01:03:42 +0100
clutter-1.0 (1.2.2-1) experimental; urgency=low
[ Gustavo Noronha Silva ]
* debian/control:
- bump Standards-Version to 3.8.3
[ Emilio Pozuelo Monfort ]
* New upstream release.
- Build depend on libjson-glib-dev and gir1.0-json-glib-1.0.
* debian/control.in,
debian/rules:
- GNOMEify.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 21 Mar 2010 13:27:56 +0100
clutter-1.0 (1.0.8-1.1) unstable; urgency=low
[ gregor herrmann ]
* Non-maintainer upload.
[ Heiko Stuebner ]
* 0001-disable-armv5t-specific-optimization.patch:
Fix armv4t compatiblity (Closes: #580106)
* 0002-fix-spelling-errors.patch:
Fix spelling errors causing a failing build (Closes: #583465)
-- gregor herrmann <gregoa@debian.org> Fri, 02 Jul 2010 01:01:58 +0200
clutter-1.0 (1.0.8-1) unstable; urgency=low
* New upstream release
* debian/control:
- adopt new GObject-Introspection mini-policy, by build-depending on
gobject-introspection >= 0.6.5-3, and using the new gir1.0-* packages
* debian/control, libclutter-1.0-0.install, gir1.0-clutter-1.0.install:
- add new package for the typelib files
* debian/rules:
- make dh_girepository be called on the packages
-- Gustavo Noronha Silva <kov@debian.org> Mon, 19 Oct 2009 13:55:06 -0200
clutter-1.0 (1.0.6-1) unstable; urgency=low
* New upstream release
-- Gustavo Noronha Silva <kov@debian.org> Wed, 30 Sep 2009 19:25:03 +0100
clutter-1.0 (1.0.0-1) unstable; urgency=low
[ Loïc Minier ]
* Downgrade pkg-config dep to a recommends.
* Update download URL in copyright.
* Use LDFLAGS/CFLAGS vars directly to avoid overriding them completely; bdep
on cdbs >= 0.4.41.
* Wrap build-deps and deps.
* Let libclutter-0.8-dev dep on ${shlibs:Depends}.
* Bdep on libpango1.0-dev (>= 1.18) and libglib2.0-dev (>= 2.14)
explicitly.
* Cleanup rules.
* Use CDBS gnome.mk class instead of autotools.
[ Gustavo Noronha Silva ]
* New stable upstream release
* Updated build-dependencies according to upstream's configure.ac
* Build-Depend on cairo explicitly
* debian/control:
- make the doc package clutter-version-specific (libclutter-1.0-doc),
and make it conflict with libclutter-doc
* debian/copyright:
- fixed and updated information with recent copyright changes
-- Gustavo Noronha Silva <kov@debian.org> Thu, 30 Jul 2009 12:48:00 +0200
clutter (0.8.8-1) unstable; urgency=low
* New upstream release.
* Ship the COGL documentation
* Clean up minor lintian warnings
-- Ross Burton <ross@debian.org> Fri, 19 Jun 2009 11:38:03 +0100
clutter (0.8.4-1) unstable; urgency=low
* New upstream release
- Fixes linking (Closes: #498506)
-- Ross Burton <ross@debian.org> Mon, 01 Dec 2008 14:46:24 +0000
clutter (0.8.2-1) unstable; urgency=low
* New upstream release.
-- Rob Bradford <robster@debian.org> Fri, 26 Sep 2008 16:09:31 +0100
clutter (0.8.0-1) unstable; urgency=low
* New upstream release.
-- Rob Bradford <robster@debian.org> Sat, 12 Jul 2008 21:34:06 +0100
clutter (0.6.4-1) unstable; urgency=low
* New upstream release.
-- Rob Bradford <robster@debian.org> Sun, 29 Jun 2008 21:30:53 +0100
clutter (0.6.2-2) unstable; urgency=low
* Switch to using -march=armv5t when compiling on ARM (closes: #478152.)
-- Rob Bradford <robster@debian.org> Mon, 19 May 2008 15:30:29 +0100
clutter (0.6.2-1) unstable; urgency=low
* New upstream release.
-- Rob Bradford <robster@debian.org> Thu, 03 Apr 2008 15:08:09 +0100
clutter (0.6.0-2) unstable; urgency=low
* Switch dependency to libgl1-mesa-dev|libgl-dev rather than
just libgl1-mesa-dev so that it does not conflict with other installed
OpenGL headers.
-- Rob Bradford <robster@debian.org> Thu, 28 Feb 2008 14:54:24 +0000
clutter (0.6.0-1) unstable; urgency=low
* New upstream release.
- Replace deprecated substvars.
- Update debian/copyright file.
-- Rob Bradford <robster@debian.org> Mon, 18 Feb 2008 13:27:15 +0000
clutter (0.5.6-1) unstable; urgency=low
* New (unstable) upstream release.
-- Rob Bradford <robster@debian.org> Mon, 11 Feb 2008 17:21:32 +0000
clutter (0.5.2-1) unstable; urgency=low
* New (unstable) upstream release.
-- Rob Bradford <robster@debian.org> Mon, 14 Jan 2008 13:34:58 +0000
clutter (0.5.0-1) unstable; urgency=low
* New (unstable) upstream release.
-- Rob Bradford <robster@debian.org> Thu, 10 Jan 2008 15:58:27 +0000
clutter (0.4.2-1) unstable; urgency=low
* New upstream release.
-- Ross Burton <ross@debian.org> Tue, 18 Sep 2007 11:30:38 +0100
clutter (0.4.1-1) unstable; urgency=low
* New upstream release.
-- Ross Burton <ross@debian.org> Mon, 20 Aug 2007 13:55:10 +0100
clutter (0.4.0-1) unstable; urgency=low
* New upstream release.
-- Ross Burton <ross@debian.org> Tue, 7 Aug 2007 20:50:46 +0100
clutter (0.3.1-1) unstable; urgency=low
* New upstream release.
-- Ross Burton <ross@debian.org> Tue, 24 Jul 2007 09:13:14 +0100
clutter (0.2.3-1) unstable; urgency=low
* New upstream release.
-- Ross Burton <ross@debian.org> Wed, 11 Apr 2007 18:37:12 +0100
clutter (0.2.2-1) unstable; urgency=low
* New upstream release.
* Don't compress the examples.
-- Ross Burton <ross@debian.org> Wed, 14 Feb 2007 09:26:01 +0000
clutter (0.2.1-1) unstable; urgency=low
* New upstream release.
- Upstream package split up, remove Python packaging
-- Ross Burton <ross@debian.org> Wed, 7 Feb 2007 16:18:44 +0000
clutter (0.1.0-2) unstable; urgency=low
* Ship the Python bindings in python2.4-clutter (thanks to Jeff Waugh)
-- Ross Burton <ross@debian.org> Fri, 23 Jun 2006 11:48:12 +0100
clutter (0.1.0-1) unstable; urgency=low
* Initial upload.
-- Ross Burton <ross@debian.org> Wed, 21 Jun 2006 17:46:05 +0100
|