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
|
gvfs (1.46.2-1) unstable; urgency=medium
* New upstream release
- Drop all patches added in previous upload, they are in this new release
* debian/control.in: Bump Standards-Version to 4.5.1 (no further changes)
-- Laurent Bigonville <bigon@debian.org> Sat, 16 Jan 2021 09:50:03 +0100
gvfs (1.46.1-2) unstable; urgency=medium
* Team upload
* Re-export patch series with gbp pq
* Update to upstream commit 1.46.1-6-gddd89654 from gnome-3-38 branch
- Report content type more reliably on SMB
- Report 100% progress after moving a file on SMB
- Ensure a display name is set for Google Drive root directory, fixing
file-chooser crashes
- Translation updates
* Add patch from upstream to fix intermittent deadlock
-- Simon McVittie <smcv@debian.org> Fri, 11 Dec 2020 17:47:21 +0000
gvfs (1.46.1-1) unstable; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 05 Oct 2020 17:05:11 +0200
gvfs (1.46.0-2) unstable; urgency=medium
* Team upload
* Revert removal of deprecated gvfs-bin package.
There is still one package in unstable that depends on it, and
getting GNOME 3.38 into testing is more important right now than
removing deprecated wrapper scripts.
* d/control.in: Remove lockstep dependency by gvfs-bin on gvfs-common.
It's generally better for transitional packages to have loose
dependencies, so that they can stay installed on users' systems even
after they have been removed from Debian if necessary.
* Revert "d/watch: Watch for development versions"
* Release to unstable
-- Simon McVittie <smcv@debian.org> Sun, 27 Sep 2020 17:00:48 +0100
gvfs (1.46.0-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 17 Sep 2020 15:27:20 +0200
gvfs (1.45.92-1) experimental; urgency=medium
* Team upload
* d/watch: Watch for development versions
* New upstream release
* Update GLib dependency
* Remove deprecated gvfs-bin package.
Upstream removed the gvfs-foo(1) tools in 2018, before Debian 10.
It's about time we follow their example.
-- Simon McVittie <smcv@debian.org> Wed, 09 Sep 2020 17:58:20 +0100
gvfs (1.44.1-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Sun, 29 Mar 2020 00:09:58 -0400
gvfs (1.44.0-1) unstable; urgency=medium
* New upstream release
* debian/control.in: Depend on lsof on linux only, the package is not
available on non-linux arch and only needed by the UDisks2VolumeMonitor
plugin not built outside if linux, thanks Svante Signell (Closes: #951516)
* debian/control.in: Make gvfs-libs depend against gsettings-desktop-schemas
the "org.gnome.desktop.lockdown" is needed at several places
-- Laurent Bigonville <bigon@debian.org> Sun, 08 Mar 2020 18:19:22 +0100
gvfs (1.43.92-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 02 Mar 2020 18:01:10 +0100
gvfs (1.43.90-1) experimental; urgency=medium
[ Laurent Bigonville ]
* Bump debhelper compatibility to 12
* Move all the daemons to /usr/libexec now that the policy allows it, add
compatibility symlinks in case something is referencing the old location
* debian/control.in: Bump Standards-Version to 4.5.0 (no further changes)
[ Sebastien Bacher ]
* New upstream release
* debian/control.in:
- updated libgdata requirement
* debian/patches/test-Port-to-python-twisted.patch
- removed, the change is included in the new version
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 26 Feb 2020 17:37:28 +0100
gvfs (1.42.2-1) unstable; urgency=medium
[ Sjoerd Simons ]
* Drop gvfs-daemons' dependency on x11-utils.
Back in 2009 Josselin added a direct dependency on x11-utils from
gvfs-daemons for xprop. These days gvfs-daemons really shouldn't need
xprop any more (definitely nothing in the source refers to it), so
drop it.
[ Paul Sonnenschein ]
Change build configuration for !linux-any to fix build errors on
hurd-i386. The changes disable some dependencies which are not
available on hurd-i386. (Closes: #946017)
[ Simon McVittie ]
* d/gbp.conf: Use upstream/1.42.x branch
* d/watch: Only look for stable branches
* New upstream stable release
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 22 Jan 2020 18:19:31 +0200
gvfs (1.42.1-3) unstable; urgency=high
* Cherry-pick !69 porting tests to python3-twisted
* Switch test-dep to python3 version of twisted (Closes: #943053)
* Use high urgency as we want fix in previous upload in testing ASAP.
-- Andreas Henriksson <andreas@fatal.se> Tue, 29 Oct 2019 12:58:01 +0100
gvfs (1.42.1-2) unstable; urgency=medium
* Team upload.
* Switch gvfs-fuse dependency from fuse to fuse3 (Closes: #942126)
-- Andreas Henriksson <andreas@fatal.se> Mon, 28 Oct 2019 16:58:57 +0100
gvfs (1.42.1-1) unstable; urgency=medium
* Team upload
* Merge changelog entries from unstable
* New upstream release
- dav: Fix mounting when 403 is returned for the parent folder
- Revert "sftp: Always use port 22 if not specified"
to fix use of a configured port number in ~/.ssh/config
- Translation updates: da, de, nl
* Upload to unstable, now that the required gsettings-desktop-schemas
is available in testing
-- Simon McVittie <smcv@debian.org> Mon, 07 Oct 2019 15:40:15 +0100
gvfs (1.42.0+really1.38.1-1) unstable; urgency=medium
* Team upload
* Re-release 1.38.1-5 to unstable to overwrite premature upload of
1.42.x. Versions 1.42.x depend on a gsettings-desktop-schemas version
from experimental that cannot go to unstable until the mutter and
evolution-data-server transitions for GNOME 3.34 are ready.
(Closes: #940026)
- d/gbp.conf: Set packaging branch to debian/unstable
-- Simon McVittie <smcv@debian.org> Thu, 12 Sep 2019 11:56:17 +0100
gvfs (1.38.1-5) unstable; urgency=high
* Team upload
* d/p/gvfsdaemon-Check-that-the-connecting-client-is-the-same-u.patch:
Add missing authentication, preventing a local attacker from connecting
to an abstract socket address learned from netstat(8) and issuing
arbitrary D-Bus method calls
* d/p/gvfsdaemon-Only-accept-EXTERNAL-authentication.patch:
Harden private D-Bus connection by rejecting the more complicated
DBUS_COOKIE_SHA1 authentication mechanism and only accepting EXTERNAL.
-- Simon McVittie <smcv@debian.org> Tue, 11 Jun 2019 12:28:34 +0100
gvfs (1.38.1-4) unstable; urgency=high
* Team upload
* Update from upstream gnome-3-30 branch to fix the admin backend
(Closes: #929755)
- Implement query_info_on_read/write to fix some race conditions
(CVE-2019-12448)
- Ensure that created files get the correct ownership (CVE-2019-12247)
- Ensure that copied files get the correct ownership (CVE-2019-12449)
* Remove obsolete version number from fuse dependency.
gvfs needs fuse (>= 2.8.4), but that version is older than oldstable,
so we can safely simplify to "Depends: fuse".
The versioned dependency is not satisfied by fuse3's unversioned
"Provides: fuse", but the unversioned dependency is. (Closes: #927221)
-- Simon McVittie <smcv@debian.org> Wed, 05 Jun 2019 08:34:17 +0100
gvfs (1.38.1-3) unstable; urgency=high
* Team upload
* d/p/admin-Prevent-access-if-any-authentication-agent-isn-t-av.patch:
Add patch from upstream to prevent members of the sudo group from
bypassing the intended password check for privileged access to files
via the admin: backend if no polkit authentication agents are
available (CVE-2019-3827, Closes: #921816)
* d/p/*: Update to upstream gnome-3-30 branch, commit 1.38.1-9-gd4dab113
- admin: Fix CVE-2019-3827 (see above)
- autorun: Don't crash if an autorun file is not valid UTF-8
- mtp: Don't busy-loop retrying reading an event after failure
- udisks2: Reinstate support for deprecated comment=x-gvfs-show fstab
option syntax (but please use x-gvfs-show instead)
- tests: Use the right SMB port if running in the sandbox
- Update translations: eu, sk, sr
* d/gbp.conf: Configure for debian/buster and upstream/1.38.x branches
* d/control: Use debian/buster branch in Vcs-Git
-- Simon McVittie <smcv@debian.org> Sat, 09 Feb 2019 12:02:33 +0000
gvfs (1.42.0+really1.42.0-1) experimental; urgency=medium
* Team upload
* Re-upload 1.42.x to experimental, with a higher version number than
the revert to 1.38.x in unstable. It isn't ready for unstable just yet.
(Closes: #940026)
-- Simon McVittie <smcv@debian.org> Thu, 12 Sep 2019 12:05:16 +0100
gvfs (1.42.0-1) unstable; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 10 Sep 2019 16:23:18 +0200
gvfs (1.41.91-1) experimental; urgency=medium
[ Simon McVittie ]
* Add bug number and CVE ID to previous changelog entry
[ Iain Lane ]
* debian/watch: Find unstable versions
* New upstream release
+ admin: Add query_info_on_read/write functionality (CVE-2019-12448)
+ admin: Allow changing file owner (CVE-2019-12447)
+ admin: Ensure correct ownership when moving to file:// uri
(CVE-2019-12449)
+ admin: Prevent core dumps when daemon is manually started
+ admin: Use fsuid to ensure correct file ownership (CVE-2019-12447)
+ afc: Remove assumptions about length of device UUID to support new
devices
+ afp: Fix afp backend crash when no username supplied
+ build: Add dependency on gsettings-desktop-schemas
+ build: Bump required meson version to 0.50.0
+ build: Define gvfs_rpath for libgvfsdaemon.so
+ build: Several meson improvements
+ daemon: Check that the connecting client is the same user
(CVE-2019-12795)
+ daemon: Only accept EXTERNAL authentication (CVE-2019-12795)
+ daemon/udisks2: Handle lockdown option to disable writing
+ daemon: Unify some translatable strings
+ fuse: Adapt gvfsd-fuse to use fuse 3.x
+ fuse: Define RENAME_* macros when they are not defined
+ fuse: Remove max_write limit
+ gmountsource: Fix deadlocks in synchronous API
+ google: Check ownership in is_owner() without additional HTTP request
+ google: Disable deletion of non-empty directories
+ google: Do not enumerate volatile entries if title matches id
+ google: Fix crashes when deleting if the file isn't found
+ google: Fix issue with stale entries remaining after rename operation
+ google: Support deleting shared Google Drive files
+ proxy: Don't leak a GVfsDBusDaemon
+ udisks2: Change display name for crypto_unknown devices
* debian/patches: Drop backported patches. We're further ahead now.
-- Iain Lane <laney@debian.org> Wed, 21 Aug 2019 12:05:56 +0100
gvfs (1.40.1-3) experimental; urgency=medium
* Team upload
* d/p/gvfsdaemon-Check-that-the-connecting-client-is-the-same-u.patch:
Add missing authentication, preventing a local attacker from connecting
to an abstract socket address learned from netstat(8) and issuing
arbitrary D-Bus method calls
(Closes: #930376, CVE-2019-12795)
* d/p/gvfsdaemon-Only-accept-EXTERNAL-authentication.patch:
Harden private D-Bus connection by rejecting the more complicated
DBUS_COOKIE_SHA1 authentication mechanism and only accepting EXTERNAL
-- Simon McVittie <smcv@debian.org> Tue, 11 Jun 2019 12:32:45 +0100
gvfs (1.40.1-2) experimental; urgency=medium
* Team upload
* Update from upstream gnome-3-32 branch, commit 1.40.1-9-gec939a01,
to fix the admin backend
(Closes: #929755)
- Implement query_info_on_read/write to fix some race conditions
(CVE-2019-12448)
- Ensure that created files get the correct ownership (CVE-2019-12247)
- Ensure that copied files get the correct ownership (CVE-2019-12449)
- Fix deadlocks in synchronous API
- Various fixes for afc backend
- Update translation: zh_CN
* Remove obsolete version number from fuse dependency.
gvfs needs fuse (>= 2.8.4), but that version is older than oldstable,
so we can safely simplify to "Depends: fuse".
The versioned dependency is not satisfied by fuse3's unversioned
"Provides: fuse", but the unversioned dependency is. (Closes: #927221)
-- Simon McVittie <smcv@debian.org> Thu, 06 Jun 2019 18:37:25 +0100
gvfs (1.40.1-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 09 Apr 2019 16:10:24 +0200
gvfs (1.40.0-1) experimental; urgency=medium
* New upstream release
* Drop test-Remove-trailing-newline-from-the-IP-string.patch: Applied
-- Jeremy Bicha <jbicha@debian.org> Sat, 16 Mar 2019 10:47:43 -0400
gvfs (1.39.91-1) experimental; urgency=medium
* New upstream development release
* Add test-Remove-trailing-newline-from-the-IP-string.patch:
- Proposed patch to fix autopkgtest with glibc 2.29
-- Jeremy Bicha <jbicha@debian.org> Mon, 25 Feb 2019 14:50:05 -0500
gvfs (1.39.90-1) experimental; urgency=medium
* New upstream development release
* Bump minimum meson to 0.49.0
-- Jeremy Bicha <jbicha@debian.org> Wed, 06 Feb 2019 16:48:23 -0500
gvfs (1.38.1-2) unstable; urgency=medium
* Add -Wl,-O1 to our LDFLAGS
* debian/rules: Use dh_auto_build instead of make
* Bump Standards-Version to 4.3.0
-- Jeremy Bicha <jbicha@debian.org> Thu, 27 Dec 2018 10:06:21 -0500
gvfs (1.38.1-1) unstable; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 13 Nov 2018 17:08:16 +0100
gvfs (1.38.0-2) unstable; urgency=medium
* Install manpages into gvfs-common, as they were previously
-- Iain Lane <laney@debian.org> Tue, 11 Sep 2018 12:42:51 +0100
gvfs (1.38.0-1) unstable; urgency=medium
* New upstream translation release
* Update gbp.conf to pkg-gnome's common file
* Bump Standards-Version to 4.2.1 (no changes required)
* Revert "d/watch: Watch for development versions"
* Build manpages for the deprecated commands too
-- Iain Lane <laney@debian.org> Tue, 11 Sep 2018 11:40:16 +0100
gvfs (1.37.90-1) experimental; urgency=medium
* Team upload
* d/watch: Watch for development versions
* New upstream release
* debian/docs: Don't install AUTHORS, no longer provided upstream
* debian/docs: Install README.md
* d/source/lintian-overrides: Remove, no longer needed
(the Autotools build system has been removed)
* Update Meson build-dependency to 0.46.0
* Update GLib build-dependency to 2.57.2
* Reinstate deprecated command-line tools via debian/extra/ for now
* d/p/01_modules_dir.patch: Drop, no longer required
* d/p/04_hurd_path_max.patch: Drop, no longer required
* Build-depend on polkit 0.105-18~ for ITS rules
* d/p/Remove-version-from-polkit-gobject-dependency.patch:
Don't require polkit 0.114 for ITS rules since we have backported
that feature
* Normalize packaging with wrap-and-sort -ab
* Standards-Version: 4.2.0
* Deprecate the gvfs-bin package
* Use /usr/share/dpkg/default.mk
* Tell dpkg-shlibdeps about our private libraries
-- Simon McVittie <smcv@debian.org> Fri, 17 Aug 2018 12:26:04 +0100
gvfs (1.36.2-1) unstable; urgency=medium
* Team upload
[ Rob McQueen ]
* Add missing lsof dependency to fix UDisks2VolumeMonitor (!1)
[ Simon McVittie ]
* New upstream release
* d/control.in: Remove trailing spaces
* Refresh patch series
* d/tests/control: Depend on dbus, not dbus-x11 (Closes: #835892)
* tests: Depend on openssh-client, for ssh-keygen
* tests: Depend on policykit-1, for pkcheck
* tests: Depend on python3-dbus, for `import dbus`
* Standards-Version: 4.1.5 (no changes required)
* Set Rules-Requires-Root to no
* Override Lintian warning for configure.ac. Now that this package
builds with meson, Autotools bugs are harmless.
-- Simon McVittie <smcv@debian.org> Thu, 26 Jul 2018 20:50:24 +0100
gvfs (1.36.1-1) unstable; urgency=medium
* New upstream release
* Drop obsolete dh_translations override
* Bump Standards-Version to 4.1.4
-- Jeremy Bicha <jbicha@debian.org> Sat, 14 Apr 2018 15:51:37 -0400
gvfs (1.36.0-1) unstable; urgency=medium
[ Iain Lane ]
* New upstream translation release
* debian/patches/0009-gvfs-test-Increase-timeout-to-10s.patch: Backport
patch from upstream #794487 to increase test timeouts, hopefully to reduce
flakiness.
[ Sebastien Bacher ]
* debian/patches/0008-Skip-the-umockdev-test.patch:
- the umockdev ioctl emulation is currently buggy, skip the gphoto
integration test that would need record update
-- Iain Lane <laney@debian.org> Mon, 19 Mar 2018 16:10:38 +0000
gvfs (1.35.91-1) experimental; urgency=medium
* New upstream development release
* Drop no longer needed Files-Excluded
* Add workaround for Ubuntu translations issue
* Drop 0008-test-Make-etc-init-optional.patch: Applied in new release
-- Jeremy Bicha <jbicha@debian.org> Mon, 19 Feb 2018 16:54:17 -0500
gvfs (1.35.90-1) experimental; urgency=medium
[ Jeremy Bicha ]
* New upstream development release
- Fixes "MTP volume not removed after disconnecting" (Closes: #882353)
(LP: #1739537)
* debian/copyright: Use Files-Excluded to avoid non-free RFCs.
* Update Vcs fields for migration to https://salsa.debian.org/
* Drop obsolete Build-Depends on libudev-dev
* Build with meson
* Don't build the Blu-ray backend on Ubuntu since the required library
is in universe. See bug 1746629.
* Cherry-pick 0008-test-Make-etc-init-optional.patch:
- Fix tests when /etc/init/ doesn't exist (on minimal systems)
[ Martin Pitt ]
* Run autopkgtests through sudo starting as normal user, so that it can
find a non-root user.
-- Jeremy Bicha <jbicha@debian.org> Fri, 09 Feb 2018 10:23:43 -0500
gvfs (1.34.1-2) unstable; urgency=medium
* Update Vcs fields for conversion to git
* Add debian/gbp.conf
* Bump Standards-Version to 4.1.2
* Bump debhelper compat to 11
-- Jeremy Bicha <jbicha@debian.org> Sun, 17 Dec 2017 19:09:49 -0500
gvfs (1.34.1-1) unstable; urgency=medium
* New upstream release
* Drop programs-Fix-bashism-in-gvfs-wrapper-script.patch:
Applied in new release
* Bump Standards-Version to 4.1.1
-- Jeremy Bicha <jbicha@debian.org> Mon, 02 Oct 2017 21:21:13 -0400
gvfs (1.34.0-3) unstable; urgency=medium
* Fix bashism in gvfs-* wrapper script. (Closes: #877068)
-- Michael Biebl <biebl@debian.org> Thu, 28 Sep 2017 14:24:21 +0200
gvfs (1.34.0-2) unstable; urgency=medium
* debian/gvfs-bin.install: Don't try to install bash-completion
files dropped in new release
-- Jeremy Bicha <jbicha@debian.org> Wed, 27 Sep 2017 13:39:41 -0400
gvfs (1.34.0-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream release
* debian/control.in:
- Drop obsolete Build-Depends on libgtk-3-dev
- Bump minimum libgdata-dev to 0.17.9
- Have gvfs-bin depend on libglib2.0-bin because the gvfs utilities
have been deprecated in favor of 'gio' in this release
* Refresh 04_hurd_path_max.patch
* Drop disable-polkit-rules-no-admin.patch: Applied in new release
* Bump Standards-Version to 4.1.0
[ Laurent Bigonville ]
* Move org.gtk.vfs.file-operations.rules back to the polkit rules directory,
the behaviour looks more sane now and a password is asked everytime a file
owned by root is opened.
-- Jeremy Bicha <jbicha@debian.org> Wed, 27 Sep 2017 12:41:02 -0400
gvfs (1.30.4-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Wed, 29 Mar 2017 01:32:39 +0200
gvfs (1.30.3-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 20 Dec 2016 03:24:22 +0100
gvfs (1.30.2-2) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/patches/02_polkit_sudo_group.patch: Use sudo group instead of the
wheel one, the later doesn't exist on debian (Closes: #843629)
* Move the policykit rules file to the examples directory, for now we
don't want the user to be able to modify files owned by root without
entering any password even if they are part of the "sudo" group.
[ Michael Biebl ]
* Explicitly remove .h header files instead of using dh_install -X.h. This
avoids not installing required files which are not header files but
contain .h anywhere in the filename.
-- Laurent Bigonville <bigon@debian.org> Tue, 08 Nov 2016 19:44:47 +0100
gvfs (1.30.2-1) unstable; urgency=medium
* New upstream release.
* Enable NFS backend (Closes: #812590)
* debian/control.in: Enable all hardening flags
* debian/patches/disable-polkit-rules-no-admin.patch: Do not install polkit
rules when the admin backend is disabled, should fix FTBFS on !linux
-- Laurent Bigonville <bigon@debian.org> Tue, 08 Nov 2016 13:23:19 +0100
gvfs (1.30.1.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Mon, 17 Oct 2016 16:15:05 +0200
gvfs (1.30.1-1) unstable; urgency=medium
* New upstream release.
* Drop debian/gvfs-bin.preinst and debian/gvfs-bin.maintscript. The cleanup
of the obsolete conffiles is from before wheezy.
-- Michael Biebl <biebl@debian.org> Mon, 10 Oct 2016 17:14:20 +0200
gvfs (1.30.0-1) unstable; urgency=medium
* New upstream release.
* Drop lingering autotools-dev build-dependency.
* debian/rules: remove '*.la' to avoid them showing up in list-missing.
-- Andreas Henriksson <andreas@fatal.se> Mon, 19 Sep 2016 20:09:18 +0200
gvfs (1.29.92-1) unstable; urgency=medium
* New upstream development release.
* Bump debhelper compat level to 10.
-- Michael Biebl <biebl@debian.org> Mon, 12 Sep 2016 16:40:18 +0200
gvfs (1.29.91-1) unstable; urgency=low
* New upstream beta release.
* Convert from cdbs -> dh
* Explicitly disable admin backend on non-linux as apparently configure
checks aren't detailed enough to auto-disable it.
* Skip running testsuite (as enabled by dh conversion)
- it's better to run those tests with machine isolation as already
done by the autopkgtests.
* Add debian/docs shipping AUTHORS NEWS
-- Andreas Henriksson <andreas@fatal.se> Tue, 30 Aug 2016 18:26:00 +0200
gvfs (1.29.90-1) experimental; urgency=medium
* New upstream beta release.
* Update build-dependencies according to configure.ac changes:
- bump libglib2.0-dev to >= 2.49.3
- drop intltool (>= 0.35.0), no longer used.
- add libpolkit-gobject-1-dev, for building the new admin backend.
* Add build-dependency on libcap-dev [linux-any] as needed by admin backend.
* debian/gvfs-backends.install: ship new admin backend files on linux-any
- also (partially) wrap-and-sort while at it.
-- Andreas Henriksson <andreas@fatal.se> Thu, 11 Aug 2016 17:34:27 +0200
gvfs (1.28.3-1) unstable; urgency=medium
[ Emilio Pozuelo Monfort ]
* Fix build on hurd. Thanks to Andreas Beckmann for the patch.
Closes: #815351.
[ Andreas Henriksson ]
* New upstream release.
* Update build-dependencies according to configure.ac changes:
- bump libimobiledevice to >= 1.2
-- Andreas Henriksson <andreas@fatal.se> Thu, 11 Aug 2016 16:56:01 +0200
gvfs (1.28.2-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 3.9.8.
* Drop lintian overrides as they are no longer needed. With recent versions
of lintian dh-exec >= 0.13 features are detected properly and binaries
are allowed to use "/usr/lib/$srcpkg/" in RPATHs.
-- Michael Biebl <biebl@debian.org> Tue, 10 May 2016 19:49:52 +0200
gvfs (1.28.1-1) unstable; urgency=medium
* New upstream release.
+ udisks2: Abort mount operation if volume is unlocked
+ udisks2: Lock unlocked volumes on eject/stop
+ trash: Check modification time to avoid rereading
+ trash: Rescan trash dirs before operations with files
-- Iain Lane <laney@debian.org> Thu, 14 Apr 2016 16:51:21 +0100
gvfs (1.28.0-1) unstable; urgency=medium
* New upstream release.
* Upload to unstable.
* Track stable releases again.
* Drop Recommends on policykit-1-gnome. The udisks2 package already
recommends policykit-1, and the PolicyKit authentication agent (the GUI
bits) should be pulled in by the individual desktop environments. Some,
like GNOME 3, already have this functionality builtin.
* Bump Standards-Version to 3.9.7.
* Drop gvfs-dbg package now that we have automatic dbgsym packages.
* Ensure proper upgrade from gvfs-dbg to new dbgsym packages by using
dh_strip --dbgsym-migration. Bump Build-Depends on debhelper accordingly.
-- Michael Biebl <biebl@debian.org> Sun, 03 Apr 2016 15:56:01 +0200
gvfs (1.27.92-1) experimental; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Mon, 14 Mar 2016 20:36:04 +0100
gvfs (1.27.90-1) experimental; urgency=medium
* New upstream release
+ udisks2: Avoid crashes during unmount
+ ftp: Fix cache invalidation after writing
+ network: Fix crashes when mount failed
+ mtp: Allow reading on more devices
* debian/control{,.in}: Build-Depend on systemd to get the path for user
unit files.
* debian/rules: Build with --fail-missing and exclude some files which we
don't install.
-- Iain Lane <laney@debian.org> Tue, 16 Feb 2016 10:47:20 +0000
gvfs (1.27.4-1) experimental; urgency=medium
* Test-Dep on apache2-dev instead of apache2-prefork-dev - the latter was a
Provides which has gone away.
* New upstream release.
+ dns-sd: Add support for nfs shares
+ Do not print anything from daemons unless debug mode is enabled
+ Several other logging improvements
-- Iain Lane <laney@debian.org> Tue, 26 Jan 2016 17:49:28 +0000
gvfs (1.27.3-1) experimental; urgency=medium
* New upstrem development release.
+ sftp: Fail cancelled jobs
+ metadata: Avoid endless recursion when copying meta files
+ mtp: Use phone icon for MTP devices
+ udisks2: Do not show notification if unmount failed
+ completion: Allow bash completion for gvfs-mount
+ http: Return error if seek was not successful
+ sftp: Handle "Too many authentication failures" error
* debian/watch: Also find unstable versions
-- Iain Lane <laney@debian.org> Mon, 04 Jan 2016 17:23:24 +0000
gvfs (1.26.2-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 10 Nov 2015 23:18:50 +0100
gvfs (1.26.1.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 15 Oct 2015 16:24:27 +0200
gvfs (1.26.1-1) unstable; urgency=medium
[ Ritesh Raj Sarraf ]
* Enable Google Drive support (Closes: #801094)
- bump build-dependency on libgoa-1.0-dev to >= 3.17.1
- add build-dependency on libgdata-dev >= 0.17.3
- install gvfsd-google and google.mount in gvfs-backends
[ Laurent Bigonville ]
* New upstream release
- Install systemd user .service files
* debian/rules: List the files that are not installed in any packages
-- Laurent Bigonville <bigon@debian.org> Tue, 13 Oct 2015 17:38:16 +0200
gvfs (1.26.0-2) unstable; urgency=medium
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Fri, 02 Oct 2015 17:00:14 +0200
gvfs (1.26.0-1) experimental; urgency=medium
* New upstream release
* Remove XS-Testsuite header, no longer necessary
[ Robert Ancell ]
* Switch build-depends from transitional libgcrypt11-dev to
libgcrypt20-dev (packaging change from Ubuntu)
-- Simon McVittie <smcv@debian.org> Tue, 29 Sep 2015 21:19:50 +0100
gvfs (1.25.92-1) experimental; urgency=medium
* New upstream release candidate.
* Drop obsolete patch debian/patches/add-support-for-libsystemd.patch
* Have quilt refresh remaining patches to apply cleanly.
* Update build-dependencies according to configure.ac:
- Bump libglib2.0-dev to >= 2.45.7
- Add libgcr-3-dev
* Use dh-exec install arch filter instead of debian/rules installation
* Bump debian/compat to 9 for executable debian/*.install to work.
* Add debian/source.lintian-overrides for dh-exec related overrides.
* gvfs-backends: ship new usr/share/gvfs/mounts/ftps.mount
-- Andreas Henriksson <andreas@fatal.se> Thu, 17 Sep 2015 15:37:16 +0200
gvfs (1.24.2-1) unstable; urgency=medium
* New upstream bugfix release.
-- Andreas Henriksson <andreas@fatal.se> Mon, 24 Aug 2015 19:47:08 +0200
gvfs (1.24.1-2) unstable; urgency=medium
* Upload to unstable.
* Track stable releases (again) in debian/watch.
* Build against libsystemd. (Closes: #779766)
* Drop debian/patches/revert-0001-Remove-obsolte-obexftp-code.patch and the
Build-Depends on libdbus-glib-1-dev along with it. The ObexFTP backend no
longer works with BlueZ 5.x. The only supported method is ObexPush, which
is implemented by bluez-obexd. Change gvfs-backends to suggest bluez-obexd
instead of obex-data-server.
* Drop obsolete Breaks/Replaces/Conflicts from pre-wheezy.
-- Michael Biebl <biebl@debian.org> Wed, 27 May 2015 00:18:03 +0200
gvfs (1.24.1-1) experimental; urgency=medium
* New upstream release 1.24.1
-- Iain Lane <laney@debian.org> Tue, 14 Apr 2015 12:15:23 +0100
gvfs (1.24.0-1) experimental; urgency=medium
* New upstream release 1.24.0
+ Fix g-ir-compiler failures
-- Iain Lane <laney@debian.org> Wed, 01 Apr 2015 13:06:16 +0100
gvfs (1.23.92-1) experimental; urgency=medium
* New upstream release 1.23.92
+ metadata: Reliability improvements
+ afc, gphoto2: Fix force unmount when device is removed
+ ftp: Prevent segfault when unmounting
+ ftp: Bug fixes for directory parsing
+ dav: Fix crash on mount when using dns-sd
+ common: Increase mount timeout to 30 minutes
+ Several smaller bugfixes
+ Update man pages
* debian/patches/revert-0001-Remove-obsolte-obexftp-code.patch: Temporarily
restore obexftp - it's still useful to be able to use this via Bluez 4,
for some usecases.
* debian/patches/metadata-dont-flush-null-tree.patch: Drop, this bug was
fixed upstream.
* debian/control{,.in}: Bump required version of glib to ≥ 2.43.2, as per
upstream.
-- Iain Lane <laney@debian.org> Wed, 18 Mar 2015 12:36:22 +0000
gvfs (1.23.90-1) experimental; urgency=medium
* New upstream release 1.23.90
- ftp: Implement backups for replace
- ftp: Implement G_FILE_COPY_NOFOLLOW_SYMLINKS
- programs: Fix bash completion
- dav: Add support for server-side copying
- mtp: Set MTP filetype from mime type when uploading files
- gvfs-mount: Allow mounting as an anonymous user
- smb: Handle the anonymous flag
- gproxymount: Fix crashes if eject callback isn't specified
- metadata: Fix crashes if tree initilization failed
- Fix reported size for http and dav
* debian/patches/metadata-nuke-junk-data.patch: Refresh.
-- Iain Lane <laney@debian.org> Thu, 12 Mar 2015 13:17:44 +0000
gvfs (1.23.2-1) experimental; urgency=medium
* New upstream release 1.23.2
+ Try copy and delete fallback for move if backup couldn't be created
+ mtp: Do not crash when device is unplugged
+ tests: Several fixes
+ Several smaller bugfixes
-- Iain Lane <laney@debian.org> Thu, 27 Nov 2014 13:16:32 +0000
gvfs (1.23.1-1) experimental; urgency=medium
* debian/watch: Watch unstable versions too, for exp.
* New upstream release, changes:
+ Several improvements to unmounting reliability
+ fuse: Several fixes to prevent data corruption and improve stat()
results
+ Improve root dir name and icon handling for gphoto2 and mtp
+ Add bash completion support for gvfs-rename and gvfs-set-attribute
+ client: Check for G_FILE_COPY_NO_FALLBACK_FOR_MOVE when push/pulling
+ Add -C flag to gvfs-move
+ sftp: Don't spin during connection
+ sftp: Correctly retrieve the username from the secret store
+ goa: Pass "password" as ID when fetching the password
+ tests: Some cleanups and reliability fixes
-- Iain Lane <laney@debian.org> Wed, 26 Nov 2014 17:36:35 +0000
gvfs (1.22.2-1) unstable; urgency=medium
* New upstream translation and bugfix release.
* fix-unmout-crash.patch: patch from upstream git. Fix crashes when
unmounting shares with pending operations.
* fix-cancellation: patch from upstream git. Fix user cancellation of
file operations.
-- Josselin Mouette <joss@debian.org> Sun, 30 Nov 2014 22:18:27 +0100
gvfs (1.22.1-1) unstable; urgency=medium
* New upstream release.
* Refresh patches:
- debian/patches/dont-crash-on-null-job.patch
- debian/patches/handle-inactive-vfs.patch
- debian/patches/metadata-dont-flush-null-tree.patch
- debian/patches/metadata-nuke-junk-data.patch
- debian/patches/ref-jobs-in-thread.patch
* Add Homepage field.
* Update debian/copyright.
* Bump Standards-Version to 3.9.6.
-- Michael Biebl <biebl@debian.org> Mon, 13 Oct 2014 16:14:48 +0200
gvfs (1.22.0-1) unstable; urgency=medium
* New upstream release. (Closes: #762414)
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Mon, 22 Sep 2014 19:37:14 +0200
gvfs (1.21.91-1) experimental; urgency=medium
* New upstream development release.
* Bump libgudev-1.0-dev to (>= 147) according to configure.ac
* Bump Standards-Version to 3.9.5
-- Andreas Henriksson <andreas@fatal.se> Fri, 05 Sep 2014 15:26:41 -0700
gvfs (1.20.3-1) unstable; urgency=medium
[ Martin Pitt ]
* autopkgtest: Use "allow-stderr" instead of input redirection.
[ Andreas Henriksson ]
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Thu, 28 Aug 2014 16:52:10 -0700
gvfs (1.20.2-1) unstable; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Fri, 23 May 2014 12:05:05 +0200
gvfs (1.20.1-1) unstable; urgency=medium
* New upstream release
-- Iain Lane <laney@debian.org> Tue, 15 Apr 2014 12:37:06 +0100
gvfs (1.20.0-1) unstable; urgency=medium
[ Martin Pitt ]
* debian/tests/control: Add umockdev test dependencies for the GPhoto test
case.
* debian/tests/control: Add isolation-machine restriction, as we fiddle with
the kernel in this test.
[ Andreas Henriksson ]
* Drop debian/patches/06_metadata_nfs.patch, obsolete. (Closes: #741114)
- problem worked around is fixed upstream in commit 6b12c3d7b
"metadata: Force tree re-read after successful flush".
Thanks Kenneth johansson!
* New upstream release.
* Revert changes in 1.18.2-2 to be able to target unstable.
- ie. lower libgoa-1.0-dev build-dep to >= 3.7.1 again.
-- Andreas Henriksson <andreas@fatal.se> Sun, 23 Mar 2014 18:39:58 +0100
gvfs (1.19.90-1) experimental; urgency=medium
* New upstream release.
* Bump build-dependencies according to configure.ac changes:
- use libsoup 2.42.0 (instead of libsoup-gnome)
- libsmbclient 3.4.0
* Drop debian/patches/05_shared_libdaemon.patch, obsolete.
* Refresh patches:
- debian/patches/handle-inactive-vfs.patch
- debian/patches/ref-jobs-in-thread.patch
* debian/rules: disable extra LDFLAGS.
-- Andreas Henriksson <andreas@fatal.se> Mon, 17 Feb 2014 22:49:42 +0100
gvfs (1.18.2-3) experimental; urgency=medium
* debian/control.in: Build-depends against libgphoto2-dev (>= 2.5) instead
of libgphoto2-2-dev
* Drop debian/patches/build_old_libgphoto.patch: We want to build against
the new gphoto2 API
-- Laurent Bigonville <bigon@debian.org> Mon, 13 Jan 2014 20:08:14 +0100
gvfs (1.18.2-2) experimental; urgency=low
* Build against G3.10 gnome-online-accounts
-- Sjoerd Simons <sjoerd@debian.org> Sun, 03 Nov 2013 23:16:50 +0100
gvfs (1.18.2-1) experimental; urgency=low
* New upstream release.
* Update build-dependencies according to configure.ac:
- Bump libglib2.0-dev to >= 2.37.0
- Bump libmtp-dev to >= 1.1.6
- Bump libimobiledevice-dev to >= 1.1.5
* Make debian/patches/05_shared_libdaemon.patch apply
* Refresh patches:
- debian/patches/ref-jobs-in-thread.patch
- debian/patches/build_old_libgphoto.patch
- debian/patches/handle-inactive-vfs.patch
* Drop debian/patches/00git_testsuite_fixes.patch
* debian/gvfs-common.install:
- install usr/lib/tmpfiles.d/gvfsd-fuse-tmpfiles.conf
-- Andreas Henriksson <andreas@fatal.se> Thu, 17 Oct 2013 21:49:06 +0200
gvfs (1.16.3-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sat, 29 Jun 2013 09:34:48 +0200
gvfs (1.16.2-5) unstable; urgency=low
* debian/gvfs-backends.install,
debian/rules:
+ Likewise for mtp.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 21 Jun 2013 12:48:41 +0200
gvfs (1.16.2-4) unstable; urgency=low
* debian/gvfs-backends.install,
debian/rules:
+ Install the cdda backend only on linux as it needs gudev or hal.
* debian/control.in:
+ Standards-Version is 3.9.4. No changes needed.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 21 Jun 2013 09:36:59 +0200
gvfs (1.16.2-3) unstable; urgency=low
[ Martin Pitt ]
* Add 00git_testsuite_fixes.patch: Import various test suite fixes from
upstream git head. This fixes the hang of the autopkgtest and makes
the tests work with Python 3.3.
[ Emilio Pozuelo Monfort ]
* debian/rules:
+ Don't install the gphoto backend on kfreebsd as it needs hal support,
which we have disabled.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 20 Jun 2013 23:32:21 +0200
gvfs (1.16.2-2) unstable; urgency=low
* Upload to unstable.
* Stop building with HAL support on non-Linux. This code is no longer
maintained and tested and HAL is scheduled to be removed.
-- Michael Biebl <biebl@debian.org> Fri, 24 May 2013 18:38:00 +0200
gvfs (1.16.2-1) experimental; urgency=low
[ Martin Pitt ]
* Enable gnome-online-accounts volume monitor. Add libgoa-1.0-dev build
dependency for this.
[ Andreas Henriksson ]
* New upstream release.
* Refresh patches to apply cleanly:
- debian/patches/06_metadata_nfs.patch
- debian/patches/dont-crash-on-null-job.patch
- debian/patches/metadata-dont-flush-null-tree.patch
- debian/patches/metadata-nuke-junk-data.patch
- debian/patches/ref-jobs-in-thread.patch
-- Andreas Henriksson <andreas@fatal.se> Fri, 24 May 2013 17:37:49 +0200
gvfs (1.16.0-1) experimental; urgency=low
[ Emilio Pozuelo Monfort ]
* New upstream release.
+ debian/patches/70_fix_autoreconf_m4.patch:
- Removed, no longer needed as upstream now ships the m4
directory in the tarballs.
[ Martin Pitt ]
* Add autopkgtest, calling upstream integration test suite.
* Version libmtp-dev build dependency according to configure.ac.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 26 Mar 2013 11:10:28 +0100
gvfs (1.15.4-2) experimental; urgency=low
* Brown paper bag release.
* debian/gvfs-backends.install,
debian/control.in:
+ Actually ship the MTP backend. Closes: #703135.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 16 Mar 2013 13:29:44 +0100
gvfs (1.15.4-1) experimental; urgency=low
[ Josselin Mouette ]
* New upstream release.
* Add dependency on desktop-file-utils since many operations won’t
work without mimeinfo.cache.
* 06_metadata_nfs.patch: new patch. Disable gvfsd-metadata entirely on
remote filesystems. It is better to miss functionality than to
hammer the server. Closes: #624507.
[ Emilio Pozuelo Monfort ]
* New upstream release.
+ debian/control.in:
- Update build dependencies.
- Enable MTP support.
+ debian/patches/*:
- Refreshed.
+ debian/patches/70_fix_autoreconf_m4.patch:
- New patch, remove broken arguments for aclocal that make
autoreconf abort.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 05 Mar 2013 18:10:08 +0100
gvfs (1.12.3-4) unstable; urgency=low
* 06_metadata_nfs.patch: new patch. Disable gvfsd-metadata entirely on
remote filesystems. It is better to miss functionality than to
hammer the server. Closes: #624507.
-- Josselin Mouette <joss@debian.org> Tue, 05 Feb 2013 14:02:04 +0100
gvfs (1.12.3-3) unstable; urgency=low
* Add dependency on desktop-file-utils since many operations won’t
work without mimeinfo.cache.
-- Josselin Mouette <joss@debian.org> Sat, 05 Jan 2013 12:09:20 +0100
gvfs (1.14.1-1) experimental; urgency=low
* Team upload
* New upstream release (LP: #1025542)
- gmountsource always uses NULL-terminated arrays (LP: #1033275)
- remove final parts of libdbus (LP: #932935)
- cdda: fix abort with non-ASCII text (LP: #819304)
- increase build-dependencies
- use udisks2, not libgdu, on Linux
- depend on GLib 2.34 (really needs 2.33.12) to bypass the pseudo-epoch
in unstable
- add maintscript to transition from bash completion as a conffile to
bash completion in /usr/share (LP: #1022927)
- update lists of daemons etc. to install
- add patch from Ubuntu to force use of GPhoto 2.4
- add patch from Ubuntu to not crash if a NULL job finishes (LP: #345754,
LP: #838464)
- add patch from Ubuntu to not crash when creating volume monitors if the
VFS never initialized (LP: #832533)
- add patch from Ubuntu to keep a ref to jobs while they run in a thread
- Add patch from Christian Kellner, via Ubuntu, to not try to flush a
tree that doesn't exist (LP: #405432)
- Add patch from Christian Kellner, via Ubuntu, to erase broken metadata
files (related to LP #405432)
- refresh 04_hurd_path_max.patch
- refresh 05_shared_libdaemon.patch
* Install the man pages in gvfs-common
-- Simon McVittie <smcv@debian.org> Tue, 23 Oct 2012 09:57:31 +0100
gvfs (1.12.3-1) unstable; urgency=low
* New upstream release.
* Remove debian/patches/00git_fix_build.patch, merged upstream.
* Remove clean-la.mk from debian/rules since we don't install any .la files.
-- Michael Biebl <biebl@debian.org> Tue, 15 May 2012 22:25:31 +0200
gvfs (1.12.2-2) unstable; urgency=low
* Add 00git_fix_build.patch: Fix building with gcc 4.7. Patch taken from
upstream git. Closes: #672099
-- Martin Pitt <mpitt@debian.org> Tue, 08 May 2012 14:21:51 -0700
gvfs (1.12.2-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sat, 28 Apr 2012 01:13:14 +0200
gvfs (1.12.1-1) unstable; urgency=low
[ Josselin Mouette ]
* Move gsettings schemas to gvfs-backends, they are only used by smb
and dns-sd.
* Add Breaks/Replaces accordingly.
[ Michael Biebl ]
* New upstream release.
-- Michael Biebl <biebl@debian.org> Wed, 18 Apr 2012 17:41:59 +0200
gvfs (1.12.0-1) unstable; urgency=low
* New upstream release.
* Update Vcs-* URLs.
* debian/watch: Track stable releases.
-- Michael Biebl <biebl@debian.org> Mon, 02 Apr 2012 14:18:16 +0200
gvfs (1.11.5-1) experimental; urgency=low
[ Michael Biebl ]
* Bump Build-Depends on cdbs and debhelper for multiarch support.
* Replace Depends on fuse-utils with fuse, as fuse-utils is now only a
transitional package depending on fuse.
[ Martin Pitt ]
* debian/watch: Watch for development versions in experimental.
* New upstream release:
- fuse: Keep using ~/.gvfs as fallback (LP: #945399)
* Drop 02_deprecated.patch: Fixed upstream.
* debian/control.in: Bump glib build dependency as per configure.ac.
* debian/copyright: Move to copyright format 1.0.
* debian/control.in: Bump Standards-Vesion to 3.9.3.
-- Martin Pitt <mpitt@debian.org> Wed, 21 Mar 2012 09:17:13 +0100
gvfs (1.10.1-3) unstable; urgency=low
* Bump Build-Depends on cdbs and debhelper for multiarch support.
* Replace Depends on fuse-utils with fuse, as fuse-utils is now only a
transitional package depending on fuse.
* debian/patches/06_glib-single-include.patch: Fix build failure with glib
2.32 where including individual glib headers is no longer supported.
Closes: #665553
-- Michael Biebl <biebl@debian.org> Sun, 25 Mar 2012 16:24:01 +0200
gvfs (1.10.1-2) unstable; urgency=low
[ Josselin Mouette ]
* Drop dependency gvfs-bin→gvfs. The support binaries only need GIO,
nothing more.
[ Michael Biebl ]
* Upload to unstable.
* debian/rules:
- Set --libdir and --libexecdir configure flags globally and not only when
building for linux.
-- Michael Biebl <biebl@debian.org> Sun, 27 Nov 2011 18:39:30 +0100
gvfs (1.10.1-1) experimental; urgency=low
* Fix long description grammar. Closes: #648046.
* New upstream release.
* Bump/add build-dependencies: glib, gdu, libgcrypt, libbluray.
* 02_deprecated.patch: updated for the new version.
* 05_shared_libdaemon.patch: refreshed.
* Install afp backend.
* Drop gvfs.postinst, it’s been here in squeeze.
* Make gvfs multiarch-compatible:
+ 01_modules_dir.patch: query the modules dir from gio instead of
hardcoding it.
+ Split the gvfs package between all sub-components.
- gvfs: holds the GIO module (multiarch: same)
- gvfs-daemons: holds the daemons (multiarch: foreign)
- gvfs-libs: holds common libraries (multiarch: same)
- gvfs-common: holds data (multiarch: foreign, arch: all)
+ Update depends/breaks/replaces accordingly.
+ Prevent dh_makeshlibs from doing anything.
+ Add lintian overrides for the private library dir using rpath.
-- Josselin Mouette <joss@debian.org> Sun, 13 Nov 2011 10:38:51 +0100
gvfs (1.8.2-2) unstable; urgency=low
[ Josselin Mouette ]
* Break glib < 2.28.6-2. Closes: #628811.
* gvfs-backends suggests samba-common. Closes: #608665.
* Depend on psmisc. Closes: #638685.
[ Martin Pitt ]
* debian/watch: Look for tar.xz, upstream stopped publishing tar.gz.
[ Michael Biebl ]
* Upload to unstable.
* Bump debhelper compatibility level to 8.
- Update Build-Depends on debhelper.
- Strip debian/tmp/ from .install files.
* debian/control:
- Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
-- Michael Biebl <biebl@debian.org> Fri, 14 Oct 2011 11:48:11 +0200
gvfs (1.8.2-1) experimental; urgency=low
[ Josselin Mouette ]
* No really, the section is gnome and the overrides need fixing.
[ Martin Pitt ]
* New upstream release.
-- Martin Pitt <mpitt@debian.org> Tue, 24 May 2011 16:13:43 +0200
gvfs (1.8.1-1) experimental; urgency=low
[ Raphaël Hertzog ]
* Changes default section to libs to fix overrides disparities.
* Fix watch file.
[ Martin Pitt ]
* New upstream release.
* 04_hurd_path_max.patch: Update for new upstream release.
* debian/control.in: Bump gvfs breaks/replaces to gvfs-backends. This is
a no-op for Debian, but enables synchronizing the packages between Debian
and Ubuntu.
-- Martin Pitt <mpitt@debian.org> Tue, 17 May 2011 17:27:05 +0200
gvfs (1.8.0-1) experimental; urgency=low
* Team upload.
[ Josselin Mouette ]
* Set section: gnome, keep libs only for gvfs itself.
[ Raphaël Hertzog ]
* New upstream release.
* Drop 07_smb_initialdir.patch, merged upstream.
* Update 04_hurd_path_max.patch to apply again, and a fix in the patch
itself (the #ifdef-ed code was not matching the original code, missing
an assignation).
* Update Standards-Version to 3.9.2 (no change).
* Switch Vcs-Svn to use anonymous URL.
-- Raphaël Hertzog <hertzog@debian.org> Wed, 13 Apr 2011 17:17:02 +0200
gvfs (1.7.2-1) experimental; urgency=low
* New upstream release.
* debian/patches/01_maintainer_mode.patch,
debian/patches/90_relibtoolize.patch,
debian/patches/99_ltmain_as-needed.patch:
+ Removed. Use dh_autoreconf instead.
* debian/control.in,
debian/rules:
+ Use dh_autoreconf.
-- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 31 Jan 2011 23:26:08 +0000
gvfs (1.7.1-1) experimental; urgency=low
[ Josselin Mouette ]
* 07_smb_initialdir.patch: new patch by Tomas Bzatek and myself. Take
into account initial path when doing a SMB mount, to avoid
permission issues. Closes: #533417.
[ Emilio Pozuelo Monfort ]
* New upstream release.
+ debian/control.in:
- Updated build dependencies.
+ debian/patches/*:
- Refreshed.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 12 Jan 2011 23:08:37 +0000
gvfs (1.7.0-1) experimental; urgency=low
* New upstream release.
+ debian/patches/06_sftp_timeout.patch:
- Removed, merged upstream.
+ debian/patches/*
- Updated.
+ debian/gvfs.install:
- Install the gsettings schemas and the gconf conversion files.
* debian/control:
+ Use architecture wildcards everywhere.
* debian/rules:
+ Include check-dist.mk to prevent accidental uploads to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 01 Dec 2010 21:02:19 +0100
gvfs (1.6.4-4) unstable; urgency=low
* gvfs-backends suggests samba-common. Closes: #608665.
* Depend on psmisc. Closes: #638685.
* 08_libplist.patch: correctly link the AFC backend to libplist.
* 90_relibtoolize.patch: regenerated.
-- Josselin Mouette <joss@debian.org> Sat, 17 Sep 2011 13:36:57 +0200
gvfs (1.6.4-3) unstable; urgency=low
* 07_smb_initialdir.patch: new patch by Tomas Bzatek and myself. Take
into account initial path when doing a SMB mount, to avoid
permission issues. Closes: #533417.
-- Josselin Mouette <joss@debian.org> Wed, 22 Dec 2010 20:45:43 +0100
gvfs (1.6.4-2) unstable; urgency=low
* 06_sftp_timeout.patch: patch from Andreas Henriksson to fix
incorrect timeout introduced by the openssh 5.6 portability change.
-- Josselin Mouette <joss@debian.org> Sun, 03 Oct 2010 00:44:17 +0200
gvfs (1.6.4-1) unstable; urgency=low
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Fri, 01 Oct 2010 12:52:33 +0200
gvfs (1.6.3-2) unstable; urgency=low
* Depend on fuse-utils 2.8.4. Closes: #585648.
-- Josselin Mouette <joss@debian.org> Sun, 05 Sep 2010 20:05:15 +0200
gvfs (1.6.3-1) unstable; urgency=low
[ Josselin Mouette ]
* Drop type-handling usage. Closes: #587874.
* Bump standards version accordingly.
[ Laurent Bigonville ]
* debian/control: Add Vcs-Svn and Vcs-Browser pseudo-headers
[ Josselin Mouette ]
* New upstream release.
* 01_maintainer_mode.patch, 90_relibtoolize.patch: updated for the new
version.
-- Josselin Mouette <joss@debian.org> Mon, 19 Jul 2010 18:37:07 +0200
gvfs (1.6.2-1) unstable; urgency=low
* New upstream bugfix release:
+ Fixes FTBFS because of bashism in configure (Closes: #583002).
+ debian/patches/90_relibtoolize.patch:
- Regenerated for the new version.
+ debian/patches/*:
- Refreshed all patches.
-- Sebastian Dröge <slomo@debian.org> Mon, 31 May 2010 10:33:59 +0200
gvfs (1.6.1-1) unstable; urgency=low
* New upstream bugfix release.
- debian/patches/01_maintainer_mode.patch,
debian/patches/90_relibtoolize.patch:
+ Refreshed.
* debian/control.in:
- Don't build depend on libimobiledevice-dev on Hurd.
* debian/gvfs-backends.install
debian/rules
- Install the afc backend from debian/rules, and don't do it on Hurd.
* debian/source/format,
debian/control.in,
debian/rules:
- Switch to source format 3.0 (quilt).
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 02 May 2010 18:16:31 +0200
gvfs (1.6.0-1) unstable; urgency=low
* New upstream stable release:
+ debian/control.in:
- Update build dependencies.
+ debian/control.in,
debian/gvfs-backends.install:
- Install the new AFC backend.
+ debian/patches/02_deprecated.patch,
debian/patches/01_maintainer_mode.patch,
debian/patches/05_shared_libdaemon.patch:
- Updated to apply cleanly again.
+ debian/patches/90_relibtoolize.patch:
- Regenerated for the new version.
-- Sebastian Dröge <slomo@debian.org> Fri, 09 Apr 2010 06:04:57 +0200
gvfs (1.4.3-2) unstable; urgency=low
[ Josselin Mouette ]
* Recommend gnome-keyring, since the library will stop doing so.
* Suggest obex-data-server, not obexd-client.
[ Michael Biebl ]
* Drop devicekit-disks dependency from gvfs and let libgdu depend on the
correct backend itself.
* Add Breaks libgdu0 (<< 2.28.1-3) so we do not accidentally end up without
devicekit-disks (or udisks) being installed.
* Bump Standards-Version to 3.8.4. No further changes.
-- Michael Biebl <biebl@debian.org> Mon, 08 Mar 2010 17:45:12 +0100
gvfs (1.4.3-1) unstable; urgency=low
* New upstream release.
* debian/patches/01_maintainer_mode.patch: fix to apply.
-- Andreas Henriksson <andreas@fatal.se> Mon, 14 Dec 2009 21:45:30 +0100
gvfs (1.4.2-1) unstable; urgency=low
[ Josselin Mouette ]
* Suggest obexd-clint instead of obex-data-server.
[ Andreas Henriksson ]
* New upstream release.
* Refresh patches and recreate 90_relibtoolize.patch
[ Josselin Mouette ]
* Break rhythmbox < 0.12.6-2. See #561083 for bugs that can happen
when RB and gvfs don’t use the same backend.
-- Josselin Mouette <joss@debian.org> Mon, 14 Dec 2009 14:39:01 +0100
gvfs (1.4.1-6) unstable; urgency=low
* Drop fuse-utils dependency on !linux.
* Upload to unstable, now we have a fixed devicekit-disks in testing.
* “Hold on to dmsetup, I’m removing HAL.”
-- Josselin Mouette <joss@debian.org> Tue, 24 Nov 2009 15:54:31 +0100
gvfs (1.4.1-5+gdu) experimental; urgency=low
* Merge changes in unstable to the experimental (GDU-enabled) branch.
* Require dk-disks >> 009-1 to have IDE support.
* Replace part of the sed magic by linux-any magic.
* 05_shared_libdaemon.patch:
+ Put the common code for all gvfsd-* in a private library in
/usr/lib/gvfs/libgvfsdaemon.so. This reduces binary sizes and
memory overhead caused by the multiple running daemons.
+ Move libgvfscommon* to /usr/lib/gvfs as well.
* Install libgvfsdaemon.
* 90_relibtoolize.patch: refresh accordingly.
-- Josselin Mouette <joss@debian.org> Mon, 16 Nov 2009 18:28:56 +0100
gvfs (1.4.1-5) unstable; urgency=low
* Brown paper *bag* release.
* debian/gvfs-backends.install:
- debian/tmp/usr/share/gvfs/remote-volume-monitors/gphoto2.monitor is
now installed from debian/rules to avoid installing it on the Hurd,
so remove it from the .install file. Should really fix the build on
the Hurd.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 13 Nov 2009 02:20:36 +0100
gvfs (1.4.1-4) unstable; urgency=low
* Brown paper bug release.
* debian/patches/series:
- Really apply 04_hurd_path_max.patch. Closes: #555055.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 12 Nov 2009 08:15:01 +0100
gvfs (1.4.1-3) unstable; urgency=low
* debian/patches/04_hurd_path_max.patch:
- Fix the build in the Hurd.
* debian/control.in:
- Build-dep on libcdio-paranoia-dev on the Hurd now that it's available
there.
* debian/gvfs-backends.install,
debian/rules:
- Don't install the gphoto2 backend on the Hurd.
* Thanks to Samuel Thibault for all the above. This closes: #555055.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 10 Nov 2009 23:08:45 +0100
gvfs (1.4.1-2+gdu) experimental; urgency=low
* Re-upload the gdu-enabled branch to experimental.
-- Josselin Mouette <joss@debian.org> Sat, 24 Oct 2009 08:39:35 +0200
gvfs (1.4.1-1) unstable; urgency=low
* New upstream bugfix release.
* Drop debian/patches/10_kfreebsd.patch, merged upstream.
* Updated debian/patches/01_maintainer_mode.patch to apply.
* Rebuild debian/patches/90_relibtoolize.patch.
* Bump standards-version to 3.8.3.
-- Andreas Henriksson <andreas@fatal.se> Wed, 21 Oct 2009 14:12:57 +0200
gvfs (1.4.0-3) unstable; urgency=low
* Break brasero < 2.28.0-2 because it locks the CD device, preventing
ejection.
* Only install xdg-mount.1 on !linux.
-- Josselin Mouette <joss@debian.org> Thu, 08 Oct 2009 17:51:46 +0200
gvfs (1.4.0-2+gdu1) experimental; urgency=low
* Enable GDU support on Linux.
* Disable HAL on Linux.
* Recommend policykit 1 (to mount stuff using devicekit-disks) instead
of gnome-mount.
* Only install xdg-mount on !linux.
-- Josselin Mouette <joss@debian.org> Wed, 30 Sep 2009 00:55:17 +0200
gvfs (1.4.0-2) unstable; urgency=low
* Do not build-depend on libudev on !linux.
* gvfs.postinst: add big fat warning asking to restart the session
after the upgrade. Closes: #548898.
* Enable libgudev on linux.
-- Josselin Mouette <joss@debian.org> Wed, 30 Sep 2009 00:32:46 +0200
gvfs (1.4.0-1) unstable; urgency=low
[ Andreas Henriksson ]
* New upstream release.
* Bumped Build-Dependency on glib from 2.19.x to 2.21.x.
* Updated 01_maintainer_mode.patch, 02_deprecated.patch to apply.
* Regenerated 90_relibtoolize.patch.
* Refreshed all patches.
[ Josselin Mouette ]
* Add build-dep on libudev.
* Install the metadata store.
-- Josselin Mouette <joss@debian.org> Thu, 24 Sep 2009 10:12:24 +0200
gvfs (1.2.3-3) unstable; urgency=low
* xdg-mount: new utility, that will spawn gnome-mount or exo-mount
depending on the running environment.
* Depend on x11-utils for xprop.
* Recommend gnome-mount | exo-utils.
* Install the script and its manual page in gvfs.
* 03_xdg-mount.patch: new patch. Use xdg-mount instead of gnome-mount.
Handle its specific return code by displaying the appropriate error.
-- Josselin Mouette <joss@debian.org> Mon, 17 Aug 2009 17:39:43 +0200
gvfs (1.2.3-2) unstable; urgency=low
[ Josselin Mouette ]
* gvfs-fuse depends on fuse-utils. Closes: #500886.
[ Emilio Pozuelo Monfort ]
* Add a watch file.
* Only install obexftp on Linux systems, it's not available elsewhere.
Thanks Cyril Brulebois. Closes: #540482.
-- Emilio Pozuelo Monfort <pochu@ubuntu.com> Sun, 09 Aug 2009 01:23:49 +0200
gvfs (1.2.3-1) unstable; urgency=low
* Add back fuse and cdio support for kfreebsd.
* 10_kfreebsd.patch: patch from Aurélien Jarno to add gphoto2 support
on kfreebsd. Closes: #528539.
+ Update 90_relibtoolize.patch accordingly.
* Enable obexftp backend again now that bluez 4 is available.
Closes: #530435.
* Only suggest obex-data-server, it’s not as if it was so much related
to gvfs which does file browsing, not file sharing.
* New upstream release.
* Refresh a pair of patches accordingly.
-- Josselin Mouette <joss@debian.org> Fri, 29 May 2009 09:03:00 +0200
gvfs (1.2.2-2) unstable; urgency=low
[ Deng Xiyue ]
* Fix typo in gvfs Conflicts/Replaces: ligvfscommon0 -> libgvfscommon0
(Closes: #526241)
-- Josselin Mouette <joss@debian.org> Thu, 30 Apr 2009 10:34:10 +0200
gvfs (1.2.2-1) unstable; urgency=low
* New upstream release.
+ Allows to trash read-only directories. Closes: #341949.
* Update build dependencies and dependencies.
* Require fuse, cdparanoia and bluetooth only on Linux. Use
type-handling to only build gvfs-fuse on Linux architectures.
Closes: #526073.
* Disable obexftp backend until bluez 4.0 is available.
* 02_http_unescape.patch: removed, merged upstream.
* 02_deprecated.patch: new patch. Don’t use G_DISABLE_DEPRECATED in
production, it’s like shooting ourselves in the foot.
Closes: #524905.
* Regenerate or refresh other patches.
* Update shlibs version to 1.2.1.
* Add the newly shipped file to gvfs-backends.
* Fix debug package priority.
* Remove the library packages for now, there is no guarantee of
API/ABI stability, and the shipped headers don’t correspond with the
shipped libraries.
* Move libgvfscommon.so.0 to gvfs, and libgvfscommon-dnssd.so.0 to
gvfs-backends.
* Don’t tempt people with development symlinks.
* Add proper Conflicts/Replaces in gvfs.
-- Josselin Mouette <joss@debian.org> Mon, 27 Apr 2009 22:01:02 +0200
gvfs (1.0.3-4) unstable; urgency=low
* Add gvfs-dbg package with debugging symbols.
* Build-depend on libltdl-dev instead of libltdl3-dev.
-- Josselin Mouette <joss@debian.org> Thu, 09 Apr 2009 19:36:46 +0200
gvfs (1.0.3-3) unstable; urgency=low
* 02_http_unescape.patch: new patch, stolen upstream. Fix escaping of
HTTP uris that leads to a crash. Closes: #519722.
-- Josselin Mouette <joss@debian.org> Sat, 14 Mar 2009 18:50:49 +0100
gvfs (1.0.3-2) unstable; urgency=low
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Wed, 04 Mar 2009 13:34:16 +0100
gvfs (1.0.3-1) experimental; urgency=low
* Only suggest gvfs-backends. Nautilus already recommends it.
* Install the completion file in /etc/bash_completion.d.
Closes: #508294.
* Remove the old profile.d conffile in the preinst.
* New upstream release.
* 01_maintainer_mode.patch: updated for the new version.
-- Josselin Mouette <joss@debian.org> Sun, 04 Jan 2009 13:13:35 +0100
gvfs (1.0.2-2) experimental; urgency=low
* Move the burn backend to gvfs.
-- Josselin Mouette <joss@debian.org> Wed, 26 Nov 2008 00:50:57 +0100
gvfs (1.0.2-1) experimental; urgency=low
[ Andreas Henriksson ]
* New upstream release.
- disable all patches (from upstream).
- bump build-dependency on libglib2.0-dev to >= 2.17.6.
- add build-dependency on intltool.
- add version >= 2.23.91 to libsoup2.4-dev build-dependency.
[ Josselin Mouette ]
* Build-depend on openssh-client.
* Bump requirement on libgphoto2.
* Bump shlibs version to 0.99.6.
* Fix D-Bus spelling error in descriptions. Make them a bit more
complete.
* Include clean-la.mk; require gnome-pkg-tools 0.7.
* Include the volume monitors.
* Move the computer, localtest and trash backends to gvfs.
* Add the corresponding conflict.
* Do not run dh_makeshlibs on gvfs.
* 01_maintainer_mode.patch: enable AM_MAINTAINER_MODE.
* 90_relibtoolize.patch: relibtoolize to avoid the amd64 rpath issue.
* 99_ltmain_as-needed.patch: the best friend of --as-needed.
* Pass -z defs --as-needed -O1 to the linker.
* gvfs-fuse and gvfs-bin depend on gvfs (= ${binary:Version}).
-- Josselin Mouette <joss@debian.org> Sun, 16 Nov 2008 19:51:57 +0100
gvfs (0.2.5-1.1) unstable; urgency=high
* NMU
* Apply upstream SVN r1819 - "(reindex_file_handle_for_path): Steal the old
file handle record from the global hash table before replacing its path,
not after."
* Apply upstream SVN r1822: "(vfs_create): Hold the file handle lock while
opening the stream."
* Apply upstream SVN r1844: "Don't call statvfs on /."
* Apply upstream SVN r1854: "Avoid a race between the subthread and the
main thread in the case of dbus going bye-bye."
* Apply part of r2052: "Set st_blocks & co so that du works."
* Apply upstream SVN r2056: "Attempt to prevent potential race conditions in
the FUSE backend when file handles get closed while still in use in
another thread, if that ever happens." closes: #496269.
-- Clint Adams <schizo@debian.org> Sat, 25 Oct 2008 09:29:53 -0400
gvfs (0.2.5-1) unstable; urgency=low
* New upstream bugfix release:
+ Fixes trash problems with files beginning with an _ (Closes: #474616).
* debian/control.in:
+ Update Standards-Version to 3.8.0, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Mon, 30 Jun 2008 12:07:05 +0200
gvfs (0.2.4-1) unstable; urgency=low
* New upstream bugfix release:
+ Fixes a few FUSE issues (Closes: #476280).
* debian/control.in:
+ Recommend obex-data-server to make ObexFTP work out of the
box (Closes: #480005).
-- Sebastian Dröge <slomo@debian.org> Thu, 29 May 2008 09:21:32 +0200
gvfs (0.2.3-1) unstable; urgency=low
* debian/gvfs-backends.postinst:
+ Use killall -q to not complain if there are no gvfsd processes. Thanks
to Daniel Hahler (Closes: #473172).
* New upstream release.
-- Sebastian Dröge <slomo@debian.org> Tue, 08 Apr 2008 13:24:00 +0200
gvfs (0.2.2-1) unstable; urgency=low
* debian/gvfs-backends.postinst:
+ Send SIGHUP to all gvfsd processes to let them reload their
backends list.
* debian/control.in:
+ Let gvfs recommend gvfs-backends.
* New upstream release:
+ debian/patches/01_sftp_krb5.patch:
- Dropped, merged upstream.
-- Sebastian Dröge <slomo@debian.org> Fri, 28 Mar 2008 18:04:37 +0100
gvfs (0.2.1-1) unstable; urgency=low
* New upstream release:
+ debian/patches/90_from_svn_fix_async_cancellation.patch:
- Dropped, merged upstream.
+ debian/control.in,
debian/gvfs-backends.install:
- Add archive backend, allows reading many different archive types,
for example tar and zip.
-- Sebastian Dröge <slomo@debian.org> Mon, 17 Mar 2008 19:36:11 +0100
gvfs (0.2.0.1-2) unstable; urgency=low
[ Josselin Mouette ]
* Use quilt for patch handling.
* 01_sftp_krb5.patch: ported from GnomeVFS. Make the sftp backend work
when pam_krb5 is used on the server side.
[ Sebastian Dröge ]
* debian/patches/90_from_svn_fix_async_cancellation.patch:
+ Patch from upstream SVN (and Ubuntu) to fix async cancellation.
-- Sebastian Dröge <slomo@debian.org> Mon, 17 Mar 2008 00:56:13 +0100
gvfs (0.2.0.1-1) unstable; urgency=low
* New upstream stable release.
* debian/control.in:
+ Build depend on libltdl3-dev again to make libtool happy.
-- Sebastian Dröge <slomo@debian.org> Mon, 10 Mar 2008 21:29:54 +0100
gvfs (0.1.11-1) experimental; urgency=low
* New upstream release.
* debian/control.in:
+ Remove libltdl3-dev from Build-Depends, workaround is not needed anymore
for some reason.
-- Sebastian Dröge <slomo@debian.org> Wed, 05 Mar 2008 05:28:14 +0100
gvfs (0.1.10-1) experimental; urgency=low
* New upstream release:
+ debian/control,
debian/gvfs-backends.install:
- Update build dependencies.
- Add obexftp to the backends.
-- Sebastian Dröge <slomo@debian.org> Tue, 04 Mar 2008 16:13:56 +0100
gvfs (0.1.8-1) experimental; urgency=low
* New upstream release:
+ debian/control.in:
- Update libglib2.0-dev build dependency to >= 2.15.6.
- Build depend on libavahi-client-dev and libavahi-glib-dev.
- Update libhal-dev build dependency to >= 0.5.10.
- Build depend on libgphoto2-2-dev.
- Build depend on libgnome-keyring-dev.
- Add new backends to the gvfs-backends description.
- Build depend on libltdl3-dev.
+ debian/gvfs-backends.install:
- Add new backends.
+ debian/gvfs-bin.install:
- Add new /etc/profile.d directory.
* debian/control.in:
+ Add libglib2.0-dev to the dependencies of the -dev package.
+ Let gvfs Recommend hal and dbus as they're required for it to work.
-- Sebastian Dröge <slomo@debian.org> Tue, 26 Feb 2008 07:19:53 +0100
gvfs (0.1.7-1) experimental; urgency=low
* New upstream release:
+ debian/control.in:
- Update glib build dependency.
- Build depend on libgconf2-dev.
* debian/control.in:
+ Let gvfs-backends depend on gvfs. The backends are useless without it.
-- Sebastian Dröge <slomo@debian.org> Tue, 12 Feb 2008 06:55:57 +0100
gvfs (0.1.6-1) experimental; urgency=low
[ Loic Minier ]
* Add ${shlibs:Depends} and ${misc:Depends} to libgvfscommon-dev.
* Wrap deps and remove trailing whitespace in control :-P
[ Sebastian Dröge ]
* New upstream release:
+ debian/control.in:
- Build depend on libglib2.0-dev (>= 2.15.4).
* debian/control.in:
+ Let gvfs-backends depend on gvfs. Taken from the Ubuntu package.
-- Sebastian Dröge <slomo@debian.org> Tue, 29 Jan 2008 12:37:10 +0100
gvfs (0.1.4-1) experimental; urgency=low
* New upstream release.
* debian/control.in:
+ Update descriptions.
+ Update build dependencies.
* debian/gvfs-backends.install:
+ Add burn:// backend.
-- Sebastian Dröge <slomo@debian.org> Tue, 22 Jan 2008 12:56:52 +0100
gvfs (0.1.2-1) experimental; urgency=low
[ Sebastien Bacher ]
* Initial packaging.
[ Sebastian Dröge ]
* Synced package from Ubuntu and uploaded to experimental (Closes: #444299).
* debian/control.in:
+ Build depend on libsoup2.2-dev.
+ Update minimal versions of build dependencies.
+ Build depend on libxml-parser-perl.
* debian/copyright:
+ Add another copyright holder.
-- Sebastian Dröge <slomo@debian.org> Thu, 17 Jan 2008 12:32:52 +0100
gvfs (0.2.2-2.1) unstable; urgency=low
* debian/gvfs-backends.postinst:
+ Use killall -q to not complain if there are no gvfsd processes. Thanks
to Daniel Hahler (Closes: #473172).
*
-- Sebastian Dröge <slomo@debian.org> Tue, 08 Apr 2008 13:24:00 +0200
|