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 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164
|
tracker (3.4.2-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 06 Dec 2022 16:51:16 -0500
tracker (3.4.0-1) unstable; urgency=medium
* New upstream release
* debian/control.in: Bump Standards-Version to 4.6.1
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 19 Sep 2022 10:29:02 -0400
tracker (3.4.0~rc-2) unstable; urgency=medium
* debian/rules: Don't ignore build test failures
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 07 Sep 2022 12:23:32 -0400
tracker (3.4.0~rc-1) unstable; urgency=medium
* New upstream release
* debian/control.in: Bump minimum meson to 0.53
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 07 Sep 2022 08:45:46 -0400
tracker (3.4.0~beta-2) unstable; urgency=medium
* Release to unstable
-- Jeremy Bicha <jbicha@ubuntu.com> Thu, 25 Aug 2022 04:48:59 -0400
tracker (3.4.0~beta-1) experimental; urgency=medium
* New upstream release
* debian/libtrakcer-sparql-3.0-0.install: Update
* debian/libtracker-sparql-3.0-0.symbols: Update
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 24 Aug 2022 10:27:03 -0400
tracker (3.3.3-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream release
* Build with libsoup3
* debian/control.in: Build-Depend on libxml2-dev
[ Paul Gevers ]
* tests: conditionally skip some tests under autopkgtest as they fail
(Closes: #903374)
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 19 Aug 2022 12:03:40 -0400
tracker (3.3.2-1) unstable; urgency=high
* New upstream release
* Drop patch: applied in new release
* Release to unstable
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 03 Aug 2022 08:41:38 -0400
tracker (3.3.1-2) experimental; urgency=medium
* Cherry-pick patch to fix starred feature in Nautilus
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 14 Jun 2022 13:26:18 -0400
tracker (3.3.1-1) experimental; urgency=medium
* Team upload
* New upstream release
-- Nathan Pratta Teodosio <nathan.teodosio@canonical.com> Wed, 01 Jun 2022 15:01:44 -0300
tracker (3.3.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 21 Mar 2022 12:14:08 -0400
tracker (3.3.0~rc-1) experimental; urgency=medium
* New upstream release
* debian/rules: Explicitly only build the libsoup2 version for now
* debian/control.in: Build-Depend on asciidoc-base instead of asciidoc
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 16 Mar 2022 11:40:36 -0400
tracker (3.3.0~beta-1) experimental; urgency=medium
* New upstream release
* debian/libtracker-doc.install: Update
* debian/control.in: Drop obsolete Build-Depends on gtk-doc-tools
* debian/libtracker-sparql-3.0-0.install: Install temporary libsoup2 library
* debian/libtracker-sparql-3.0-0.symbols: Update
-- Jeremy Bicha <jeremy.bicha@canonical.com> Thu, 24 Feb 2022 11:53:00 -0500
tracker (3.1.2-4) unstable; urgency=medium
[ Jeremy Bicha ]
* Revert "debian/rules: Completely disable the tests if nocheck option is
used"
* debian/libtracker-sparql-3.0-0.symbols: Add new symbols (Closes: #997451)
[ Laurent Bigonville ]
* debian/rules: Drop configure options that have been removed upstream
* debian/tests/unit-tests: Sync the configure options with the ones in
debian/rules
* d/control.in: tracker-test-utils requires libglib2.0-bin for gsettings executable
-- Jeremy Bicha <jeremy.bicha@canonical.com> Wed, 09 Feb 2022 08:16:32 -0500
tracker (3.1.2-3) unstable; urgency=medium
* debian/rules: Fix bash-completion directory path
-- Laurent Bigonville <bigon@debian.org> Fri, 17 Sep 2021 10:59:16 +0200
tracker (3.1.2-2) unstable; urgency=medium
* Properly remove /etc/xdg/autostart/tracker-store.desktop on upgrade
(Closes: #970636)
* debian/rules: Completely disable the tests if nocheck option is used
-- Laurent Bigonville <bigon@debian.org> Thu, 16 Sep 2021 16:02:01 +0200
tracker (3.1.2-1) unstable; urgency=medium
* New upstream release
* Drop all patches: applied in new release
* debian/control.in: Bump minimum libjson-glib-dev to 1.4.0
-- Jeremy Bicha <jbicha@debian.org> Thu, 09 Sep 2021 02:35:52 -0400
tracker (3.1.1-3) unstable; urgency=medium
* Upload to unstable
-- Jeremy Bicha <jbicha@debian.org> Mon, 30 Aug 2021 22:46:49 -0400
tracker (3.1.1-2) experimental; urgency=medium
* Cherry-pick upstream mr !401 to port to using GDateTime. This fixes an
overflow error on 32 bit systems
-- Iain Lane <laney@debian.org> Tue, 20 Jul 2021 11:32:20 +0100
tracker (3.1.1-1) experimental; urgency=medium
* New upstream release (Closes: #964376)
* debian/patches/*: Refresh for tracker 3
- drop-assert.patch: Drop, let's try without now
- libtracker-miners-common-Make-g_error-a-soft-error.patch: This code is
gone.
- Revert-build-Include-libdir-in-rpath.patch: Refresh
* rules:
- Update configure flags, enable bash-completion
- Drop unneded dh_install override
- Drop dbg → dbgsym transitional code. The transition is well in the past
now.
* debian/various: Update to 3.0.
- Update all 2.0 references to 3.0
- Drop libtracker-miner, libtracker-control which are dropped upstream
- Stop installing things which no longer exist, and install things which
are new
* libtracker-sparql-3.0-0.symbols: Update with added/dropped symbols in
Tracker 3.
* Fix up autopkgtest for new config options and drop ADTTMP.
* control: Set Rules-Requires-Root to no - it's not needed.
* control, rules: Bump to compat 13.
- Use dh-sequence-{gir,gnome} instead of --with=
- No need to override dh_missing to add --fail-missing any more; this is
the default now
- No need to set HOME and XDG_RUNTIME_DIR for the dh_auto_test override,
and no need to explicitly check for `nocheck` any more.
* control update BDs:
- add asciidoc; required for the build
- add python3-tap; needed for the tests
- Drop Provides from gir1.2-tracker-3.0 for .gir files that are
dropped
-- Iain Lane <laney@debian.org> Wed, 23 Jun 2021 17:34:20 +0100
tracker (2.3.6-2) unstable; urgency=medium
* debian/rules:
- build without Bsymbolic and strip Bsymbolic-function, fixes the
tracker search hanging on Ubuntu (lp: #1861358)
-- Sebastien Bacher <seb128@debian.org> Thu, 17 Sep 2020 16:18:10 +0200
tracker (2.3.6-1) unstable; urgency=medium
* debian/watch: Try to match tracker-2 only. We'll need to branch for
tracker-3.
* New upstream release
+ Add 'tracker export' subcommand to ease migration to 3.x
+ Do not autostart tracker-store
+ get the systemd user unit dir from pkg-config
+ Replace sensitive terms
+ Use correct signature for DBusSignalCallback
* tracker.install: Install tracker-export manpage
* tracker.install: Drop XDG autostart file for tracker-store. Dropped
upstream, tracker uses DBus activation
-- Iain Lane <laney@debian.org> Tue, 15 Sep 2020 17:20:32 +0100
tracker (2.3.4-1) unstable; urgency=medium
[ Olivier Tilloy ]
* New upstream release
[ Laurent Bigonville ]
* debian/control.in: Bump Standards-Version to 4.5.0 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Mon, 16 Mar 2020 11:26:55 +0100
tracker (2.3.2-1) unstable; urgency=medium
[ Laurent Bigonville ]
* Bump debhelper compatibility to 12
* Move the daemons to /usr/libexec now that this is allowed in the debian
policy
[ Olivier Tilloy ]
* New upstream release (Closes: #952789)
-- Olivier Tilloy <olivier.tilloy@canonical.com> Tue, 03 Mar 2020 11:52:07 +0100
tracker (2.3.1-3) unstable; urgency=medium
* debian/rules: Make the tests failure non-fatal again, they are definitely
not stable on all architectures,
see: https://gitlab.gnome.org/GNOME/tracker/issues/108 (Closes: #945830)
-- Laurent Bigonville <bigon@debian.org> Sat, 18 Jan 2020 22:37:01 +0100
tracker (2.3.1-2) unstable; urgency=medium
* debian/patches/Use-ifdef-with-config.h-define-variable-HAVE_STATVFS64.patch:
Fix FTBFS on non-linux architectures
* debian/rules: Disable the parallel execution of the tests, let's hope it
will fix the FTBFS
* debian/control.in: Bump Standards-Version to 4.4.1 (no further changes)
* Drop unused lintian overrides
-- Laurent Bigonville <bigon@debian.org> Sat, 18 Jan 2020 15:48:08 +0100
tracker (2.3.1-1) unstable; urgency=medium
* autopkgtest: drop obsolete/duplicated dependencies.
Thanks to Laney for the suggestions and guidance. (Closes: #943291)
* autopkgtest: also drop dbus-x11 dependency
* New upstream release
-- Andreas Henriksson <andreas@fatal.se> Fri, 25 Oct 2019 12:11:58 +0200
tracker (2.3.0-1) experimental; urgency=medium
* New upstream release
- Handle circular references in TrackerResource
- Handle application/x-zero-size
- Documentation improvements
- Make tracker_sparql_escape_string() escape single quotes
- Don't make tracker:referenceSource a subproperty of nie:identifier
* Refresh patches:
- d/p/file-utils-test-application-x-zerosize-is-a-valid-mime-fo.patch,
- d/p/meson-Don-t-install-libtracker-common-static-library.patch:
+ Removed, applied upstream
* debian/rules: Don't install trackertestutils files since we don't have an
appropriate package currently, and they aren't needed by tracker-miners
right now.
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 19 Sep 2019 10:19:44 +0100
tracker (2.2.99.0-1) experimental; urgency=medium
[ Marco Trevisan (Treviño) ]
* New upstream release
- Support for storing Musicbrainz metadata in the multimedia ontology.
- Fix detection of files that need writeback
- Fix crashes and invalid memory writes
- Fixed initialization of virtual tables
- Fixed segmentation fault in libtracker-miner
- Don't try to create JSON-LD nodes with unsigned integers
- Handle correctly backreferences in TrackerResource tree
- Fixed handling doubles with exponents in SPARQL
- Don't limit to specific desktop environments
* Refresh patches
* d/p/disable-miner-fs-test.patch:
- Remove as the test now works correctly
* d/p/file-utils-test-application-x-zerosize-is-a-valid-mime-fo.patch:
- Support application/x-zerosize as valid mime type
* d/p/meson-Don-t-install-libtracker-common-static-library.patch:
- Don't install libtracker-common static library
* debian/control: BD on python3-gi in case we're running tests
* debian/rules:
- Set XDG_RUNTIME_DIR and HOME when running tests
- Fail build on tests failures
* libtracker-sparql-2.0-0.install: Don't install libtracker-common anymore
* debian/tracker.docs: Use README.md
[ Iain Lane ]
* debian/rules: Don't run dh_auto_test if nocheck is set in
DEB_BUILD_OPTIONS
* Create the home directory and XDG_RUNTIME_DIR for the tests
* Revert "build: Include libdir in rpath" This reverts commit
a92309f9cf9099a8b0b54908e032dcb181ab6c63. We don't want these in rpath on
Debian; the standard libdir is in the search path.
-- Iain Lane <laney@debian.org> Tue, 03 Sep 2019 17:42:52 +0100
tracker (2.2.1-1) experimental; urgency=medium
* New upstream release
* Build with meson
* Bump minimum libglib2.0-dev to 2.46
* debian/libtracker-sparql-2.0-0.symbols: Add new symbols
* Drop patches applied in new release:
- tracker-monitor-Prevent-stack-smashing.patch
- build-Restore-right-soversion-to-libraries.patch
- functional-tests-Require-Bash-for-test-runner.patch
* autopkgtest: Drop build-needed restriction
* Use ICU to provide Unicode support instead of libunistring
- since the collation test fails with libunistring. See tracker#59
* Drop test.patch: no longer needed after switch to ICU
-- Jeremy Bicha <jbicha@debian.org> Thu, 07 Mar 2019 05:04:11 -0500
tracker (2.1.8-1) unstable; urgency=medium
* New upstream release
* Drop libtracker-data-Don-t-rely-on-hash-table-iteration-order-.patch:
- Applied in new release
-- Jeremy Bicha <jbicha@debian.org> Wed, 20 Feb 2019 20:26:33 -0500
tracker (2.1.7-1) unstable; urgency=medium
* New upstream release
+ Fix build order with libtracker-sparql generated headers
+ Fix ontology update with SQLite 3.25
+ Fix build with Vala 0.43
* tracker-monitor-Prevent-stack-smashing.patch: Backport. This bug was
triggering GCC's stack smashing protection stuff because tracker wasn't
properly round tripping an int through a pointer.
* …-Don-t-rely-on-hash-table-iteration-order-.patch: Backport. This fixes an
invalid assumption that iterating a hash table will give you items out in
the same order you put them in. That stopped being true with GLib 2.59.
-- Iain Lane <laney@debian.org> Mon, 11 Feb 2019 16:42:50 +0000
tracker (2.1.6-5) unstable; urgency=medium
* Add -Wl,-O1 to our LDFLAGS
* Bump Standards-Version to 4.3.0
-- Jeremy Bicha <jbicha@debian.org> Thu, 27 Dec 2018 17:57:39 -0500
tracker (2.1.6-4) unstable; urgency=medium
* Build with autotools again instead of meson because of autopkgtest
regressions seen when built with meson. See bug 915551
-- Jeremy Bicha <jbicha@debian.org> Tue, 04 Dec 2018 13:04:08 -0500
tracker (2.1.6-3) unstable; urgency=medium
* Cherry-pick functional-tests-Require-Bash-for-test-runner.patch
* Update autopkgtests for meson build
* autopkgtest: Depend on dbus-x11, gir1.2-glib-2.0 & python-gi
* autopkgtest: Don't use xvfb
-- Jeremy Bicha <jbicha@debian.org> Mon, 26 Nov 2018 05:53:39 -0500
tracker (2.1.6-2) unstable; urgency=low
* Build with meson
* Cherry-pick build-Restore-right-soversion-to-libraries.patch
* Use -c4 for dpkg-gensymbols
* Build-Depend on bash-completion & libdbus-1-dev
* Adjust rules for missing symlinks for some libraries with meson
-- Jeremy Bicha <jbicha@debian.org> Sat, 17 Nov 2018 13:28:33 -0500
tracker (2.1.6-1) unstable; urgency=medium
* New upstream release
* Cherry-pick libtracker-miners-common-Make-g_error-a-soft-error.patch:
- Allow tracker library to still be used without ontology rules
(Closes: #908800)
-- Jeremy Bicha <jbicha@debian.org> Mon, 12 Nov 2018 17:34:31 -0500
tracker (2.1.4-1) unstable; urgency=medium
* New upstream release (LP: #1791484)
* debian/rules: Use dh_auto_test instead of make check
* Drop git-fix-build-with-format-security.patch: Applied in new release
* Bump Standards-Version to 4.2.1
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Wed, 12 Sep 2018 23:00:49 -0400
tracker (2.1.3-1) experimental; urgency=medium
* New upstream release
* debian/control.in: Bump build-dep on sqllite to 3.8.3
* debian/libtracker-sparql-2.0-0.symbols: Add new symbols
* d/p/git-fix-build-with-format-security.patch: fix FTBFS
-- Tim Lunn <tim@feathertop.org> Mon, 03 Sep 2018 12:07:52 +1000
tracker (2.0.3-3) unstable; urgency=medium
* debian/tests/unit-tests: whitelist messages dbus prints on stderr
when it is activating services.
-- Jeremy Bicha <jbicha@debian.org> Wed, 16 May 2018 19:58:13 -0400
tracker (2.0.3-2) unstable; urgency=medium
[ Gianfranco Costamagna ]
* Add patches from Ubuntu to skip broken tests so that the autopkgtests pass
again. New failing tests were introduced in 2.0.2. See GNOME bug 793723.
[ Jeremy Bicha ]
* Bump Standards-Version to 4.1.4
-- Jeremy Bicha <jbicha@debian.org> Sun, 13 May 2018 15:40:11 -0400
tracker (2.0.3-1) unstable; urgency=medium
* New upstream release
* Update Vcs fields for migration to https://salsa.debian.org/
* Bump debhelper compat to 11
-- Jeremy Bicha <jbicha@debian.org> Tue, 06 Feb 2018 19:46:58 -0500
tracker (2.0.2-1) unstable; urgency=medium
[ Jeremy Bicha ]
* Bump Standards-Version to 4.1.1
[ Simon McVittie ]
* Add Provides to gir1.2-tracker-2.0 to reflect its contents
[ Michael Biebl ]
* New upstream version 2.0.2
* Update list of Uploaders via gnome-pkg-tools
-- Michael Biebl <biebl@debian.org> Wed, 15 Nov 2017 01:34:18 +0100
tracker (2.0.1-1) unstable; urgency=medium
* New upstream version 2.0.1
-- Michael Biebl <biebl@debian.org> Wed, 04 Oct 2017 22:59:40 +0200
tracker (2.0.0-3) unstable; urgency=medium
* Move package from collab-maint to pkg-gnome
-- Michael Biebl <biebl@debian.org> Thu, 14 Sep 2017 22:08:18 +0200
tracker (2.0.0-2) unstable; urgency=medium
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Wed, 13 Sep 2017 13:09:46 -0400
tracker (2.0.0-1) experimental; urgency=medium
* New upstream version 2.0.0
-- Michael Biebl <biebl@debian.org> Tue, 12 Sep 2017 13:32:23 +0200
tracker (1.99.3-1) experimental; urgency=medium
* New upstream version 1.99.3
* Set Debian GNOME team as Maintainer
-- Michael Biebl <biebl@debian.org> Thu, 31 Aug 2017 13:02:19 +0200
tracker (1.99.2-1) experimental; urgency=medium
[ Jeremy Bicha ]
* New upstream version 1.99.2
* Drop all patches, obsolete
* Drop stuff split to tracker-miners source
[ Michael Biebl ]
* Drop more obsolete Build-Depends
* Switch to new dh_missing helper
* Switch to --fail-missing
-- Michael Biebl <biebl@debian.org> Thu, 31 Aug 2017 10:37:28 +0200
tracker (1.99.1-1) experimental; urgency=medium
* New upstream version 1.99.1
* Track unstable releases
* Drop tracker-miner-evolution
* Drop tracker-gui
* Drop obsolete configure switches
* Rename packages for the API bump from 1.0 → 2.0
* Drop tracker-miner-user-guides related files
* Update symbols files
* Add a Build-Depends-Package field to all symbols files
* Fix format-security issue in libtracker-data
* Remove leftover @LIBTRACKER_MINER_PC_REQUIRES@ from tracker-miner.pc.in
* Install default domain ontology
-- Michael Biebl <biebl@debian.org> Sun, 23 Jul 2017 19:27:07 +0200
tracker (1.12.1-1) unstable; urgency=medium
* New upstream version 1.12.1
* Bump Standards-Version to 4.0.0
-- Michael Biebl <biebl@debian.org> Sun, 23 Jul 2017 00:29:44 +0200
tracker (1.12.0-1) unstable; urgency=medium
* New upstream version 1.12.0
* Drop no longer needed Build-Depends on libgee-0.8-dev
* Add Build-Depends on libjson-glib-dev and libsoup2.4-dev
* Update symbols file for libtracker-sparql-1.0-0
* Add gir related lintian overrides
* Revert "Drop lintian overrides, tracker now sets RUNPATH rather than RPATH"
-- Michael Biebl <biebl@debian.org> Mon, 19 Jun 2017 15:36:53 +0200
tracker (1.10.5-1) unstable; urgency=medium
* New upstream release
- tracker-extract: Further sandboxing fixes. (Closes: #853723)
* Use the same URL for Vcs-Git and Vcs-Browser, both via https
* Update URLs in debian/copyright to use https
* Rebase patches
-- Michael Biebl <biebl@debian.org> Sat, 25 Feb 2017 17:45:33 +0100
tracker (1.10.4-1) unstable; urgency=medium
[ Michael Biebl ]
* New upstream release.
- tracker-extract: Whitelist multiple innocuous syscalls that were
reported to raise false positives in the extraction sandbox.
(Closes: #848842, #849936, LP: #1649035, LP: #1649004)
[ Simon McVittie ]
* Disable libmediaart. It makes tracker-extract write to the filesystem (in
its cache directory), which is incompatible with the seccomp sandbox
introduced in 1.10.2.
* Don't immediately restart tracker-extract on SIGSYS. Mitigates: #851148
-- Michael Biebl <biebl@debian.org> Thu, 19 Jan 2017 13:04:10 +0100
tracker (1.10.3-1) unstable; urgency=medium
* Update debian/watch to version 4 and use new "special strings" to
standardize format. Track stable releases only.
* New upstream release.
* Add Depends on libglib2.0-bin. The tracker-store autostart file uses gdbus
to start the service via D-Bus.
-- Michael Biebl <biebl@debian.org> Fri, 16 Dec 2016 14:51:39 +0100
tracker (1.10.2-1) unstable; urgency=medium
* New upstream release.
* Add Build-Depends on libseccomp-dev on Linux.
This is a new dependency which was added to let the extractor threads run
in a sandbox. Filesystem and network access are limited to being read and
local only.
-- Michael Biebl <biebl@debian.org> Fri, 09 Dec 2016 22:24:51 +0100
tracker (1.10.1-1) unstable; urgency=medium
* New upstream release.
* Use sysctl to increase the inotify watches instead of running the SysV
init script from procps.
-- Michael Biebl <biebl@debian.org> Fri, 14 Oct 2016 16:09:14 +0200
tracker (1.10.0-1) unstable; urgency=medium
* New upstream release.
* Add Build-Depends on dpkg-dev (>= 1.17.14) to ensure we have a version
which supports the <!nocheck> restriction.
-- Michael Biebl <biebl@debian.org> Mon, 19 Sep 2016 18:20:34 +0200
tracker (1.9.2-1) unstable; urgency=medium
* New upstream release.
* Install nautilus extension into multiarch path.
* Bump debhelper compat level to 10.
* Use dbus-run-session to run the test-suite.
* Depend on default-dbus-session-bus | dbus-session-bus instead of dbus.
-- Michael Biebl <biebl@debian.org> Sat, 17 Sep 2016 14:29:09 +0200
tracker (1.9.1-2) unstable; urgency=medium
* Install systemd user service files.
-- Michael Biebl <biebl@debian.org> Fri, 02 Sep 2016 15:50:15 +0200
tracker (1.9.1-1) unstable; urgency=medium
* New upstream release.
* Drop docs-Do-not-delete-xml-directory-when-redoing-docs.patch, merged
upstream.
* Update Build-Depends:
- Bump libglib2.0-dev to (>= 2.44.0).
- Bump libpng-dev to (>= 1.2).
- Bump libsqlite3-dev to (>= 3.7.15).
- Drop libpango1.0-dev and xsltproc.
* Update symbols files with new additions, like the new tracker-ressource
API.
-- Michael Biebl <biebl@debian.org> Fri, 02 Sep 2016 15:37:07 +0200
tracker (1.8.0-4) unstable; urgency=medium
* Do not delete xml directory when redoing docs as this might lead to build
failures due to race conditions.
-- Michael Biebl <biebl@debian.org> Sat, 02 Jul 2016 00:38:43 +0200
tracker (1.8.0-3) unstable; urgency=medium
* Team upload.
[ Pino Toscano ]
* Enable parallel building (Closes: #823268)
[ Laurent Bigonville ]
* Drop dependency against gnome-icon-theme, this package is deprecated
* Bump Standards-Version to 3.8.9 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Sun, 05 Jun 2016 12:21:51 +0200
tracker (1.8.0-2) unstable; urgency=medium
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Tue, 22 Mar 2016 10:15:16 +0100
tracker (1.8.0-1) experimental; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Mon, 21 Mar 2016 23:36:00 +0100
tracker (1.7.5-1) experimental; urgency=medium
* New upstream release.
* Remove old, unused dbus interface xml for tracker-extract.
-- Michael Biebl <biebl@debian.org> Tue, 15 Mar 2016 00:39:28 +0100
tracker (1.7.4-1) experimental; urgency=medium
* New upstream release.
* Drop dbg package now that we have automatic dbgsym packages.
* Drop compat binaries, they are no longer provided by upstream.
* Ensure proper upgrade from tracker-dbg to new dbgsym packages by using
dh_strip --dbgsym-migration. Bump Build-Depends on debhelper accordingly.
* Use the architecture.mk Makefile snippet provided by dpkg-dev to retrieve
DEB_HOST_MULTIARCH.
* Bump Standards-Version to 3.9.7.
-- Michael Biebl <biebl@debian.org> Sun, 13 Mar 2016 21:27:52 +0100
tracker (1.6.1-2) unstable; urgency=medium
* Team upload.
* Change libpng12-dev to libpng-dev, to ease libpng transition
(Closes: #662523)
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 21 Jan 2016 16:06:04 +0100
tracker (1.6.1-1) unstable; urgency=medium
* New upstream release.
* Rebase patches.
* Pass --as-needed to dh_autoreconf and use DEB_LDFLAGS_MAINT_APPEND to set
the linker flags.
-- Michael Biebl <biebl@debian.org> Thu, 26 Nov 2015 01:20:35 +0100
tracker (1.6.0-2) unstable; urgency=medium
[ Iain Lane ]
* Run the autopkgtests with VERBOSE=1 so we get better output on failure.
[ Laurent Bigonville ]
* Enable libosinfo support
* Enable writeback support for the audio files using TagLib
* Enable cue sheet parsing support
[ Michael Biebl ]
* Drop obsolete XS-Testsuite header, no longer necessary with recent
versions of dpkg.
* Make no-patch-numbers the default for gbp pq.
* Fix buffer overrun in libunistring builds. Patch cherry-picked from
upstream Git. (Closes: #794646)
-- Michael Biebl <biebl@debian.org> Sat, 24 Oct 2015 17:53:37 +0200
tracker (1.6.0-1) unstable; urgency=medium
[ Michael Biebl ]
* New upstream release.
* Drop Build-Depends on graphviz, no longer necessary.
[ Iain Lane ]
* debian/tests/unit-tests: Fix the DEP8 tests. (Closes: #785139)
- Make sure we always have LANG set
- Run under dbus-run-session so that there's always a session bus
available
- Set HOME to our temporary dir so we can guarantee to be able to write to
dconf & friends
- Make an en_US.utf8 locale which the testsuite expects to find.
-- Michael Biebl <biebl@debian.org> Tue, 22 Sep 2015 16:43:34 +0200
tracker (1.4.1-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
-- Michael Biebl <biebl@debian.org> Fri, 31 Jul 2015 23:31:40 +0200
tracker (1.4.0-3) unstable; urgency=medium
* Change Depends of libtracker-miner-1.0-dev to libmediaart-2.0-dev.
-- Michael Biebl <biebl@debian.org> Mon, 25 May 2015 16:27:56 +0200
tracker (1.4.0-2) unstable; urgency=medium
* Ship bash-completion for tracker binary.
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Sat, 23 May 2015 17:37:58 +0200
tracker (1.4.0-1) experimental; urgency=medium
* New upstream release.
* Add Build-Depends on libstemmer-dev. The internal code copy has been
removed and tracker uses the system version now.
* Update debian/copyright. Remove section about libstemmer.
* Build against libmediaart-2.0-dev (>= 1.9.0).
* Drop the tracker-utils package and fold it into the tracker package.
The various tracker-* commands have been replaced by a single 'tracker'
binary. This new binary is shipped in the tracker package along with
compat scripts for the old names, making the tracker-utils package
obsolete.
-- Michael Biebl <biebl@debian.org> Tue, 12 May 2015 22:42:44 +0200
tracker (1.2.6-1) unstable; urgency=medium
* New upstream release.
* Drop patch which is now upstream.
* Bump Build-Depends on libglib2.0-dev to (>= 2.40.0) as per configure.ac.
* Update Vcs-Browser URL to use cgit and https.
-- Michael Biebl <biebl@debian.org> Fri, 01 May 2015 05:37:37 +0200
tracker (1.2.4-2) unstable; urgency=medium
* libtracker-miner: Restrict the amount of data that is logged
for errors. Patch cherry picked from upstream Git. (Closes: #754907)
-- Michael Biebl <biebl@debian.org> Fri, 06 Feb 2015 19:29:40 +0100
tracker (1.2.4-1) unstable; urgency=medium
* New upstream bug fix release.
-- Michael Biebl <biebl@debian.org> Fri, 07 Nov 2014 01:20:23 +0100
tracker (1.2.2-2) unstable; urgency=medium
[ Tim Lunn ]
* Drop lintian overrides, tracker now sets RUNPATH rather than RPATH
* Drop Build-Dep on Dia, it is no longer used to regenerate pngs during build
* Run unit tests as autopkgtests, since they require the tracker dbus services
to be installed for tests to pass (BGO: #733201)
[ Michael Biebl ]
* Install typelib files into multiarch paths.
* Mark gir and dev packages as Multi-Arch: same.
* Bump Standards-Version to 3.9.6. No further changes.
* Update Homepage URL.
-- Michael Biebl <biebl@debian.org> Tue, 14 Oct 2014 00:28:43 +0200
tracker (1.2.2-1) unstable; urgency=medium
* New upstream release.
* Add new tracker_indexing_tree_new_with_root symbol for libtracker-miner.
-- Michael Biebl <biebl@debian.org> Wed, 24 Sep 2014 19:01:57 +0200
tracker (1.2.1-1) unstable; urgency=medium
* New upstream release.
* Bump Build-Depends on libmediaart-1.0-dev to (>= 0.5.0) as per
configure.ac.
* Update symbols file for libtracker-miner.
* Install AppData files for tracker-needle and tracker-preferences.
* Ship new tracker-miner-apps and tracker-miner-user-guides in the
tracker-miner-fs package. That functionality was split of tracker-miner-fs
into separate processes. We keep them in a single binary package for now.
-- Michael Biebl <biebl@debian.org> Tue, 23 Sep 2014 23:21:07 +0200
tracker (1.0.4-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 02 Sep 2014 18:24:02 +0200
tracker (1.0.3-1) unstable; urgency=medium
* New upstream release.
* Use gnome-autogen.sh in dh_autoreconf. Add Build-Depends on gnome-common
for that.
* Disable building of static libraries since we don't install them anyway.
-- Michael Biebl <biebl@debian.org> Sun, 24 Aug 2014 00:41:24 +0200
tracker (1.0.2-1) unstable; urgency=medium
* New upstream release.
* Do no longer explicitly set the compression since xz is the default
nowadays.
-- Michael Biebl <biebl@debian.org> Thu, 10 Jul 2014 16:04:12 +0200
tracker (1.0.1-2) unstable; urgency=medium
* Upload to unstable.
* Add missing dependency on libmediaart-1.0-dev to libtracker-miner-1.0-dev.
(Closes: #745945)
-- Michael Biebl <biebl@debian.org> Sat, 10 May 2014 00:34:48 +0200
tracker (1.0.1-1) experimental; urgency=medium
* New upstream release.
* Update configure switch for enca charset detection support.
-- Michael Biebl <biebl@debian.org> Fri, 09 May 2014 23:36:26 +0200
tracker (1.0.0-1) experimental; urgency=medium
* New upstream release.
* Update symbols file for libtracker-miner.
-- Michael Biebl <biebl@debian.org> Tue, 25 Mar 2014 02:31:03 +0100
tracker (0.17.8-1) experimental; urgency=medium
* New upstream release.
- Fixes description in tracker-store man page. (Closes: #675198)
* Update patches.
-- Michael Biebl <biebl@debian.org> Fri, 21 Mar 2014 22:31:35 +0100
tracker (0.17.7-1) experimental; urgency=medium
* New upstream release.
* Install autostart file for tracker-extract.
* Update patches.
-- Michael Biebl <biebl@debian.org> Wed, 19 Mar 2014 16:57:28 +0100
tracker (0.17.6-1) experimental; urgency=medium
* New upstream release.
* Explicitly enable libmediaart support.
* Fix underlinking in example programs.
-- Michael Biebl <biebl@debian.org> Tue, 18 Mar 2014 23:07:57 +0100
tracker (0.17.5-1) experimental; urgency=medium
* New upstream release.
* Remove debian/patches/01-libtracker-extract-internal.patch and
debian/patches/02-define-dirs.patch, both merged upstream.
* Remove obsolete configure switches.
* Bump debhelper compatibility level to 9.
* Convert to multi-arch. Mark libtracker-sparql, libtracker-miner and
libtracker-control as Multi-Arch: same.
-- Michael Biebl <biebl@debian.org> Wed, 05 Mar 2014 02:06:05 +0100
tracker (0.17.4-1) experimental; urgency=medium
* New upstream development release.
* Update Build-Depends:
- Bump libglib2.0-dev to (>= 2.38.0).
- Bump libgsf-1-dev to (>= 1.14.24).
- Add libmediaart-1.0-dev (>= 0.1.0).
- Use libtiff-dev, not libtiff4-dev. The latter is a transitional package
and going away. (Closes: #736047)
* Upstream finally declared the API version as stable and bumped it to 1.0.
Rename the files accordingly.
* Update symbols file for libtracker-miner.
* Add packages for libtracker-control, a new library for managing miners,
including polling status and progress, pausing, resuming and more.
* debian/patches/01-libtracker-extract-internal.patch: Upstream has declared
libtracker-extract a package-private library. Move the library to
pkglibdir to reflect that change.
* Remove libtracker-extract packages.
* Update shlibs.local for libtracker-extract and libtracker-control.
* Use dh-autoreconf to update the build system. Override dh_autoreconf since
we need to run gtkdocize and intltoolize.
* Ship ontology documentation in libtracker-sparql-doc.
* Update tracker-extract.install for new files.
* Bump Standards-Version to 3.9.5. No further changes.
* debian/patches/02-define-dirs.patch: Define back extract[rules|modules]dir
for Makefile.am to use. Patch cherry-picked from upstream Git.
-- Michael Biebl <biebl@debian.org> Sun, 02 Mar 2014 16:30:12 +0100
tracker (0.16.2-1) unstable; urgency=low
* New upstream release.
* Explicitly enable wanted features via configure switches.
-- Michael Biebl <biebl@debian.org> Wed, 18 Sep 2013 15:08:43 +0200
tracker (0.16.1-2) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Tue, 30 Jul 2013 13:23:15 +0200
tracker (0.16.1-1) experimental; urgency=low
* New upstream release.
* Use gir dh addon instead of calling dh_girepository manually.
-- Michael Biebl <biebl@debian.org> Wed, 01 May 2013 14:30:41 +0200
tracker (0.16.0-2) experimental; urgency=low
* Move package to collab-maint.
* Bump Standards-Version to 3.9.4.
-- Michael Biebl <biebl@debian.org> Sun, 24 Mar 2013 02:13:28 +0100
tracker (0.16.0-1) experimental; urgency=low
* New upstream release.
* It's spring cleaning time. Upstream has removed the gnome-panel search
bar, tracker-explorer and the flickr miner:
- Drop Build-Depends on libpanel-applet-4-dev.
- Remove tracker-search-bar from tracker-gui package.
- Drop tracker-explorer binary package.
- Remove obsolete configure flags.
* Drop old Breaks against rygel-tracker, no longer necessary.
-- Michael Biebl <biebl@debian.org> Mon, 18 Mar 2013 22:45:19 +0100
tracker (0.15.4-1) experimental; urgency=low
* New upstream development release.
* Track unstable releases for now.
* Update Build-Depends:
- Bump libglib2.0-dev to (>= 2.35.1).
- Bump libsqlite3-dev to (>= 3.7.9) for FTS4 content= support.
- Build against gstreamer 1.0.
* Rename library packages for the API version bump 0.12 → 0.14.
* Update symbols file for libtracker-miner-0.16-0.
* List missing files on dh_install.
* Update configure flags for the gnome-keyring to libsecret change.
-- Michael Biebl <biebl@debian.org> Thu, 14 Mar 2013 00:26:02 +0100
tracker (0.14.5-1) experimental; urgency=low
* New upstream release.
* Remove 0001-evolution-plugin-include-missing-header.patch, merged
upstream.
* Enable XPS support.
* Build against libgee-0.8.
* tracker-gui no longer installs any icons in $pkgdatadir, update the
.install file accordingly.
* Enforce strict inter-package dependencies via shlibs.local.
* Rename an internal symbol in libtracker-miner.
* For configure switches with auto detection, explicitly enable or disable
the feature for reliable build results in tainted build environments.
-- Michael Biebl <biebl@debian.org> Thu, 07 Feb 2013 09:25:21 +0100
tracker (0.14.1-3) unstable; urgency=low
* Use xz compression for binary packages.
* Disable Evolution email data miner. It is currently non-functional and
unlikely to be fixed in time for wheezy. (Closes: #666176)
-- Michael Biebl <biebl@debian.org> Mon, 08 Oct 2012 22:17:39 +0200
tracker (0.14.1-2) unstable; urgency=low
* debian/patches/0001-evolution-plugin-include-missing-header.patch: Include
missing mail/e-mail-backend.h header. Otherwise evolution fails to load
the Tracker evolution plugin due to undefined symbols. (Closes: #678444)
* Drop explicit Build-Depends on gir1.2-glib-2.0.
-- Michael Biebl <biebl@debian.org> Thu, 21 Jun 2012 23:21:41 +0200
tracker (0.14.1-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Fri, 04 May 2012 00:36:35 +0200
tracker (0.14.0-2) unstable; urgency=low
* Upload to unstable.
* Update and rewrite debian/copyright using the machine-readable copyright
format 1.0.
-- Michael Biebl <biebl@debian.org> Wed, 14 Mar 2012 17:21:04 +0100
tracker (0.14.0-1) experimental; urgency=low
* New upstream release.
* Rename library packages for the API version bump 0.12 → 0.14.
* Update symbols file for libtracker-miner.
* Bump Build-Depends on debhelper to (>= 8.1.0~).
* Bump Standards-Version to 3.9.3. No further changes.
-- Michael Biebl <biebl@debian.org> Thu, 08 Mar 2012 20:40:22 +0100
tracker (0.12.10-1) unstable; urgency=low
* New upstream release.
* Use dh_installdeb maintscript files to handle removal of obsolete
conffiles in tracker and tracker-gui.
-- Michael Biebl <biebl@debian.org> Thu, 16 Feb 2012 19:40:01 +0100
tracker (0.12.9-1) unstable; urgency=low
* New upstream release.
* Change section of gir1.2-tracker-0.12 to introspection.
* Update homepage URL. (Closes: #652141)
-- Michael Biebl <biebl@debian.org> Fri, 16 Dec 2011 18:47:47 +0100
tracker (0.12.8-1) unstable; urgency=low
* New upstream release.
* Update symbols file for libtracker-extract-0.12-0.
-- Michael Biebl <biebl@debian.org> Sun, 04 Dec 2011 06:40:28 +0100
tracker (0.12.7-2) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Sun, 20 Nov 2011 15:31:45 +0100
tracker (0.12.7-1) experimental; urgency=low
* New upstream release.
* debian/watch: Track .xz tarballs.
-- Michael Biebl <biebl@debian.org> Thu, 27 Oct 2011 22:02:43 +0200
tracker (0.12.6-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Fri, 21 Oct 2011 16:42:59 +0200
tracker (0.12.5-3) experimental; urgency=low
* Re-enable tracker-search-bar panel applet and nautilus tagging extension.
-- Michael Biebl <biebl@debian.org> Fri, 21 Oct 2011 06:13:23 +0200
tracker (0.12.5-2) experimental; urgency=low
* Add -doc packages for libtracker-sparql, libtracker-miner and
libtracker-extract and move the gtk-doc API documentation out of the -dev
packages. Otherwise they are not co-installable.
* Add Build-Depends on libglib2.0-doc for proper cross references in the
gtk-doc API documentation.
-- Michael Biebl <biebl@debian.org> Sun, 16 Oct 2011 12:39:12 +0200
tracker (0.12.5-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 13 Oct 2011 16:50:58 +0200
tracker (0.12.4-1) experimental; urgency=low
* New upstream release.
* Remove debian/patches/01-po-de.patch, merged upstream.
* Update symbols file for libtracker-extract.
-- Michael Biebl <biebl@debian.org> Thu, 06 Oct 2011 22:16:21 +0200
tracker (0.12.3-1) experimental; urgency=low
* New major upstream release.
* Update build dependencies:
- Bump libglib2.0-dev to (>= 2.28.0).
- Update libgtk2.0-dev to libgtk-3-dev (>= 3.0.0).
- Drop libdbus-glib-1-dev.
* Drop libtracker-client packages.
This library has been deprecated in 0.10 and removed upstream in 0.12.
* Update library packages for the API version bump 0.10 → 0.12.
* Update symbols files for libtracker-extract and libtracker-sparql.
* Remove .cfg man pages. They have become obsolete with the switch to
gsettings.
* Install gsettings schema files.
* Fix html markup error in German translation.
* Install tracker-writeback.
* Update debian/copyright.
-- Michael Biebl <biebl@debian.org> Thu, 29 Sep 2011 20:34:54 +0200
tracker (0.10.26-1) unstable; urgency=low
* New upstream release.
* Update symbols files for libtracker-extract and libtracker-miner.
-- Michael Biebl <biebl@debian.org> Fri, 09 Sep 2011 19:46:57 +0200
tracker (0.10.25-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Fri, 02 Sep 2011 23:57:01 +0200
tracker (0.10.24-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Fri, 26 Aug 2011 00:26:14 +0200
tracker (0.10.23-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 18 Aug 2011 23:54:28 +0200
tracker (0.10.22-1) unstable; urgency=low
* New upstream release.
* Drop Build-Depends on libnotify-dev, not used anymore.
* Disable nautilus extension in preparation for the nautilus 3 transition.
(Closes: #637328)
* debian/libtracker-miner-0.10-0.symbols
- Add new API for pausing miners during process life time and filesystem
writeback control.
-- Michael Biebl <biebl@debian.org> Tue, 16 Aug 2011 11:44:16 +0200
tracker (0.10.21-2) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Tue, 26 Jul 2011 12:58:10 +0200
tracker (0.10.21-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Fri, 22 Jul 2011 16:29:12 +0200
tracker (0.10.20-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 14 Jul 2011 16:17:56 +0200
tracker (0.10.19-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 30 Jun 2011 18:04:31 +0200
tracker (0.10.18-1) experimental; urgency=low
* New upstream release.
* Enable gobject introspection support.
- Add Build-Depends on libgirepository1.0-dev, gobject-introspection and
gir1.2-glib-2.0.
- Add package gir1.2-tracker-0.10 containing the typelib files for
libtracker-extract, libtracker-miner and libtracker-sparql.
- Install gir files in libtracker-{extract,miner,sparql}-0.10-dev.install.
- Make libtracker-{extract,miner,sparql}-0.10-dev depend on
gir1.2-tracker-0.10 (= ${binary:Version})
- Add override for dh_shlibdeps and call dh_girepository.
-- Michael Biebl <biebl@debian.org> Thu, 16 Jun 2011 20:38:08 +0200
tracker (0.10.17-1) experimental; urgency=low
* New upstream release.
* debian/rules
- Explicitly enable/disable features to get more reliable builds.
- Disable gnome-keyring integration. This feature is only used by the
flickr and rss web miners which we don't build.
* debian/control
- Update libtracker-miner-0.10-dev and libtracker-extract-0.10-dev. Depend
on libtracker-sparql-0.10-dev instead of libtracker-client-0.10-dev.
- Make libtracker-miner-0.10-dev, libtracker-extract-0.10-dev and
libtracker-client-0.10-dev conflict with their 0.8 version due to file
conflicts. The gtk-doc API documentation uses unversioned directories.
-- Michael Biebl <biebl@debian.org> Sun, 12 Jun 2011 18:41:42 +0200
tracker (0.10.16-1) experimental; urgency=low
* New upstream release.
* Don't hard code the version in nautilus' extensions directory.
This way the package can be built against nautilus 3 without changes.
-- Michael Biebl <biebl@debian.org> Fri, 03 Jun 2011 17:41:13 +0200
tracker (0.10.15-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 26 May 2011 23:02:10 +0200
tracker (0.10.14-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 19 May 2011 21:20:09 +0200
tracker (0.10.13-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 12 May 2011 14:02:49 +0200
tracker (0.10.12-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Mon, 09 May 2011 12:41:43 +0200
tracker (0.10.11-1) experimental; urgency=low
* New upstream release.
* Update debian/libtracker-extract-0.10-0.symbols. Add tracker-encoding
symbols which were moved from libtracker-common.
* Bump Standards-Version to 3.9.2. No further changes.
-- Michael Biebl <biebl@debian.org> Sun, 01 May 2011 01:25:17 +0200
tracker (0.10.10-1) experimental; urgency=low
* New upstream release.
* Update debian/libtracker-sparql-0.10-0.install, sparql-modules are no
longer compiled as loadable modules, but linked statically.
* Update symbols files for libtracker-sparql and libtracker-miner.
* Improve package description, fix lintian spelling-error-in-description and
spelling-error-in-changelog.
-- Michael Biebl <biebl@debian.org> Thu, 21 Apr 2011 14:59:22 +0200
tracker (0.10.6-1) experimental; urgency=low
* New upstream release.
* debian/control
- Bump Build-Depends on libgstreamer0.10-dev and
libgstreamer-plugins-base0.10-dev to (>= 0.10.31).
-- Michael Biebl <biebl@debian.org> Fri, 01 Apr 2011 02:02:36 +0200
tracker (0.10.5-1) experimental; urgency=low
* New upstream release.
* Remove patches
- debian/patches/02-require_eds_2_32.patch (fixed upstream)
- debian/patches/99-autoreconf.patch (obsolete)
* Update debian/libtracker-miner-0.10-0.symbols.
-- Michael Biebl <biebl@debian.org> Fri, 25 Mar 2011 02:39:04 +0100
tracker (0.10.4-1) experimental; urgency=low
* New upstream release.
* debian/libtracker-sparql-0.10-0.symbols
- Remove tracker_backend_status_wait_(async,finish) and
tracker_sparql_connection_init_(async,finish). Those symbols were not
meant to be public and have been removed.
- Mark private symbols as optional.
* debian/libtracker-miner-0.10-0.symbols
- Mark private symbols as optional.
-- Michael Biebl <biebl@debian.org> Sat, 19 Mar 2011 17:31:38 +0100
tracker (0.10.3-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sat, 12 Mar 2011 00:15:59 +0100
tracker (0.10.2-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 10 Mar 2011 22:28:16 +0100
tracker (0.10.1-1) experimental; urgency=low
* New upstream release.
* Refresh patches.
* debian/rules
- Explicitly disable network-manager support to not pick up any additional
dependencies by accident. Network status detection support is not really
useful anyway as long as we don't build any web miners.
* debian/control
- Remove tracker-status from package description. Its functionality has
been merged into tracker-control. (See tracker-control --help-status)
- Replace Build-Depends on libpoppler-dev with
libpoppler-glib-dev (>= 0.16.0). The newer version of poppler-glib
provides all necessary features and has a stable API.
-- Michael Biebl <biebl@debian.org> Sun, 06 Mar 2011 03:50:02 +0100
tracker (0.10.0-1) experimental; urgency=low
* New major upstream release.
* Update build dependencies
- Bump intltool to (>= 0.40.0), libglib2.0-dev to (>= 2.26.0),
libdbus-glib-1-dev to (>= 0.82).
- Bump libdbus-1-dev (>= 1.3.1) for Unix file descriptor passing support.
- Bump libsqlite3-dev to (>= 3.7.0) for WAL (Write-Ahead Logging).
- Drop libunac1-dev.
- Add libunistring-dev and libgif-dev.
- Replace libpoppler-glib-dev with libpoppler-dev (temporarily).
- Add dia for gtk-doc documentation.
* Rename library packages for 0.8 → 0.10 soname bump.
* Add packages for libtracker-sparql-0.10-0 and libtracker-sparql-0.10-dev.
* Update symbols files.
* Update patches
- Drop debian/patches/01-upower.patch, merged upstream.
- Update debian/patches/02-require_eds_2_32.patch to allow building
against EDS 2.32.
- Refresh debian/patches/99-autoreconf.patch.
* tracker-search-tool has been replaced by tracker-needle. Update install
file, package description and configure flags.
* Drop Recommends on unzip (replaced by gzip, which is Essential) and
odt2txt (obsolete).
* Drop transitional package tracker-search-tool.
* Remove obsolete --enable-unac configure flag.
* Disable tracker-search-bar for now, as we don't have libpanelapplet-4.0 in
Debian yet.
* Remove tracker-status-icon as it is no longer shipped upstream. Clean up
autostart file on upgrades.
* Update install files.
* Move libtracker-common, libtracker-data and sparql-modules into
libtracker-sparql-0.10-0 package. Update shlibs.local accordingly.
* Add lintian override for binary-or-shlib-defines-rpath for the tracker
package. The rpath is used by tracker-store to load the private libraries
in /usr/lib/tracker-0.10.
-- Michael Biebl <biebl@debian.org> Fri, 25 Feb 2011 15:21:37 +0100
tracker (0.8.18-1) unstable; urgency=low
* New upstream release.
* Refresh debian/patches/01-upower.patch.
* Drop debian/patches/02-require_eds_2_32.patch, fixed upstream.
* Use dh-autoreconf to update the build system
- Drop debian/patches/99-autoreconf.patch.
- Add Build-Depends on dh-autoreconf.
- Pass --with autoreconf to dh.
-- Michael Biebl <biebl@debian.org> Thu, 12 May 2011 15:06:43 +0200
tracker (0.8.17-2) unstable; urgency=low
* Add explicit Build-Depends on libcamel1.2-dev (>= 2.32.0) and also bump
evolution-dev and evolution-data-server-dev to (>= 2.32.0), as they need
to be in sync. (Closes: #613503)
* debian/patches/02-require_eds_2_32.patch
- As we require EDS 2.32 now, drop older compat code which no longer
compiles with newer versions of EDS. (Closes: #614488)
* Switch from cdbs to dh.
* Bump debhelper compatibility level to 8.
* Fix watch file.
* Add debian/tracker.docs.
* Make sure libtracker-common does not end up in shlibs or symbols as it is
a private library. Use shlibs.local to tell dpkg-shlibdeps where to find
the library instead.
-- Michael Biebl <biebl@debian.org> Thu, 24 Feb 2011 22:55:39 +0100
tracker (0.8.17-1) unstable; urgency=low
* New upstream release.
* debian/patches/01-nfo-belongsToContainer-index.patch
- Remove this patch as the performance regressions have been fixed
upstream by making tracker-miner-fs more efficient and patching the
ontology isn't really a good idea.
* debian/patches/01-upower.patch
- Port tracker from deprecated libdevkit-power-gobject to libupower-glib.
Patch cherry-picked from upstream. (Closes: #595085)
* debian/patches/99-autoreconf.patch
- Update build system for 01-upower.patch.
* debian/control
- Bump Standards-Version to 3.9.1. No further changes.
- Change Build-Depends on libdevkit-power-gobject-dev to
libupower-glib-dev (>= 0.9.0).
-- Michael Biebl <biebl@debian.org> Tue, 21 Sep 2010 05:19:35 +0200
tracker (0.8.15-1) unstable; urgency=low
* New upstream release.
- Show email search results in tracker-search-tool. (Closes: #584895)
* debian/patches/01-tracker-status-icon-show-missing-menu-items.patch
- Removed, fixed upstream.
* debian/patches/01-nfo-belongsToContainer-index.patch
- Keep index for nfo:belongsToContainer as otherwise the initial crawling
suffers a serious performance regression.
* debian/control
- Bump Build-Depends on libglib2.0-dev to (>= 2.24.0).
- Bump Standards-Version to 3.9.0.
- Use Breaks instead of Conflicts as recommended by the new policy.
-- Michael Biebl <biebl@debian.org> Fri, 16 Jul 2010 13:57:26 +0200
tracker (0.8.12-1) unstable; urgency=low
* New upstream release.
* debian/libtracker-miner-0.8-dev.install
- Install vapi helper file /usr/share/vala/vapi/tracker-miner-0.8.deps.
* debian/patches/01-tracker-status-icon-show-missing-menu-items.patch
- Show missing menu items in tracker-status-icon's context menu.
-- Michael Biebl <biebl@debian.org> Thu, 17 Jun 2010 23:12:57 +0200
tracker (0.8.11-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sun, 13 Jun 2010 16:31:39 +0200
tracker (0.8.9-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sat, 29 May 2010 17:20:14 +0200
tracker (0.8.7-1) unstable; urgency=low
* New upstream release.
* debian/watch
- Only track stable releases.
* Switch to source format 3.0 (quilt)
- Add debian/source/format.
- Drop quilt from Build-Depends.
- Remove /usr/share/cdbs/1/rules/patchsys-quilt.mk from debian/rules.
- Remove debian/README.source.
* debian/control
- Drop python-support from Build-Depends as we no longer build
libdeskbar-tracker.
- Drop libpoppler-dev from Build-Depends since only the glib frontend is
used and not the core library. Thanks to Pino Toscano for the hint.
- Add dependency on gnome-icon-theme for tracker-gui. The icons used by
tracker-search-tool are provided by gnome-icon-theme. (Closes: #582245)
-- Michael Biebl <biebl@debian.org> Thu, 20 May 2010 23:30:47 +0200
tracker (0.8.3-1) unstable; urgency=low
* New upstream release.
* debian/control
- Improve package descriptions. Thanks to Tshepang Lekhonkhobe for the
patch.
- Add Build-Depends on gtk-doc-tools and graphviz.
* debian/rules
- Add --enable-gtk-doc to DEB_CONFIGURE_EXTRA_FLAGS.
* debian/libtracker-{client,extractor,miner}-dev.install
- Install API documentation.
* debian/patches/30-vfat-hidden-attribute-build-fix.patch
- Removed, merged upstream.
* debian/tracker.install
- Install D-Bus interface description file tracker-miner-web.xml.
-- Michael Biebl <biebl@debian.org> Sat, 24 Apr 2010 18:12:48 +0200
tracker (0.8.2-1) unstable; urgency=low
* New upstream release.
* Remove patches
- debian/patches/10-improve-library-dependencies.patch (merged upstream)
- debian/patches/20-am-maintainer-mode.patch (obsolete)
- debian/patches/99-autoreconf.patch (obsolete)
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Fri, 16 Apr 2010 19:14:41 +0200
tracker (0.8.1-2) experimental; urgency=low
* debian/control
- Add Breaks: rygel-tracker (<< 0.5) as the D-Bus API has changed between
0.6 and 0.8.
- Add Conflicts/Replaces: tracker (<< 0.8.1-1) to tracker-gui. The icons
were moved between those two packages.
- Remove useless Conflicts from tracker-miner-fs and
tracker-miner-evolution. Both packages already have a strict dependency
on tracker.
* debian/patches/10-improve-library-dependencies.patch
- Only link against libraries when actually needed to get rid of
unnecessary library dependencies.
* debian/patches/99-autoreconf.patch
- Run autoreconf to update the build system.
-- Michael Biebl <biebl@debian.org> Wed, 14 Apr 2010 01:20:31 +0200
tracker (0.8.1-1) experimental; urgency=low
* New major upstream release. (Closes: #549695)
- The changes are too numerous to list them all, as it is basically a
rewrite. Some relevant changes:
- QDBM is gone, and with it its limitations. (Closes: #452657, #525393)
- The metadata store has been split from the file system crawler and can
be used independently. There are separate "miners" which can be
installed to feed data to tracker.
The new packaging layout accounts for that change.
- Support for Nepomuk with SPARQL which are used to query and update the
data.
- tracker-meta-folder is gone. (Closes: #430623)
* Remove patches:
- debian/patches/10-binutils-gold.patch (fixed upstream)
- debian/patches/15-am-maintainer-mode.patch (obsolete)
- debian/patches/20-tracker-search-man-page-typo-fix.patch (merged
upstream)
- debian/patches/25-trackerd-man-page-typo-fix.patch (merged upstream)
- debian/patches/99-autoreconf.patch (obsolete)
* debian/patches/30-vfat-hidden-attribute-build-fix.patch
- Refresh to apply cleanly.
* Update Build-Depends:
- Bump libglib2.0-dev to (>= 2.20.0).
- Bump libdbus-1-dev to (>= 1.0).
- Bump libdbus-glib-1-dev to (>= 0.78).
- Bump libsqlite3-dev to (>= 3.6.16).
- Bump libgtk2.0-dev to (>= 2.18.0).
- Bump libexempi-dev to (>= 2.1.0).
- Drop libgmime-2.4-dev, libgnome2-dev, libgnomeui-dev,
libgnome-desktop-dev, libglade2-dev, libraptor1-dev, libqdbm-dev,
libhal-dev, libhal-storage-dev.
- Add libflac-dev (>= 1.2.1) for FLAC extractor support.
- Add evolution-dev (>= 2.25.5) and evolution-data-server-dev (>= 2.25.5)
for the evolution email miner.
- Add libpanel-applet2-dev for the tracker-search-bar applet.
- Add libnautilus-extension-dev for the tracker-tag widget integration in
nautilus.
- Add libdevkit-power-gobject-dev (>= 007) for AC power detection.
- Add libenca-dev (>= 1.9) for detecting defect Russion or Cyrillic language
specifis in MP3s.
- Add libiptcdata0-dev for extracting IPTC metadata from images.
- Add libxml2-dev (>= 2.6), uuid-dev, libgee-dev (>= 0.3), valac.
* New package layout:
- Drop libdeskbar-tracker, libtracker-gtk0, libtracker-gtk-dev.
- Add libtracker-miner-0.8-0, libtracker-miner-0.8-dev,
libtracker-extract-0.8-0 libtracker-extract-0.8-dev,
tracker-extract, tracker-miner-fs, tracker-miner-evolution,
tracker-explorer, tracker-gui.
- Make tracker-search-tool a transitional package which depends on
tracker-gui.
- Rename libtrackerclient0 → libtracker-client-0.8-0,
libtrackerclient-dev → libtracker-client-0.8-dev.
* Add symbols files for all shared libraries:
- Add debian/libtracker-client-0.8-0.symbols.
- Add debian/libtracker-miner-0.8-0.symbols.
- Add debian/libtracker-extract-0.8-0.symbols.
* Rename tracker.postinst → tracker-miner-fs.postinst as tracker-miner-fs
needs the increased fs.inotify.max_user_watches, not tracker-store.
* Add lintian overrides for binary-or-shlib-defines-rpath for packages
linking against private libraries in /usr/lib/tracker-0.8:
- Add debian/libtracker-extract-0.8-0.lintian-overrides.
- Add debian/libtracker-miner-0.8-0.lintian-overrides.
- Add debian/tracker-gui.lintian-overrides.
- Add debian/tracker-miner-evolution.lintian-overrides.
- Add debian/tracker-miner-fs.lintian-overrides.
- Add debian/tracker-utils.lintian-overrides.
* Remove the old xdg autostart files for trackerd and tracker-applet
on upgrades:
- Add debian/tracker-gui.preinst.
- Add debian/tracker.preinst.
* debian/rules:
- Update configure switches, enable FLAC extractor support.
- Update DEB_DH_MAKESHLIBS_ARGS_ALL arguments.
* Review and update debian/copyright.
-- Michael Biebl <biebl@debian.org> Fri, 09 Apr 2010 00:12:53 +0200
tracker (0.6.96-2) unstable; urgency=low
* debian/patches/30-vfat-hidden-attribute-build-fix.patch
- Don't build VFAT check for hidden attributes on non-linux platforms.
Thanks Petr Salinger for the patch. (Closes: #576938)
-- Michael Biebl <biebl@debian.org> Thu, 08 Apr 2010 16:47:01 +0200
tracker (0.6.96-1) unstable; urgency=low
* New upstream release.
* debian/tracker.manpages
- Remove tracker-thumbnailer.1, no longer installed upstream.
* Remove patches:
- debian/patches/10-drop-bogus-version-info.patch (merged upstream)
- debian/patches/20-tracker-defaults.patch (merged upstream)
- debian/patches/30-gmime-2.4.patch (merged upstream)
* debian/control
- Fix small typo in tracker-dbg's package description. (Closes: #550771)
- Bump Standards-Version to 3.8.4. No further changes.
- Add Depends on procps.
* debian/patches/10-binutils-gold.patch
- Add missing libraries to fix FTBFS with binutils-gold. (Closes: #556499)
* debian/patches/15-am-maintainer-mode.patch
- Set AM_MAINTAINER_MODE to make patching the build system less painful.
* debian/patches/99-autoreconf.patch
- Rerun autoreconf -i to update the build system.
* debian/*.lintian-overrides
- Add lintian overrides for tracker-search-tool and tracker-utils. Those
binaries encode an rpath for /usr/lib/tracker. As they are built from
the same source package and have a strict dependency on the tracker
binary package, it is acceptable to define an rpath.
* debian/patches/20-tracker-search-man-page-typo-fix.patch
- Fix typo in the tracker-search.1 man page detected by lintian.
* debian/patches/25-trackerd-man-page-typo-fix.patch
- Fix typo in the trackerd.1 man page spotted by Hans Spaans.
(Closes: #549868)
* debian/rules
- Update configure flags.
- Don't generate ldconfig calls in postinst/postrm for the libraries
shipped in /usr/lib/tracker.
* debian/tracker.postinst
- Start procps to apply "sysctl.d/30-tracker.conf".
-- Michael Biebl <biebl@debian.org> Mon, 05 Apr 2010 16:39:38 +0200
tracker (0.6.95-3) unstable; urgency=low
* Port to GMime 2.4. (Closes: #549052)
* debian/control
- Update Build-Depends libgmime-2.0-2-dev → libgmime-2.4-dev.
- Bump Standards-Version to 3.8.3. No further changes.
* debian/patches/30-gmime-2.4.patch
- Pull patch from https://bugzilla.gnome.org/show_bug.cgi?id=564640 to
make tracker compile against GMime 2.4.
* debian/patches/99-autoreconf.patch
- Run autoreconf as the gmime-2.4 patch requires changes to the build
system.
-- Michael Biebl <biebl@debian.org> Wed, 30 Sep 2009 23:11:34 +0200
tracker (0.6.95-2) unstable; urgency=low
* Bump Standards-Version to 3.8.2. No further changes.
* libdeskbar-tracker: Change Depends on python-gnome2-desktop to
python-gnomedesktop, as python-gnome2-desktop is going away.
(Closes: #541565)
-- Michael Biebl <biebl@debian.org> Sun, 16 Aug 2009 02:22:03 +0200
tracker (0.6.95-1) unstable; urgency=low
* New upstream release.
* Stop installing the kmail push module for now as kmail support is not yet
mature enough.
* debian/libtrackerclient0.symbols
- Updated for new API additions.
-- Michael Biebl <biebl@debian.org> Sun, 24 May 2009 00:53:09 +0200
tracker (0.6.94-1) unstable; urgency=low
* New upstream release.
* Drop Build-Depends on deskbar-applet and python-gtk2-dev again and install
the tracker deskbar-applet module manually instead.
* debian/patches/20-tracker-defaults.patch
Create configuration file with more conservative defaults.
(Closes: #525107)
- Disable evolution plugin by default.
- Set throttle level to 10.
NOTE: An existing ~/.config/tracker/tracker.cfg will *not* be updated
automatically. This change only affects newly created configuration files.
-- Michael Biebl <biebl@debian.org> Fri, 08 May 2009 17:06:40 +0200
tracker (0.6.93-1) unstable; urgency=low
* New upstream release.
* debian/tracker-utils.install
- Install tracker-processes binary.
* debian/libtrackerclient0.symbols
- Updated for new API additions.
* debian/control
- Add Build-Depends on libvorbis-dev (>= 0.22).
* debian/rules
- Add --enable-libvorbis to configure flags for the vorbis metadata
extractor.
-- Michael Biebl <biebl@debian.org> Thu, 09 Apr 2009 21:53:12 +0200
tracker (0.6.92-1) unstable; urgency=low
* New upstream release.
* debian/watch
- Check for the tarball directly on the GNOME ftp server.
* debian/patches/01-tracker-statistics-fix.patch
- Removed, merged upstream.
* debian/libtracker{client,-gtk}-dev.install
- Upstream no longer builds static libraries, so remove *.a files.
* debian/tracker.install
- Install the new-style push modules. Currently available is kmail
support, evolution support requires at least version 2.25.5 of evolution
and eds which are not yet in unstable.
* debian/control
- Tighten build dependency on libraptor1-dev to (>= 1.4.18-2) to make sure
we link against a version with GnuTLS support and not OpenSSL.
Closes: #519684
* debian/patches/10-drop-bogus-version-info.patch
- Revert bogus libtool so-versioning.
-- Michael Biebl <biebl@debian.org> Tue, 31 Mar 2009 01:32:34 +0200
tracker (0.6.91-1) unstable; urgency=low
* New upstream release.
* Removed patches that were merged upstream
- debian/patches/01-secure_tmpdir.patch
- debian/patches/02-tracker-restart.patch
- debian/patches/03-tracker-deskbar-live-search.patch
- debian/patches/05_gnomedesktop.patch
* debian/control
- Bump Standards-Version to 3.8.1. No further changes.
- Change Section of tracker-dbg to debug.
- Add deskbar-applet and python-gtk2-dev to Build-Depends as ./configure
now requires it to successfully enable the deskbar-applet module.
* debian/patches/01-tracker-statistics-fix.patch
- Patch pulled from upstream SVN. Fixes a crash when calculating and
showing the statistics.
* debian/libtrackerclient0.symbols
- Updated for new API additions.
-- Michael Biebl <biebl@debian.org> Wed, 18 Mar 2009 15:31:46 +0100
tracker (0.6.90-4) unstable; urgency=low
* debian/patches/03-tracker-deskbar-live-search.patch
- Update deskbar module to the new tracker D-Bus API (object path of the
Search() interface has changed). Closes: #518252
* debian/patches/05_gnomedesktop.patch
- Use python module gnomedesktop directly rather than
deskbar.core.gnomedeskop (which has been removed from deskbar-applet
since 2.23.6). Patch taken from Ubuntu, thanks.
* debian/control
- Depend on python-gnome2-desktop (for patch 05_gnomedesktop.patch).
-- Michael Biebl <biebl@debian.org> Fri, 06 Mar 2009 16:21:43 +0100
tracker (0.6.90-3) unstable; urgency=low
* debian/control
- Add explicit Build-Depends on libglade2-dev (>= 2.5). Closes: #517893
* debian/patches/02-tracker-restart.patch
- When restarting trackerd from within tracker-applet, use the correct
path to the binary. Closes: #516546
-- Michael Biebl <biebl@debian.org> Mon, 02 Mar 2009 22:18:27 +0100
tracker (0.6.90-2) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Fri, 20 Feb 2009 02:50:12 +0100
tracker (0.6.90-1) experimental; urgency=low
* New upstream release.
- Adds proper D-Bus introspection support. Closes: #411778
- Limit of search results can now be specified via the --limit option for
tracker-{query,tag,files}. Closes: #430621
* debian/patches/02-static_keywords_reply.patch
- Removed, merged upstream.
* debian/patches/03-prefer_odt2txt.patch
- Removed, merged upstream.
* debian/patches/01-secure_tmpdir.patch
- Update to the latest upstream changes.
- Output the resulting text file to stdout.
* Switch patch management system to quilt.
* debian/compat
- Bump to debhelper v7 compat mode.
* debian/control
- Update Build-Depends
+ Bump debhelper to (>= 7).
+ Bump libglib2.0-dev to (>= 2.16.0).
+ Bump libgstreamer0.10-dev to (>= 0.10.12).
+ Add libgstreamer-plugins-base0.10-dev (>= 0.10.12).
+ Replace libxml-parser-perl with intltool.
+ Drop libgnomevfs2-dev.
+ Add libtotem-plparser-dev.
+ Add libraptor1-dev.
+ Add libhal-storage-dev (>= 0.5).
+ Add libtiff4-dev.
- Add ${misc:Depends} to all packages.
- Add tracker (= ${binary:Version}) to tracker-dbg.
* Bump Standards-Version to 3.8.0. Add README.source as recommended by the
new policy and refer to the quilt documentation.
* Update symbols files.
* Update list of installed files and man pages.
* Install 30-tracker.conf into /etc/sysctl.d/ which will increase the
maximum number of inotify watches to 65536.
-- Michael Biebl <biebl@debian.org> Wed, 11 Feb 2009 17:00:55 +0100
tracker (0.6.6-2) unstable; urgency=low
* debian/control
- Add Build-Depends on pkg-config.
- Add Vcs-* fields.
- Replace Recommends on o3read with odt2txt.
* debian/patches/01-secure_tmpdir.patch
- Use mktemp to create a secure tmpdir for the msword filter.
Thanks to Jon Dowland for the patch. Closes: #473733
* Add symbols files for libtrackerclient0 and libtracker-gtk0.
* debian/patches/02-static_keywords_reply.patch
- Make _keywords_reply a static function to not export it in the public
API.
* debian/patches/03-prefer_odt2txt.patch
- Use odt2txt to index OpenOffice documents. Closes: #478091
-- Michael Biebl <biebl@debian.org> Sun, 25 May 2008 02:20:25 +0200
tracker (0.6.6-1) unstable; urgency=low
* New upstream release.
* debian/control
- Wrap dependencies.
-- Michael Biebl <biebl@debian.org> Mon, 03 Mar 2008 19:21:45 +0100
tracker (0.6.5-1) unstable; urgency=low
* New upstream release.
- Merge messsage notifications have been removed. Closes: #463519
* Removed patches that were merged upstream
- debian/patches/01-libtracker_gtk_missing_libs.patch
- debian/patches/02-tracker_log_file.patch
- debian/patches/03_no_initial_index_in_battery.patch
- debian/patches/04_fix_crash_index_name_is_null.patch
- debian/patches/05_typo_audio_track_peak_gain_tag.patch
- debian/patches/06_trackerd_infinite_loop.patch
* debian/rules
- Exclude /usr/lib/tracker/extract-modules/ from dh_makeshlibs.
* debian/tracker.install
- Install *.so files from /usr/lib/tracker/extract-modules/.
* debian/tracker-search-tool.install
- Install /usr/share/tracker/tracker-applet-prefs.glade.
-- Michael Biebl <biebl@debian.org> Thu, 28 Feb 2008 07:14:18 +0100
tracker (0.6.4-3) unstable; urgency=low
* debian/control
- Replace Build-Depends python-central with python-support.
- Remove X[BS]-Python-Version fields.
* debian/rules
- Add call to dh_pysupport passing it the path of the deskbar-applet
modules directory.
- Remove dh_pycentral.
* debian/tracker-search-tool.menu
- Add a menu file for tracker-search-tool. Closes: #438959
-- Michael Biebl <biebl@debian.org> Sun, 24 Feb 2008 02:36:23 +0100
tracker (0.6.4-2) unstable; urgency=low
* Merge a few patches from the Ubuntu package.
- debian/patches/03_no_initial_index_in_battery.patch:
+ Do not run the initial index if running on battery.
Patch taken from upstream SVN, revision 1075:
http://svn.gnome.org/viewvc/tracker?view=revision&revision=1075
- debian/patches/04_fix_crash_index_name_is_null.patch:
+ Fix a crash when index name is null during merging.
Patch taken from upstream SVN, revision 1076:
http://svn.gnome.org/viewvc/tracker?view=revision&revision=1076
- debian/patches/05_typo_audio_track_peak_gain_tag.patch:
+ Fix a typo in a tag metadata.
Patch taken from upstream SVN, revision 1077:
http://svn.gnome.org/viewvc/tracker?view=revision&revision=1077
- debian/patches/06_trackerd_infinite_loop.patch:
+ Fix an infinite loop in trackerd if a second instance is launched.
Closes:#460176. Patch taken from upstream SVN, revision 1079:
http://svn.gnome.org/viewvc/tracker?view=revision&revision=1079
-- Michael Biebl <biebl@debian.org> Fri, 25 Jan 2008 06:43:19 +0100
tracker (0.6.4-1) unstable; urgency=low
* New upstream release.
- Check for dbus errors in tracker-status. Closes: #445499
- Fix memory leaks in trackerd. Closes: #451216
- Check for changed/removed files on startup and correctly handle
NoWatchDirectories. Closes: #412116
* debian/control
- Bump Standards-Version to 3.7.3. No further changes required.
- Add Build-Depends on libnotify-dev (>= 0.4.3) and raise Build-Depends on
libgtk2.0-dev (>= 2.10.0). Required for compiling tracker-applet.
- Add Build-Depends on libhal-dev (>= 0.5). Required for battery status
detection support.
* debian/patches/01-stemming_languages.patch
- Removed, merged upstream.
* debian/patches/02-memleak_fix.patch
- Removed, merged upstream.
* debian/patches/01-libtracker_gtk_missing_libs.patch
- libtracker-gtk uses symbols from libtrackerclient, so make sure we link
against it.
* debian/patches/02-tracker_log_file.patch
- Pull tracker log file fix from svn (r1074).
* debian/rules
- Pass --enable-trackerapplet to DEB_CONFIGURE_EXTRA_FLAGS. This enables
the compilation of tracker-applet, an application for the GNOME
notification area which shows the status of the trackerd daemon and
allows users to quickly access the most frequently used actions.
* debian/tracker-search-tool.manpages
- Install the tracker-applet man page.
* debian/tracker-search-tool.install
- Install the tracker-applet binary and its autostart desktop file.
-- Michael Biebl <biebl@debian.org> Tue, 11 Dec 2007 20:22:15 +0100
tracker (0.6.3-3) unstable; urgency=low
* Fix the path for the deskbar-applet modules directory. Closes: #445588
-- Michael Biebl <biebl@debian.org> Thu, 18 Oct 2007 16:21:15 +0200
tracker (0.6.3-2) unstable; urgency=low
* Enable the new-style module for deskbar-applet. Closes: #445588
* debian/rules
- Pass "--enable-deskbar-applet=module" to DEB_CONFIGURE_EXTRA_FLAGS.
* debian/control
- Make the dependency on deskbar-applet versioned as the new-style module
only works with deskbar-applet >= 2.20.0.
* debian/libdeskbar-tracker.install
- The new-style deskbar-applet modules are installed to a different path,
update the install file accordingly.
-- Michael Biebl <biebl@debian.org> Wed, 17 Oct 2007 20:37:07 +0200
tracker (0.6.3-1) unstable; urgency=low
* New upstream release.
* debian/patches/01-version_fix.patch
- Removed, merged upstream.
* debian/patches/02-getenv.patch
- Removed, merged upstream.
* debian/patches/03-system_ioprio.patch
- Removed, fixed upstream.
* debian/control
- Build-Depend on libqdbm-dev (again); qdbm proved to be a lot faster and
less ressource hungy for the index databases than sqlite3.
- Enable XMP support by adding a Build-Depends on libexempi-dev.
- Use the new "Homepage:" field to specify the upstream URL.
* debian/rules
- Build against the system qdbm libray.
- Pass "-Wl,-Bsymbolic" to LDFLAGS. This will avoid namespace conflicts
which can lead to all kinds of subtle bugs in clients that load
libtrackerclient via dlopen. Closes: #443824
-- Michael Biebl <biebl@debian.org> Fri, 28 Sep 2007 11:25:49 +0200
tracker (0.6.2-2) unstable; urgency=low
* debian/patches/02-getenv.patch
- Include stdlib.h in tracker-apps.c for the getenv function prototype.
Patch by dann frazier, thanks. Closes: #440997
* debian/patches/03-system_ioprio.patch
- Use the ioprio syscalls defined by linux-libc-dev. Fixes a FTBFS on hppa
and m68k.
-- Michael Biebl <biebl@debian.org> Fri, 14 Sep 2007 11:43:05 +0200
tracker (0.6.2-1) unstable; urgency=low
* New upstream release.
* debian/patches/10-function_prototypes.patch
- Removed, merged upstream.
* debian/patches/01-version_fix.patch
- Fix the version number shown at trackerd start.
* debian/control
- Drop Build-Depends on libqdbm-dev. Tracker now uses sqlite3 for all of
its databases.
- Bump Build-Depends on libsqlite3-dev to >= 3.4 as the new sqlite based
indexer requires the incremental blob I/0 feature of sqlite 3.4.
* debian/rules
- Add --enable-deskbar-applet=handler to DEB_CONFIGURE_EXTRA_FLAGS.
deskbar-applet in unstable still uses the "old-style" handler interface.
- Drop --enable-external-sqlite and --enable-external-qdbm from
DEB_CONFIGURE_EXTRA_FLAGS. These configure options are now obsolete.
-- Michael Biebl <biebl@debian.org> Wed, 05 Sep 2007 22:30:28 +0200
tracker (0.6.1-1) unstable; urgency=low
* New upstream release.
* debian/patches/10-deskbar_plugin_hashbang.patch
- Removed, merged upstream.
* debian/patches/10-function_prototypes.patch
- Add missing function prototype definitions. Closes: #435774
* debian/rules
- Generate tight shlibs dependencies by passing -V to dh_makeshlibs.
Closes: #435840
* debian/tracker-search-tool.manpages
- Install tracker-preferences man page.
-- Michael Biebl <biebl@debian.org> Thu, 09 Aug 2007 18:32:11 +0200
tracker (0.6.0-1) unstable; urgency=low
* New upstream release.
- Uses XDG directories to store the settings, cache, database and log
files. Closes: #414860
- Fixes the crash of the deskbar applet at session start. Closes: #434078
- Does not fall back to polling when the inotify limit is exceeded.
Closes: #412089
- Correctly uses xdg-open to open the search results with the preferred
application. This requires the xdg-utils package to be installed, which
is a Recommends of tracker-search-tool. Closes: 415705
* Removed debian/man/ as the man pages are now shipped upstream.
Update tracker.manpages, tracker-search-tool.manpages and
tracker-utils.manpages accordingly.
* Removed patches that were applied upstream or are now obsolete
- debian/patches/20-trackerd_manpage.patch
- debian/patches/30-deskbar_plugin_max_results.patch
- debian/patches/40-inotify_syscalls.patch
- debian/patches/50-expand_pathname.patch
- debian/patches/60-check_pointer.patch
- debian/patches/70-check_magic_file_results.patch
* debian/copyright
- The htmless sources are not shipped anymore and the qdbm sources are now
in a separate subdirectory. Update the copyright file accordingly.
* debian/libtracker-gtk-dev.install, debian/libtracker-gtk0.install
- Added. libtracker-gtk is a new library that provides handy GTK+ widgets
for applications that use tracker.
* debian/control
- Drop libmagic-dev from Build-Depends, add libunac1-dev and libqdbm-dev.
- Add djvulibre-bin and gnumeric to Suggests. They are used as external
filters for indexing djvu, csv and spreadsheet documents.
- Add binary packages libtracker-gtk0 and libtracker-gtk-dev.
- Update the long description of tracker-utils and include the new tool
"tracker-status".
- Add binary package tracker-dbg which provides the debugging symbols of
trackerd and its utilities. Closes: #412140
* debian/rules
- Make sure we link against the system qdbm library.
- Enable the support for libunac.
- Explicitly enable the compilation of the GUI, the preferences applet
and libtracker-gtk.
-- Michael Biebl <biebl@debian.org> Thu, 26 Jul 2007 01:13:37 +0200
tracker (0.5.4-6) unstable; urgency=low
* Rebuild against poppler 0.5.4. Closes: #427815
* Don't install htmless binary and man page anymore.
The html filter now uses w3m.
-- Michael Biebl <biebl@debian.org> Wed, 06 Jun 2007 22:39:00 +0200
tracker (0.5.4-5) unstable; urgency=low
* debian/patches/70-check-magic-file-results.patch
- Check the return results of magic_file. Closes: #414444
Thanks to Sam Morris for the patch.
-- Michael Biebl <biebl@debian.org> Thu, 22 Mar 2007 18:23:50 +0100
tracker (0.5.4-4) unstable; urgency=low
* debian/patches/50-expand_pathname.patch
- Expand relative paths passed to tracker-thumbnailer. Closes: #411904
* debian/patches/60-check_pointer.patch
- Check pointer before passing it to g_locale_to_utf8().
-- Michael Biebl <biebl@debian.org> Wed, 21 Feb 2007 00:00:25 +0100
tracker (0.5.4-3) unstable; urgency=medium
* debian/patches/40-inotify_syscalls.patch
- Add missing inotify syscall numbers for mips, hppa and m68k.
Fixes a FTBFS on these architectures, so priority medium.
-- Michael Biebl <biebl@debian.org> Tue, 20 Feb 2007 23:43:36 +0100
tracker (0.5.4-2) unstable; urgency=low
* debian/control
- Add python-gtk2 (<< 2.10) as alternative to python-gobject.
* debian/rules
- Pass the deskbar-applet plugin directory path to dh_pycentral.
-- Michael Biebl <biebl@debian.org> Sun, 28 Jan 2007 12:56:17 +0100
tracker (0.5.4-1) unstable; urgency=low
[ Johan Kiviniemi ]
* New upstream release.
- Also contains a plugin for deskbar-applet.
The new binary package is called libdeskbar-tracker.
Use python-central to create the package.
* Added debian/watch.
* debian/copyright:
- Mention the deskbar plugin.
* debian/patches/10-deskbar_plugin_hashbang.patch:
- Remove the #! line from the deskbar plugin.
* debian/patches/20-trackerd_manpage.patch:
- Fix markup.
- Replace $Home with $HOME.
* debian/patches/30-deskbar_plugin_max_results.patch:
- Increase the maximum number of listed results from 2 to 10.
* debian/control:
- Add Recommends: untex to tracker and Recommends: xdg-utils to
tracker-search-tool.
- Add libmagic-dev as new build dependency.
[ Michael Biebl ]
* Review Johan's work and upload to unstable.
Thanks a lot, Johan!
-- Michael Biebl <biebl@debian.org> Sat, 27 Jan 2007 18:13:51 +0100
tracker (0.5.3-1) unstable; urgency=low
* Initial release. Closes: #387110
Based on work by Laurent Aguerreche and Jamie McCracken.
* Build against system sqlite library.
* Do not ship the internal o3totxt utility but rather add a
Recommends: o3read.
* Write missing man pages.
-- Michael Biebl <biebl@debian.org> Fri, 19 Jan 2007 00:29:39 +0100
|