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 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
|
kstars (5:3.4.3-1) unstable; urgency=medium
* New upstream release.
* Add Rules-Requires-Root: no.
* Bump the libindi-dev build dependency to 1.8.5, so the new indi is used.
* Backport upstream commit f0bfcdf13737cb2dc3401475c68d6afea6bbd055 to avoid
a non const strings as format string; patch
upstream_tests-do-not-pass-a-literal-string-as-format-string.patch.
-- Pino Toscano <pino@debian.org> Mon, 20 Jul 2020 08:15:26 +0200
kstars (5:3.4.2-2) unstable; urgency=medium
* Skip one check in the TestFitsData test that fails on i386 architectures;
patch skip-fitsdata-test-i386.diff.
-- Pino Toscano <pino@debian.org> Sun, 10 May 2020 07:12:02 +0200
kstars (5:3.4.2-1) unstable; urgency=medium
* New upstream release.
* Add the libqt5sql5-sqlite build dependency, needed to make one unit test
work.
* Create a temporary home directory when running dh_auto_test, as some test
wants to simulate writing to the user directory.
-- Pino Toscano <pino@debian.org> Sun, 26 Apr 2020 11:32:15 +0200
kstars (5:3.4.1-1) unstable; urgency=medium
* New upstream release.
-- Pino Toscano <pino@debian.org> Mon, 24 Feb 2020 07:23:39 +0100
kstars (5:3.4.0-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.5.0, no changes required.
* Enable all the reprotest variations in the salsa CI.
* Switch from dhmk to the dh sequencer:
- invoke the dh sequencer using the kf5 addon
- explicitly link in as-needed mode
- call the right debhelper command instead of $(overridden_command)
- manually force the generation of the substvars for the kde-l10n breaks
* Bump the debhelper compatibility to 12:
- switch the debhelper build dependency to debhelper-compat 12
- remove debian/compat
- switch from dh_install to dh_missing for --fail-missing
* Drop the man page, no more automatically generated by dhmk, and generally
too minimal.
* Drop conffile removals that happened before two Debian stable releases ago.
-- Pino Toscano <pino@debian.org> Fri, 14 Feb 2020 07:31:46 +0100
kstars (5:3.3.9-1) unstable; urgency=medium
* New upstream release.
-- Pino Toscano <pino@debian.org> Thu, 02 Jan 2020 17:55:49 +0100
kstars (5:3.3.8-1) unstable; urgency=medium
* New upstream release.
-- Pino Toscano <pino@debian.org> Mon, 18 Nov 2019 21:18:05 +0100
kstars (5:3.3.7-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.4.1, no changes required.
* Drop the migration from kstars-dbg, no more needed after two Debian stable
releases.
* Add the configuration for the CI on salsa.
* Bump the cmake build dependency to 3.4.0, according to the upstream build
system.
* Bump the libindi-dev build dependency to 1.8.2, so the new indi is used.
* Drop old kstars-data breaks/replaces in kstars.
-- Pino Toscano <pino@debian.org> Mon, 11 Nov 2019 08:12:41 +0100
kstars (5:3.0.0-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.2.1, no changes required.
* Update install files.
* Remove the /etc/dbus-1/system.d/org.kde.kf5auth.kstars.conf conffile,
no more shipped.
-- Pino Toscano <pino@debian.org> Fri, 21 Dec 2018 14:43:03 +0100
kstars (5:2.9.8-1) unstable; urgency=medium
* New upstream release.
* Update the patches:
- upstream_cmake-fix-enabling-of-exceptions.patch: drop, backported from
upstream
* Bump Standards-Version to 4.2.0, no changes required.
* Bump the libindi-dev build dependency to 1.7.4~, to make sure to build
using the newer INDI version.
-- Pino Toscano <pino@debian.org> Tue, 21 Aug 2018 07:13:10 +0200
kstars (5:2.9.7-1) unstable; urgency=medium
* New upstream release.
* Add the new libqt5websockets5-dev, and qt5keychain-dev required build
dependencies; add also libsecret-1-dev as workaround for missing
dependencies in qt5keychain-dev.
* Use https for the Homepage.
* Bump Standards-Version to 4.1.5, no changes required.
* Backport upstream commit 25630e41c71990d619f9f96693624056a8d89039 to
properly enable exceptions, and thus build with libraw 0.19.0; patch
upstream_cmake-fix-enabling-of-exceptions.patch. (Closes: #905034)
-- Pino Toscano <pino@debian.org> Tue, 31 Jul 2018 21:08:07 +0200
kstars (5:2.9.6-1) unstable; urgency=medium
[ Steffen Möller ]
* More specific home page, removed reference to KDE Edu.
[ Pino Toscano ]
* New upstream release.
* Update Vcs-* fields.
* Remove the astrometry.net, and xplanet build dependencies, as they are only
runtime recommends now.
* Enable the test suite at build time, as it works fine since this version.
* Remove the unused autopkgtest stuff.
-- Pino Toscano <pino@debian.org> Sun, 27 May 2018 10:17:05 +0200
kstars (5:2.9.5-1) unstable; urgency=medium
* New upstream release.
* Bump libindi-dev build dependency to >= 1.7.1, as indicated by the upstream
build system.
-- Pino Toscano <pino@debian.org> Sat, 28 Apr 2018 07:27:53 +0200
kstars (5:2.9.4-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.1.4, no changes required.
* Bump the debhelper compatibility to 11:
- bump the debhelper build dependency to 11~
- bump compat to 11
* Minor changes to copyright.
* Explicitly add the gettext build dependency.
-- Pino Toscano <pino@debian.org> Thu, 12 Apr 2018 06:02:31 +0200
kstars (5:2.9.3-1) unstable; urgency=medium
[ Jonathan Riddell ]
* New upstream release, as standalone release now.
* Bump the epoch for the new release version scheme.
* Update watch to the new location.
* Update the signining key.
[ Pino Toscano ]
* New upstream release.
* Update the build dependencies:
- explicitly add libkf5auth-dev
- bump libindi-dev to >= 1.6.1~
* Update install files, also according to kauth 5.42.0-1~. (Closes: #891163)
* Stop explicitly passing -DINDI_INCLUDE_DIR to cmake, as the build system
properly detects the INDI include directories.
* Remove unwanted files from debian/tmp, and invoke dh_install with
--fail-missing to make sure no file is forgotten
- drop not-installed, no more needed now
* Bump Standards-Version to 4.1.3, no changes required.
* Switch Vcs-* fields to salsa.debian.org.
-- Pino Toscano <pino@debian.org> Thu, 08 Mar 2018 17:17:36 +0100
kstars (4:17.08.3-2) unstable; urgency=medium
* Team upload.
* Adjust again l10npkgs_firstversion_ok to the fixed version of kde-
l10n. (Closes: #883397)
* Bump Standards-Version to 4.1.2, no changes required.
-- Pino Toscano <pino@debian.org> Sat, 09 Dec 2017 10:22:28 +0100
kstars (4:17.08.3-1) unstable; urgency=medium
* Team upload.
* Upload to unstable.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Update package description using Steffen Möller's suggestions as a base.
[ Pino Toscano ]
* New upstream release.
* Simplify watch file, and switch it to https.
* Bump Standards-Version to 4.1.1, no changes required.
* Remove alternative libcfitsio3-dev build dependency for libcfitsio-dev.
* Move translations to kstars-data
- set the proper breaks/replaces
* Update lintian overrides.
* Bump the libindi-dev build dependency to >= 1.4.1, as indicated by the
upstream build system.
* Drop obsolete dpkg-dev build dependency.
* Adjust l10npkgs_firstversion_ok to the version where kde-l10n will drop
translations.
-- Pino Toscano <pino@debian.org> Sat, 02 Dec 2017 08:08:07 +0100
kstars (4:17.08.1-1) experimental; urgency=medium
* New upstream release (17.08.1)
* Bump Standards-Version to 4.1.0.
* Update upstream metadata
* Add breaks/replaces against the kde-l10n packages
* Bump kde-l10n breaks/replaces versions
* Release to experimental
-- Maximiliano Curia <maxy@debian.org> Mon, 18 Sep 2017 15:06:30 +0200
kstars (4:17.08.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Tue, 05 Sep 2017 14:03:11 +0000
kstars (4:17.08.0-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Thu, 17 Aug 2017 09:41:41 +0000
kstars (4:17.04.3-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 12 Jul 2017 10:23:38 +0000
kstars (4:17.04.2-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 07 Jun 2017 12:23:13 +0000
kstars (4:17.04.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Thu, 11 May 2017 18:23:36 +0000
kstars (4:17.04.0-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 19 Apr 2017 13:06:07 +0000
kstars (4:16.12.3-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 08 Mar 2017 13:49:50 +0000
kstars (4:16.12.2-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 08 Feb 2017 17:02:14 +0000
kstars (4:16.12.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 11 Jan 2017 13:22:16 +0000
kstars (4:16.12.0-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 14 Dec 2016 16:30:50 +0000
kstars (4:16.08.3-2) unstable; urgency=medium
* Add libqt5sql5-sqlite runtime dependency.
Thanks to Jan Echternach for reporting (Closes: 854516)
-- Maximiliano Curia <maxy@debian.org> Fri, 10 Feb 2017 17:52:14 +0100
kstars (4:16.08.3-1) unstable; urgency=medium
* New upstream release (16.08.3)
-- Maximiliano Curia <maxy@debian.org> Wed, 23 Nov 2016 21:16:46 +0100
kstars (4:16.08.3-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Mon, 21 Nov 2016 13:54:12 +0000
kstars (4:16.08.2-2) unstable; urgency=medium
* Build-depend on libcfitsio-dev instead of libcfitsio3-dev.
Thanks to Aurelien Jarno for pointing out the missing commit
(Closes: 761713)
-- Maximiliano Curia <maxy@debian.org> Tue, 18 Oct 2016 10:04:39 +0200
kstars (4:16.08.2-1) unstable; urgency=medium
[ Maximiliano Curia ]
* New upstream release (16.08.2)
* Move auto tests to autopkgtests
* Update install files
[ Automatic packaging ]
* Update build-deps and deps with the info from cmake
-- Maximiliano Curia <maxy@debian.org> Tue, 18 Oct 2016 09:35:47 +0200
kstars (4:16.08.2-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Fri, 14 Oct 2016 13:40:56 +0000
kstars (4:16.08.1-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Fri, 16 Sep 2016 13:07:41 +0000
kstars (4:16.08.0-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Wed, 17 Aug 2016 11:49:42 +0000
kstars (4:16.04.3-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Tue, 12 Jul 2016 11:37:35 +0000
kstars (4:16.04.2-0neon) xenial; urgency=medium
* New release
-- Neon CI <neon@kde.org> Thu, 16 Jun 2016 11:08:26 +0000
kstars (4:16.04.1-1) unstable; urgency=medium
[ Automatic packaging ]
* Bump Standards-Version to 3.9.8
* Update build-deps and deps with the info from cmake
[ Matthias Klumpp ]
* Fix the AppStream metadata by placing .desktop file and metainfo file in the same package
[ Maximiliano Curia ]
* New upstream release (15.12.2).
* Replace the "Historical name" ddeb-migration by its "Modern, clearer" replacement dbgsym-migration.
* Add upstream metadata (DEP-12)
* debian/control: Update Vcs-Browser and Vcs-Git fields
* Add missing breaks/replaces
* Reenable libindi support. (Closes: #824866)
-- Maximiliano Curia <maxy@debian.org> Thu, 26 May 2016 18:31:27 +0200
kstars (4:15.12.1-1) experimental; urgency=medium
* New upstream release (15.12.0).
* New upstream release (15.12.1).
-- Maximiliano Curia <maxy@debian.org> Mon, 01 Feb 2016 10:23:42 +0100
kstars (4:15.08.3-1) unstable; urgency=medium
[ Scott Kitterman ]
* Team upload.
* Change kstars depends relation on kstars-data to = instead of >= to avoid
issues with incompatibilities between source versions (Closes: #798950)
[ Maximiliano Curia ]
* New upstream release (15.08.3).
-- Maximiliano Curia <maxy@debian.org> Wed, 02 Dec 2015 12:39:24 +0100
kstars (4:15.08.0-1) unstable; urgency=medium
* New upstream release (15.04.0).
* New upstream release (15.04.1).
* New upstream release (15.04.2).
* New upstream release (15.08.0).
-- Maximiliano Curia <maxy@debian.org> Wed, 09 Sep 2015 00:37:31 +0200
kstars (4:15.08.0-0ubuntu2) wily; urgency=medium
* Rebuild with libindi 1.0.0
-- Harald Sitter <sitter@kde.org> Thu, 27 Aug 2015 13:26:53 +0200
kstars (4:15.08.0-0ubuntu1) wily; urgency=medium
* new upstream release
-- Clive Johnston <clivejo@aol.com> Wed, 26 Aug 2015 17:38:57 +0100
kstars (4:15.07.90-0ubuntu1) wily; urgency=medium
* new upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 18 Aug 2015 11:14:49 +0100
kstars (4:15.04.2-0ubuntu3) wily; urgency=medium
* Add more test depends
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 23 Jun 2015 17:18:28 +0200
kstars (4:15.04.2-0ubuntu2) wily; urgency=medium
* Update testsuite.xsession for kf5
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 22 Jun 2015 13:40:41 +0200
kstars (4:15.04.2-0ubuntu1) wily; urgency=medium
* New upstream release.
-- Scarlett Clark <sgclark@kubuntu.org> Tue, 09 Jun 2015 19:24:31 +0200
kstars (4:14.12.3-1) experimental; urgency=medium
* New upstream release (14.12.3).
-- Maximiliano Curia <maxy@debian.org> Sat, 28 Mar 2015 12:40:57 +0100
kstars (4:14.12.3-0ubuntu1) vivid; urgency=medium
* New upstream release
-- Scarlett Clark <sgclark@kubuntu.org> Fri, 13 Mar 2015 14:07:02 -0700
kstars (4:14.12.2-1) experimental; urgency=medium
* Prepare Debian release.
* Bump Standards-Version to 3.9.6, no changes needed.
-- Maximiliano Curia <maxy@debian.org> Thu, 19 Feb 2015 23:44:40 +0100
kstars (4:14.12.2-0ubuntu1) vivid; urgency=medium
* New upstream release
* Remove unstable from watch file, uscan fails with
remote site does not even have current version
-- Scarlett Clark <sgclark@kubuntu.org> Tue, 10 Feb 2015 09:00:51 -0800
kstars (4:14.12.0-0ubuntu1) vivid; urgency=medium
* New upstream release
* Remove kdelibs5-dev depend version as there was not a new release.
* Remove the extra entry for xplanet suggest as it is now a recommend.
-- Scarlett Clark <sgclark@kubuntu.org> Mon, 15 Dec 2014 16:29:30 +0100
kstars (4:14.11.97-0ubuntu1) vivid; urgency=medium
* New upstream RC release
* Merge with Debian, remaining changes:
- not-installed
- don't build-dep on GL on armhf
- Recommend astrometry.net
- Recommend not suggest xplanet, indi-bin
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 01 Dec 2014 18:03:46 +0100
kstars (4:4.14.2-1) unstable; urgency=medium
* New upstream release (4.14.2).
-- Maximiliano Curia <maxy@debian.org> Mon, 20 Oct 2014 17:13:08 +0200
kstars (4:4.14.1-1) unstable; urgency=medium
* New upstream release (4.14.1).
-- Maximiliano Curia <maxy@debian.org> Wed, 17 Sep 2014 09:44:29 +0200
kstars (4:4.14.0-1) unstable; urgency=medium
* New upstream release.
* Update build dependencies.
* Update install files.
-- Maximiliano Curia <maxy@debian.org> Wed, 20 Aug 2014 20:56:40 +0200
kstars (4:4.13.3-1) unstable; urgency=medium
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Fri, 25 Jul 2014 17:49:50 +0200
kstars (4:4.14.2-0ubuntu1) vivid; urgency=medium
* New upstream release
* Add missing optional build dependencies.
-- Scarlett Clark <sgclark@kubuntu.org> Fri, 10 Oct 2014 06:12:55 -0700
kstars (4:4.14.1-0ubuntu1) utopic; urgency=medium
* New upstream release
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Mon, 22 Sep 2014 17:37:28 +0200
kstars (4:4.14.0-0ubuntu1) utopic; urgency=medium
* New upstream release
* Build with libindi 0.9.8
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 20 Aug 2014 13:25:24 +0200
kstars (4:4.13.97-0ubuntu1) utopic; urgency=medium
* New upstream beta release RC
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Fri, 01 Aug 2014 17:12:10 +0200
kstars (4:4.13.95-0ubuntu1) utopic; urgency=medium
* New upstream beta release
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Wed, 30 Jul 2014 18:36:53 +0200
kstars (4:4.13.90-0ubuntu1) utopic; urgency=medium
[ Scarlett Clark ]
* New upstream beta release
[ Jonathan Riddell ]
* Add appdata file
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Thu, 24 Jul 2014 23:28:47 +0200
kstars (4:4.13.2-0ubuntu1) utopic; urgency=medium
* New upstream release
* Merge with Debian, remaining change:
- don't build-dep on GL on armhf
- Recommend astrometry.net
- Recommend not suggest xplanet, indi-bin
* kubuntu_01_pthread_link.diff is now link_pthread.diff
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 17 Jun 2014 10:41:59 +0100
kstars (4:4.13.1-1) unstable; urgency=medium
* New upstream release.
* Remove applied by upstream patch: eigen.patch
-- Maximiliano Curia <maxy@debian.org> Tue, 20 May 2014 16:55:32 +0200
kstars (4:4.12.3-2) unstable; urgency=medium
* Release to unstable
-- Maximiliano Curia <maxy@debian.org> Mon, 28 Apr 2014 12:24:59 +0200
kstars (4:4.12.3-1) experimental; urgency=medium
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Tue, 04 Mar 2014 00:05:38 +0100
kstars (4:4.12.2-1) experimental; urgency=medium
* New upstream release.
* Remove: upstream_tests-always-the-system-temporary-dir.patch,
applied by upstream
* Remove: upstream_tests-use-proper-temporary-files.patch, applied by
upstream
* Remove: upstream_tests-split-init-tearup.patch, applied by upstream
* Refresh patches.
* Bump kde-sc-dev-latest build dependency.
-- Maximiliano Curia <maxy@debian.org> Mon, 10 Feb 2014 11:32:13 +0100
kstars (4:4.11.5-1) unstable; urgency=low
* New upstream release.
* Add autopkgtests.
-- Maximiliano Curia <maxy@debian.org> Wed, 29 Jan 2014 14:15:52 +0100
kstars (4:4.11.3-5) unstable; urgency=low
* Backport upstream commit 64748ed5e45177224699c4f597d81d6cae3bfcdc to just
use the system temporary directory, bypassing KDE's one. It should finally
allow to run tests with no available $HOME.
-- Pino Toscano <pino@debian.org> Sat, 30 Nov 2013 20:20:34 +0100
kstars (4:4.11.3-4) unstable; urgency=low
* Backport upstream commits 3231f23c31896b1da601e7a0704443d1181a0604
(as upstream_tests-split-init-tearup.patch) and
bf2cb5653908863eee0ee6c6c05f87ba38886fa3 (as
upstream_tests-use-proper-temporary-files.patch) to make tests properly
use temporary files instead of relying on ~/.kde.
* Remove the custom home for tests, should not be needed anymore now.
-- Pino Toscano <pino@debian.org> Sat, 30 Nov 2013 16:52:19 +0100
kstars (4:4.11.3-3) unstable; urgency=low
* Add a homedir for the tests. (Closes: #730327)
-- Maximiliano Curia <maxy@debian.org> Tue, 26 Nov 2013 21:02:23 +0100
kstars (4:4.11.3-2) unstable; urgency=low
* Enable tests.
* Create a kstars-dbg package. (Closes: #694100)
* Bump Standards-Version to 3.9.5, no changes required.
* Update build dependencies.
* New patch: link_pthread.diff, needed by libindi.
-- Maximiliano Curia <maxy@debian.org> Fri, 22 Nov 2013 10:15:01 +0100
kstars (4:4.11.3-1) unstable; urgency=low
* New upstream release.
* Update build dependencies.
* Switch to libeigen3-dev, thanks to Anton Gladky. (Closes: #726644)
-- Maximiliano Curia <maxy@debian.org> Sat, 09 Nov 2013 17:47:13 +0100
kstars (4:4.11.2-1) experimental; urgency=low
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Mon, 07 Oct 2013 16:52:41 +0200
kstars (4:4.10.5-1) unstable; urgency=low
* New upstream release.
* Remove upstream_#undef-TIME_UTC-to-fix-conflict-with-glibc.diff,
already applied upstream.
-- Maximiliano Curia <maxy@debian.org> Fri, 12 Jul 2013 16:37:45 +0200
kstars (4:4.10.4-1) experimental; urgency=low
* New upstream release.
* Bump debhelper build-dep and compat to 9.
* Bump Standards-Version to 3.9.4.
* Update vcs fields.
-- Maximiliano Curia <maxy@debian.org> Fri, 14 Jun 2013 14:30:34 +0200
kstars (4:4.13.0-0ubuntu1) trusty; urgency=medium
* New upstream KDE Software Compilation release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 10 Apr 2014 22:16:21 +0100
kstars (4:4.12.97-0ubuntu1) trusty; urgency=medium
* New upstream release candidate
-- Philip Muškovac <yofel@kubuntu.org> Wed, 02 Apr 2014 11:43:00 +0200
kstars (4:4.12.95-0ubuntu1) trusty; urgency=medium
* New upstream beta release
-- Rohan Garg <rohangarg@kubuntu.org> Sun, 23 Mar 2014 12:43:06 +0100
kstars (4:4.12.90-0ubuntu1) trusty; urgency=medium
* New upstream beta release
* Add build-dep on qjson, libeigen3-dev, astrometry.net
* Add recommend on astrometry.net
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 19 Mar 2014 11:29:17 +0000
kstars (4:4.12.3-0ubuntu1) trusty; urgency=medium
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Tue, 04 Mar 2014 21:03:56 +0100
kstars (4:4.12.2-0ubuntu2) trusty; urgency=medium
* Rebuild on new libindi
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 12 Feb 2014 13:56:18 +0000
kstars (4:4.12.2-0ubuntu1) trusty; urgency=medium
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Wed, 05 Feb 2014 00:15:23 +0000
kstars (4:4.12.1-0ubuntu1) trusty; urgency=low
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 16 Jan 2014 08:29:57 +0000
kstars (4:4.12.0-0ubuntu1) trusty; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 18 Dec 2013 17:26:53 +0000
kstars (4:4.11.97-0ubuntu1) trusty; urgency=low
* New upstream RC release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 29 Nov 2013 13:26:13 +0000
kstars (4:4.11.95-0ubuntu1) trusty; urgency=low
* New upstream beta release
-- Rohan Garg <rohangarg@kubuntu.org> Mon, 25 Nov 2013 18:23:19 +0100
kstars (4:4.11.80-0ubuntu1) trusty; urgency=low
* New upstream beta release
-- Rohan Garg <rohangarg@kubuntu.org> Sat, 23 Nov 2013 17:50:22 +0100
kstars (4:4.11.2-0ubuntu1) saucy; urgency=low
* New upstream bugfix release
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 30 Sep 2013 14:40:55 +0100
kstars (4:4.11.1-0ubuntu1) saucy; urgency=low
* New upstream bugfix release.
-- Philip Muškovac <yofel@kubuntu.org> Fri, 06 Sep 2013 22:32:16 +0100
kstars (4:4.11.0-0ubuntu1) saucy; urgency=low
[ Howard Chan ]
* New upstream release
[ Jonathan Riddell ]
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 14 Aug 2013 00:28:57 +0100
kstars (4:4.10.97-0ubuntu1) saucy; urgency=low
* New upstream RC 2 release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 26 Jul 2013 19:51:34 +0100
kstars (4:4.10.95-0ubuntu1) saucy; urgency=low
* New upstream RC release
-- Rohan Garg <rohangarg@kubuntu.org> Fri, 19 Jul 2013 12:33:06 +0000
kstars (4:4.10.90-0ubuntu1) saucy; urgency=low
* New upstream bet release
-- Michał Zając <quintasan@kubuntu.org> Fri, 28 Jun 2013 18:23:33 +0100
kstars (4:4.10.80-0ubuntu1) saucy; urgency=low
* New upstream release
- Refresh kubuntu_link_pthread.diff
-- Rohan Garg <rohangarg@kubuntu.org> Fri, 21 Jun 2013 01:36:48 +0100
kstars (4:4.10.4-0ubuntu1) saucy-proposed; urgency=low
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Fri, 07 Jun 2013 00:42:55 +0100
kstars (4:4.10.3-0ubuntu2) saucy; urgency=low
* Add kubuntu_01_pthread_link.diff to link against pthread
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 08 May 2013 16:19:54 +0000
kstars (4:4.10.3-0ubuntu1) saucy; urgency=low
* New upstream release
* Merge with Debian, remaining change:
- don't install GL on armhf
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 07 May 2013 16:55:07 +0000
kstars (4:4.10.2-1) experimental; urgency=low
* New upstream release.
[ Diane Trout ]
* Bump kde-sc-dev-latest build dependency to 4.10.2.
* Bump kdelibs5-dev build dependency to 4.10.
[ Maximiliano Curia ]
* Add build-dependency wcslib-dev.
* Add basic manpage.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 11 Apr 2013 23:37:58 -0700
kstars (4:4.10.2-0ubuntu1) raring; urgency=low
* New upstream bugfix release
-- Philip Muškovac <yofel@kubuntu.org> Sun, 31 Mar 2013 14:57:18 +0200
kstars (4:4.10.1-0ubuntu1) raring-proposed; urgency=low
* New upstream bugfix release
* Add kubuntu_link_pthread.diff to link to pthread, fixes compile on
i386
-- Philip Muškovac <yofel@kubuntu.org> Tue, 05 Mar 2013 16:39:17 +0000
kstars (4:4.10.0-0ubuntu1) raring-proposed; urgency=low
* New upstream release
-- Rohan Garg <rohangarg@kubuntu.org> Wed, 06 Feb 2013 12:04:08 +0000
kstars (4:4.9.98-0ubuntu1) raring-proposed; urgency=low
* New upstream release candidate
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 18 Jan 2013 15:54:17 +0000
kstars (4:4.9.97-0ubuntu1) raring; urgency=low
* New upstream release candidate
-- Philip Muškovac <yofel@kubuntu.org> Thu, 03 Jan 2013 22:43:19 +0100
kstars (4:4.9.95-0ubuntu1) raring; urgency=low
* New upstream RC release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 18 Dec 2012 23:40:17 +0000
kstars (4:4.9.90-0ubuntu1) raring-proposed; urgency=low
* New upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 07 Dec 2012 18:08:32 +0000
kstars (4:4.9.80-0ubuntu1) raring; urgency=low
[ Jonathan Riddell ]
* New upstream beta release
[ Harald Sitter ]
* Build dep on wcslib-dev (new dep)
* Build dep on libindi-dev >= 0.9.6
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 19 Nov 2012 16:07:49 +0000
kstars (4:4.9.3-0ubuntu1) raring; urgency=low
* New upstream release (LP: #1074747)
-- Philip Muškovac <yofel@kubuntu.org> Tue, 06 Nov 2012 22:41:23 +0100
kstars (4:4.9.2-0ubuntu1) quantal-proposed; urgency=low
* New upstream bugfix release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 02 Oct 2012 15:32:42 +0100
kstars (4:4.9.1-0ubuntu1) quantal; urgency=low
* New upstream release
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 10 Sep 2012 18:37:35 +0530
kstars (4:4.9.0-0ubuntu1) quantal; urgency=low
* Use direct build-depends versions rather than kde-sc-dev-latest
* New upstream release
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 26 Jul 2012 22:40:41 +0100
kstars (4:4.8.90-0ubuntu2) quantal; urgency=low
* Rebuild for the libindi0 -> libindi0b transition.
-- Adam Conrad <adconrad@ubuntu.com> Wed, 20 Jun 2012 14:13:44 -0600
kstars (4:4.8.90-0ubuntu1) quantal; urgency=low
* New upstream beta release.
-- Felix Geyer <debfx@ubuntu.com> Mon, 11 Jun 2012 23:38:29 +0200
kstars (4:4.8.80-0ubuntu1) quantal; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 06 Jun 2012 16:00:50 +0100
kstars (4:4.8.4-1) unstable; urgency=low
* New upstream release.
* Bump kde-sc-dev-latest build dependency to 4.8.4.
* Bump kdelibs5-dev build dependency to 4.8.
* Bump Standards-Version to 3.9.3, no changes required.
* Add watch file.
* Convert copyright to copyright-format v1.0 and update.
-- Pino Toscano <pino@debian.org> Sat, 16 Jun 2012 14:28:07 +0200
kstars (4:4.8.2-0ubuntu1) precise; urgency=low
* new upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 03 Apr 2012 08:51:44 +0000
kstars (4:4.8.1-0ubuntu1) precise; urgency=low
* New upstream release
-- Philip Muškovac <yofel@kubuntu.org> Sun, 04 Mar 2012 20:56:01 +0100
kstars (4:4.8.0-0ubuntu1) precise; urgency=low
* New upstream release
-- Philip Muškovac <yofel@kubuntu.org> Mon, 23 Jan 2012 21:47:50 +0100
kstars (4:4.7.97-0ubuntu1) precise; urgency=low
* New upstream release candidate
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 05 Jan 2012 12:18:32 +0000
kstars (4:4.7.95-0ubuntu1) precise; urgency=low
* New upstream release candidate
-- Philip Muškovac <yofel@kubuntu.org> Sat, 24 Dec 2011 21:02:40 +0100
kstars (4:4.7.90-0ubuntu3) precise; urgency=low
* Really fix the armhf build and unbreak the now broken armel build.
-- Matthias Klose <doko@ubuntu.com> Wed, 21 Dec 2011 23:11:32 +0100
kstars (4:4.7.90-0ubuntu2) precise; urgency=low
* Missing change from 4:4.7.3-0ubuntu3
- Disable OpenGL on armhf as well.
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 21 Dec 2011 16:58:43 +0000
kstars (4:4.7.90-0ubuntu1) precise; urgency=low
* New upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 16 Dec 2011 13:14:42 +0000
kstars (4:4.7.4-2) unstable; urgency=low
* Upload to unstable.
-- Pino Toscano <pino@debian.org> Wed, 07 Mar 2012 14:40:27 +0100
kstars (4:4.7.4-1) experimental; urgency=low
* New upstream release.
[ José Manuel Santamaría Lema ]
* Bump kde-sc-dev-latest build dependency to 4:4.7.4.
* Add myself to Uploaders.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sun, 18 Dec 2011 01:35:39 +0100
kstars (4:4.7.3-0ubuntu3) precise; urgency=low
* Disable OpenGL on armhf as well.
-- Matthias Klose <doko@ubuntu.com> Mon, 05 Dec 2011 12:28:54 +0100
kstars (4:4.7.3-0ubuntu2) precise; urgency=low
* Re-apply changes that have been dropped in the last upload:
- Disable OpenGL on armel.
-- Felix Geyer <debfx-pkg@fobos.de> Sun, 27 Nov 2011 14:05:27 +0100
kstars (4:4.7.3-0ubuntu1) precise; urgency=low
* New upstream release
* Merge with Debian Git
- Build-dep on libnova-dev
- kstars suggests on indi not indi-bin
- Recommends on xplanet not Suggests
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 23 Nov 2011 23:47:05 +0000
kstars (4:4.7.2-1) experimental; urgency=low
[ Pino Toscano ]
* Initial release:
- provides various corrections for Canadian entries in Cities.dat
(Closes: #622310)
- correctly takes the DST into account (Closes: #622312)
* Provide the INDI support, only on Linux architecture (as upstream checks):
(Closes: #599332)
- build depend on libindi-dev
- change the suggest from indi to indi-bin
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 03 Dec 2011 10:44:36 -0300
kstars (4:4.7.2-0r0) raring; urgency=low
* Initial release:
- provides various corrections for Canadian entries in Cities.dat
(Closes: #622310)
- correctly takes the DST into account (Closes: #622312)
* Provide the INDI support, only on Linux architecture (as upstream checks):
(Closes: #599332)
- build depend on libindi-dev
- change the suggest from indi to indi-bin
-- Pino Toscano <pino@debian.org> Mon, 24 Oct 2011 16:35:38 +0200
kstars (4:4.7.2-0ubuntu1) oneiric-proposed; urgency=low
* New upstream release (LP: #872506)
-- Rohan Garg <rohangarg@kubuntu.org> Wed, 05 Oct 2011 00:10:52 +0530
kstars (4:4.7.1-0ubuntu2) oneiric; urgency=low
* No-change rebuild so translations aren't stripped from .desktop
files anymore.
-- Felix Geyer <debfx-pkg@fobos.de> Fri, 16 Sep 2011 01:02:48 +0200
kstars (4:4.7.1-0ubuntu1) oneiric; urgency=low
* New upstream release
-- Jonathan Kolberg <bulldog98@kubuntu-de.org> Sun, 04 Sep 2011 14:32:45 +0200
kstars (4:4.7.0-0ubuntu1) oneiric; urgency=low
* New upstream release
- Add kubuntu_fix_FindINDI.cmake to find libindi-dev
- Bump kde-sc-dev-latest to 4:4.7.0
-- Rohan Garg <rohangarg@kubuntu.org> Sat, 23 Jul 2011 23:07:27 +0200
kstars (4:4.6.90+repack-0ubuntu1) raring; urgency=low
* New upstream release candidate
* Split packaging from kdeedu
- kstars-dbg breaks/replaces kdeedu-dbg << 4:4.6.80
* Repackage upstream source to include missing license copies
-- Rohan Garg <rohangarg@kubuntu.org> Sun, 03 Jul 2011 14:13:19 +0200
|