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
|
baobab (48.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Fri, 14 Mar 2025 13:54:26 -0400
baobab (48~alpha-2) unstable; urgency=medium
* Team upload
* Remove erronous patch
-- Matthias Geiger <werdahias@debian.org> Sun, 09 Mar 2025 17:54:22 +0100
baobab (48~alpha-1) unstable; urgency=medium
* Team upload
* New upstream release
* d/control: Update glib versioning
* Add patch to fix mimetype in .desktop file (Closes: #827078)
-- Matthias Geiger <werdahias@debian.org> Sat, 22 Feb 2025 16:36:05 +0100
baobab (47.0-1) unstable; urgency=medium
* New upstream release
* Release to unstable
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 16 Sep 2024 14:15:05 -0400
baobab (47~alpha-1) experimental; urgency=medium
* New upstream release
* Bump minimum libadwaita & gtk4
* Bump Standards Version to 4.7.0
-- Jeremy Bícha <jbicha@ubuntu.com> Fri, 09 Aug 2024 17:18:02 -0400
baobab (46.0-1) unstable; urgency=medium
* New upstream release
* Update Homepage
* Stop using debian/control.in and dh_gnome_clean
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 27 Mar 2024 18:29:57 -0400
baobab (45.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bícha <jbicha@ubuntu.com> Mon, 18 Sep 2023 18:41:14 -0400
baobab (45~alpha-2) unstable; urgency=medium
* Release to unstable
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 30 Aug 2023 18:37:25 -0400
baobab (45~alpha-1) experimental; urgency=medium
* New upstream release
* debian/control.in: Bump minimum libadwaita to 1.4~beta
-- Jeremy Bícha <jbicha@ubuntu.com> Wed, 16 Aug 2023 14:09:36 -0400
baobab (44.0-2) unstable; urgency=medium
* Update standards version to 4.6.2, no changes needed
* Upload to unstable
-- Jeremy Bícha <jbicha@ubuntu.com> Fri, 21 Jul 2023 11:50:24 -0400
baobab (44.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 27 Mar 2023 11:04:13 -0400
baobab (44~rc-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 07 Mar 2023 13:50:48 -0500
baobab (44~beta-1) experimental; urgency=medium
* New upstream release
* debian/control.in: Bump minimum meson
* debian/control.in: Build-Depend on desktop-file-utils
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 13 Feb 2023 16:00:11 -0500
baobab (43.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 19 Sep 2022 09:52:13 -0400
baobab (43~rc-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 06 Sep 2022 15:06:04 -0400
baobab (43~beta-1) unstable; urgency=medium
* New upstream release
* debian/control.in: Bump minimum libadwaita to 1.2~alpha
* debian/control.in: Bump Standards-Version to 4.6.1
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 08 Aug 2022 14:22:21 -0400
baobab (42.0-1) unstable; urgency=medium
* New upstream release
* debian/control.in: Build-Depend on gtk4 and libadwaita
* Drop patch: applied in new release
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 21 Mar 2022 08:45:04 -0400
baobab (41.0-2) unstable; urgency=medium
* Add patch to support the GNOME 42 dark theme preference
* debian/control.in: Bump minimum libhandy to 1.5.90 for that change
-- Jeremy Bicha <jeremy.bicha@canonical.com> Mon, 14 Feb 2022 13:57:34 -0500
baobab (41.0-1) unstable; urgency=medium
* New upstream release
* Build-Depend on dh-sequence-gnome instead of gnome-pkg-tools
* Minor packaging cleanup
-- Jeremy Bicha <jbicha@debian.org> Tue, 21 Sep 2021 18:49:59 -0400
baobab (40.stable-2) unstable; urgency=medium
* Team upload
* Upload to unstable
-- Simon McVittie <smcv@debian.org> Tue, 21 Sep 2021 08:20:12 +0100
baobab (40.stable-1) experimental; urgency=medium
* New upstream release with faked version to be newer
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 20 May 2021 21:27:50 +0200
baobab (40.beta-1) experimental; urgency=medium
* New upstream release
* debian/control.in:
- updated gtk requirement, build with libhandy
-- Sebastien Bacher <seb128@debian.org> Fri, 26 Feb 2021 13:17:31 +0100
baobab (3.38.0-1) unstable; urgency=medium
* New upstream release
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 14 Sep 2020 12:28:02 +0200
baobab (3.37.90-1) experimental; urgency=medium
* Team upload
* d/watch: Watch for development versions
* New upstream release
* Update meson build-dependency
* d/copyright: Update
-- Simon McVittie <smcv@debian.org> Tue, 01 Sep 2020 10:58:25 +0100
baobab (3.34.1-1) unstable; urgency=medium
* Team upload
* New upstream release
* Set Rules-Requires-Root to no
* Standards-Version: 4.5.0 (no changes required)
* Use debhelper compat level 13
* d/upstream/metadata: Add
* Canonicalize order of dependency lists (wrap-and-sort -a)
-- Simon McVittie <smcv@debian.org> Tue, 01 Sep 2020 10:01:19 +0100
baobab (3.34.0-1) unstable; urgency=medium
* New upstream release
-- Iain Lane <laney@debian.org> Thu, 12 Sep 2019 17:50:18 +0100
baobab (3.32.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Sat, 16 Mar 2019 18:10:03 -0400
baobab (3.30.0-2) unstable; urgency=medium
* Restore -Wl,-O1 to our LDFLAGS
* Bump Standards-Version to 4.3.0
-- Jeremy Bicha <jbicha@debian.org> Sun, 23 Dec 2018 17:37:23 -0500
baobab (3.30.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Sun, 02 Sep 2018 11:10:35 -0400
baobab (3.28.0-2) unstable; urgency=medium
* Update debian/gbp.conf
* Drop obsolete dh_translations overrides
* Bump Standards-Version to 4.1.4
-- Jeremy Bicha <jbicha@debian.org> Wed, 23 May 2018 14:04:22 -0400
baobab (3.28.0-1) unstable; urgency=medium
* New upstream release
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Tue, 13 Mar 2018 11:54:18 -0400
baobab (3.27.90-1) experimental; urgency=medium
* New upstream development release
* Build with meson
- debian/rules: drop dh_autoreconf override
- debian/control.in: Replace yelp-tools build-dep with itstool
-- Tim Lunn <tim@feathertop.org> Sun, 18 Feb 2018 09:45:03 +1100
baobab (3.26.1-3) unstable; urgency=medium
* Update Vcs fields for migration to https://salsa.debian.org/
* Bump debhelper compat to 11
-- Jeremy Bicha <jbicha@debian.org> Sat, 03 Feb 2018 21:38:50 -0500
baobab (3.26.1-2) unstable; urgency=medium
* Update Vcs fields for conversion to git
* Add debian/gbp.conf
* Bump Standards-Version to 4.1.2
-- Jeremy Bicha <jbicha@debian.org> Wed, 13 Dec 2017 08:42:46 -0500
baobab (3.26.1-1) unstable; urgency=medium
* New upstream release
* Bump Standards-Version to 4.1.1
-- Jeremy Bicha <jbicha@debian.org> Fri, 13 Oct 2017 21:50:23 -0400
baobab (3.26.0-1) unstable; urgency=medium
* New upstream translations release
-- Jeremy Bicha <jbicha@debian.org> Wed, 13 Sep 2017 19:09:33 -0400
baobab (3.25.92-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Wed, 06 Sep 2017 22:10:47 -0400
baobab (3.24.0-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.1.0
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 29 Aug 2017 14:11:46 -0400
baobab (3.22.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 08 Nov 2016 00:06:31 +0100
baobab (3.22.0-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sun, 18 Sep 2016 20:36:53 +0200
baobab (3.21.92-1) unstable; urgency=medium
* New upstream development release.
-- Michael Biebl <biebl@debian.org> Tue, 13 Sep 2016 00:20:03 +0200
baobab (3.21.90-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream beta release
* debian/control.in:
- Drop build dependencies on autotools-dev and intltool
* Convert from cdbs to dh
* Add debian/docs to install NEWS
* Bump dh compat to 10
* Enable all hardening flags
* Delete vala stamps to rebuild generated source files
[ Michael Biebl ]
* Add Build-Depends on appstram-util and re-enable dh-autoreconf.
-- Michael Biebl <biebl@debian.org> Fri, 02 Sep 2016 16:11:24 +0200
baobab (3.20.1-1) unstable; urgency=medium
[ Andreas Henriksson ]
* New upstream release.
* Bump gtk+ build-dependency to >= 3.19.1
- uses new api gtk_widget_class_set_css_name
[ Michael Biebl ]
* Bump debhelper compatibility level to 9.
* Bump Standards-Version to 3.9.8.
-- Michael Biebl <biebl@debian.org> Sun, 17 Apr 2016 15:25:11 +0200
baobab (3.18.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sat, 10 Oct 2015 02:28:09 +0200
baobab (3.18.0-1) unstable; urgency=medium
[ Josselin Mouette ]
* Remove Debian menu entry.
[ Andreas Henriksson ]
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Thu, 24 Sep 2015 15:41:02 +0200
baobab (3.16.1-1) unstable; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Wed, 20 May 2015 22:10:14 +0200
baobab (3.14.1-1) unstable; urgency=medium
* New upstream release.
* debian/control.in: Bump Standards-Version to 3.9.6 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Wed, 15 Oct 2014 21:34:35 +0200
baobab (3.14.0-1) unstable; urgency=medium
* New upstream release.
* Update build-dependencies according to configure.ac changes:
+ Bump libgtk-3-dev to >= 3.13.2
+ Bump valac to >= 0.25.1
-- Andreas Henriksson <andreas@fatal.se> Wed, 24 Sep 2014 16:45:04 +0200
baobab (3.13.91-1) experimental; urgency=medium
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Sat, 06 Sep 2014 23:40:28 +0200
baobab (3.12.1-1) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/control.in: Bump libglib2.0-dev build-dependency to 2.40, this is
needed for "GVariantDict"
[ Andreas Henriksson ]
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Sat, 26 Apr 2014 19:28:23 +0200
baobab (3.12.0-1) unstable; urgency=medium
* New upstream version.
- Bump valac build-dependency to >= 0.23.3
* debian/control.in: Update Homepage URL
-- Laurent Bigonville <bigon@debian.org> Sat, 05 Apr 2014 02:02:25 +0200
baobab (3.10.1-1) unstable; urgency=low
[ Jean Schurger ]
* New upstream version.
* Bump Build-Depends on libgtk-3-dev to (>= 3.9.10)
and libglib2.0-dev (>= 2.37.5).
* Drop debian/patches/01-remove-rpath.patch: Fixed upstream.
* Bump Standards-Version to 3.9.5. No further changes.
[ Jeremy Bicha ]
* debian/control.in:
- Drop libgtop2-dev from build-depends
- Update homepage
-- Laurent Bigonville <bigon@debian.org> Sun, 16 Feb 2014 15:58:21 +0100
baobab (3.8.2-1) unstable; urgency=low
[ Jeremy Bicha ]
* debian/control.in: Recommend yelp
[ Michael Biebl ]
* New upstream release.
* Bump Build-Depends on libgtk-3-dev to (>= 3.8.0).
* Add Build-Depends on valac, libgirepository1.0-dev and
gobject-introspection.
* debian/patches/01-remove-rpath.patch: Drop the usage of rpath, it's
unnecessary and generally discouraged.
* Bump Standards-Version to 3.9.4. No further changes.
* Drop obsolete Breaks/Replaces.
-- Michael Biebl <biebl@debian.org> Mon, 27 May 2013 02:07:52 +0200
baobab (3.4.1-1) unstable; urgency=low
* Upload to unstable.
* New upstream release.
* debian/watch: Track stable releases.
-- Michael Biebl <biebl@debian.org> Thu, 19 Apr 2012 03:04:32 +0200
baobab (3.4.0-1) experimental; urgency=low
* New upstream release.
* Fix watch file.
* Bump Build-Depends on libgtk-3-dev to (>= 3.3.18).
-- Michael Biebl <biebl@debian.org> Wed, 28 Mar 2012 15:55:45 +0200
baobab (3.3.3-1) experimental; urgency=low
* New upstream development release.
* gnome-utils has been split and baobab is a separate project now.
* Rename the source package to baobab.
* Drop non-baobab files, packages and build dependencies.
* Update watch file and Vcs-* URLs.
* Stop using dh-autoreconf.
* Bump Build-Depends on libglib2.0-dev and libgtk-3-dev.
* Build-Depend on yelp-tools instead of gnome-doc-utils for the new
Mallard-based help.
* Rewrite and update debian/copyright using the new machine-readable
format.
* Bump Standards-Version to 3.9.3.
-- Michael Biebl <biebl@debian.org> Mon, 12 Mar 2012 23:54:04 +0100
gnome-utils (3.2.1-3) unstable; urgency=low
[ Josselin Mouette ]
* gnome-screenshot requires nautilus for the D-Bus service.
Closes: #654226.
-- Michael Biebl <biebl@debian.org> Mon, 12 Mar 2012 22:52:18 +0100
gnome-utils (3.2.1-2) unstable; urgency=low
* Upload to unstable.
* debian/watch:
- Track .xz tarballs.
- Fix regex to correctly match directories.
* debian/org.debian.pkexec.gnome-system-log.policy:
- Install PolicyKit action definition for gnome-system-log. X applications
need explicit configuration so they can be started via pkexec.
-- Michael Biebl <biebl@debian.org> Sat, 19 Nov 2011 22:29:55 +0100
gnome-utils (3.2.1-1) experimental; urgency=low
[ Josselin Mouette ]
* Use pkexec instead of gksu for gnome-system-log.
[ Jordi Mallach ]
* New upstream release.
* Drop 02_gdict-1.0_pc_requires.patch: fixed upstream.
* Drop 03-don-t-abort-if-nautilus-schema-is-not-installed.patch: obsolete.
* Bump Build-Depends to libglib2.0-dev (>= 2.29.14), as required by
configure.ac.
* Add 10_no_disable_deprecated.patch: don't set *_DISABLE_DEPRECATED,
to avoid build failures with GTK+ 3.0.x.
* Build-Depend on dh-autoreconf and include the CDBS snippet.
* Add -c4 to dh_makeshlibs call.
* Set LDFLAGS to -Wl,-z,defs -Wl,-O1 -Wl,--as-needed.
* Update Vcs-* URLs.
* Replace Conflicts with Breaks.
-- Jordi Mallach <jordi@debian.org> Sat, 12 Nov 2011 16:40:01 +0100
gnome-utils (3.0.1-5) unstable; urgency=low
* debian/control.in:
- Add Breaks/Replaces: capplets-data (<< 1:3.0.0) to gnome-font-viewer as
the gnome-font-viewer.desktop file has been moved into the
gnome-font-viewer package. Closes: #634942
-- Michael Biebl <biebl@debian.org> Thu, 21 Jul 2011 13:49:50 +0200
gnome-utils (3.0.1-4) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Wed, 20 Jul 2011 21:22:45 +0200
gnome-utils (3.0.1-3) experimental; urgency=low
* debian/patches/03-don-t-abort-if-nautilus-schema-is-not-installed.patch
- Don't abort in gnome-screenshot if the nautilus settings schema
'org.gnome.nautilus.preferences' is not installed. Closes: #631413
-- Michael Biebl <biebl@debian.org> Tue, 19 Jul 2011 21:15:44 +0200
gnome-utils (3.0.1-2) experimental; urgency=low
* 02_gdict-1.0_pc_requires.patch: Make gdict-1.0's pkg-config file
require the correct GTK+ version.
-- Jordi Mallach <jordi@debian.org> Wed, 13 Jul 2011 19:11:18 +0200
gnome-utils (3.0.1-1) experimental; urgency=low
[ Sebastien Bacher ]
* debian/gnome-screenshot.install, debian/gnome-system-log.install:
- install the gconf to gsettings migration scripts
[ Michael Biebl ]
* debian/watch: Switch to .bz2 tarballs.
* New upstream release.
* debian/control.in
- Bump Build-Depends on libglib2.0-dev to (>= 2.28.0).
- Bump Standards-Version to 3.9.2. No further changes.
* Bump debhelper compatibility level to 8.
- Update Build-Depends on debhelper.
- Strip debian/tmp/ from .install files.
* debian/gnome-dictionary.install
- Stop installing files from usr/share/gnome-2.0 as gnome-dictionary no
longer builds a panel applet.
* debian/rules
- Remove --enable-gdict-applet=no configure option, obsolete.
* Add new gnome-font-viewer package.
- Add Breaks/Replaces: gnome-control-center (<< 1:3.0.0) as
gnome-font-viewer and gnome-thumbnail-font were part of g-c-c 2.x.
* libgdict now builds against GTK3, which changes its ABI, but hasn't
changed the SONAME. As a workaround, bump the versions in
libgdict-1.0-6.symbols to 3.0.0 and add Breaks against
gnome-dictionary (<< 3.0.0) and gtranslator (<< 2.90.0).
-- Michael Biebl <biebl@debian.org> Thu, 16 Jun 2011 00:18:36 +0200
gnome-utils (3.0.0-1) experimental; urgency=low
* New Upstream release.
+ debian/control.in
- Update build-dependencies, especially for Gnome 3
- Updated Standards-Version
- Removed the dependency on libpanel-applet
- Added dependency on gsettings-desktop-schemas as asked
in the configure.ac
- Removed description about the gdict applet
+ debian/rules
- Disabled build of applet because of the new gnome-panel
+ debian/*.install
- Removed gconf schemas when obsolete
- Added gschemas
- Removed *.a from -dev package as it seems to not be produced anymore
+ debian/copyright
- Refer to GPL-2 instead of GPL
+ debian/gnome-screenshot.links
- Link the manpage for gnome-panel-screenshot
+ debian/patch/01_logview_gksu.patch.new
- refreshed
-- Jean Schurger <jean@schurger.org> Mon, 11 Apr 2011 18:20:44 -0400
gnome-utils (2.30.0-2) unstable; urgency=low
* Update build-dependencies, especially add missing one on
gtk-doc-tools.
* Switch to cdbs, based on Ubuntu packaging. Closes: #583370.
* Remove workaround for docbook stuff, gtk-doc-tools should bring
docbook-xml and its XML catalog.
* Remove workaround for broken .schemas file, it’s been fixed
upstream.
* Split gnome-utils into one package per tool. Closes: #584981.
* Switch to 3.0 (quilt) source format.
-- Josselin Mouette <joss@debian.org> Sat, 19 Jun 2010 15:20:04 +0200
gnome-utils (2.30.0-1) unstable; urgency=low
* New upstream stable release:
+ debian/control.in:
- Update build dependencies.
-- Sebastian Dröge <slomo@debian.org> Sat, 10 Apr 2010 06:52:34 +0200
gnome-utils (2.28.1-1) unstable; urgency=low
* New upstream release.
- debian/rules:
+ Remove gnome-search-tool.schemas before building, it will be
autogenerated and the shipped one is broken. See GNOME #599317.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 23 Oct 2009 01:03:31 +0200
gnome-utils (2.28.0-1) unstable; urgency=low
[ Emilio Pozuelo Monfort ]
* debian/gnome-screenshot.sgml: updated for the new options. Patch by
Tom Feiner, thanks! Closes: #534539.
* Autogenerate the manpage during the build.
* debian/watch: don't uupdate.
* debian/rules: don't call dh_desktop and dh_scrollkeeper, they're
deprecated.
* Standards-Version is 3.8.2, no changes needed.
* Update Vcs-* fields.
* debian/patches/01_logview_gksu.patch: add upstream bug reference.
[ Josselin Mouette ]
* Drop libtool file, it’s not referenced anywhere.
[ Luca Bruno ]
* New upstream release:
- Drop gfloppy.
- gnome-search-tool: Ignore binary files. Closes: #507737.
* debian/control.in:
- Standards-Version is 3.8.3, no changes needed.
- Build-Depends:
+ Add libcanberra-gtk-dev (>= 0.4).
+ Remove all libgnome* and libglade.
+ Remove libhal as it's not referenced in the code.
+ Bump libglib2.0-dev to 2.20.0 and libgtk2.0-dev to 2.17.2.
* debian/gnome-screenshot.sgml, debian/gnome-utils.manpages,
debian/rules:
- Removed screenshot manpage, it's being shipped upstream.
[ Emilio Pozuelo Monfort ]
* debian/control.in:
- Build depend on intltool >= 0.40.0.
- Remove docbook-to-man and libpango1.0-dev build dependencies, no
longer needed.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 13 Oct 2009 23:40:34 +0200
gnome-utils (2.26.0-1) unstable; urgency=low
[ Josselin Mouette ]
* libgdict-1.0-dev.files: move the gtk-doc files to libgdict-1.0-dev.
* Bump Replaces: accordingly.
* Build-depend on libglib2.0-doc and libgtk2.0-doc to ensure proper
xrefs.
* Re-enable hal support on kfreebsd and hurd, now it has been ported.
* Remove useless stuff in the descriptions. Closes: #521007.
[ Luca Bruno ]
* New upstream release:
+ Set a meaningful error message if we can't read from the log file.
Closes: #443743.
* debian/patches:
+ Updated 01_logview_gksu.patch.
+ Removed 02_logview_crash.patch since logview has been rewritten.
+ Removed 03_screenshot_xinerama.patch, applied upstream.
* debian/control.in:
+ Build-Depends version bumps:
- libgtk2.0-dev to 2.14.0.
- libglib2.0-dev to 2.16.0.
- Removed libbonoboui2-dev and libgnomecanvas2-dev.
- Added zlib1g-dev to view .gz log files.
+ Update Standards-Version to 3.8.1. No changes needed..
[ Emilio Pozuelo Monfort ]
* Let libgdict-1.0-dev depend on ${misc:Depends}
* debian/gnome-screenshot.1: scape hyphens where necessary.
[ Josselin Mouette ]
* Set the team as primary maintainer. Closes: #523539.
* Remove scrollkeeper dependency.
-- Luca Bruno <lethalman88@gmail.com> Tue, 24 Mar 2009 00:02:25 +0100
gnome-utils (2.24.1-2) unstable; urgency=low
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Wed, 11 Mar 2009 18:41:23 +0100
gnome-utils (2.24.1-1) experimental; urgency=low
* 01_logview_gksu.patch: disable StartupNotify, as it doesn’t work
with gksu.
* 02_logview_crash.patch: new patch. Fix crash when switching between
certain logs. Closes: #500091.
* 03_screenshot_xinerama.patch: new patch from Hal Ashburner and Brian
Cameron. Correctly capture the whole screen in Xinerama mode.
Closes: #503852, #329596.
* New upstream release.
* 01_logview_gksu.patch: updated for the new version.
-- Josselin Mouette <joss@debian.org> Sun, 04 Jan 2009 13:03:59 +0100
gnome-utils (2.24.0-1) experimental; urgency=low
* New upstream release
-- Gustavo Noronha Silva <kov@debian.org> Mon, 22 Sep 2008 23:08:48 -0300
gnome-utils (2.23.92-1) experimental; urgency=low
* New upstream development version
- fixes error reporting when saving file (Closes: #401501)
- fixes total file system capacity display on baobab (Closes: #470553)
- fixes baobab not closing correctly when you give it an argument in the
command line (Closes: #447016)
* debian/control.in:
- added HomePage and Vcs* headers; using experimental branch for now for
Vcs-*
- updated Standards-Version to 3.8.0 with no further changes needed
* debian/control.in, debian/libgdict-1.0-6.{symbols,files},
debian/libgdict-1.0-dev.files, debian/gnome-utils.install,
debian/rules:
- create also libgdict-1.0-{6,dev} packages, so that other applications
are able to use the GNOME dictionary library for their purposes
(Closes: #443889)
* debian/copyright:
- added more precise copyright information
-- Gustavo Noronha Silva <kov@debian.org> Fri, 12 Sep 2008 00:42:16 -0300
gnome-utils (2.20.0.1-2) unstable; urgency=low
* Drop linux-libc-dev build-dep; thanks Petr Salinger.
-- Loic Minier <lool@dooz.org> Mon, 18 Feb 2008 16:52:20 +0100
gnome-utils (2.20.0.1-1) unstable; urgency=low
* New upstream bugfix release.
* debian/control.in:
+ Add libxt-dev to build depends.
-- Sebastian Dröge <slomo@debian.org> Sun, 23 Sep 2007 08:25:38 +0200
gnome-utils (2.20.0-1) unstable; urgency=low
* New upstream release.
+ Uses a unique temporary directory. Closes: #421599.
+ Only show utilities in the GNOME menu. Closes: #314799.
* Massive build-depends update.
* Remove remaining development files.
* 06_fix_logview_crasher.patch: removed, integrated upstream.
* Don't ignore errors in make distclean.
* Fix sections in menu file.
-- Josselin Mouette <joss@debian.org> Sat, 22 Sep 2007 19:04:14 +0200
gnome-utils (2.18.1-1) unstable; urgency=low
* Drop useless INSTALL_PROGRAM definition.
* Fix default CFLAGS.
* Pass --enable-gfloppy to configure; thanks Alan Baghumian;
closes: #419256.
* Upload to unstable; drop check-dist include.
* Wrap build-deps and deps.
* Only pass --host to configure if DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE
differ.
* Cleanups.
* New upstream release; no API change.
-- Loic Minier <lool@dooz.org> Mon, 16 Apr 2007 11:10:04 +0200
gnome-utils (2.18.0-1) experimental; urgency=low
* gnome-screenshot man page updates by Theppitak Karoonboonyanan;
closes: #415949.
* Add build-dep on gconf2 for gconftool-2.
* New upstream major stable release.
- Bump up libgtk2.0-dev build-dep to >= 2.10.0 for
gtk_text_buffer_get_has_selection(); upstream isn't correctly checking
for the minimum Gtk version it requires.
- Another round of man page updates for 2.18 by Theppitak Karoonboonyanan.
* New patch, 06_fix_logview_crasher, fixes a crash due to an uninitialized
variable; found in the Ubuntu package.
-- Loic Minier <lool@dooz.org> Fri, 23 Mar 2007 16:37:15 +0100
gnome-utils (2.16.2-2) experimental; urgency=low
* Add a get-orig-source target to retrieve the upstream tarball.
* Include the new check-dist Makefile to prevent accidental uploads to
unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
* Merge 2.14.0.dfsg-1 up to 2.14.0.dfsg-5; SVN r7690:9186.
- Drop patch 20_screenshot-overlapped-windows; merged upstream.
- Drop patch 10_po-too-fuzzy-cvs; only relevant for 2.14.
-- Loic Minier <lool@dooz.org> Fri, 23 Mar 2007 12:03:09 +0100
gnome-utils (2.16.2-1) experimental; urgency=low
* New upstream release.
+ Non-free RFC was removed (closes: #393372).
* 01_logview_gksu.patch: use gksu to invoke the log viewer as root.
The default Debian setup allows to see only the Xorg logs.
-- Josselin Mouette <joss@debian.org> Tue, 21 Nov 2006 21:23:49 +0100
gnome-utils (2.16.0-1) experimental; urgency=low
[ Marco Cabizza ]
* New upstream release
[ Guilherme de S. Pastore ]
* debian/copyright, debian/watch: fix download URL.
* debian/README.Debian: removed; too old, no longer useful.
[ Loic Minier ]
* The new upstream releases above bear no API change.
* Upload.
-- Loic Minier <lool@dooz.org> Mon, 25 Sep 2006 16:40:23 +0200
gnome-utils (2.15.92-1) experimental; urgency=low
* New upstream development releases, with API changes.
- Target at experimental.
- Add Baobab to the description.
- Conclict with and Replace baobab.
- Bump up build-deps to: libgtk2.0-dev >= 2.8.0, libgnome2-dev >= 2.13.7,
libgnomeui-dev >= 2.13.2
- Add build-deps on: libgtop2-dev (>= 2.12.0), libgnomecanvas2-dev (>=
2.10.2)
- Install baobab's README as README.baobab.
- Update shlibs for new SONAME: libgdict-1.0 5 gnome-utils (>= 2.15.90).
- Pass shlibs directly to dh_makeshlibs and drop gnome-utils.shlibs.
- libgdict changes SONAME; no action required since it had no shlibs.
- Drop patch 02_gdict_crasher, merged upstream.
- Drop libpopt-dev build-dep.
- Add a menu entry and XPM icon for Baobab.
* Drop -s flag to install as the debian/rules already uses dh_strip.
* Re-add autotools-dev config.guess/sub autoupdate with a build-dep.
* Misc cleanups.
* Add CDBS' utils.
-- Loic Minier <lool@dooz.org> Sun, 13 Aug 2006 17:51:24 +0200
gnome-utils (2.14.0.dfsg-5) unstable; urgency=medium
* Add a get-orig-source target to retrieve the upstream tarball.
* Resurrect the gnome-panel-screenshot man page from gnome-panel and rename
to gnome-screenshot; this even covers flags which are not in the --help
output; closes: #384602.
* New patch, 20_screenshot-overlapped-windows, to fix screenshots of
overlapping windows; backported from GNOME #121492.
-- Loic Minier <lool@dooz.org> Thu, 8 Mar 2007 14:33:12 +0100
gnome-utils (2.14.0.dfsg-4) unstable; urgency=low
* Exclude libhal-dev build-dep for kfreebsd and hurd; thanks
Petr Salinger; closes: #402129.
-- Loic Minier <lool@dooz.org> Fri, 8 Dec 2006 17:56:43 +0100
gnome-utils (2.14.0.dfsg-3) unstable; urgency=high
* Update all *.po files; rename 10_fr-po-too-fuzzy-cvs to
10_po-too-fuzzy-cvs; thanks Simon Paillard; update LINGUAS in configure.in
and configure.
-- Loic Minier <lool@dooz.org> Wed, 22 Nov 2006 09:28:54 +0100
gnome-utils (2.14.0.dfsg-2) unstable; urgency=high
* New patch, 10_fr-po-too-fuzzy-cvs, to snapshot fr.po from the CVS
gnome-2-14 branch as many strings are fuzzy in the tarball; thanks
Simon Paillard for the report.
-- Loic Minier <lool@dooz.org> Tue, 21 Nov 2006 21:24:49 +0100
gnome-utils (2.14.0.dfsg-1) unstable; urgency=high
* Repack upstream tarball to strip RFC; closes: #393372.
-- Loic Minier <lool@dooz.org> Mon, 16 Oct 2006 14:49:13 +0200
gnome-utils (2.14.0-2) unstable; urgency=low
[ Marco Cabizza ]
* Steal patch from HEAD to prevent gnome-dictionary from crashing with
some words [debian/patches/02_gdict_crasher.patch]
[ Loic Minier ]
* Update watch file to track stable versions and use HTTP.
* Fix 02_gdict_crasher patch to apply correctly.
* Drop debian/dirs and refactor installation a little.
-- Loic Minier <lool@dooz.org> Sun, 13 Aug 2006 16:30:15 +0200
gnome-utils (2.14.0-1) unstable; urgency=low
[ Marco Cabizza ]
* New maintainer
* New upstream release
- gnome-screenshot: Alt+Print works again (Closes: #283592)
- gdict-applet: Fixed the CPU usage issue (Closes: #214074, #220318)
* Added a Debian menu entry for gnome-panel-screenshot (Closes: #354102)
* Added patch/unpatch rules to debian/rules
* patches/01_configure.patch: work around upstream bug #336546, combined with
seb128's 10_configure.patch.
* debian/rules:
- not using dpatch anymore
- added dh_makeshlibs (and debian/gnome-utils.shlibs) due to libgdict-1.0
* debian/control: fixing dependencies.
* debian/pixmaps: resized the Debian menu icons to 32x32
* Standards-version is 3.7.2.
[ Guilherme de S. Pastore ]
* debian/control.in:
- added build-dependency on cdbs.
- added build-dependency on gnome-doc-utils.
* debian/compat: created, bumping debhelper compatibility version to 5.
-- Guilherme de S. Pastore <gpastore@debian.org> Tue, 16 May 2006 20:40:00 -0300
gnome-utils (2.12.2-3) unstable; urgency=low
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Sun, 8 Jan 2006 16:54:30 +0100
gnome-utils (2.12.2-2) experimental; urgency=low
* Build against dbus >= 0.60
-- Sjoerd Simons <sjoerd@debian.org> Sun, 18 Dec 2005 22:29:44 +0100
gnome-utils (2.12.2-1) experimental; urgency=low
* New upstream release.
* Drop debian/patches/04_gfloppyjaomf.dpatch, this was fixed differently
upstream (they commented the <contributor> block out), don't list this
patch in debian/patches/00list.
* Actually ship license and distinguish from copyright.
* Set debhelper compatibility level to 4.
-- Loic Minier <lool@dooz.org> Mon, 12 Dec 2005 23:00:59 +0100
gnome-utils (2.12.1-1) experimental; urgency=low
* New upstream version.
* debian/control.in:
- Build-Depends on the libhal package.
* debian/patches/04_gfloppyjaomf.dpatch:
- fix an issue with an omf file (Closes: #270880).
* debian/patches/10_configure.dpatch:
- updated.
* debian/watch:
- updated.
-- Sebastien Bacher <seb128@debian.org> Mon, 24 Oct 2005 15:26:22 +0200
gnome-utils (2.10.1-4) unstable; urgency=high
* Standards-version is 3.6.2.
* Depend on ${misc:Depends} (high urgency fix).
-- Josselin Mouette <joss@debian.org> Thu, 13 Oct 2005 21:40:35 +0200
gnome-utils (2.10.1-3) unstable; urgency=low
* Upload to unstable.
* debian/control.in: add gnome-screenshot to the description.
-- Jordi Mallach <jordi@debian.org> Fri, 10 Jun 2005 14:44:03 +0200
gnome-utils (2.10.1-2) experimental; urgency=low
* Rebuild on a GNOME 2.10-only chroot.
-- Jordi Mallach <jordi@debian.org> Fri, 29 Apr 2005 04:36:25 +0200
gnome-utils (2.10.1-1) experimental; urgency=low
* GNOME team upload.
* New upstream release.
- should now read gzipped files (closes: #135548).
* debian/control.in:
- Conflicts/Replaces gnome-panel/gnome-panel-data (<< 2.10).
- update build-depends.
- Suggest gcalctool instead of calctool.
- promote gksu from Suggests to Recommends.
- fix typo in description (closes: #290573).
* debian/rules: disable config.{guess,sub} updating.
* debian/watch: updated.
-- Jordi Mallach <jordi@debian.org> Sat, 9 Apr 2005 00:52:12 +0200
gnome-utils (2.8.1-1) unstable; urgency=low
* GNOME Team Upload.
* New upstream release:
GNOME Dictionary:
- add hyperlinks (Closes: #76739).
GNOME Log Viewer
- get correct date on log zoom (Closes: #222605).
* debian/control.in:
- suggests gksu instead of xsu (Closes: #259883).
- updated the Build-Depends.
* debian/patches/20_syslog_crash.dpatch
- patch by Vincent Untz <vincent@vuntz.net> to fix a gnome-system-log
crash on amd64
* debian/rules:
- use dh_desktop.
-- Sebastien Bacher <seb128@debian.org> Sun, 28 Nov 2004 00:21:21 +0100
gnome-utils (2.6.2-1) unstable; urgency=low
* GNOME Team Upload.
* New upstream release
+ gfloppy now really formats floppies (Closes: #251443)
* debian/menu: Quote everything to silence lintian.
-- Marc 'HE' Brockschmidt <he@debian.org> Tue, 8 Jun 2004 17:29:35 +0200
gnome-utils (2.6.0-2) unstable; urgency=low
* GNOME Team Upload.
* Upload in unstable.
* debian/patches/10_configure.dpatch:
+ removed useless X11 libs check (Closes: #247418).
* J.H.M. Dassen (Ray) <jdassen@debian.org>
* Update Build-Depends for required versions of packages as per configure.in
+ debian/control.in: Bumped build dependencies on libgtk2.0-dev,
libgnomevfs2-dev, libglib2.0-dev, libbonoboui2-dev, libglade2-dev,
libpanel-applet2-dev, libgnome-desktop-dev; added build dependency on
libgnome2-dev. (Closes: #248945)
-- Sebastien Bacher <seb128@debian.org> Sun, 30 May 2004 19:30:44 +0200
gnome-utils (2.6.0-1) experimental; urgency=low
* New upstream release.
+ gdict now allows accented characters. (Closes: Bug#213800)
+ gnome-search tool always uses locate (Closes: Bug#220722)
+ gdict-applet no longer crashes when a word is misspelled
(Closes: Bug#219217)
* debian/rules
+ Add gnome team rules
+ Use dh_gconf and dh_scrollkeeper, and remove the relevant bits from
postinst
* debian/control:
+ Add Uploaders for gnome team
+ Add Build-Depends on gnome-pkg-tools; update debconf build-depends to
>= 4.1.84 because of use of dh-gconf and dh_scrollkeeper
+ Suggest:
- mtools (Closes: Bug#240612)
- gnomesu instead of xsu (Closes: Bug#197318)
* debian/README.Debian
+ Mention gtkfontsel (Closes: Bug#168217)
-- Joe Drew <drew@debian.org> Sun, 4 Apr 2004 17:07:07 -0400
gnome-utils (2.4.1-1) unstable; urgency=low
* The "No more complaining" release, part 2
(Subtitled: two calculator menu entries? disaster!
also subtitled: SHUT UP)
* New upstream release for GNOME 2.4 (Closes: Bug#218865)
* debian/control:
+ Update description, Build-Depends for new version
+ Update Standards-Version to 3.6.1
+ Change Section to gnome
* debian/rules:
+ Support new version of DEB_BUILD_OPTIONS properly
+ Remove gdialog enabling in configure (replaced by zenity)
* debian/menu:
+ Remove entries for all binaries which are no longer present in
gnome-utils
-- Joe Drew <drew@debian.org> Sat, 15 Nov 2003 17:55:15 -0500
gnome-utils (2.2.1-1) unstable; urgency=low
* New upstream release, for GNOME 2.2.1
-- Joe Drew <drew@debian.org> Sat, 15 Mar 2003 18:48:21 -0500
gnome-utils (2.2.0.3-1) unstable; urgency=low
* New upstream release for GNOME 2.2
-- Joe Drew <drew@debian.org> Sun, 12 Jan 2003 21:59:52 -0500
gnome-utils (2.0.6-1) unstable; urgency=low
* The 'This version isn't THAT old' release.
* New upstream release.
* Thanks to Colin Walters for NMUing gnome-utils into sid when I was adrift,
without a computer to develop on.
-- Joe Drew <drew@debian.org> Sun, 1 Dec 2002 15:40:44 -0500
gnome-utils (2.0.5-3.1) unstable; urgency=low
* Add Build-Depends on scrollkeeper.
-- Colin Walters <walters@debian.org> Tue, 29 Oct 2002 17:45:05 -0500
gnome-utils (2.0.5-3) unstable; urgency=low
* First upload to sid. Yay!
-- Colin Walters <walters@debian.org> Sun, 27 Oct 2002 11:10:05 -0500
gnome-utils (2.0.5-2) experimental; urgency=low
* Add Build-Depends on libncurses5-dev. Why this is required for a GTK
program (gdialog) is beyond me.
-- Joe Drew <drew@debian.org> Sun, 13 Oct 2002 23:05:21 -0400
gnome-utils (2.0.5-1) experimental; urgency=low
* New upstream release.
* Acknowledge NMU - Thanks, Davide! Closes: Bug#156683
-- Joe Drew <drew@debian.org> Wed, 9 Oct 2002 23:15:16 -0400
gnome-utils (2.0.1-2) experimental; urgency=low
* Re-enable gdialog due to popular demand.
-- Joe Drew <drew@debian.org> Wed, 31 Jul 2002 19:10:12 -0400
gnome-utils (2.0.1-1.1) experimental; urgency=low
* NMU.
* Recompiled against libgtk2.0-0png3 because of png2->png3 transition.
-- Davide Puricelli (evo) <evo@debian.org> Wed, 14 Aug 2002 18:23:34 +0200
gnome-utils (2.0.1-1) experimental; urgency=low
* New maintainer (Closes: Bug#154505)
* New upstream release
-- Joe Drew <drew@debian.org> Sat, 27 Jul 2002 22:25:54 -0400
gnome-utils (1.106.0-1) experimental; urgency=low
* New upstream version (Closes: #147636)
Uploaded to experimental, because it is a GNOME 2 prerelase version
which cannot coexist with the GNOME 1.4 version.
-- Jochen Voss <voss@debian.org> Sun, 26 May 2002 16:52:33 +0200
gnome-utils (1.4.1.2-4) unstable; urgency=low
* Depend on scrollkeeper as requested by Matt Zimmerman <mdz@debian.org>.
gnome-utils would happily run without scrollkeeper, but the
dependency seems to fix some potential upgrade problems.
Keep scrollkeeper more silent as well. (closes: #140818)
-- Jochen Voss <voss@debian.org> Fri, 12 Apr 2002 16:56:45 +0200
gnome-utils (1.4.1.2-3) unstable; urgency=low
* Recompiled as requested by the e2fsprogs maintainer
* Apply patches from the GNOME BTS to fix gdict (Closes: #76735)
-- Jochen Voss <voss@debian.org> Sun, 24 Mar 2002 16:06:47 +0100
gnome-utils (1.4.1.2-2) unstable; urgency=low
* Apply patch from Sebastian Rittau (Closes: #135550)
-- Jochen Voss <voss@debian.org> Mon, 4 Mar 2002 18:36:42 +0100
gnome-utils (1.4.1.2-1) unstable; urgency=low
* New upstream release (translation updates, gtt fixes, ...)
* Suggest xsu and mention it in the gshutdown manual page
(Closes: #117833, #113377)
* Provide the new virtual package "dict-client"
-- Jochen Voss <voss@debian.org> Mon, 18 Feb 2002 20:24:04 +0100
gnome-utils (1.4.1.1-5) unstable; urgency=low
* stripchart documentation was truncated.
-- Jochen Voss <voss@debian.org> Thu, 17 Jan 2002 20:26:05 +0100
gnome-utils (1.4.1.1-4) unstable; urgency=low
* Fix code in logview, which broke for archs
where char is unsigned (Closes: #127021).
* Fix the return codes of the "splac" utility.
* Fix the gless manual page (Closes: #127255, #127256).
-- Jochen Voss <voss@debian.org> Fri, 4 Jan 2002 15:59:54 +0100
gnome-utils (1.4.1.1-3) unstable; urgency=low
* Rebuild with libgtkhtml20 instead of libgtkhtml19.
Somebody managed to remove libgtkhtml19 even while
gnome-utils depends on it (Closes: #123212).
* Add an override file for lintian: the license files
in the online manual are ok.
-- Jochen Voss <voss@debian.org> Tue, 11 Dec 2001 16:43:17 +0100
gnome-utils (1.4.1.1-2) unstable; urgency=low
* Add libgtkhtml-dev to the build dependencies.
Otherwise gtt would not be built.
-- Jochen Voss <voss@debian.org> Tue, 4 Dec 2001 11:46:18 +0100
gnome-utils (1.4.1.1-1) unstable; urgency=low
* New upstream release (mostly fixes, but contains an improved
version of gtt)
* Do not install "stripchart.conf" in /etc. Upstream tells me, that
this is no configuration file at all (despite of the name). Same
for "stripchar.params"
* Update the build dependencies.
-- Jochen Voss <voss@debian.org> Fri, 23 Nov 2001 10:47:18 +0100
gnome-utils (1.4.0.2-4) unstable; urgency=low
* Fixed the menu pixmaps. (Closes: #107572)
Thanks to Michael Piefel for the new ones.
-- Jochen Voss <voss@debian.org> Thu, 30 Aug 2001 09:37:12 +0200
gnome-utils (1.4.0.2-3) unstable; urgency=low
* Fix gdialog again. This time the text mode was broken. (Closes: #105990)
* Remove the emacs stuff from the bottom of this file.
-- Jochen Voss <voss@debian.org> Tue, 28 Aug 2001 16:18:28 +0200
gnome-utils (1.4.0.2-2) unstable; urgency=low
* Fix the use of scrollkeeper (Closes: #105974)
-- Jochen Voss <voss@debian.org> Sat, 21 Jul 2001 13:37:40 +0200
gnome-utils (1.4.0.2-1) unstable; urgency=low
* New upstream release
-- Jochen Voss <voss@debian.org> Sun, 8 Jul 2001 13:13:27 +0200
gnome-utils (1.4.0.1-3) unstable; urgency=low
* Use the --with-messages configure option (Closes: #103509)
-- Jochen Voss <voss@debian.org> Wed, 4 Jul 2001 19:13:51 +0200
gnome-utils (1.4.0.1-2) unstable; urgency=low
* Try to fix the Build-Depends again (Closes: #103122)
-- Jochen Voss <voss@debian.org> Mon, 2 Jul 2001 19:19:53 +0200
gnome-utils (1.4.0.1-1) unstable; urgency=low
* New upstream release
-- Jochen Voss <voss@debian.org> Mon, 25 Jun 2001 19:22:51 +0200
gnome-utils (1.4.0-10) unstable; urgency=low
* Upgraded to standards version 3.5.4.0
(support DEB_BUILD_OPTIONS)
* minor bug fix for gfloppy
* Fix some manual pages.
* Don't try to build the broken Azerbaijanian manual for gfloppy.
-- Jochen Voss <voss@debian.org> Mon, 14 May 2001 22:24:34 +0200
gnome-utils (1.4.0-9) unstable; urgency=low
* Fix the output of "gdialog --version"
-- Jochen Voss <voss@debian.org> Wed, 2 May 2001 17:19:03 +0200
gnome-utils (1.4.0-8) unstable; urgency=low
* Remove the bogus "Conflicts: gnome-admin", Replaces is
enough (Closes: #94683)
-- Jochen Voss <voss@debian.org> Tue, 24 Apr 2001 08:48:20 +0200
gnome-utils (1.4.0-7) unstable; urgency=low
* Add the remaining manual pages (Closes: #56078)
-- Jochen Voss <voss@debian.org> Sat, 21 Apr 2001 18:08:11 +0200
gnome-utils (1.4.0-6) unstable; urgency=low
* Make "gdialog --menu" work
* Call scrollkeeper-update properly
* Add another five manual pages
-- Jochen Voss <voss@debian.org> Mon, 16 Apr 2001 18:26:27 +0200
gnome-utils (1.4.0-5) unstable; urgency=low
* Add more manual pages
-- Jochen Voss <voss@debian.org> Sat, 7 Apr 2001 17:09:15 +0200
gnome-utils (1.4.0-4) unstable; urgency=low
* Fix the Build-Depends again (Closes: #93072)
-- Jochen Voss <voss@debian.org> Fri, 6 Apr 2001 13:55:18 +0200
gnome-utils (1.4.0-3) unstable; urgency=low
* Update the menu file (Closes: #80027, #46418)
* Add menu icons
-- Jochen Voss <voss@debian.org> Fri, 6 Apr 2001 13:55:04 +0200
gnome-utils (1.4.0-2) unstable; urgency=low
* Fix gdict's font and color selection dialog (Closes: #87179)
-- Jochen Voss <voss@debian.org> Sun, 25 Mar 2001 17:44:45 +0200
gnome-utils (1.4.0-1) unstable; urgency=low
* New upstream release
-- Jochen Voss <voss@debian.org> Tue, 20 Mar 2001 18:31:01 +0100
gnome-utils (1.3.2-1) unstable; urgency=low
* Update to standards version 3.1.0
* New upstream release
-- Jochen Voss <voss@debian.org> Thu, 8 Mar 2001 19:21:30 +0100
gnome-utils (1.2.1-11) unstable; urgency=low
* Install all README files into the doc directory.
* Add a manual page for gdict (Closes: #35453)
* Use dh_installman instead of deprecated dh_installmanpages.
-- Jochen Voss <jvoss2@gmx.de> Fri, 23 Feb 2001 18:19:17 +0100
gnome-utils (1.2.1-10) unstable; urgency=low
* New maintainer (Closes: #86114)
* Add links to the undocumented.7 manpage.
* Small fix to the Build-Depends.
-- Jochen Voss <jvoss2@gmx.de> Fri, 16 Feb 2001 20:26:01 +0100
gnome-utils (1.2.1-9) unstable; urgency=low
* Fix conflicts/replaces with gnome-admin. (Closes: #76995)
* Recompile with fixed dpkg-dev (Closes: #76885, #77097, #77863)
-- James LewisMoss <dres@debian.org> Sun, 26 Nov 2000 03:14:11 -0500
gnome-utils (1.2.1-8) unstable; urgency=low
* Conflict with gnome-admin (<< 1.0.3-2) (Closes: #76542)
* Fixup menus. Add missing (gdiskfree, gcharmap, gdict, idetool,
gfloppy). Add hints (hints="Gnome")
-- James LewisMoss <dres@debian.org> Sat, 11 Nov 2000 00:47:38 -0500
gnome-utils (1.2.1-7) unstable; urgency=low
* Capitalize depends in Build-Depends (Closes: #74926)
* Remove ghex from short descrip (no longer in package) (Closes: #74454)
* Fix french translation of "Font Selector". Reported upstream. (Closes:
#75092)
* Grab patch from cvs to fix gcolorsel crashing problem (Closes: #74930)
* Blech. Modified a makefile.am. Do the automake autoconf clean
Makefile.in configure crap.
-- James LewisMoss <dres@debian.org> Sun, 22 Oct 2000 12:12:33 -0400
gnome-utils (1.2.1-6) unstable; urgency=low
* Hopefully get all the build depends (Closes: #74343)
-- James LewisMoss <dres@debian.org> Sun, 8 Oct 2000 19:44:06 -0400
gnome-utils (1.2.1-5) unstable; urgency=low
* Add Replaces, Provides gdict.
* Add some build-depends.
-- James LewisMoss <dres@debian.org> Thu, 5 Oct 2000 22:22:03 -0400
gnome-utils (1.2.1-4) unstable; urgency=low
* Maintainer upload.
* Remove undocumented manpage links. (Should reopen #56078)
* Fix up list of installed applications.
-- James LewisMoss <dres@debian.org> Thu, 5 Oct 2000 20:27:47 -0400
gnome-utils (1.2.1-0.1) unstable; urgency=low
* New upstream release Close: #69687).
* NMU.
* Move /usr/share/gstripchart/gstripchart.conf to /etc (Closes: #50212)
* Install doc in the right place (Closes: #69142).
* Build with libgnome 1.2.4 (Closes: #65419).
* Install undocumented manpages (Closes: #56078).
* Install a manpage for gdialog (Closes: #46947).
* Gcalc don't segfault when pressing = (Closes: #63456).
-- Christian Marillat <marillat@debian.org> Fri, 25 Aug 2000 16:38:06 +0200
gnome-utils (1.2.0-0.0) frozen unstable; urgency=low
* New upstream release.
-- James LewisMoss <marillat.christian@wanadoo.fr> Wed, 31 May 2000 10:03:13 +0200
gnome-utils (1.0.50-5) frozen unstable; urgency=low
* setenv LC_NUMERIC to C at begininng of gcalc's main important bug.
(Closes: #62471)
* Apply patch from bug report (Closes: #51338)
* Change the menu location from Apps/System to Apps/Tools for gcolorsel,
gfontsel, and gsearchtool (Closes: #55596)
* Remove patching code in rules.
-- James LewisMoss <dres@debian.org> Wed, 26 Apr 2000 23:25:08 -0400
gnome-utils (1.0.50-4) frozen unstable; urgency=low
* Recompile to get libesd0|libesd0-alsa dependancy correct. important
bug. (Closes: #55662)
* Fix license file location in copyright file.
-- James LewisMoss <dres@debian.org> Sun, 30 Jan 2000 02:40:05 -0500
gnome-utils (1.0.50-3) unstable; urgency=low
* Oops remove the FIXME comment.
-- James LewisMoss <dres@debian.org> Thu, 28 Oct 1999 23:44:08 -0400
gnome-utils (1.0.50-2) unstable; urgency=low
* Add devpts as exclude fs type in gdiskfree/df.c. Closes: #46420.
* s/length/string-length/ in cromagnon/cromagnon.scm.
* Add --gauge (correct spelling option to gdialog) (not replacement for
guage, just a correct spelling option just the same) Closes: #44757.
* Fix gfontsel so that already chosen items are redisplayed in text
box. Closes: #35065.
* Move gless from Apps/Editors to Apps/Viewers. Closes: #47416.
* gpenguin seems to have been removed from upstream source. Closes:
#45942.
-- James LewisMoss <dres@debian.org> Thu, 28 Oct 1999 22:22:34 -0400
gnome-utils (1.0.50-1) unstable; urgency=low
* New upstream.
* Accept --defaultno at begining and end of option list for yesno.
-- James LewisMoss <dres@debian.org> Sat, 23 Oct 1999 00:00:53 -0400
gnome-utils (1.0.13-3) unstable; urgency=low
* If width is set to 0 for yesno dialog do auto sizing.
-- James LewisMoss <dres@debian.org> Sun, 26 Sep 1999 23:13:00 -0400
gnome-utils (1.0.13-2) unstable; urgency=low
* Add --defaultno option to --yesno dialog.
-- James LewisMoss <dres@debian.org> Sun, 26 Sep 1999 20:58:53 -0400
gnome-utils (1.0.13-1) unstable; urgency=low
* New upstream.
-- James LewisMoss <dres@debian.org> Thu, 23 Sep 1999 21:56:00 -0400
gnome-utils (1.0.12-1) unstable; urgency=low
* New upstream.
* Remove beta warning in control.in.
* Whoever said they would take this package and hasn't yet is more than
welcom to it. Only doing this to get Jim Pick's name off the
maintainer list for it.
* Remove gnomecal from description (Fixes bug: #40543)
* Removed menu entries for gnomecal and gnomecard (Fixes bug #41755)
* Previous NMU fixed #40153.
* Move man files from usr/man/man1 to usr/share/man/man1 (FHS compliance)
-- James LewisMoss <dres@debian.org> Tue, 7 Sep 1999 21:58:35 -0400
gnome-utils (1.0.1-0.3) unstable; urgency=low
* Non-maintainer upload fixing important #40362.
* In clean target of debian/rules, chown files owned by root (created
during configuration); also call distclean only if Makefile is present;
new target force-clean to configure and then clean (old way).
* Remove gnomecal and gnomecards manpages also from debian/rules.in.
-- Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> Tue, 6 Jul 1999 14:55:29 +0200
gnome-utils (1.0.1-0.2) unstable; urgency=low
* Non-maintainer upload.
Fixes bugs: #39089, #33132, #36161, #39333, #39819, #40029, #40129, #38828.
-- Vincent Renardias <vincent@waw.com> Fri, 25 Jun 1999 13:00:16 +0200
gnome-utils (1.0.1-0.1) unstable; urgency=low
* Non-maintainer upload for GNOME-1.0
-- Jules Bean <jules@debian.org> Mon, 8 Mar 1999 10:34:59 +0100
gnome-utils (0.99.3-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Sun, 24 Jan 1999 21:05:15 -0800
gnome-utils (0.30-2) frozen unstable; urgency=low
* Recompiled to fix dependencies.
* shlibs.local updated
* G_HAVE_INLINE and HAVE_ATEXIT defined as glib workaround.
* GNOME IS ALPHA warnings added.
-- Jim Pick <jim@jimpick.com> Mon, 23 Nov 1998 23:46:45 -0800
gnome-utils (0.30-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Fri, 25 Sep 1998 13:22:54 -0700
gnome-utils (0.28-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Mon, 17 Aug 1998 13:00:56 -0700
gnome-utils (0.27-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Sat, 15 Aug 1998 20:28:27 -0700
gnome-utils (0.25-1) unstable; urgency=low
* New upstream version.
-- Jim Pick <jim@jimpick.com> Sat, 8 Aug 1998 11:09:30 -0700
gnome-utils (0.20-3) unstable; urgency=low
* Rebuilt to fix dependencies.
-- Jim Pick <jim@jimpick.com> Mon, 3 Aug 1998 15:02:56 -0700
gnome-utils (0.20-2) unstable; urgency=low
* Fixed broken dependency.
-- Jim Pick <jim@jimpick.com> Mon, 22 Jun 1998 10:33:31 -0700
gnome-utils (0.20-1) unstable; urgency=low
* Initial Release.
-- Jim Pick <jim@jimpick.com> Wed, 17 Jun 1998 19:13:52 -0700
|