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 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
|
sip4 (4.19.25+dfsg-1) unstable; urgency=medium
* New upstream release.
* Bump copyright years in debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 01 Mar 2021 20:22:49 +0300
sip4 (4.19.24+dfsg-2) unstable; urgency=medium
[ Ondřej Nový ]
* d/control: Update Maintainer field with new Debian Python Team
contact address.
* d/control: Update Vcs-* fields with new Debian Python Team Salsa
layout.
[ Dmitry Shachnev ]
* Stop installing the .dist-info directory, it causes a name conflict
with SIP 5 (closes: #976983).
* Bump Standards-Version to 4.5.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 23 Dec 2020 20:28:20 +0300
sip4 (4.19.24+dfsg-1) unstable; urgency=medium
[ Debian Janitor ]
* Apply multi-arch hints.
+ python-sip-doc: Add Multi-Arch: foreign.
[ Dmitry Shachnev ]
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 14 Aug 2020 14:51:47 +0300
sip4 (4.19.23+dfsg-1) unstable; urgency=medium
* Update debian/watch to work after recent website update.
* New upstream release.
* Update to debhelper compat level 13.
- Run dh_missing with --list-missing for indep builds.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 08 Jun 2020 23:05:25 +0300
sip4 (4.19.22+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 07 Apr 2020 15:18:12 +0300
sip4 (4.19.21+dfsg-2) unstable; urgency=medium
* Drop Python 2 packages (closes: #938490).
-- Dmitry Shachnev <mitya57@debian.org> Sun, 15 Mar 2020 15:08:48 +0300
sip4 (4.19.21+dfsg-1) unstable; urgency=medium
[ Matthias Klose ]
* python-sip-dev: Depend on python2-dev instead of python-dev.
[ Dmitry Shachnev ]
* New upstream release.
* Bump copyright years in debian/copyright.
* Drop explicit B-D on dh-strip-nondeterminism.
* Bump Standards-Version to 4.5.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 01 Feb 2020 15:20:34 +0300
sip4 (4.19.20+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 20 Dec 2019 13:24:27 +0300
sip4 (4.19.19+dfsg-2) unstable; urgency=medium
* Fix header files location for Python 3.8.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 20 Oct 2019 11:13:46 +0300
sip4 (4.19.19+dfsg-1) unstable; urgency=medium
* New upstream release.
* Bump API version to 12.7.
* Update sip.1 manpage to reflect deprecation of the -B option.
* Bump Standards-Version to 4.4.1, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 15 Oct 2019 19:35:22 +0300
sip4 (4.19.18+dfsg-1) unstable; urgency=medium
* New upstream release.
* Fix Lintian source-contains-empty-directory warning.
* Fix a typo in a comment in debian/rules.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 13 Jul 2019 20:04:09 +0300
sip4 (4.19.17+dfsg-1) experimental; urgency=medium
* New upstream release.
* Add debian/gitlab-ci.yml file with GitLab CI configuration.
* Fix reproducible build when fixfilepath setting is set.
* Fix hardcoded sip version in debian/not-installed.
* Enable fixfilepath setting to make the CI reprotest pass.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 10 May 2019 12:35:07 +0300
sip4 (4.19.16+dfsg-1) experimental; urgency=medium
* New upstream release (closes: #926904).
* Use dh sequencer and the pybuild buildsystem.
* Remove references to build path from the generated sipconfig.py files.
* Fix dist-packages paths in the sipconfig.py files (LP: #1822733).
* Install the PEP 376 .dist-info directories (but without the RECORD).
* Update debhelper compat level to 12, use the new syntax.
* Simplify the .install files, add debian/not-installed file.
* Install sip and sip3 addons for the dh sequencer.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 25 Apr 2019 20:05:10 +0300
sip4 (4.19.15+dfsg-1) experimental; urgency=medium
* New upstream release.
* Drop pyqt4_no_nullptr.diff, included in the new release.
* Update debian/watch for another upstream change.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 24 Mar 2019 14:17:10 +0300
sip4 (4.19.14+dfsg-1) unstable; urgency=medium
* New upstream release.
* Bump API version to 12.6.
* Backport upstream patch fixing PyQt4 build regression.
* Update debian/watch to use the new tarballs location.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 23 Feb 2019 15:05:07 +0300
sip4 (4.19.13+dfsg-2) unstable; urgency=medium
* Team upload.
* Remove myself from uploaders
* Bump standards-version to 4.3.0 without further change
-- Scott Kitterman <scott@kitterman.com> Sat, 12 Jan 2019 06:21:05 -0500
sip4 (4.19.13+dfsg-1) unstable; urgency=medium
[ Ondřej Nový ]
* Use 'python3 -m sphinx' instead of sphinx-build for building docs
* d/watch: Use https protocol
[ Dmitry Shachnev ]
* New upstream release.
* Remove unnecessary get-orig-source target.
* Update debhelper compat level to 11.
* Install both upstream changelog and NEWS, per Policy 12.7.
* Bump Standards-Version to 4.2.1.
* Update Homepage field.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 05 Oct 2018 11:22:53 +0300
sip4 (4.19.12+dfsg-1) unstable; urgency=medium
* Exclude sipgen/lexer.c and sipgen/parser.{c,h} from the tarball.
* New upstream release.
- Fixes segfault when -n option is not specified (closes: #903263).
* Drop header_install.diff, applied upstream.
* Bump API version to 12.5.
* Build sipgen only once, not for every Python version.
* Stop passing -e option to configure.py, the default value is fine.
* Fix race condition when generating debian/sipconfig_py3.py.
* Bump Standards-Version to 4.1.5, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Sun, 08 Jul 2018 17:03:16 +0300
sip4 (4.19.11+dfsg-1) unstable; urgency=medium
[ Ondřej Nový ]
* d/control: Remove ancient X-Python-Version field
* d/control: Remove ancient X-Python3-Version field
[ Dmitry Shachnev ]
* New upstream release.
* Update debian/copyright.
* Make python-sip depend on python-enum34.
* Document the new -n option in sip.1 manpage.
* Fix installation of siplib/sip.h.
* Simplify installation code in debian/rules.
* Bump Standards-Version to 4.1.4, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 03 Jul 2018 22:24:52 +0300
sip4 (4.19.8+dfsg-1) unstable; urgency=medium
[ Ondřej Nový ]
* d/control: Set Vcs-* to salsa.debian.org
[ Dmitry Shachnev ]
* New upstream bugfix release.
* Bump API version to 12.4.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 10 Mar 2018 09:56:30 +0300
sip4 (4.19.7+dfsg-1) unstable; urgency=medium
* New upstream bugfix release.
* Bump years in debian/copyright.
* Bump Standards-Version to 4.1.3, no changes needed.
* Specify empty DH_OPTIONS when using dh_installdocs with -p argument.
* Add ${python[3]:Depends} to dependencies of python[3]-sip-dbg.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 25 Jan 2018 12:41:02 +0300
sip4 (4.19.6+dfsg-1) unstable; urgency=medium
* New upstream bugfix release.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 25 Nov 2017 14:31:06 +0300
sip4 (4.19.5+dfsg-1) unstable; urgency=medium
* New upstream release.
* Bump API version to 12.3.
* Update debhelper compat level to 10.
* Bump Standards-Version to 4.1.1, no changes needed.
* Remove debian/python-sip-doc.links, not needed with dh_sphinxdoc.
* Use dh_installdocs --link-doc for debug packages.
* Update descriptions of -dbg packages.
* Remove use of ${shlibs:Depends} from -dev packages.
* Remove python*-sip-dbg.postinst files, they were only needed for
upgrades from Wheezy.
* Regenerate dh_sip and dh_sip3 manpages during build using pod2man.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 09 Nov 2017 16:04:40 +0300
sip4 (4.19.3+dfsg-2) unstable; urgency=medium
* Move sip-dbg to automatic dbgsym package (but not python*-sip-dbg).
* Drop Breaks/Replaces on versions that are not even in oldstable.
* Bump Standards-Version to 4.1.0, stop using deprecated Priority: extra.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 23 Sep 2017 21:17:35 +0300
sip4 (4.19.3+dfsg-1) experimental; urgency=medium
* New upstream release.
* Bump API version to 12.2.
* Switch from python-sphinx to python3-sphinx.
* Bump Standards-Version to 4.0.0, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 06 Jul 2017 11:27:34 +0300
sip4 (4.19.2+dfsg-1) experimental; urgency=medium
* New upstream bugfix release.
* Drop python-sip4-dbg Breaks, it was only needed for Stretch.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 08 May 2017 22:42:15 +0300
sip4 (4.19.1+dfsg-3) experimental; urgency=medium
* The “How could I screw it up so badly” upload.
* Fix the Provides syntax in debian/rules.
* Document the new -D option in sip manpage.
* Bump years in debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 15 Feb 2017 22:48:16 +0300
sip4 (4.19.1+dfsg-2) experimental; urgency=medium
* Brown paper bag upload.
* Bump API version to 12.1.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 15 Feb 2017 22:23:50 +0300
sip4 (4.19.1+dfsg-1) experimental; urgency=medium
* New upstream release.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 15 Feb 2017 21:44:36 +0300
sip4 (4.19+dfsg-1) experimental; urgency=medium
[ Scott Kitterman ]
* Remove Michael Casadevall from uploaders due to retirement from Debian
(Closes: #841465)
- Thanks Michael for all your work on sip4
[ Dmitry Shachnev ]
* New upstream release.
* Drop siputils_debian_changes.diff (for experimental upload), I think
it may be no longer needed.
* Bump API version to 12.0.
* Call dh_strip_nondeterminism during build.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 04 Jan 2017 21:53:11 +0300
sip4 (4.18.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Document two new options in sip.1 manpage.
* Regenerate lexer and parser source files during build, using flex
and bison.
* Add repacksuffix=+dfsg option to debian/watch.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 27 Jul 2016 21:10:32 +0300
sip4 (4.18+dfsg-1) unstable; urgency=medium
[ Scott Kitterman ]
* New upstream release
* Update sip provides for new sip API version 11.3
* Bump standards version to 3.9.8 without further change
* Update debian/copyright for 2016
* Adjust debian/rules to copy typehints file (sip.pyi) into the build
directories
* Update debian/python{3}-sip.install to include .pyi file
[ Ondřej Novy ]
* Fixed VCS URL (https)
-- Scott Kitterman <scott@kitterman.com> Fri, 15 Apr 2016 19:47:50 -0400
sip4 (4.17+dfsg-2) unstable; urgency=medium
* Apply debian/rules patch to make package build reproducible (Closes:
#815512)
- Thanks to Reiner Herrmann for the patch
-- Scott Kitterman <scott@kitterman.com> Mon, 22 Feb 2016 16:28:25 -0500
sip4 (4.17+dfsg-1) unstable; urgency=medium
* New upstream release
-- Scott Kitterman <scott@kitterman.com> Sat, 24 Oct 2015 14:19:18 -0400
sip4 (4.16.9+dfsg-2) unstable; urgency=medium
[ Andreas Beckmann ]
* python-sip: Add Breaks against obsolete and buggy transitional
package python-sip4-dbg to ensure its removal. (Closes: #789452)
[ Dmitry Shachnev ]
* Build with Sphinx 1.3.
* Do not compile C code during arch-indep build, to speed it up.
* Move python-sphinx to Build-Depends-Indep.
* Unify indentation in debian/rules.
* Remove unused INSTDIR variable.
-- Dmitry Shachnev <mitya57@debian.org> Mon, 07 Sep 2015 12:10:41 +0300
sip4 (4.16.9+dfsg-1) unstable; urgency=medium
[ Dmitry Shachnev ]
* More minor simplifications to sipconfig wrappers.
[ Scott Kitterman ]
* New upstream release
-- Scott Kitterman <scott@kitterman.com> Sun, 19 Jul 2015 12:17:06 -0400
sip4 (4.16.8+dfsg-2) unstable; urgency=medium
* Fix package names in error messages in sipconfig files.
* Fix Python 3 package name in PY3_PROVIDES.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 25 Jun 2015 12:05:53 +0300
sip4 (4.16.8+dfsg-1) unstable; urgency=medium
* New upstream release.
* Drop fix_methodcode_regression.diff, applied upstream.
* Bump API version to 11.2 (keep 11.0 and 11.1 in provided versions).
-- Dmitry Shachnev <mitya57@debian.org> Sat, 13 Jun 2015 14:12:52 +0300
sip4 (4.16.7+dfsg-2) unstable; urgency=medium
* Bump debhelper compatibility level to 9.
* Be verbose when renaming extension files.
* Add a temporary hack to use upstream stylesheet when building the
documentation with Sphinx 1.2.
* Update sip.1 manpage, some options changed since last update.
* Upload to unstable.
-- Dmitry Shachnev <mitya57@debian.org> Wed, 06 May 2015 21:13:39 +0300
sip4 (4.16.7+dfsg-1) experimental; urgency=medium
* New upstream release.
* Backport upstream patch to fix a regression in this release.
* Merge two siputils patches into a single one.
* Get rid of useless python call in debian/rules.
* Revert upstream change that breaks build with Sphinx 1.2.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 27 Mar 2015 11:17:15 +0300
sip4 (4.16.6+dfsg-1) experimental; urgency=medium
* New upstream release.
* Bump year in debian/copyright.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 27 Feb 2015 16:00:06 +0300
sip4 (4.16.5+dfsg-1) experimental; urgency=medium
* New upstream release.
* Refresh and simplify patches.
* Drop configure.py.patch, no longer needed.
* Update clean and install targets in debian/rules for new version.
* Build-depend on dh-python explicitly.
-- Dmitry Shachnev <mitya57@debian.org> Thu, 25 Dec 2014 14:59:14 +0300
sip4 (4.16.4+dfsg-1) unstable; urgency=medium
* New upstream release.
* Include full copy of SIP license in debian/copyright.
* Bump Standards-Version to 3.9.6, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 24 Oct 2014 10:07:59 +0400
sip4 (4.16.3+dfsg-1) unstable; urgency=medium
* New upstream release.
* Update my e-mail address.
-- Dmitry Shachnev <mitya57@debian.org> Sat, 13 Sep 2014 12:53:42 +0400
sip4 (4.16.2+dfsg-1) unstable; urgency=medium
* New upstream bugfix release
- Refreshed patches
-- Scott Kitterman <scott@kitterman.com> Fri, 04 Jul 2014 11:15:21 -0400
sip4 (4.16.1+dfsg-1) unstable; urgency=medium
* New upstream bugfix release.
* Update sip.1 man page, document new command-line flags.
-- Dmitry Shachnev <mitya57@gmail.com> Mon, 09 Jun 2014 15:56:52 +0400
sip4 (4.16+dfsg-1) unstable; urgency=medium
* New upstream release.
* Bump API version to 11.1 (keep 11.0 in provided versions).
* Update debian/copyright to copyright-format 1.0.
* Add Files-Excluded field to remove HTML documentation, which
contains sourceless minified jquery.
* Simplify debian/watch, and mangle dfsg version.
* Add get-orig-source target to debian/rules.
-- Dmitry Shachnev <mitya57@gmail.com> Sun, 01 Jun 2014 12:38:17 +0400
sip4 (4.15.5-2) unstable; urgency=medium
* Upload to unstable
-- Scott Kitterman <scott@kitterman.com> Fri, 09 May 2014 07:48:12 -0400
sip4 (4.15.5-1) experimental; urgency=low
* New upstream release.
* Bump API version to 11.0.
* debian/rules: Drop Python 2.5 compatibility code.
-- Dmitry Shachnev <mitya57@gmail.com> Tue, 18 Mar 2014 10:40:51 +0400
sip4 (4.15.4-1) unstable; urgency=low
* New upstream bugfix release.
* Adjust python-qwt5-qt4 and python-qwt3d-qt4 breaks, only the newly
uploaded versions work with new sip.
-- Dmitry Shachnev <mitya57@gmail.com> Wed, 08 Jan 2014 19:36:26 +0400
sip4 (4.15.3-1) unstable; urgency=low
[ Dmitry Shachnev ]
* New upstream release.
* Add myself to Uploaders.
[ Scott Kitterman ]
* Bump standards version to 3.9.5 without further change.
-- Dmitry Shachnev <mitya57@gmail.com> Wed, 06 Nov 2013 07:34:12 +0400
sip4 (4.15.2-2) unstable; urgency=low
* Upload to unstable
* Revert workaround for #723070, since it's addressed in dh-python now
-- Scott Kitterman <scott@kitterman.com> Fri, 11 Oct 2013 19:26:33 -0400
sip4 (4.15.2-1) experimental; urgency=low
* New upstream release
- Contains the sip4 part of the fix for recent pykde4 breakage
* Temporarily hard code python3 Depends in python3-sip-dev to work around
breakage in dh-python (See #723070)
-- Scott Kitterman <scott@kitterman.com> Mon, 16 Sep 2013 00:45:10 -0400
sip4 (4.15.1-1) experimental; urgency=low
[ Dmitry Shachnev ]
* Call dh_sphinxdoc after dh_installdocs, to fix build failure with
new debhelper versions.
* Remove wrong debian/python-sip-doc.docs, we install docs manually.
* Don't hardcode depends on libjs-jquery and libjs-underscore,
${sphinxdoc:Depends} takes care of that.
[ Scott Kitterman ]
* New upstream release
-- Scott Kitterman <scott@kitterman.com> Tue, 27 Aug 2013 22:18:05 -0400
sip4 (4.15-1) experimental; urgency=low
* New upstream feature release
- Add 10.1 to sip-api and sip-py3api
-- Scott Kitterman <scott@kitterman.com> Wed, 21 Aug 2013 17:19:27 -0400
sip4 (4.14.7-4) unstable; urgency=medium
* Urgency medium for RC bug fix affecting stable -> testing upgrades
* Clean up symlink versus directory for python/python3-sip-dbg
(Closes: #720156)
- Convert doc directories for -dbg packages to symlinks (as
python-sip-dbg has in wheezy)
- Add python/python3-sip-dbg.postinsts to straighten up existing dirs
- Convert sip-dbg doc dir to symlink to sip-dev
* Exclude sip-dev from dh_python3 processing to fix errors with dh_python3
processing inappropriate files
* Remove install-arch-3.2, now that python3.2 is no longer supported to
simplify debian/rules, bump minimum python3-all-dev version required to
3.3.2-5~
-- Scott Kitterman <scott@kitterman.com> Mon, 19 Aug 2013 08:59:25 -0400
sip4 (4.14.7-3) unstable; urgency=low
* Split usr/bin/sip out of python-sip-dev to fix missing depends for
python3-sip-dev without requiring dragging in all of python-sip for
Python 3 projects
- Add sip-dev to debian/control with breaks/replaces on old python-sip-dev
versions
- Add sip-dev to depends for python-sip-dev and python3-sip-dev
- Update .install and .manpages files for package split
- Add sip-dbg to debian/control and update debian rules
* Remove redundant Recommends on python-sip/python3-sip in the -dev
packages
* Use build Sphinx based documenation from source and use dh_sphinxdoc to
generate dependencies for python-sip-doc
- Add sphinxdoc:Depends to python-sip-doc depends
- Add call to sphinx-build and dh_sphinxdoc in debian/rules
- Add python-sphinx to build-depends
* Update debian/copyright
-- Scott Kitterman <scott@kitterman.com> Wed, 03 Jul 2013 17:33:19 -0400
sip4 (4.14.7-2) unstable; urgency=low
* Fix sip API bump missed in the last upload (Closes: #712669)
- Bump sip-api and sip-py3api to 10.0
- Update python-sip Breaks versions
- Add appropriate Breaks for python3-sip
-- Scott Kitterman <scott@kitterman.com> Tue, 18 Jun 2013 16:47:59 -0400
sip4 (4.14.7-1) unstable; urgency=low
[ Dmitry Shachnev ]
* Fixes for some lintian4python errors:
- Make python3-sip-dev depend on ${python3:Depends}, not ${python:Depends}.
- Bump build-dependency on python-all-dev to (>= 2.7.2-5~), to ensure
that dh_python2 supports --no-dbg-cleaning option.
[ Scott Kitterman ]
* New upstream release
* Added doc-base registration, debian/python-sip-doc.doc-base
-- Scott Kitterman <scott@kitterman.com> Mon, 17 Jun 2013 20:39:47 -0400
sip4 (4.14.6-1) unstable; urgency=low
* Upload to unstable
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
[ Scott Kitterman ]
* New upstream release
- Refreshed patches
- Update sip{3}-api provides for new minor SIP API version
- Update Breaks for new transition
* Drop unused python/python3:Provides
-- Scott Kitterman <scott@kitterman.com> Tue, 07 May 2013 22:48:39 -0400
sip4 (4.14.3-1) experimental; urgency=low
* New upstream release
- Refreshed patches
- Update sip{3}-api provides for new minor SIP API version
- Update debian/copyright
* Add debian uupdate to debian/watch
-- Scott Kitterman <scott@kitterman.com> Wed, 13 Feb 2013 00:45:25 -0500
sip4 (4.14.2-1) experimental; urgency=low
* New upstream release
- Refreshed patches
* Use updated watch file provided by Bart Martens
* Bump standards version to 3.9.4 without further change
-- Scott Kitterman <scott@kitterman.com> Sun, 09 Dec 2012 14:02:36 -0500
sip4 (4.14-5) experimental; urgency=low
* Remove *.preinst scripts as they are no longer needed.
-- Scott Kitterman <scott@kitterman.com> Mon, 05 Nov 2012 23:05:18 -0500
sip4 (4.14-4) experimental; urgency=low
* Give up on doc directory symlinks as not worth the trouble
(Closes: #691442)
-- Scott Kitterman <scott@kitterman.com> Mon, 05 Nov 2012 20:58:12 -0500
sip4 (4.14-3) experimental; urgency=low
* Fix debian/sipconfig_py3.snippet to use sys.abiflags to detect if the
debug build is running instead of the non-existent (in python3)
sys.pydebug
* Add *.preinst to python-sip-dbg, python-sip-dev, python3-sip-dbg, and
python3-sip-dev to remove any potential doc directories that are now
symlinks (Closes: #691442)
-- Scott Kitterman <scott@kitterman.com> Fri, 26 Oct 2012 00:03:20 -0400
sip4 (4.14-2) experimental; urgency=low
* Enable building for multiple supported python3 versions
- Support python3.3 and later file locations
- Generate sipconfig_py3.py during configure to account for different
sipconfig contents for python3.2/3.3
* Update debian/rules to properly install sipconfig data for python3-sip-dbg
* Use/usr/share/doc symlinks for python-sip-dev, python3-sip-dbg, and
python3-sip-dev
-- Scott Kitterman <scott@kitterman.com> Mon, 22 Oct 2012 19:40:12 -0400
sip4 (4.14-1) experimental; urgency=low
* New upstream release
- Update sip-api and sip-py3api for New Sip API version
* Fix debian/watch to work with the current download location
-- Scott Kitterman <scott@kitterman.com> Mon, 01 Oct 2012 01:57:53 -0400
sip4 (4.13.3-2) unstable; urgency=low
* Install sip.h for python3-sip-dev in the correct directories
* Add support for dpkg-buildflags in debian/rules
- Build dbg packages -02 instead of -00 as a consequence
- Add build-depends on dpkg-dev (>= 1.16.1~)
* Add missing build-depends on flex
* Drop unneeded depends on libjs-jquery for python3-sip-dev
-- Scott Kitterman <scott@kitterman.com> Fri, 22 Jun 2012 11:54:27 -0400
sip4 (4.13.3-1) unstable; urgency=low
* New upstream release
- Refresh patches
- Update debian/copyright
* Bump standards-version to 3.9.3 without futher change
* Correct link targets in python-sip-doc.links to point at the current
-doc package and not the old -dev package location
-- Scott Kitterman <scott@kitterman.com> Thu, 21 Jun 2012 14:59:40 -0400
sip4 (4.13.2-1) unstable; urgency=low
* New upstream release
- Refreshed patches
* Split out documentation into a separate package, python-sip-doc since it
is used for both the python and python3 versions of sip4
- Add python-sip-doc.docs/links
- Adjust other docs/links files
- python-sip-dev and python3-sip-dev Suggest python-sip-doc
- Adjust debian/rules to build arch all packages
* Install NEWS as changelog
-- Scott Kitterman <scott@kitterman.com> Sat, 11 Feb 2012 12:47:35 -0500
sip4 (4.13.1-3) unstable; urgency=low
* Add myself to uploaders
* Add debian/dh_sip3 and debian/manpages/dh_sip3.1. Adjust
python3-sip-dev.install and add python3-sip-dev.manpages to ship dh_sip3
for python3 packages
* Add removal of generated files in siplib to clean rule
* Instead of using upstream embedded copy of underscore.js, add
libjs-underscore to python-sip-dev depends and symlink to the docs
-- Scott Kitterman <scott@kitterman.com> Sat, 21 Jan 2012 01:49:54 -0500
sip4 (4.13.1-2) unstable; urgency=low
* Team upload
* Bump Breaks version for to python-qt4 << 4.9~ (Closes: #653293)
-- Scott Kitterman <scott@kitterman.com> Wed, 28 Dec 2011 20:08:42 -0500
sip4 (4.13.1-1) unstable; urgency=low
* Team upload
* New upstream release
* Change python3-sip-dev to depend on python3-dev instead of python-dev
* Update python3-sip-dev short description to refer to python3
* Update python3-sip-dbg short description so it is different than
python3-sip
-- Scott Kitterman <scott@kitterman.com> Fri, 23 Dec 2011 08:52:28 -0500
sip4 (4.13-1) unstable; urgency=low
* Team upload
* New upstream release
* Use --no-dbg-cleaning for python3 too
* Add build-arch: build and build-indep: build to debian/rules
-- Scott Kitterman <scott@kitterman.com> Sat, 29 Oct 2011 11:50:01 -0400
sip4 (4.12.4-1) unstable; urgency=low
* Team upload
* New upstream release
* Remove obsolete debian/source/lintian-overrides
* Fix typo in last changelog entry
* Replace hack in debian/rules with --no-dbg-cleaning and bump minimun
python version to 2.6.7-3~
* Add hack in debian/rules back for dh_python3 and wait for it to grow
--no-dbg-cleaning
* Stop doing things in binary-indep since we no longer build any arch all
packages
-- Scott Kitterman <scott@kitterman.com> Wed, 24 Aug 2011 10:22:09 -0400
sip4 (4.12.3-1) unstable; urgency=low
* Team upload
[ Scott Kitterman ]
* New upstream release (No API version change)
- Refresh and adapt patches
* Switch to dh_python2
- Update debian/rules
- Drop python-support build-depends
* Bump standards version to 3.9.2 without further change
* Remove Bernd Zeimetz from Uploaders at his request
- Thanks to bzed for all his work on the package
-- Scott Kitterman <scott@kitterman.com> Fri, 29 Jul 2011 19:24:24 -0400
sip4 (4.12.1-1) unstable; urgency=low
* Team upload.
[ Michael Casadevall ]
* Merged in patch from Per W for Python 3 support, thank you.
* Add lintian overrides for incorrect warnings
[ Michał Zając ]
* New upstream release
* Added Python 3 support (Closes: #587072)
- support default Python 3 interpreter only for now
- debian/rules: added dh_python3
- debian/rules: added install-arch-3.%
- debian/rules: added substvars to keep provides up-to-date
- debian/control: python-sip provides sip-api-8.0 and 8.1
- debian/control: python3-sip provides sip-py3api-8.0 and 8.1
* Added configure.py.patch, fixes FTBFS
* debian/patches/siputils_debian_changes.diff
- Refreshed
[ Piotr Ożarowski ]
* Change source package name to sip4 (Closes: #535599)
* Do not compress objects.inv file (Closes: #608772)
* Drop transitional packages: python-sip4, sip4, python-sip4-dev,
python-sip4-dbg
-- Piotr Ożarowski <piotr@debian.org> Mon, 24 Jan 2011 19:31:28 +0100
sip4-qt3 (4.10.2-1) unstable; urgency=low
* New upstream release
-- Torsten Marek <shlomme@debian.org> Sun, 18 Apr 2010 18:06:56 +0200
sip4-qt3 (4.10.1-2) unstable; urgency=low
* debian/control
- Added the old python-qscintilla2 package to Breaks: of python-sip4,
since it wasn't updated correctly in some cases
(Closes: #571203)
-- Torsten Marek <shlomme@debian.org> Thu, 15 Apr 2010 09:23:42 +0200
sip4-qt3 (4.10.1-1) unstable; urgency=low
* New upstream release
* debian/control
- python-sip also provides sip-api-7.1
* debian/rules
- upstream changelog is not shipped any more
-- Torsten Marek <shlomme@debian.org> Wed, 24 Mar 2010 19:22:46 +0100
sip4-qt3 (4.10-2) unstable; urgency=low
* Upload to unstable (Closes: #552511)
* siputils.py does not check errno any more (Closes: #560418)
* debian/control
- Updated standards version to 3.8.4, no changes necessary
- Make python-sip4 break those packages that do not depend on
python2.x-sip4 or a specific version of python-sip4
* debian/manpages/dh_sip.1
- Create man page for dh_sip
* debian/manpages/sip.1
- Update man page for sip
* debian/README.source
- Removed, not needed for source format "3.0 (quilt)"
-- Torsten Marek <shlomme@debian.org> Tue, 02 Feb 2010 21:27:14 +0100
sip4-qt3 (4.10-1) experimental; urgency=low
* New upstream release (Closes: #558680)
* Convert to source format "3.0 (quilt)"
* debian/patches/01_configure
- Dropped, applied upstream
* debian/control
- Renamed all packages from *sip4* to sip
- Added transitional packages
- Merged sip4 into python-sip-dev
- python-sip now has the public API in the provides field (Closes: #554024)
* debian/dh_sip
- Added debhelper script that generates substvars for packages
that directly depend on python-sip
* debian/rules
- Drop dpatch handling
* debian/patches/siputils_debian_changes.diff
- Updated to only include debian-specific patches
* debian/patches/siputils_objdir_module_fix.diff
- Fixed a bug that broke out-of-tree building of moc object files
-- Torsten Marek <shlomme@debian.org> Tue, 26 Jan 2010 23:57:37 +0100
sip4-qt3 (4.9-1) unstable; urgency=high
* New upstream release that corrects a licensing issue
(Closes: #543730) (LP: #444742)
* Justificatoin of urgency=high due to licensing in testing
* debian/patches/01_configure.dpatch:
- Refreshed for new source version
* debian/patches/02_siputils.dpatch:
- Refreshed for new source version
* Updated copyright file to reflect new licensing terms
-- Michael Casadevall <mcasadevall@debian.org> Tue, 06 Oct 2009 13:26:13 -0400
sip4-qt3 (4.8.2-1) unstable; urgency=low
[ Torsten Marek ]
* New upstream release
* debian/rules
- Fix rule dependencies to allow parallel builds
[ Michael Casadevall ]
* debian/control:
- Bumped standard version to 3.8.3
- Update Maintainer field to Python Modules Packaging Team (Closes: #540937)
- Add myself to uploaders
- Added XS-Python-Version field
- Bumped debhelper build-dep to 7
* debian/README.source
- New file to explain patch system
-- Torsten Marek <shlomme@debian.org> Fri, 28 Aug 2009 20:22:06 +0200
sip4-qt3 (4.8.1-1) unstable; urgency=low
* New upstream release
-- Torsten Marek <shlomme@debian.org> Thu, 18 Jun 2009 20:33:33 +0200
sip4-qt3 (4.8-1) unstable; urgency=low
[ Torsten Marek ]
* New upstream release
* Removed debian/pycompat, not needed anymore
* debian/control
- Add dependency to libjs-jquery since sip4's docs are
now done using sphinx
* debian/rules
- Install configuration modules in python-sip4{,-dbg} instead of
python-sip4-dev (Closes: #530846)
[ Bernd Zeimetz ]
* Fixing override disparity: Set 'debug' as sectiong for the -dbg package.
* Bumping Standards-Version to 3.8.1, no changes needed.
* Migrating to python-support.
* Merging changes from Ubuntu to build for Python 2.6. We
don't use python-central stuff, though.
-- Torsten Marek <shlomme@debian.org> Tue, 09 Jun 2009 22:18:29 +0200
sip4-qt3 (4.7.9-2) unstable; urgency=low
* Upload to unstable as the package is needed for KDE4.
* Adding myself to Uploaders.
-- Bernd Zeimetz <bzed@debian.org> Sun, 05 Apr 2009 20:52:40 +0200
sip4-qt3 (4.7.9-1) experimental; urgency=low
[ Torsten Marek ]
* New upstream release
[ Sandro Tosi ]
* debian/control
- switch Vcs-Browser field to viewsvn
-- Torsten Marek <shlomme@debian.org> Sat, 22 Nov 2008 18:38:16 +0100
sip4-qt3 (4.7.7-1) experimental; urgency=low
* New upstream release
-- Torsten Marek <shlomme@debian.org> Tue, 12 Aug 2008 08:10:22 +0200
sip4-qt3 (4.7.6-1) unstable; urgency=low
[ Torsten Marek ]
* New upstream release
[ Sandro Tosi ]
* debian/control
- updated Homepage field; Closes: #484595
- bump Standards-Version to 3.8.0 (no changes needed)
* debian/watch
- updated
-- Torsten Marek <shlomme@debian.org> Wed, 11 Jun 2008 23:19:27 +0200
sip4-qt3 (4.7.4-1) unstable; urgency=low
* New upstream release 4.7.4
-- Torsten Marek <shlomme@debian.org> Thu, 14 Feb 2008 23:16:48 +0100
sip4-qt3 (4.7.3-2) UNRELEASED; urgency=low
* debian/control
- uniforming both Vcs-Vsn and Vcs-Browser fields
-- Sandro Tosi <matrixhasu@gmail.com> Thu, 03 Jan 2008 11:40:01 +0100
sip4-qt3 (4.7.3-1) unstable; urgency=low
[ Piotr Ożarowski ]
* Rename XS-Vcs-* fields to Vcs-* (dpkg supports them now)
[ Torsten Marek ]
* New upstream release.
* Bumped standards version to 3.7.3, no changes necessary.
-- Torsten Marek <shlomme@debian.org> Sun, 16 Dec 2007 14:54:53 +0100
sip4-qt3 (4.7.1-1) unstable; urgency=low
[ Piotr Ożarowski ]
* XS-Vcs-Svn, XS-Vcs-Browser and Homepage fields added
[ Torsten Marek ]
* New upstream release.
* Expose private members of sipconfig_*.py as well. (Closes: #444259)
-- Torsten Marek <shlomme@debian.org> Sun, 30 Sep 2007 14:03:51 +0200
sip4-qt3 (4.7-5) unstable; urgency=low
* Upload to unstable.
-- Torsten Marek <shlomme@debian.org> Sun, 16 Sep 2007 00:16:59 +0200
sip4-qt3 (4.7-4) experimental; urgency=low
* Added DPMT to Uploaders field.
* Merge back changes from Ubuntu, including:
* Better debian/rules file
* Support for debug packages
-- Torsten Marek <shlomme@debian.org> Sat, 08 Sep 2007 22:25:09 +0200
sip4-qt3 (4.7-3) unstable; urgency=low
* Handle DEB_BUILD_OPTIONS settings correctly
-- Torsten Marek <shlomme@debian.org> Fri, 31 Aug 2007 22:21:15 +0200
sip4-qt3 (4.7-2) unstable; urgency=low
* Add proper dependencies to python-sip4-dev (Closes: #435788)
-- Torsten Marek <shlomme@debian.org> Sun, 12 Aug 2007 11:05:21 +0200
sip4-qt3 (4.7-1) unstable; urgency=low
* New upstream release
* sipconfig.py and sipdistutils.py have been moved to python-sip4-dev
* python-sip4-dev does not depend on python-sip4 any more, only
recommends it
* Updated the sip.1 manpage.
-- Torsten Marek <shlomme@debian.org> Tue, 31 Jul 2007 19:30:26 +0200
sip4-qt3 (4.6-1) unstable; urgency=low
* New upstream release
-- Torsten Marek <shlomme@debian.org> Mon, 07 May 2007 21:03:27 +0200
sip4-qt3 (4.5.2-1) experimental; urgency=low
* New upstream release
* Removed patches needed to build against Qt 4.2
-- Torsten Marek <shlomme@debian.org> Wed, 6 Dec 2006 19:40:13 +0100
sip4-qt3 (4.4.5-4) unstable; urgency=medium
* The "backport-shmackport" release
* Support Qt 4.2's mkspecs files
* Remove the QtAssistantClient hack since QtAssistantClient is
now a shared object
* Urgency=medium since fixed PyQt4 depends on changes in
this packge
-- Torsten Marek <shlomme@debian.org> Mon, 16 Oct 2006 23:23:59 +0200
sip4-qt3 (4.4.5-3) unstable; urgency=low
* Hack the hack for the library dependencies,
add an exception for QtAssitantClient
* Added debian/pycompat
-- Torsten Marek <shlomme@debian.org> Sun, 3 Sep 2006 15:35:38 +0200
sip4-qt3 (4.4.5-2) unstable; urgency=low
* Fix typo in debian/rules: pyversions argument should be -vr, not -vs
* Add replaces and conflicts to python-sip4-dev (Closes: #375117)
-- Torsten Marek <shlomme@debian.org> Mon, 26 Jun 2006 19:16:02 +0200
sip4-qt3 (4.4.5-1) unstable; urgency=low
* Acknowledge NMU
* New upstream release
* Fix dependency of dev packages (Closes: #374661)
-- Torsten Marek <shlomme@debian.org> Wed, 21 Jun 2006 19:18:18 +0200
sip4-qt3 (4.4.3-1.1) unstable; urgency=low
* Convert to the updated Python policy. Closes: #373383.
-- Matthias Klose <doko@debian.org> Mon, 19 Jun 2006 21:34:32 +0000
sip4-qt3 (4.4.3-1) unstable; urgency=low
* New upstream release
* Install sipconfig.py again
* Install sipdistutils.py
* Changed my email address to shlomme@debian.org
* Added watch file
* Drop the -qt3 suffix from the Python module packages, as sip4
supports Qt3 and Qt4 now
* Clean up debian/rules (use binary-common)
* Build-depend on python-all-dev
-- Torsten Marek <shlomme@debian.org> Thu, 27 Apr 2006 13:22:21 +0200
sip4-qt3 (4.3.1-1) unstable; urgency=low
* New upstream release
* Include upstream changelog
-- Torsten Marek <shlomme@gmx.net> Sun, 11 Sep 2005 17:03:43 +0200
sip4-qt3 (4.3-1) unstable; urgency=low
* New upstream release
* Updated standards version to 3.6.2
* Removed Conflicts: with packages that do not exist in Debian any more
* g++ ABI transition (closes: Bug#325982)
* Removed README.Debian. It was for sip3 and has no meaning with
sip4.
-- Torsten Marek <shlomme@gmx.net> Thu, 1 Sep 2005 01:01:28 +0200
sip4-qt3 (4.2.1-1) unstable; urgency=low
* New upstream release
* Added packages for Python 2.4
* Standards version updated to 3.6.1.0
* Build-depends adapted (python2.3-dev and python2.4-dev),
autoconf, bison and flex removed
* The sip4 build system has been tweaked in several ways
to allow parrallel builds for different versions of Python
-- Torsten Marek <shlomme@gmx.net> Sun, 6 Mar 2005 23:30:53 +0100
sip4-qt3 (4.1.1-1) unstable; urgency=low
* New upstream release.
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Tue, 30 Nov 2004 11:54:41 +0000
sip4-qt3 (4.1-1) unstable; urgency=low
* New upstream release.
* Added the programming reference to sip4 package.
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Thu, 23 Sep 2004 00:15:43 +0100
sip4-qt3 (4.0.1-2) unstable; urgency=low
* Added package python-sip4-dev
(closes: Bug#272856)
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Wed, 22 Sep 2004 16:25:53 +0100
sip4-qt3 (4.0.1-1) unstable; urgency=low
* New upstream release
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 9 Aug 2004 18:27:57 +0100
sip4-qt3 (4.0-2) unstable; urgency=low
* Changed Build-Depends on python2.3-dev to python-dev
(closes: Bug#257912)
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Tue, 6 Jul 2004 18:28:25 +0100
sip4-qt3 (4.0-1) unstable; urgency=low
* New upstream release
* Changed the
* Fixed the debian/copyright file, stating the correct license.
The new license is a derivative of PSF's Python License, only
changing references to the licenser, so it's still free and
GPL-compatible. It doesn't closes bug 255066 because it refers
to the old source package.
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Thu, 10 Jun 2004 00:54:30 +0100
sip-qt3 (3.10.1-2) unstable; urgency=low
* Removed reference to python-qt2 binaries from python2.3-sip-dev
Depends line (closes: Bug#245650)
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Sat, 24 Apr 2004 17:01:10 +0100
sip-qt3 (3.10.1-1) unstable; urgency=low
* New upstream release
* Corrected some dh_make boilerplate on copyright file.
* Corrected upstream's changelog file name (closes: Bug#217159)
* sip4 will support Qt >= 3.0 and Python >= 2.3, so I'm releasing
only Python 2.3 packages from right now.
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Sat, 3 Jan 2004 17:14:02 +0000
sip-qt3 (3.8-2) unstable; urgency=low
* Compiled against Qt 3.2, which substracts a symbol from the API.
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Sat, 3 Jan 2004 17:13:46 +0000
sip-qt3 (3.8-1) unstable; urgency=low
* New upstream release
* Support for Python 2.3
* Changed default version to Python 2.3
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 18 Aug 2003 23:30:13 +0100
sip-qt3 (3.7-1) unstable; urgency=low
* New upstream release
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Sun, 6 Jul 2003 18:44:41 +0100
sip-qt3 (3.6-1) unstable; urgency=low
* New upstream version
* Stripped 'c102' from names. The soname has changed.
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 28 Apr 2003 01:09:38 +0100
sip-qt3 (3.5-3) unstable; urgency=low
* Compiled with G++ 3.2. Changed the name of the packages providing
shared runtimes according to G++ 3.2 transition plan.
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 3 Feb 2003 22:05:17 +0000
sip-qt3 (3.5-2) unstable; urgency=low
* Compiled against Qt 3.1.1-CVS
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 30 Dec 2002 16:32:57 +0000
sip-qt3 (3.5-1) unstable; urgency=low
* New upstream version
* Now sip-qt3 produces some packages (sip, pythonX.Y-sip-dev) that were
previously at sip-qt2.
* Upgraded debhelper dependency to >= 4.0
* Changed debian/rules acordingly
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Thu, 12 Dec 2002 00:33:08 +0000
sip-qt3 (3.4+20021126-2) unstable; urgency=low
* Compiled with -fno-exceptions
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Wed, 27 Nov 2002 02:14:50 +0000
sip-qt3 (3.4+20021114-2) unstable; urgency=low
* Added -dev packages
* Fixed some bugs on debian/rules
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Sun, 24 Nov 2002 20:13:16 +0000
sip-qt3 (3.4+20021114-1) unstable; urgency=low
* Update to development version
* Now generating python-sip, which depends on the default python
version libsip package
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Sun, 24 Nov 2002 04:35:47 +0000
sip-qt3 (3.4-1) unstable; urgency=low
* New upstream version
* License change
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Tue, 10 Sep 2002 23:24:09 +0100
sip-qt3 (3.3.2-1) unstable; urgency=low
* New upstream version
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Sat, 10 Aug 2002 15:51:42 +0100
sip-qt3 (3.3+rc2-1) unstable; urgency=low
* Update to upstream version
* Changed configuration system
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Sat, 29 Jun 2002 17:53:31 +0100
sip-qt3 (3.2.4-1) unstable; urgency=low
* Update to upstream version
* First version of this source package
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 6 May 2002 14:20:03 +0100
sip (2.5-3) unstable; urgency=low
* ACK previous NMU. (closes: Bug#127131)
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Tue, 23 Apr 2002 19:59:44 +0100
sip (2.5-2.2) unstable; urgency=low
* Non-maintainer upload: Since I made the dependencies of python versioned,
I also have to make the build-dependencies versioned.
-- Gregor Hoffleit <flight@debian.org> Mon, 31 Dec 2001 11:33:27 +0100
sip (2.5-2.1) unstable; urgency=medium
* Non-maintainer upload: rebuilt for Python 2.2 (closes: #120709).
sip's configure calls up 'python' and sets the include path for the
Python header files according to its sys.version. Therefore, a
Build-Depends on "python-dev" suffices to build a current package
python-pyqt at any time. What was missing was the installation time
Depends on "python (>= 2.1), python (<< 2.2)".
* sip and python-pyqt hold back the removal of python-base, therefore
an medium urgency.
-- Gregor Hoffleit <flight@debian.org> Mon, 31 Dec 2001 00:45:30 +0100
sip (2.5-2) unstable; urgency=low
* Previous revision seemed Debian native, as it were not uploaded with
the companion .diff.gz file.
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 13 Aug 2001 03:37:52 +0100
sip (2.5-1) unstable; urgency=low
* Upstream upgrade
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Mon, 13 Aug 2001 03:28:52 +0100
sip (2.4-1) unstable; urgency=low
* Upstream upgrade
-- Ricardo Javier Cardenes Medina <rcardenes@debian.org> Thu, 14 Jun 2001 12:56:44 +0100
sip (2.2-1) unstable; urgency=low
* Initial Release.
-- Ricardo Javier Cardenes Medina <a1402@dis.ulpgc.es> Tue, 28 Nov 2000 23:30:23 +0000
Local variables:
mode: debian-changelog
End:
|