Active Topics

 


Reply
Thread Tools
Feathers McGraw's Avatar
Posts: 654 | Thanked: 2,368 times | Joined on Jul 2014 @ UK
#1
I think i must be doing something stupid here, hopefully someone can set me straight.

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? :/
 

The Following User Says Thank You to Feathers McGraw For This Useful Post:
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
Not sure... Did you try aptitude?

For me, the package looks atypical because "dig" is inside b/bind9, not d.
Anyway, try to open the direct link in MicroB (excellent at handling MIME types, unlike Fennec), then tell it to open the file with App Manager, and you will get it installed, without having to enable extras-devel.

Thank you. Best wishes.
 

The Following User Says Thank You to Wikiwide For This Useful Post:
Feathers McGraw's Avatar
Posts: 654 | Thanked: 2,368 times | Joined on Jul 2014 @ UK
#3
Thanks for your suggestion. Unfortunately when I try that I get a message about it being an incompatible application package
 

The Following User Says Thank You to Feathers McGraw For This Useful Post:
pichlo's Avatar
Posts: 6,445 | Thanked: 20,981 times | Joined on Sep 2012 @ UK
#4
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:

Code:
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:
Feathers McGraw's Avatar
Posts: 654 | Thanked: 2,368 times | Joined on Jul 2014 @ UK
#5
Originally Posted by pichlo View Post
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:
Well that's interesting! I didn't realise there are two application managers, very handy

I was wrong before, I had CSSU community-devel enabled, not extras-devel!

Thanks for helping me with all these noob quesitons

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...
 

The Following 2 Users Say Thank You to Feathers McGraw For This Useful Post:
Halftux's Avatar
Posts: 862 | Thanked: 2,511 times | Joined on Feb 2012 @ Germany
#6
Originally Posted by Feathers McGraw View Post
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...
Congratulations for some example how to configure syncevolution with owncloud you can have a look at this script.

#!/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.
 

The Following 6 Users Say Thank You to Halftux For This Useful Post:
Reply

Tags
dpkg manual, extras-devel, not found


 
Forum Jump


All times are GMT. The time now is 09:56.