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 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739
|
gjs (1.84.1-1) experimental; urgency=medium
* New upstream release
* Bump minimum meson
* Bump minimum gtk3 for build test fixes
* debian/libgjs0g.symbols: Update
* Opt into Salsa CI
-- Jeremy Bícha <jbicha@ubuntu.com> Sat, 29 Mar 2025 18:13:51 -0400
gjs (1.82.1-1) unstable; urgency=medium
* Team upload
* New upstream release
- Fix a gnome-shell crash during GC when switching between users,
found by Fedora openQA
* Remove version constraints unnecessary since Debian 11
* d/control: Switch dependencies from libgirepository1.0-dev to
libgirepository-1.0-dev.
The former is not multi-arch co-installable, the latter is.
* Add missing Build-Depends on gir1.2-cairo-1.0-dev
* Add missing Build-Depends on gir1.2-girepository-2.0-dev
-- Simon McVittie <smcv@debian.org> Wed, 06 Nov 2024 13:25:30 +0000
gjs (1.82.0-2) unstable; urgency=medium
* Release to unstable
-- Jeremy Bícha <jbicha@ubuntu.com> Fri, 20 Sep 2024 09:45:04 -0400
gjs (1.82.0-1) experimental; urgency=medium
* New upstream release
* Remove all patches: applied in new release
-- Jeremy Bícha <jbicha@ubuntu.com> Tue, 17 Sep 2024 08:17:54 -0400
gjs (1.81.90-2) experimental; urgency=medium
* Team upload
* d/p/installed-tests-Fix-the-search-path-that-is-compiled-into.patch:
Mark patch as applied upstream
* d/p/arg-cache-Init-out-parameters-with-correct-number-of-bits.patch:
Fix out-argument initialization on 32-bit instead of skipping the test
- d/p/Skip-testUninitializedOutParameter-for-now.patch:
Drop patch, no longer needed
-- Simon McVittie <smcv@debian.org> Thu, 12 Sep 2024 12:34:38 +0100
gjs (1.81.90-1) experimental; urgency=medium
* New upstream release candidate
* d/copyright: Update
* d/watch.devel: Add a watch file for upstream prereleases
* d/p/installed-tests-fix-libexecdir.patch:
Drop patch, applied upstream
* d/p/installed-tests-Fix-the-search-path-that-is-compiled-into.patch:
Add proposed patch to fix autopkgtest failures (Closes: #1079499)
* d/p/Skip-testUninitializedOutParameter-for-now.patch:
Add patch to skip a newly-added test that fails on 32-bit
architectures (workaround for GNOME/gjs#642)
* Run tests using dbus-run-session instead of dbus-x11.
This avoids pulling in backwards-compatibility code in
/etc/X11/Xsession.d.
* Fix some Lintian warnings
-- Simon McVittie <smcv@debian.org> Fri, 06 Sep 2024 12:53:52 +0100
gjs (1.81.2-2) experimental; urgency=medium
* Enable sysprof profiling support on available architectures
* Add patch to fix autopkgtest libexecdir
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 14 Aug 2024 23:52:56 -0400
gjs (1.81.2-1) experimental; urgency=medium
* New upstream release
* Build with mozjs128
* debian/libgjs0g.symbols: Add new symbols
* Bump Standards Version to 4.7.0
-- Jeremy Bícha <jbicha@ubuntu.com> Thu, 08 Aug 2024 07:57:14 -0400
gjs (1.80.2-1) unstable; urgency=medium
* New upstream release
- Fix ppc64el build (Closes: #1065613)
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 27 Mar 2024 08:45:30 -0400
gjs (1.80.1-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Sat, 23 Mar 2024 07:42:59 -0400
gjs (1.80.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 20 Mar 2024 16:05:23 -0400
gjs (1.79.90-1) unstable; urgency=medium
* New upstream release
* Update Homepage
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 06 Mar 2024 16:24:40 -0500
gjs (1.79.3-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 12 Feb 2024 15:51:42 -0500
gjs (1.78.3-1) unstable; urgency=medium
* New upstream release
- Fixes GNOME Shell Extensions preferences dialog closing after
few seconds (LP: #2048931)
* Add Build-Depends: gir1.2-gio-2.0-dev, gir1.2-gobject-2.0-dev
* Run wrap-and-sort
-- Jeremy Bícha <jbicha@ubuntu.com> Fri, 19 Jan 2024 07:52:28 -0500
gjs (1.78.2-2) unstable; urgency=medium
* Include changes from 1.78.1-3
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 08 Jan 2024 14:27:41 -0500
gjs (1.78.2-1) unstable; urgency=medium
* New upstream release
* debian/control: Drop obsolete Breaks, Conflicts, Replaces
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 08 Jan 2024 14:21:04 -0500
gjs (1.78.1-3) unstable; urgency=medium
* libgjs0g: Explicitly depend on all typelibs imported by built-in
modules.
imports.package depends on GLib, GObject and Gio, not just
GIRepository. In practice gir1.2-girepository-2.0 (or the package
that provides it) will pull in all of those, so this is really just
for completeness.
-- Simon McVittie <smcv@debian.org> Fri, 29 Dec 2023 18:29:48 +0000
gjs (1.78.1-2) unstable; urgency=medium
* Team upload
* d/control: libgjs0g Depends on gir1.2-girepository-2.0.
This is used internally, and is likely to need to be separated from
gir1.2-glib-2.0 during the GNOME 46 (GLib 2.79/2.80) cycle. At the
moment, it is a virtual package provided by the gir1.2-glib-2.0
package.
-- Simon McVittie <smcv@debian.org> Thu, 28 Dec 2023 22:04:23 +0000
gjs (1.78.1-1) unstable; urgency=medium
* New upstream release (LP: #2045699)
* Stop using debian/control.in and dh-sequence-gnome
-- Jeremy Bícha <jbicha@ubuntu.com> Tue, 05 Dec 2023 17:15:40 -0500
gjs (1.78.0-1) unstable; urgency=medium
* New upstream release
* Switch from mozjs102 to 115 (LP: #2034276)
* Drop all patches: applied in new release
* debian/libgjs0g.symbols: Add new symbol
-- Jeremy Bícha <jbicha@ubuntu.com> Sat, 21 Oct 2023 13:18:49 -0400
gjs (1.76.2-4) unstable; urgency=medium
* Team upload
[ Jeremy Bícha ]
* Revert "d/rules, d/meson/no-exe-wrapper.ini: Work around FTBFS
on mips64el". meson 1.2.1 fixed the underlying issue.
[ Simon McVittie ]
* d/p/function-Always-initialize-callback-return-value.patch:
Add patch backported from upstream 1.77.1 avoiding infinite loops
of idle callbacks if an idle handler is called during GC. The most
common reason for this is if a GNOME Shell extension incorrectly does
not disconnect all of its signal/idle/timeout handlers. This change
mitigates the infinite loop and associated log flooding, but does not
fix the extension behaviour. (Closes: #1034356)
-- Simon McVittie <smcv@debian.org> Thu, 17 Aug 2023 11:34:22 +0100
gjs (1.76.2-3) unstable; urgency=medium
* Team upload
* d/rules, d/meson/no-exe-wrapper.ini: Work around FTBFS on mips64el
(Mitigates: #1041499)
-- Simon McVittie <smcv@debian.org> Sat, 22 Jul 2023 00:44:58 +0100
gjs (1.76.2-2) unstable; urgency=medium
* Update debian/upstream/metadata
* Update standards version to 4.6.2, no changes needed
* Release to unstable
-- Jeremy Bícha <jbicha@ubuntu.com> Fri, 21 Jul 2023 06:59:46 -0400
gjs (1.76.2-1) experimental; urgency=medium
* New upstream release (LP: #2023571)
* Drop all patches: applied in new release
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 14 Jun 2023 18:44:22 -0400
gjs (1.76.1-1) experimental; urgency=medium
* New upstream release (LP: #2023571)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 12 Jun 2023 18:53:58 +0200
gjs (1.76.0-3) experimental; urgency=medium
* debian/patches: Drop patch causing GNOME Characters not to show emojis
(LP: #2015948)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 12 Apr 2023 05:40:15 +0200
gjs (1.76.0-2) experimental; urgency=medium
[ Daniel van Vugt ]
* Add context-Clear-all-vectors-of-JS-Heap-on-dispose.patch (LP: #1974293)
[ Marco Trevisan (Treviño) ]
* debian/patches: Do not leak GVariants and other handled objects
(LP: #1991709, #2012978)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 12 Apr 2023 04:42:41 +0200
gjs (1.76.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 27 Mar 2023 08:45:59 -0400
gjs (1.75.90-1) experimental; urgency=medium
* New upstream release
* Drop all patches: applied in new release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 07 Mar 2023 12:37:19 -0500
gjs (1.75.2-2) experimental; urgency=medium
* debian/patches: Correctly convert signed char from and to GValue's.
Fixes a test error in some archs including arm64, s390x, armhf and ppc.
* debian/patches: Support virtual functions and callbacks returning
transfer-none strings.
This is something used by some extensions (dash-to-dock), so we need to
support them without leaking.
* debian/rules: Use unity builds.
It can produce faster builds and faster code, and gjs supports it
upstream (running a CI job to check it works) so let's use it.
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 23 Feb 2023 22:20:58 +0100
gjs (1.75.2-1) experimental; urgency=medium
* New upstream release
* Bump minimum gobject-introspection to 1.71
* Revert branching for bookworm
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 21 Feb 2023 08:28:32 -0500
gjs (1.74.2-1) unstable; urgency=medium
* New upstream release
* debian/gbp.conf, debian/control.in: Branch for bookworm
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 21 Feb 2023 07:13:29 -0500
gjs (1.74.1-1) unstable; urgency=medium
* Team upload
* New upstream stable release
* Build-/test-depend on dbus-daemon instead of dbus.
This is sufficient to provide dbus-run-session.
* Update Lintian override syntax
* Set field Upstream-Name in debian/copyright
* Update standards version to 4.6.1 (no changes needed)
* d/upstream/metadata: Add
* d/watch, d/gbp.conf: Only watch for stable releases.
We'll follow 1.74.x for Debian 12.
-- Simon McVittie <smcv@debian.org> Tue, 15 Nov 2022 09:03:01 +0000
gjs (1.74.0-2) unstable; urgency=medium
* Release to unstable
-- Jeremy Bicha <jbicha@ubuntu.com> Sat, 24 Sep 2022 23:34:26 -0400
gjs (1.74.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 21 Sep 2022 07:57:12 -0400
gjs (1.73.2-1) experimental; urgency=medium
* New upstream release
* Build against mozjs102
* debian/libgjs0g.symbols: Add new symbol
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 24 Aug 2022 14:43:34 -0400
gjs (1.73.1-2) unstable; urgency=medium
* Rebuild against latest mozjs91 (Closes: #1017063)
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 12 Aug 2022 21:33:27 -0400
gjs (1.73.1-1) unstable; urgency=medium
* New upstream release
* debian/control.in: Bump minimum meson to 0.54.0
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 03 Aug 2022 11:51:35 -0400
gjs (1.72.0-4) unstable; urgency=medium
[ Simon McVittie ]
* d/copyright: Replace CC0-1.0 text with a reference to common-licenses
[ Jeremy Bicha ]
* Cherry-pick patch to fix memory leak seen when taking screenshots
(LP: #1973638)
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 29 Jun 2022 08:40:12 -0400
gjs (1.72.0-3) unstable; urgency=medium
* debian/patches: Correctly generate camelCase properties on all locales.
And particularly looking at Turkish one. (LP: #1969838)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 28 Apr 2022 22:24:50 +0200
gjs (1.72.0-2) unstable; urgency=medium
* Upload to unstable
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 23 Mar 2022 10:48:56 -0400
gjs (1.72.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 22 Mar 2022 08:09:08 -0400
gjs (1.71.90-1) experimental; urgency=medium
[ Jeremy Bicha ]
* New upstream release
* Drop all patches: applied in new release
[ Marco Trevisan (Treviño) ]
* debian/gjs.examples: Install JS examples
* debian/control: Use clearer short descriptions for packages
* debian/changelog: Remove trailing spaces
* debian/control: Remove libgjs-dev dependency on gjs
* debian/control: Remove duplicated build-dependency on libcairo2-dev
* debian/gjs-tests.lintian-overrides: Ignore link error on d'loaded libs
-- Jeremy Bicha <jeremy.bicha@canonical.com> Tue, 08 Mar 2022 15:37:21 -0500
gjs (1.71.1-1) experimental; urgency=medium
* New upstream release:
- New JavaScript features! This version of GJS is based on SpiderMonkey 91
For more information, look them up on MDN or devdocs.io
- It's now possible to pass BigInt values to GObject-introspected functions
with 64-bit parameters
* debian/patches: Cherry-pick upstream test fixes
* debian/patches: Do not crash on instanceof checks on interfaces
(LP: #1960898)
* debian/patches: Correctly handle later handled promises rejections
* debian/control: Bump dependency on mozjs-91
* debian/libgjs0g.symbols: Include new symbols
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Tue, 22 Feb 2022 12:26:43 +0100
gjs (1.70.1-1) unstable; urgency=medium
* New upstream release
* Drop all patches: applied in new release
-- Jeremy Bicha <jeremy.bicha@canonical.com> Tue, 08 Feb 2022 08:38:53 -0500
gjs (1.70.0-4) unstable; urgency=medium
* Team upload
* d/p/arg-Replace-gsize-with-size_t.patch,
d/p/Handle-optional-out-parameters-in-callbacks.patch:
Include all patches from upstream gnome-41 branch up to
1.70.0-4-g62025d4a2
- Fix FTBFS on some 32-bit architectures where size_t is unsigned long
but gsize is unsigned int
- Allow optional 'out' parameters in callbacks to be NULL
* d/p/build-disable-gir-install-via-list-to-pacify-meson-0.60.2.patch:
Add patch from upstream to fix FTBFS with meson 0.60.2 (Closes: #1002101)
* d/p/installed-tests-Install-matchers.js.patch:
Make cosmetic changes to match the version applied upstream
* d/p/build-Link-with-libatomic-if-necessary.patch:
Mark as applied upstream
-- Simon McVittie <smcv@debian.org> Tue, 21 Dec 2021 19:39:35 +0000
gjs (1.70.0-3) unstable; urgency=medium
* Team upload
* Upload to unstable
-- Simon McVittie <smcv@debian.org> Fri, 15 Oct 2021 09:36:07 +0100
gjs (1.70.0-2) experimental; urgency=medium
* Team upload
* d/p/build-Link-with-libatomic-if-necessary.patch:
Add patch to link with libatomic if needed (Closes: #995930)
-- Simon McVittie <smcv@debian.org> Fri, 08 Oct 2021 12:28:11 +0100
gjs (1.70.0-1) experimental; urgency=medium
* Team upload
* New upstream release, required by GNOME Shell 41
* d/copyright: Update
* Update mozjs dependency version
* d/rules: Look for typelibs in build directory during smoke-test
* d/libgjs0g.symbols: Add new symbols
* d/libgjs0g.symbols: Ignore removal of private function gjs_open_bytes().
This was not in public headers, and is only exposed in the ABI so that
tests can call it.
* Use a UTF-8 locale to run installed-tests.
Some of the command-line tests rely on this.
* d/p/installed-tests-Install-matchers.js.patch:
Add patch to fix installed-tests failure
-- Simon McVittie <smcv@debian.org> Tue, 21 Sep 2021 17:01:56 +0100
gjs (1.68.4-1) unstable; urgency=medium
* New upstream release
* debian/rules: Simplify a bit
-- Jeremy Bicha <jbicha@debian.org> Sat, 18 Sep 2021 15:52:33 -0400
gjs (1.68.3-1) unstable; urgency=medium
* New upstream stable release
* d/shlibs.local: Give gjs a lockstep dependency on libgjs0g.
For external packages like gnome-shell, ${shlibs:Depends} should generate
a dependency on libgjs0g (>= some version) as usual, but for binary
packages from the same source package we should not allow partial
upgrades.
* d/control.in: Move Breaks from gjs to libgjs0g.
It's really the updated libgjs that will break old GJS applications,
not the updated gjs command-line executable.
* d/control.in: Require a newer gnome-shell.
gnome-shell 3.38.6 has fixes for compatibility with this libgjs, so
bump the version in the Breaks accordingly.
-- Simon McVittie <smcv@debian.org> Thu, 26 Aug 2021 09:06:25 +0100
gjs (1.68.1-2) unstable; urgency=medium
* Team upload
* d/copyright: Update
* Don't let debhelper 13.4+ make all the installed-tests executable
* Remove unnecessary .eslintrc.yml from installed-tests
* Silence a Lintian false-positive in the test data
* Add Lintian override documenting why libgjs0g is not libgjs0
* Standards-Version: 4.6.0 (no changes required)
* Release to unstable
-- Simon McVittie <smcv@debian.org> Wed, 25 Aug 2021 12:21:03 +0100
gjs (1.68.1-1) experimental; urgency=medium
* New upstream release
* debian/patches: Drop all, they've been applied upstream
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Sat, 08 May 2021 23:39:49 +0200
gjs (1.68.0-2) experimental; urgency=medium
* debian/patches: Cherry-pick upstream memory fixes
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 05 May 2021 05:53:50 +0200
gjs (1.68.0-1) experimental; urgency=medium
* New upstream release
- Fixed session crashes in gjs on unlocking (sometimes)
- installed-tests installed despite explicitly disabled
* debian/patches: Drop all applied upstream
* d/p/GObject-Don-t-autogenerate-accessors-for-CONSTRUCT_ONLY-p.patch,
d/p/GObject-Define-camel-and-kebab-variants-of-CONSTRUCT_ONLY.patch,
d/p/overrides-Gio-Fix-_LocalFilePrototype.patch,
d/p/object-Return-undefined-and-not-the-actual-function-on-di.patch:
- Various fixes for JS GObject overrides
* d/p/cairo-Add-missing-semi-colons-from-dummy-class-declaratio.patch:
- Fix headers warning
* d/p/wrapperutils-Use-native-ostringstream-pointer-to-string-c.patch:
- Print the object address in hex format on toString()
* d/p/testFundamental-Ensure-a-fundamental-can-be-converted-to-.patch,
d/p/fundamental-Use-value-or-instance-pointer-when-no-get-set.patch:
- Correctly handle Gdk 4 Events
* d/p/object-Pass-the-instance-pointer-to-toggle-notify.patch,
d/p/object-Switch-back-to-normal-references-on-disposal.patch,
d/p/object-Discard-disposed-GObject-s-and-do-not-create-wrapp.patch,
d/p/object-Also-unset-the-object-qdata-during-wrapper-destruc.patch,
d/p/object-Never-try-to-add-a-toggle-reference-on-a-disposed-.patch,
d/p/object-Use-the-term-DISPOSED-for-objects-in-such-state-no.patch,
d/p/testGobjectDestructionAccess-Verify-usage-of-vfunc_dispos.patch,
d/p/object-Catch-finalized-objects-that-are-still-under-gjs-s.patch,
d/p/testGObjectDestructionAccess-Ensure-that-returned-dispose.patch,
d/p/testGObjectDestructionAccess-Verify-that-disposed-object-.patch,
d/p/object-Cancel-queued-toggles-on-dispose-notify.patch:
- Improve handling for diposed and finalized objects, fixing crashes
* d/p/object-Safely-handle-disposal-when-happening-from-other-t.patch,
d/p/installed-tests-Add-GjsTestTools-utilities-to-call-native.patch,
d/p/gjs-test-tools-Add-ability-to-ref-unref-and-dispose-from-.patch,
d/p/object-Discard-wrapper-when-GObject-is-disposed-from-main.patch,
d/p/object-Do-not-disassociate-a-JS-object-if-we-have-queued-.patch,
d/p/toggle-Initialize-private-variables-on-construction.patch,
d/p/toggle-Use-GWeakRef-s-to-track-objects-to-prevent-adding-.patch:
- Fix handling of dispose and unref hevent when happening in other threads
(LP: #1882410)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 15 Apr 2021 09:17:17 +0200
gjs (1.67.2-2) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* debian/gbp.conf: Set upstream branch to upstream/latest
* debian/patches: Consistently handle undefined values for integer functions.
This was causing build failures in some architectures as per being NaN
dependent.
[ Olivier Tilloy ]
* Cherry-pick upstream commits to fix failing autopkgtests
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 08 Mar 2021 22:41:06 +0100
gjs (1.67.2-1) experimental; urgency=medium
* New upstream release
* d/p/GGjsPrivate-Fix-indentation-in-function.patch,
d/p/GGjsPrivate-Remove-volatile-from-g_once_init_enter-flag.patch,
d/p/Gmaint-Avoid-g_once_init_enter-error-in-GCC-11.patch:
- Handle g_once_init_enter as newer GLib and gcc expects
* d/p/engine-Set-baseline-interpreter-to-enable_jit.patch:
- Ensure JIT can be fully disabled
* debian/libgjs0g.symbols: Update symbols
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Tue, 23 Feb 2021 16:49:06 +0100
gjs (1.66.2-1) unstable; urgency=medium
* Team upload
[ Marco Trevisan (Treviño) ]
* debian/watch: Ignore '..' links as valid version value
[ Simon McVittie ]
* d/watch: Don't assume major version must be a single digit
* d/watch: Only look for stable-branch versions
* d/gbp.conf: Use upstream/1.66.x branch to import new versions.
The first 1.67.x release already happened, but we don't want it for
Debian 11.
* New upstream release
-- Simon McVittie <smcv@debian.org> Fri, 29 Jan 2021 18:13:21 +0000
gjs (1.66.1-1) unstable; urgency=medium
* New upstream release:
- Throws on Unsupported caller allocates
- arg: Fix MIN/MAX safe big integer limits
- Fix leak when virtual function is unimplemented
- Cannot compile GJS 1.66.0 on macOS with llvm/clang 10.0.1
- console: fix typo in command-line option
- Prevent passing null pointers when not nullable
- Passing fundamentals to functions works again (LP: #1898393)
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Sun, 11 Oct 2020 01:00:09 +0200
gjs (1.66.0-1) unstable; urgency=medium
* New upstream release
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 14 Sep 2020 12:51:25 +0200
gjs (1.65.92-1) experimental; urgency=medium
* Team upload
* New upstream release
* Drop patches, applied upstream
-- Simon McVittie <smcv@debian.org> Tue, 08 Sep 2020 16:53:38 +0100
gjs (1.65.91-2) experimental; urgency=medium
* debian/patches: Fix BoxedInstance initialization causing a crash in s390x
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 02 Sep 2020 16:52:13 +0200
gjs (1.65.91-1) experimental; urgency=medium
* New upstream release
- Using mozjs (SpiderMonkey) 78 as JavaScript engine, coming with:
+ A new regular expression engine, supporting lookbehind and named capture
groups, among other things
+ The ?? operator ("nullish coalescing operator") is now supported
+ The ?. operator ("optional chaining operator") is now supported
+ Public static class fields are now supported
+ Separators in numeric literals are now supported: for example, 1_000_000
+ String.replaceAll() for replacing all instances of a string inside
another string
+ Promise.allSettled() for awaiting until all Promises in an array have
either fulfilled or rejected
+ Intl.Locale
+ Intl.ListFormat
+ Intl.RelativeTimeFormat.formatToParts()
- New API: gjs_coverage_enable() allows the collection of code coverage
metrics
* debian/rules:
- BD on libmozjs-78
* debian/libgjs0g.symbols: Update, adding new sybmol
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 31 Aug 2020 23:58:06 +0200
gjs (1.65.4-1) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* New upstream release
- Allow one to promisify static methods
- No need to redefine getter and setter for GObject properties
- Less critical errors logging
- Add support for JS pubblic class fields
- Demarshalling fixes in 64-bit big-endian
- Crash and memory fixes, performance improvements
- Gtk.Widget is now an iterable object
- Fix installed-tests compatibility with GTK 4
* debian/rules:
- BD on debhelper 13
- Don't redefine HOME and XDG_RUNTIME_DIR (handled by dh 13)
- Use dh_auto_test instead of meson test (handled by dh 13)
* debian/libgjs0g.install: Use variables to get the multi-arch path
* debian/gjs-tests.install: Adapt to fixed installed-tests location
[ Simon McVittie ]
* d/rules: Show output of failing tests.
Otherwise it's impossible to debug things like #966923.
* d/p/function-Don-t-assume-FFI-argument-always-matches-GIArgum.patch:
- Correctly handle function arguments in 64-bit big endian
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 27 Aug 2020 06:29:16 +0200
gjs (1.64.3-1) unstable; urgency=medium
* New upstream release:
- arg: Don't sink GClosure ref if it's a return value
- overrides/Gtk: Adjust gtk_container_child_set_property() check
- Use memory GSettings backend in tests
- Update debug message from trimLeft/trimRight to trimStart/trimEnd
- Various fixes for potential crash and memory issues
* debian/rules: Use timeout multiplier in tests
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 03 Jun 2020 15:35:51 +0200
gjs (1.64.2-1) unstable; urgency=medium
* Team upload
* New upstream stable release
- Fix template use in GTK 4
- Don't crash if a callback doesn't return an expected array of values
- Fix a crash when passing integer to strv in constructor
- Skip some tests if GTK can't be initialised
- Fix gjs_log_exception() for InternalError
- Fix signal match mechanism
- Drop all patches, applied upstream
* Install installed-tests in default /usr/libexec/gjs/installed-tests
* Install libraries with multiarch paths
* Simplify dh_makeshlibs invocation using debhelper 12 defaults.
The incantation we previously had in -V is a longwinded way to write
dh_makeshlibs -VUpstream-Version (aka plain -V with no argument),
which is the default in compat level 12 anyway.
* Mark libgjs0g as Multi-Arch: same
-- Simon McVittie <smcv@debian.org> Fri, 01 May 2020 09:59:07 +0100
gjs (1.64.1-3) unstable; urgency=medium
* Team upload
* Release to unstable (transition: #954422)
-- Simon McVittie <smcv@debian.org> Fri, 10 Apr 2020 14:32:50 +0100
gjs (1.64.1-2) experimental; urgency=medium
* Team upload
* Add proposed patches to fix type-punning on big-endian LP64,
in particular s390x (Closes: #906022)
* d/test.sh: Make test failures fatal on all architectures
* d/rules: Go back to inlining testing instead of using a separate script.
Now that we are treating test failures as always bad, we don't need
that extra complexity.
-- Simon McVittie <smcv@debian.org> Wed, 08 Apr 2020 12:17:12 +0100
gjs (1.64.1-1) experimental; urgency=medium
* Team upload
* New upstream release
* d/gbp.conf: Use upstream/1.64.x branch.
There has already been a 1.65.1 release.
* d/p/Fix-failed-redirect-of-output-in-CommandLine-tests.patch:
Drop patch, applied upstream
* d/gjs-tests.install: Adjust to test libraries' new location
-- Simon McVittie <smcv@debian.org> Fri, 03 Apr 2020 23:03:07 +0100
gjs (1.64.0-1) experimental; urgency=medium
* Team upload
* New upstream release (no changes beyond version number)
* Explicitly disable profiler.
It wasn't enabled on the buildds in practice because we don't
build-depend on sysprof.
* Enable all optional features that are not explicitly disabled.
This gives us more deterministic builds and checks that we haven't
forgotten build-dependencies.
* Bump build-dependency on gobject-introspection to 1.64.
The upstream developers won't have tested arbitrary combinations of GNOME
3.34 and 3.36 components, so we should probably take an all-or-nothing
approach to the upgrade.
* d/test.sh: Reset XDG directories to safe temporary values.
In some build environments these end up set to inaccessible or otherwise
unsuitable locations, causing one test to fail.
This should become unnecessary in dh compat level 13, which does something
similar itself. (Closes: #954659)
* d/p/root-Always-expose-object-to-JS-before-reset.patch:
Drop a patch that was not applied upstream.
According to upstream !396, the bug this was meant to address has
been fixed differently in 1.63.92.
* d/p/Fix-failed-redirect-of-output-in-CommandLine-tests.patch:
Add patch from upstream master to fix a bashism in a test.
Thanks to Liban Parker.
-- Simon McVittie <smcv@debian.org> Tue, 24 Mar 2020 09:38:10 +0000
gjs (1.63.92-1) experimental; urgency=medium
* New upstream release
* tests-Avoid-filename-conflict-when-tests-run-in-parallel.patch: Drop,
upstream
-- Iain Lane <laney@debian.org> Tue, 03 Mar 2020 09:18:17 +0000
gjs (1.63.91-1) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* New upstream release
- Uses mozjs68
- Cache known unresolvable properties
* debian/control:
- Build depend on libmozjs-68-dev and meson
- Adjust gobject-introspection dependency version to match upstream
* debian/rules:
- Adapt configure parameters to meson
- Remove the ones that were already matching upstream default
- Don't try to remove *.la files anymore, as it's a no-op with meson
- Pass BUILDDIR to debian/test.sh
* debian/test.sh:
- Update binary paths to point to meson build path
- Use meson test to run tests
- Create a temporary home directory for running tests
* debian/docs,
debian/gjs.docs:
- Point to new Markdown README.md file
* debian/libgjs0g.symbols:
- Add symbols file
* debian/tests/installed-tests:
- Use $AUTOPKGTEST_TMP instead of the deprecated $ADTTMP
* d/p/root-Always-expose-object-to-JS-before-reset.patch,
d/p/tests-Avoid-filename-conflict-when-tests-run-in-parallel.patch:
- Avoid crashing during gargabe collection
[ Iain Lane ]
* debian/test.sh: Clean up the test dir when we exit
* debian/test.sh: The default build dir is DEB_HOST_GNU_TYPE.
Not DEB_HOST_BUILD_TYPE
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 24 Feb 2020 18:13:50 +0000
gjs (1.58.1-2) unstable; urgency=medium
* Team upload
* d/tests/build: Fix various shellcheck warnings
* d/tests/build: Use correct compiler for proposed autopkgtest
cross-architecture testing support
* d/tests/build: Mark as superficial
* Bump Standards-Version to 4.5.0 (no changes required)
* Explicitly build-depend on libffi-dev.
gjs uses ffi_call(), so we should have our own B-D and not just rely
on libgirepository1.0-dev having a dependency.
* Adjust build-dependencies for libffi7 transition:
- Depend on a version of libffi-dev associated with libffi7
- Depend on a version of libgirepository1.0-dev that was definitely
built using libffi7
-- Simon McVittie <smcv@debian.org> Thu, 30 Jan 2020 08:56:41 +0000
gjs (1.58.1-1) unstable; urgency=medium
* New upstream release
* Build-Depend on dh-sequence-gir and dh-sequence-gnome
-- Jeremy Bicha <jbicha@debian.org> Thu, 10 Oct 2019 06:12:11 -0400
gjs (1.58.0-2) unstable; urgency=medium
* Team upload.
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Mon, 30 Sep 2019 13:57:02 +0200
gjs (1.58.0-1) experimental; urgency=medium
* New upstream release
* d/control: update build-dep on gobject-introspection to 1.61.2
* d/rules: --with-xvfb-tests option has been removed
* d/test.sh: call xvfb-run from the test wrapper to start a server
* d/control: build-dep on xauth for xvfb-run
-- Tim Lunn <tim@feathertop.org> Wed, 11 Sep 2019 22:02:08 +1000
gjs (1.57.91-2) experimental; urgency=medium
* fix up depends so autopkgtests pass again
- debian/control:
- depend on libcairo2-dev, this was implicitly pulled by libgtk3 before
- runtime depend on gir1.2-gtk-3.0
-- Tim Lunn <tim@feathertop.org> Sun, 01 Sep 2019 23:00:03 +1000
gjs (1.57.91-1) experimental; urgency=medium
* New upstream release
* Build-depend on debhelper-compat (=12) and remove debian/compat
* debian/control:
- remove build-dep on libgtk3, gjs no longer links against gtk
- add build dep on gir1.2-gtk-3.0, required by tests
* Bump standards version to 4.4.0 no changes required
-- Tim Lunn <tim@feathertop.org> Tue, 27 Aug 2019 18:34:40 +1000
gjs (1.57.90-1) experimental; urgency=medium
* New upstream release
* control: bump glib build-dep to 1.58.0 as per configure.ac
-- Tim Lunn <tim@feathertop.org> Tue, 13 Aug 2019 21:00:02 +1000
gjs (1.57.4-1) experimental; urgency=medium
* New upstream release in the 1.57 series.
* rules: Don't build profiler support yet.
We need to split sysprof into a library, a -dev package and the client
applications for this, so that all gjs users don't get everything
installed.
* control: Bump gobject-introspection BDs to 1.59.2, per configure.ac
-- Iain Lane <laney@debian.org> Thu, 18 Jul 2019 12:25:32 +0100
gjs (1.56.2-1) experimental; urgency=medium
* New upstream release, fixing:
+ Cairo conversion bugs
+ console: Don't accept --profile after the script name
+ Crash in BoxedInstance when struct could not be allocated directly
+ Gjs crashes when binding inherited property to js added gobject-property
-- Iain Lane <laney@debian.org> Wed, 08 May 2019 17:46:16 +0100
gjs (1.56.1-1) experimental; urgency=medium
* New upstream stable release, fixing:
+ Calling dumpHeap() on non-existent directory causes crash
+ Using Gio.MemoryInputStream.new_from_data ("string") causes segfault
+ Fix gjs_context_eval() for non-zero-terminated strings
-- Iain Lane <laney@debian.org> Tue, 09 Apr 2019 09:51:55 +0100
gjs (1.56.0-1) experimental; urgency=medium
* New upstream release
* Bump Standards-Version to 4.3.0
* debian/rules: Drop the "Provides=libgjs0-libmozjs-52-0". There aren't any
(currently buildable) references to this left in the archive.
* Update gbp.conf to standard settings.
-- Andrea Azzarone <andrea.azzarone@canonical.com> Thu, 14 Mar 2019 16:19:03 +0000
gjs (1.54.3-1) unstable; urgency=medium
* Team upload
* New upstream release
* Force time zone to UTC when running tests.
This hopefully fixes FTBFS in the pathological time zone used to test
reproducible builds.
-- Simon McVittie <smcv@debian.org> Thu, 15 Nov 2018 11:31:50 +0000
gjs (1.54.2-1) unstable; urgency=medium
* Team upload
* Upload to unstable (starts transition: #906016)
* d/watch: Only watch for versions from a stable branch
* New upstream release
* Bump Standards-Version to 4.2.1 (no changes required)
* Use dpkg's default.mk to get upstream version number for dependencies.
This avoids relying on the differently-named variables in
gnome-get-source.mk, and also does the right thing if gjs ever gains
an epoch.
* d/rules: Remove gnome-get-source.mk (please use uscan instead)
-- Simon McVittie <smcv@debian.org> Fri, 02 Nov 2018 09:33:10 +0000
gjs (1.54.1-1) experimental; urgency=medium
* Team upload
* New upstream release
-- Simon McVittie <smcv@debian.org> Fri, 05 Oct 2018 11:40:01 +0100
gjs (1.54.0-1) experimental; urgency=medium
* Team upload
[ Simon McVittie ]
* New upstream development release (Closes: #904994)
* Depend and build-depend on mozjs60 instead of mozjs52
* d/copyright: Update
* Explicitly disable -Werror
* Drop build-dependency on gnome-common which does not appear to be
needed since 1.47.0
* d/gbp.conf: Don't number patches
* Add Breaks on gnome-documents, gnome-sound-recorder and polari
versions that use conditional catch clauses, which are a
Mozilla-specific extension that is no longer supported in mozjs60
* Add Breaks on gnome-shell (<< 3.29.90) for ByteArray changes
* dh_makeshlibs: Only generate a dependency on libgjs0g, not on the
virtual package libgjs0-libmozjs-60-0. Since the gjs-internals
module was removed in version 1.47.0, gjs does not expose mozjs
API/ABI in its own ABI, so it is unnecessary for gjs users like
gnome-shell, gnome-sushi and polari to depend on their gjs having
been compiled against a specific version of mozjs.
* Provide libgjs0-libmozjs-52-0 to indicate that our ABI is
compatible with the gjs that used libmozjs-52-0, until all
dependent packages have been rebuilt
[ Tim Lunn ]
* New upstream release
-- Simon McVittie <smcv@debian.org> Thu, 20 Sep 2018 10:32:06 +0100
gjs (1.53.3-1) experimental; urgency=medium
[ Simon McVittie ]
* d/watch: Watch for development releases
* New upstream development release
[ Iain Lane ]
* New upstream development releases 1.53.2 and 1.53.3
-- Iain Lane <laney@debian.org> Wed, 27 Jun 2018 18:20:12 +0100
gjs (1.52.3-2) unstable; urgency=medium
* Team upload
* d/p/context-Add-API-to-force-GC-schedule.patch,
d/p/object-Queue-a-forced-GC-when-toggling-down.patch,
d/p/context-Ensure-force_gc-flag-is-not-lost-if-the-idle-is-s.patch:
Add patches from upstream version 1.53.1 to make GC more aggressive
(LP: #1672297)
-- Simon McVittie <smcv@debian.org> Thu, 17 May 2018 11:13:54 +0100
gjs (1.52.3-1) unstable; urgency=medium
* New upstream release
-- Tim Lunn <tim@feathertop.org> Tue, 08 May 2018 17:18:07 +1000
gjs (1.52.2-1) unstable; urgency=medium
* New upstream release
-- Tim Lunn <tim@feathertop.org> Fri, 20 Apr 2018 17:18:55 +1000
gjs (1.52.1-1) unstable; urgency=medium
* New upstream release
* Drop patch included in new release
-- Tim Lunn <tim@feathertop.org> Thu, 12 Apr 2018 18:12:07 +1000
gjs (1.52.0-2) unstable; urgency=medium
[ James Cowgill ]
* Add mips-sigaction.patch to fix build on mips* (Closes: #893485)
-- Jeremy Bicha <jbicha@debian.org> Tue, 20 Mar 2018 07:35:20 -0400
gjs (1.52.0-1) unstable; urgency=medium
* New upstream release
* Release to unstable
* Drop fix_build.patch: Applied in new release
-- Jeremy Bicha <jbicha@debian.org> Sat, 17 Mar 2018 08:52:40 -0400
gjs (1.51.91-1) experimental; urgency=medium
[ Simon McVittie ]
* New upstream release
- Drop patches that were applied upstream
[ Tim Lunn ]
* Install valgrind suppresion files into libgjs-dev
* d/p/fix_build.patch: explicitly link against librt
-- Tim Lunn <tim@feathertop.org> Tue, 20 Feb 2018 17:53:02 +1100
gjs (1.50.3-2) unstable; urgency=medium
* Team upload
* Add patch from upstream merge request 38 to prevent crashes in
certain error situations (possibly resolves #888052, #888199)
* Add patches to improve uncatchable exception reporting
* Revert some of the upstream changes from 1.50.3, which appear to
cause crashes (Closes: #888485; possibly also #888052, #888199)
-- Simon McVittie <smcv@debian.org> Fri, 26 Jan 2018 13:57:40 +0000
gjs (1.50.3-1) unstable; urgency=medium
* New upstream release
* Drop all patches since they were applied in new release
* Bump debhelper compat to 11
-- Jeremy Bicha <jbicha@debian.org> Sun, 21 Jan 2018 09:12:05 -0500
gjs (1.50.2-3) unstable; urgency=medium
* Team upload
* Add patches from upstream gnome-3-26 branch to mitigate bugs in
gnome-shell and its extensions involving reuse of objects that were
already disposed. Those bugs will now log critical warnings,
typically found in the systemd journal, instead.
(Mitigates: #881301, #880663, etc.)
* Change Vcs-* to point to salsa.debian.org
* Bump Standards-Version to 4.1.3 (no changes required)
* Drop Multi-Arch: same annotation from libgjs-dev. As long as this
package depends on gjs, it cannot be co-installed.
* Set Rules-Requires-Root to no
-- Simon McVittie <smcv@debian.org> Sat, 13 Jan 2018 11:47:50 +0000
gjs (1.50.2-2) unstable; urgency=medium
[ Adrian Bunk ]
* debian/tests.sh: Don't mark architectures as expected test failures
where the tests actually do pass. (Closes: #882036)
[ Jeremy Bicha ]
* Update Vcs fields for conversion to git
* Add debian/gbp.conf
* Bump Standards-Version to 4.1.2
* Mark libgjs-dev as Multi-Arch: same
-- Jeremy Bicha <jbicha@debian.org> Sat, 16 Dec 2017 11:52:33 -0500
gjs (1.50.2-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream release
[ Simon McVittie ]
* d/rules: Actually run build-time tests. Thanks, Adrian Bunk
(Closes: #878610)
- d/rules: Run tests with VERBOSE=1 like dh_auto_test would
- d/test.sh: Wrap tests in a script, making failures non-fatal on
the same architectures as mozjs52
- d/test.sh: Run a smoke-test (a "hello world" program) to prove
that the interpreter has any sort of functionality at all
-- Jeremy Bicha <jbicha@debian.org> Sun, 05 Nov 2017 12:56:31 -0500
gjs (1.50.1-2) unstable; urgency=medium
[ Jeremy Bicha ]
* Release to unstable
[ Simon McVittie ]
* d/control.in: Add Breaks on versions of various JS apps that are
not compatible with the ES6 syntax rules used since mozjs52
(Closes: #874693)
- No Breaks needed for lockstep upgrade of gnome-shell since old
Shell depends on libgjs0e or older, new Shell depends on libgjs0g,
and the two are already non-coinstallable
-- Jeremy Bicha <jbicha@debian.org> Fri, 13 Oct 2017 16:18:11 -0400
gjs (1.50.1-1) experimental; urgency=medium
* New upstream release
* debian/control.in:
- Bump minimum gobject-introspection to 1.53.4
* Drop disable-property-shadow-test.patch:
- No longer needed with gobject-introspection 1.53.4
* Bump Standards-Version to 4.1.1
-- Jeremy Bicha <jbicha@debian.org> Mon, 02 Oct 2017 21:29:12 -0400
gjs (1.50.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Mon, 11 Sep 2017 15:30:35 -0400
gjs (1.49.92-1) experimental; urgency=medium
* New upstream release
* Don't ignore test failures
-- Jeremy Bicha <jbicha@debian.org> Mon, 04 Sep 2017 20:26:32 -0400
gjs (1.49.91-1) experimental; urgency=medium
[ Andreas Henriksson ]
* New upstream release.
* Update build-dependencies according to configure.ac changes.
* Switch to mozjs52
* Rename libgjs0e to libgjs0g and replace/conflict with the old name.
[ Jeremy Bicha ]
* debian/control.in:
- Have libgjs-dev depend on libgtk-3-dev, discovered via autopkgtest
* Bump Standards-Version to 4.1.0
* Drop 0001-installed-tests-Prepend-pkglibdir-to-library-path.patch:
- Applied in new release
* debian/control.in:
- Bump minimum GObject Introspection to 1.53.1
* Add disable-property-shadow-test.patch:
- Temporarily disable new installed test that fails
-- Andreas Henriksson <andreas@fatal.se> Tue, 29 Aug 2017 13:51:26 +0200
gjs (1.46.0-2) unstable; urgency=medium
[ Roland Hieber ]
* Fix typo in package description (Closes: #841138)
[ Iain Lane ]
* debian/control{,.in}: Have libgjs0e depend on gir dependencies, since the
GjsPrivate library requires GObject, GLib and Gtk. gjs-tests depends
transitively on this package, so remove the gir1.2-gtk-3.0 dependency from
there.
* d/p/0001-installed-tests-Prepend-pkglibdir-to-library-path.patch: Backport
an upstream patch to look in pkglibdir for (private) libraries, in the
installed test runner. Should fix the installed tests, and thus the
autopkgtests.
-- Iain Lane <laney@debian.org> Wed, 15 Mar 2017 11:21:32 +0000
gjs (1.46.0-1) unstable; urgency=medium
* New upstream release.
* Convert from cdbs to dh.
* Bump debhelper compat level to 10.
* Mark test dependencies with <!nocheck>.
-- Michael Biebl <biebl@debian.org> Tue, 20 Sep 2016 23:39:45 +0200
gjs (1.45.4-2) unstable; urgency=medium
* debian/control{,.in}: Have gjs-tests depend on gjs, since
gjs/testSystemExit.test requires the gjs binary.
* debian/tests/installed-tests: Always run in C
-- Iain Lane <laney@debian.org> Thu, 01 Sep 2016 17:46:52 +0100
gjs (1.45.4-1) unstable; urgency=medium
* New upstream release.
* Replace Build-Depends on uuid-runtime with dbus (for dbus-uuidgen).
* Explicitly enable tests which require dbus and Xvfb.
* Bump Standards-Version to 3.9.8.
-- Michael Biebl <biebl@debian.org> Thu, 28 Jul 2016 20:45:55 +0200
gjs (1.45.3-2) unstable; urgency=medium
* Upload to unstable.
* Make test suite failures non-fatal again and dump the log files to stdout
if the test suite fails. There are currently known failing tests which
might point to real issues, but there is no fix available (yet) and this
blocks important fixes in other packages from entering testing. So this is
the lesser of two evils.
-- Michael Biebl <biebl@debian.org> Wed, 11 May 2016 21:02:07 +0200
gjs (1.45.3-1) experimental; urgency=medium
* New upstream development release.
* Bump glib build-dependency to >= 2.42.0 according to configure.ac changes.
* Upload to experimental.
-- Andreas Henriksson <andreas@fatal.se> Tue, 01 Mar 2016 18:10:13 +0100
gjs (1.44.0-1) unstable; urgency=medium
[ Tim Lunn ]
* debian/control.in: libgjs-dev add dep on gjs, so GNOME apps can
pick up the path at build-time (Closes: #803215)
[ Michael Biebl ]
* New upstream release.
* Drop debian/patches/0001-tests-Run-under-Xvfb.patch, merged upstream.
-- Michael Biebl <biebl@debian.org> Thu, 29 Oct 2015 02:41:13 +0100
gjs (1.43.3-2) unstable; urgency=medium
* Upload to unstable.
* Update Homepage.
-- Michael Biebl <biebl@debian.org> Sat, 20 Jun 2015 16:23:26 +0200
gjs (1.43.3-1) experimental; urgency=medium
* New upstream release 1.43.3
- GTypeClass and GTypeInterface methods, such as
g_object_class_list_properties(), are now available
- Added full automatic support for GTK widget templates
- Added control of JS Date caches to system module
- Misc bug fixes and memory leak fixes
* debian/watch: Find unstable versions too.
* debian/rules: Run dh_install with --fail-missing
* debian/control{,.in}: Standards-Version → 3.9.6
* debian/patches/0001-tests-Run-under-Xvfb.patch,
debian/rules, debian/control{,.in}: Make the testsuite fatal again. Run it
under Xvfb (cherry-picked from upstream bug #750688).
* debian/control{,.in}: Add missing test-dep on at-spi2-core - there's a
warning if it can't be bus activated which fails the test.
* debian/tests/installed-tests: Filter out successful activation messages
from the dbus daemon which come on stderr and fail the test unnecessarily.
-- Iain Lane <laney@debian.org> Wed, 10 Jun 2015 11:40:37 +0100
gjs (1.42.0-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 02 Oct 2014 00:31:50 +0200
gjs (1.41.91-2) unstable; urgency=medium
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Fri, 26 Sep 2014 15:46:04 +0200
gjs (1.41.91-1) experimental; urgency=medium
[ Jackson Doak ]
* New upstream development release
* debian/control: Bump Gi depends to 1.41.4
[ Tim Lunn ]
* debian/tests:
- control: Depend on xauth and dbus > 1.8
- Use dbus-run-session to run installed-tests
[ Andreas Henriksson ]
* Don't install .la files in gjs-tests (only .so)
-- Andreas Henriksson <andreas@fatal.se> Sat, 06 Sep 2014 10:39:17 -0700
gjs (1.40.1-4) unstable; urgency=medium
* Actually include debian/tests this time (forgot to svn add it).
-- Andreas Henriksson <andreas@fatal.se> Mon, 25 Aug 2014 00:42:23 -0700
gjs (1.40.1-3) unstable; urgency=medium
* Team upload
[ Tim Lunn ]
* Add installed-tests as autopkgtests
+ debian/control.in:
- set XS-Testsuite for autopkgtests
- add -tests package for installed tests
+ debian/tests: Add autopkgtests
+ debian/rules:
- configure with --enable-installed-tests
* Drop lintian overrides no longer needed
-- Andreas Henriksson <andreas@fatal.se> Sat, 23 Aug 2014 19:41:05 -0700
gjs (1.40.1-2) unstable; urgency=medium
* Bump Standards-Version to 3.9.5
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Mon, 14 Jul 2014 23:38:13 +0200
gjs (1.40.1-1) experimental; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Fri, 09 May 2014 19:41:11 +0200
gjs (1.40.0-1) experimental; urgency=medium
* New upstream release.
* Update build-dependencies according to configure.ac changes:
- Switch from libmozjs-17.0-dev to libmozjs-24-dev
- Add libgtk-3-dev
- Bump gobject-introspection & libgirepository1.0-dev to 1.39.3
* Update libgjs-dev dependency from libmozjs-17.0-dev to libmozjs-24-dev
* Don't install usr/share/gjs-1.0
- internal js modules are now bundled using GResource.
* Rename to libgjs0e
- also conflict/replace libgjs0d
-- Andreas Henriksson <andreas@fatal.se> Thu, 03 Apr 2014 19:00:08 +0200
gjs (1.38.1-1) experimental; urgency=low
[ Jackson Doak ]
* Bump debhelper to 9
[ Sjoerd Simons ]
* Sync from Ubuntu (1.37.6-0ubuntu1)
+ Bump library package name to libgjs0d
* Bump build-dependency on gobject-introspect and libgirepository to 1.38
-- Sjoerd Simons <sjoerd@debian.org> Fri, 01 Nov 2013 22:02:41 +0100
gjs (1.36.1-2) unstable; urgency=low
[ Jeremy Bicha ]
* Update homepage
[ Michael Biebl ]
* Upload to unstable.
* Track stable releases in debian/watch.
-- Michael Biebl <biebl@debian.org> Thu, 01 Aug 2013 17:06:25 +0200
gjs (1.36.1-1) experimental; urgency=low
[ Thomas Bechtold ]
* New upstream release.
* debian/control: Bump Standards-Version to 3.9.4.
-- Michael Biebl <biebl@debian.org> Fri, 24 May 2013 23:11:06 +0200
gjs (1.36.0-1) experimental; urgency=low
* New upstream release.
+ debian/control.in:
- Update build dependencies.
+ debian/libgjs0c.install:
- Stop installing the modules, they are built into libgjs now.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 28 Mar 2013 03:08:20 +0100
gjs (1.35.8-1) experimental; urgency=low
[ Josselin Mouette ]
* Add build-dependency on libreadline-dev.
* Rename libgjs0b to libgjs0c since there are new ABI changes.
[ Sjoerd Simons ]
* debian/control.in: Sync with Ubuntu, New upstream release,
bump libglib2.0-dev b-i
* debian/control.in: Bump gobject-introspection b-d for warnlib.c
[ Emilio Pozuelo Monfort ]
* Release to experimental.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 20 Mar 2013 18:00:00 +0100
gjs (1.34.0-1) experimental; urgency=low
* New upstream release
* debian/patches/0001-Fold-libgjs-gdbus.so-into-libgjs.so.patch:
+ Dropped, fixed upstream
-- Sjoerd Simons <sjoerd@debian.org> Mon, 08 Oct 2012 20:36:14 +0200
gjs (1.32.0-5) unstable; urgency=low
* 11_revert_abi_breakage.patch: new patch. Revert the ABI breakage
introduced by 03_gerror_details.patch.
* 05_log_typo.patch: upstream patch adapted. Fix a typo in a logging
function. Closes: #697211.
-- Josselin Mouette <joss@debian.org> Thu, 03 Jan 2013 01:35:29 +0100
gjs (1.32.0-4) unstable; urgency=low
* 04_gjs_dumpstack.patch: patch from upstream git. Fix the
gjs_dumpstack function after the changes introduced by 1.32.0-3.
Thanks to Niels Thykier’s awesome review for spotting this.
-- Josselin Mouette <joss@debian.org> Wed, 12 Dec 2012 20:14:01 +0100
gjs (1.32.0-3) unstable; urgency=low
* 02_gerror_class.patch, 03_gerror_details.patch: patches from
upstream git. Introduce a class to manage GError correctly.
Closes: #691551.
* Bump shblibs version since this extends the API.
-- Josselin Mouette <joss@debian.org> Mon, 26 Nov 2012 11:06:48 +0100
gjs (1.32.0-2) unstable; urgency=low
* Upload to unstable.
* Drop explicit Build-Depends on gir1.2-glib-2.0 and gir1.2-freedesktop.
* Fold libgjs-gdbus into libgjs and move the typelib file into a
package-private directory. Patch cherry-picked from upstream Git.
* Use dh-autoreconf to update the build system.
* Extract libmozjs soname from libgjs.so, not the gjs binary since the
latter doesn't directly link to libmozjs.
-- Michael Biebl <biebl@debian.org> Thu, 26 Apr 2012 17:18:34 +0200
gjs (1.32.0-1) experimental; urgency=low
[ Jeremy Bicha ]
* New upstream release.
* Add gir package
* debian/control.in:
- Bump minimum glib to 2.31 & gobject-introspection to 1.31.22
- Bump Standards-Version to 3.9.3
* Drop all patches since they've been applied upstream
[ Michael Biebl ]
* Remove chrpath hack, no longer necessary.
* debian/libgjs0b.install: Remove /usr/lib/gjs/*.typelib since the typelib
file is now installed system wide and shipped in a separate package.
-- Michael Biebl <biebl@debian.org> Sun, 01 Apr 2012 07:55:16 +0200
gjs (1.30.1-1) unstable; urgency=low
* New upstream release.
* Cherry-pick patches from upstream Git to correctly handle ffi return
values. Fixes test-suite failures on big-endian architectures.
Closes: #610256
- Add 02_function-Correctly-convert-from-ffi-return-values-to.patch.
- Add 03_function-Fix-ffi-return-value-handling-on-32-bit.patch
-- Michael Biebl <biebl@debian.org> Tue, 31 Jan 2012 06:30:06 +0100
gjs (1.30.0-3) unstable; urgency=low
[ Josselin Mouette ]
* Update repository URL.
[ Michael Biebl ]
* debian/watch: Track .xz tarballs.
* Build against libmozjs185. The libmozjs version built from iceweasel
proved to be too much of a moving target. Closes: #653051
[ Jordi Mallach ]
* Update Vcs-* URLs.
-- Jordi Mallach <jordi@debian.org> Sat, 21 Jan 2012 00:31:27 +0100
gjs (1.30.0-2) unstable; urgency=low
* Upload to unstable
* Triggers rebuild again libmozjs-dev 8.0 (Closes: #648840)
-- Sjoerd Simons <sjoerd@debian.org> Sun, 20 Nov 2011 15:49:06 +0000
gjs (1.30.0-1) experimental; urgency=low
* New upstream release
* debian/control.in: Update build-dep on gobject-introspection
* debian/*.install: Install gir and typelib for GjsDbus
-- Sjoerd Simons <sjoerd@debian.org> Fri, 21 Oct 2011 20:40:36 +0200
gjs (1.29.0-2) unstable; urgency=low
[ Laurent Bigonville ]
* debian/control.in:
- Update Vcs- fields to unstable branch
[ Josselin Mouette ]
* Generate a substitution variable for Provides that embeds the
libmozjs version.
* Add this variable to shlibs. Closes: #635174.
* Remove symbols file, it’s useless as long as mozjs is part of the
ABI.
-- Josselin Mouette <joss@debian.org> Mon, 19 Sep 2011 17:08:10 +0200
gjs (1.29.0-1) unstable; urgency=low
* New upstream release.
- Fix FTBFS with iceweasel 5.0 (Closes: #631043)
* debian/control.in:
- Bump priority to optional
* debian/rules: Make tests no-fatal for now, they require newer
gobject-introspection (>= 1.29.0)
* debian/libgjs0b.symbols: Adjusts .symbols file
* debian/watch:
- Switch to .bz2 tarballs.
- Do not call uupdate anymore
* debian/patches/01_remove_rpath_flags.patch: Refresh patch
* debian/patches/02_fix_bigendian_test.patch: Drop patch, hackish fix
according to upstream
-- Laurent Bigonville <bigon@debian.org> Fri, 22 Jul 2011 20:30:44 +0200
gjs (0.7.14-1) experimental; urgency=low
* New upstream release.
* debian/patches/02_fix_bigendian_test.patch: Should fix FTBFS on big-endian
arch (Closes: #610256)
* debian/control: Bump Standards-Version to 3.9.2 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Mon, 02 May 2011 23:58:46 +0200
gjs (0.7.13-2) experimental; urgency=low
* debian/patches/01_remove_rpath_flags.patch:
+ New patch. Don't add an rpath to Libs in the pkgconfig file, we don't
need it as our libmozjs is in /usr/lib.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 17 Mar 2011 23:57:30 +0000
gjs (0.7.13-1) experimental; urgency=low
* New upstream release.
-- Frederic Peters <fpeters@debian.org> Fri, 25 Feb 2011 17:28:35 +0100
gjs (0.7.11-1) experimental; urgency=low
* New upstream release.
* debian/libgjs0b.symbols: update with two new symbols.
-- Frederic Peters <fpeters@debian.org> Wed, 23 Feb 2011 10:09:19 +0100
gjs (0.7.10-1) experimental; urgency=low
* New upstream release.
* debian/control.in:
- Drop build-depend on libmozjs-dev
- Make libgjs-dev depend on xulrunner-dev and libdbus-1-dev
-- Laurent Bigonville <bigon@debian.org> Sun, 06 Feb 2011 13:01:02 +0100
gjs (0.7.9-1) experimental; urgency=low
* debian/rules:
- Always depend on the latest upstream version in the shlibs file.
- Fail the build if the symbols file is outdated.
- Run the testsuite on !linux, but don't abort the build if it fails.
* New upstream release.
- debian/libgjs0b.symbols:
+ Updated.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 16 Jan 2011 15:17:31 +0000
gjs (0.7.8-2) experimental; urgency=low
* debian/control.in:
- Put the package under the GNOME team maintenance and use magic to
populate Uploaders
- Bump Standards-Version to 3.9.1 (no further changes)
- Add Vcs-{Svn,Browser} fields
- Add cdbs and gnome-pkg-tools and Build-dep
- Bump xulrunner-dev Build-dependency to 1.9.2 (Closes: #609895)
- Drop autoconf, automake1.11 and libtool, no needed for now
- Remove ${gir:Depends} substitution from libgjs0b package (Closes: #592694)
- Bump libgjs-deb package dependency against libmozjs-dev
* debian/rules:
- Use cdbs instead of dh7
- Do not run autoreconf
- Drop explicit shlibs version, we have .symbols file anyway
- Excludes libraries installed in /usr/lib/gjs-1.0/ from .symbols file
- Remove bashism (Closes: #581455)
* Bump debhelper compatibility to 8
* debian/copyright: Copy BSD licence instead of linking to it to please
lintian
* debian/watch: Fix URL pattern
-- Laurent Bigonville <bigon@debian.org> Fri, 14 Jan 2011 01:25:12 +0100
gjs (0.7.8-1) experimental; urgency=low
* New release.
* debian/control:
- adjust build-depends for gir1.2-* packages
-- Gustavo Noronha Silva <kov@debian.org> Thu, 13 Jan 2011 13:43:51 -0200
gjs (0.7.6-2) experimental; urgency=low
* debian/control:
- build-depend on automake1.11 (Closes: #603222)
-- Gustavo Noronha Silva <kov@debian.org> Mon, 15 Nov 2010 19:26:16 -0200
gjs (0.7.6-1) experimental; urgency=low
* debian/patches/*:
- removed; should no longer be needed
* debian/control:
- renamed library package to libgjs0b because of ABI breakage
- new version requires libmozjs-dev >= 1.9.2.
- build-depend on xulrunner-dev >= 1.9.2.12
- build-depend on gobject-introspection >= 0.9.2
- also build-depend on gir1.0-glib-2.0, and gir1.0-freedesktop >= 0.9.12
* debian/libgjs0b.symbols:
- updated
-- Gustavo Noronha Silva <kov@debian.org> Tue, 09 Nov 2010 22:01:53 -0200
gjs (0.7.1-1) unstable; urgency=low
* Not really an upstream release, just fixing the versioning of the
package from yesterday =(
* Convert package to new source format 3.0 (quilt)
* debian/patches/01_revert_machine_indep_types_removal.diff:
- revert removal of the handling of machine indep types - we are still
using these in stuff we have in Debian
-- Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> Thu, 15 Jul 2010 10:45:47 -0300
gjs (0.7-1) unstable; urgency=low
* New upstream release
* Bumped Standards-Version with no changes
* debian/libgjs0a.{shlibs,symbols}:
- add shlibs and symbols information
* debian/rules:
- disable tests that seem to rely on stuff only added in the 0.9 branch
of G-I
-- Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> Wed, 26 May 2010 10:55:19 -0300
gjs (0.6-1) unstable; urgency=low
* New upstream version.
- build-depends on cairo, so updated debian/control to match
- library package renamed to libgjs0a because it broke ABI without
changing soname
* debian/rules:
- only run tests on Linux, other platforms fail here trying to run
dbus (Closes: #571792)
-- Gustavo Noronha Silva <kov@debian.org> Thu, 08 Apr 2010 19:53:12 -0300
gjs (0.5-1) unstable; urgency=low
* New upstream release
* debian/control, debian/rules:
- Accepted patch from Ubuntu to enable the test suite
(Closes: #570182)
-- Gustavo Noronha Silva <kov@debian.org> Sat, 27 Feb 2010 20:28:11 -0300
gjs (0.5~git20100201-1) unstable; urgency=low
* Upstream snapshot
-- Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> Tue, 02 Feb 2010 21:58:35 -0200
gjs (0.4-4) unstable; urgency=low
* debian/control, debian/rules:
- build inside a separate directory, and run autoreconf every time
(Closes: #558549)
- the change above requires debhelper 7.3
- also build-depends on autoconf, automake, and libtool
- use chrpath to remove rpath defined in libgjs
-- Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> Tue, 22 Dec 2009 19:02:43 -0200
gjs (0.4-3) unstable; urgency=low
* debian/control:
- dev package was missing a dependency on the shared library package
-- Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> Tue, 20 Oct 2009 15:53:33 -0200
gjs (0.4-2) unstable; urgency=low
* debian/control:
- transition to the new introspection policy
* debian/rules;
- make lintian happy by fixing the debhelper build-dependency
-- Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> Mon, 19 Oct 2009 15:20:47 -0200
gjs (0.4-1) unstable; urgency=low
* Initial release (Closes: #550723)
-- Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> Mon, 12 Oct 2009 18:38:36 -0300
|