The Following User Says Thank You to Feathers McGraw For This Useful Post: | ||
|
2015-01-19
, 02:37
|
Posts: 1,994 |
Thanked: 3,342 times |
Joined on Jun 2010
@ N900: Battery low. N950: torx 4 re-used once and fine; SIM port torn apart
|
#2
|
The Following User Says Thank You to Wikiwide For This Useful Post: | ||
|
2015-01-19
, 09:36
|
|
Posts: 6,447 |
Thanked: 20,981 times |
Joined on Sep 2012
@ UK
|
#4
|
Bianca:~# apt-cache policy dig syncevolution W: Unable to locate package dig W: Unable to locate package syncevolution Bianca:~# fapt-cache policy dig syncevolution dig: Installed: (none) Candidate: 1:9.7.0.dfsg.P1-1maemo3 Version table: 1:9.7.0.dfsg.P1-1maemo3 0 500 http://repository.maemo.org fremantle/free Packages syncevolution: Installed: (none) Candidate: 1:1.3-1 Version table: 1:1.3-1 0 500 http://repository.maemo.org fremantle/free Packages 1:1.2.99.4-1 0 500 http://repository.maemo.org fremantle/free Packages 1:1.2.2-1 0 500 http://repository.maemo.org fremantle/free Packages 1:1.2.1-1 0 500 http://repository.maemo.org fremantle/free Packages 1:1.2.0-3 0 500 http://repository.maemo.org fremantle/free Packages 1:1.2.0-2 0 500 http://repository.maemo.org fremantle/free Packages 1:1.1.99.6-1 0 500 http://repository.maemo.org fremantle/free Packages 1:1.1.99.5-1 0 500 http://repository.maemo.org fremantle/free Packages 1:1.1.1-1 0 500 http://repository.maemo.org fremantle/free Packages 1:1.0-1 0 500 http://repository.maemo.org fremantle/free Packages 1:0.9.2-4 0 500 http://repository.maemo.org fremantle/free Packages 1:0.9.2-3 0 500 http://repository.maemo.org fremantle/free Packages 1:0.9.2-2 0 500 http://repository.maemo.org fremantle/free Packages 1:0.9.2-1 0 500 http://repository.maemo.org fremantle/free Packages 1:0.9.2~beta-1 0 500 http://repository.maemo.org fremantle/free Packages W: Ignoring Provides line with DepCompareOp for package binutils Bianca:~#
The Following 2 Users Say Thank You to pichlo For This Useful Post: | ||
|
2015-01-20
, 18:36
|
|
Posts: 654 |
Thanked: 2,368 times |
Joined on Jul 2014
@ UK
|
#5
|
I would check it again if extras-devel is really enabled. I have it disabled in HAM but enabled in FAM and you can see different results from apt and fapt:
|
2015-01-20
, 21:30
|
|
Posts: 868 |
Thanked: 2,516 times |
Joined on Feb 2012
@ Germany
|
#6
|
Now I've manually added that repo to FAM, and I managed to download syncevolution. Now all I need to do is figure out how to sync contacts and calendar with owncloud 7...
#!/bin/bash
# Specify your username, password, target name for sync ui, as well
# as the URLs to access your calendar and contacts on your owncloud
# server.
user=myuser
pass=mysecret
target=owncloud
calurl=https://owncloud.example.com/remote.php/caldav/calendars/pos/owncloud900
cardurl=https://owncloud.example.com/remote.php/carddav/addressbooks/pos/owncloud-n900
# Create the initial configuration file for the server
syncevolution --configure --template webdav username=$user password=$pass SSLVerifyServer=0 target-config@$target
# Create the initial configuration file for the calendar on the server
syncevolution --configure database=$calurl backend=caldav target-config@$target calendar
# Create the initial configuration file for the contacts on the server
syncevolution --configure database=$cardurl backend=carddav target-config@$target contacts
# Create the entry for syncevolution-frontend - NOTE: NO username and password here.
syncevolution --configure --template SyncEvolution_Client sync=none syncURL=local://@$target username= password= $target
# Configure the relation between the local calendar and the remote calendar
syncevolution --configure sync=two-way backend=calendar database=N900 $target calendar
# Configure the relation between the local addressbook and the remote contacts
syncevolution --configure sync=two-way backend=contacts database=file:///home/user/.osso-abook/db $target contacts
echo The following commands should show the remote content.
echo syncevolution --print-items target-config@$target calendar
echo syncevolution --print-items target-config@$target contacts
echo.
echo The following command should be used initially to sync existing data
echo syncevolution --sync slow $target
echo.
echo The following command should be used for regular syncs
echo syncevolution $target
echo.
Tags |
dpkg manual, extras-devel, not found |
|
I've tried to install two packages from extras-devel recently: dig and syncevolution.
On both occasions, I enabled extras-devel in the app manager, ran apt-get update and then tried to install... and the packages weren't found. I'm pretty sure they exist because I can find them by browsing online, for example:
http://maemo.org/packages/view/dig/
After the failed attempts I disabled extras-devel again.
What am I doing wrong? :/