Re: Multiple packages for Git in Maemo Extras (git and git-core)

2010-10-13 Thread Thomas Perl
Hey ho!

(CC'ing Jeremiah: Can you provide your insight on how to do this
transition right?)

2010/10/11 Wes Hardaker w...@hardakers.net:
 On Mon, 11 Oct 2010 11:13:24 +0200, Thomas Perl th.p...@gmail.com said:
 TP I've just noticed that there are different packages of Git in the
 TP Extras repository: One is called git[1] and the other
 TP git-core[2]

 I suspect we started packaging about the same time and it's one of
 those duplicate problems.  I believe mine, git, is less complete than
 the git-core version so I suspect we should adopt that one instead of
 mine.  I'd be happy to do whatever is necessary to remove mine, but I
 don't think it's possible to remove it.  Packing it as a wrapper would
 be fine too (and if you could tell me the best way to do that, I'd
 appreciate it.  The git package was actually my first debian-based
 package ever!)

For the wrapper package, you could simply let it depend on git-core
and make its contents empty, I guess. The other way would be for
Khertan to make sure that his git-core source package creates the
dummy git package that depends on git-core. This might create a
conflict in the repos, though (two different source packages creating
the same binary package). Niels could probably just remove your
package from the repos with the reasoning from above and then have
Khertan upload a new version of the git-core package that also creates
the transitional git wrapper package.

Here are the instructions for Debian, but the changes to
debian/control should be working on Maemo, too:

http://wiki.debian.org/Renaming_a_Package

HTH.

Thanks,
Thomas
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Multiple packages for Git in Maemo Extras (git and git-core)

2010-10-11 Thread Thomas Perl
Hi!

I've just noticed that there are different packages of Git in the
Extras repository: One is called git[1] and the other git-core[2]
- with different maintainers and different versions. It would be nice
if we could find a way to resolve this issue and get one of the
packages removed (or at least replaced with an empty dummy package
that simply depends on the other package). I'll leave it up to you
(Khertan and Wes, the maintainers of these packages) to decide which
one we should be moving forward with. git-core has a newer version,
but is not optified AFAICT. I have not tried git yet. In Debian,
git is the current package name, while git-core is now just a
transitional package depending on git, so maybe we should do the
same in Maemo Extras (just from a naming perspective, I don't care who
maintains it, as long as someone does).

Thanks,
Thomas

[1] http://maemo.org/packages/view/git-core/
[2] http://maemo.org/packages/view/git/
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Git on Maemo

2009-10-13 Thread gary liquid
in the diablo extras repository is a package git-core
i use this on my n900 to do all my git related activities.

note however, it has 1 limitation - it works well using git: protocol, but
it cannot do SSH updates (maemo garage uses this protocol)
apart from that, its solid and should most likely be moved to fremantle
repository.

Gary

On Tue, Oct 13, 2009 at 9:37 AM, Roald de Vries no...@roalddevries.nlwrote:

 Dear all,

 I want to install git on my N900. I haven't found a package in the 'Maemo
 Extras' and the 'Maemo Extras-Devel' catalogs. There appears to be one on
 the git site; has anyone tested/used that? And shouldn't it be in one of the
 catalogs?


 Kind regards,

 Roald

___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers

___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Git on Maemo

2009-10-13 Thread Andrew Flegg
On Tue, Oct 13, 2009 at 11:01, gary liquid liq...@gmail.com wrote:

 in the diablo extras repository is a package git-core
 i use this on my n900 to do all my git related activities.

 note however, it has 1 limitation - it works well using git: protocol, but
 it cannot do SSH updates (maemo garage uses this protocol)
 apart from that, its solid and should most likely be moved to fremantle
 repository.

SSH or HTTP? I'm having issues on Debian Etch getting a git to push to
Extras because, git-push is not available for http/https repository
when not compiled with USE_CURL_MULTI. Compiling from source with
CFLAGS=-DUSE_CURL_MULTI and a whole lot of libcurl3-dev etc isn't
helping.

Cheers,

Andrew

-- 
Andrew Flegg -- mailto:and...@bleb.org  |  http://www.bleb.org/
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Git on Maemo

2009-10-13 Thread Dieter Plaetinck
On Tue, 13 Oct 2009 11:08:32 +0100
Andrew Flegg and...@bleb.org wrote:

 On Tue, Oct 13, 2009 at 11:01, gary liquid liq...@gmail.com wrote:
 
  in the diablo extras repository is a package git-core
  i use this on my n900 to do all my git related activities.
 
  note however, it has 1 limitation - it works well using git:
  protocol, but it cannot do SSH updates (maemo garage uses this
  protocol) apart from that, its solid and should most likely be
  moved to fremantle repository.
 
 SSH or HTTP? I'm having issues on Debian Etch getting a git to push to
 Extras because, git-push is not available for http/https repository
 when not compiled with USE_CURL_MULTI. Compiling from source with
 CFLAGS=-DUSE_CURL_MULTI and a whole lot of libcurl3-dev etc isn't
 helping.
 
 Cheers,
 
 Andrew
 

Gary, you have the openssh client installed, right?

Dieter
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Git on Maemo

2009-10-13 Thread gary liquid
apologies,
yes nothing to do with SSH, but if the HTTP/HTTPS as Andrew said.

gary


On Tue, Oct 13, 2009 at 10:30 AM, Dieter Plaetinck die...@plaetinck.bewrote:

 On Tue, 13 Oct 2009 11:08:32 +0100
 Andrew Flegg and...@bleb.org wrote:

  On Tue, Oct 13, 2009 at 11:01, gary liquid liq...@gmail.com wrote:
  
   in the diablo extras repository is a package git-core
   i use this on my n900 to do all my git related activities.
  
   note however, it has 1 limitation - it works well using git:
   protocol, but it cannot do SSH updates (maemo garage uses this
   protocol) apart from that, its solid and should most likely be
   moved to fremantle repository.
 
  SSH or HTTP? I'm having issues on Debian Etch getting a git to push to
  Extras because, git-push is not available for http/https repository
  when not compiled with USE_CURL_MULTI. Compiling from source with
  CFLAGS=-DUSE_CURL_MULTI and a whole lot of libcurl3-dev etc isn't
  helping.
 
  Cheers,
 
  Andrew
 

 Gary, you have the openssh client installed, right?

 Dieter
 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers

___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Git on Maemo

2009-10-13 Thread gary liquid
i do it via ssh console as part of my n900 reinstallation notes
i'm not sure why you would use the app manager since git is a console app ;)

#
git

add the repositories:   i use
/etc/apt/sources.list.d/hildon-application-manager.list  (should this be
somewhere else?)

deb http://repository.maemo.org/extras diablo free non-free
deb http://repository.maemo.org/extras-devel diablo free non-free

then

apt-get update
apt-get install git-core


then
remove the repositories again

On Tue, Oct 13, 2009 at 2:43 PM, Roald de Vries no...@roalddevries.nlwrote:

 Hi Gary,

 I've added both the repositories http://repository.maemo.org/extras and
 http://repository.maemo.org/extras-devel, but searching for git in them
 didn't give results. Googling 'site:repository.maemo.org git-core' gave me
 http://repository.maemo.org/extras-devel/pool/diablo/free/g/git-core/ as
 the first hit, containing git-core_1.5.6.3-1.1maemo0_armel.deb, and
 http://repository.maemo.org/extras-devel/dists/diablo/install/ as the
 second, containing git-core.install. When I open the .install one on my
 N900, the application manager is opened, and it says Unable to download
 'git-core'. Application package not found. Can you help me out? Thanks in
 advance.

 Roald

  in the diablo extras repository is a package git-core
  i use this on my n900 to do all my git related activities.
 
  note however, it has 1 limitation - it works well using git: protocol,
 but
  it cannot do SSH updates (maemo garage uses this protocol)
  apart from that, its solid and should most likely be moved to fremantle
  repository.
 
  Gary
 
  On Tue, Oct 13, 2009 at 9:37 AM, Roald de Vries no...@roalddevries.nl
 wrote:
 
   Dear all,
  
   I want to install git on my N900. I haven't found a package in the
 'Maemo
   Extras' and the 'Maemo Extras-Devel' catalogs. There appears to be one
 on
   the git site; has anyone tested/used that? And shouldn't it be in one
 of the
   catalogs?
  
   Kind regards,
  
   Roald
  


___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Git on Maemo

2009-10-13 Thread Dieter Plaetinck
On Tue, 13 Oct 2009 14:54:41 +
gary liquid liq...@gmail.com wrote:

 i do it via ssh console as part of my n900 reinstallation notes
 i'm not sure why you would use the app manager since git is a console
 app ;)

can you share those notes?
I'm wondering what the perfect, complete, (online) backup and
restore strategy is

I guess:
* backup: copy just $HOME and /etc online (you can't read the entire
  blockdevice in a clean way without shutting device down, right?)
  keep a list of installed packages and/or manual tweaks outside of
  $HOME and /etc
* restore: write base image - currently not at
  http://tablets-dev.nokia.com/ btw? - back, after which you can sync
  the $HOME and /etc back. and reinstall packages, reapply manual tweaks


Dieter
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Git on Maemo

2009-10-13 Thread Roald de Vries
Thanks Gary, that works.

Roald

On Oct 13, 2009, at 4:54 PM, gary liquid wrote:
 i do it via ssh console as part of my n900 reinstallation notes
 i'm not sure why you would use the app manager since git is a console app ;)
 
 #
 git
 
 add the repositories:   i use 
 /etc/apt/sources.list.d/hildon-application-manager.list  (should this be 
 somewhere else?)
 
 deb http://repository.maemo.org/extras diablo free non-free
 deb http://repository.maemo.org/extras-devel diablo free non-free
 
 then
 
 apt-get update
 apt-get install git-core
 
 
 then
 remove the repositories again
 
 On Tue, Oct 13, 2009 at 2:43 PM, Roald de Vries no...@roalddevries.nl wrote:
  Hi Gary,
  
  I've added both the repositories http://repository.maemo.org/extras and 
  http://repository.maemo.org/extras-devel, but searching for git in them 
  didn't give results. Googling 'site:repository.maemo.org git-core' gave me 
  http://repository.maemo.org/extras-devel/pool/diablo/free/g/git-core/ as 
  the first hit, containing git-core_1.5.6.3-1.1maemo0_armel.deb, and 
  http://repository.maemo.org/extras-devel/dists/diablo/install/ as the 
  second, containing git-core.install. When I open the .install one on my 
  N900, the application manager is opened, and it says Unable to download 
  'git-core'. Application package not found. Can you help me out? Thanks in 
  advance.
  
  Roald
  
   in the diablo extras repository is a package git-core
   i use this on my n900 to do all my git related activities.
  
   note however, it has 1 limitation - it works well using git: protocol, but
   it cannot do SSH updates (maemo garage uses this protocol)
   apart from that, its solid and should most likely be moved to fremantle
   repository.
  
   Gary
  
   On Tue, Oct 13, 2009 at 9:37 AM, Roald de Vries 
   no...@roalddevries.nlwrote:
  
Dear all,
   
I want to install git on my N900. I haven't found a package in the 
'Maemo
Extras' and the 'Maemo Extras-Devel' catalogs. There appears to be one 
on
the git site; has anyone tested/used that? And shouldn't it be in one 
of the
catalogs?
   
Kind regards,
   
Roald
   
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Install gstreamer git on maemo

2009-01-01 Thread Stefan Kost
Erivaldo schrieb:
 Hello,
 
 do someone knows how to install gstreamer0.10 from git, once compiled,
 into n800? I managed to compile it inside scratchbox, but just
 replacing libs at /usr/lib/ and binaries at /usr/bin/ doesn't worked.
 I got some dynamic linking errors, due missing symbols, running
 gst-inspect or gst-launch. I really need the newest source from git.
GStreamer is not officialy in git, its in cvs still. Besides for installing I
see these options:
1) carefully copy all files (prefix/bin/gst*, prefix/lib/libgst*,
prefix/lib/gstreamer-0.10/*)
2) use checkinstall and copy
3) copy debian stuff in source tree and make packages

Nr. 3 would be the safest. If would rock if someone would make newer gstreamer
packages for diablo.

Stefan


 
 Maybe just to copy it isn't enough?
 
 
 Sorry for bad english,
 Erivaldo
 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers

___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Install gstreamer git on maemo

2008-12-16 Thread Erivaldo
Hello,

do someone knows how to install gstreamer0.10 from git, once compiled,
into n800? I managed to compile it inside scratchbox, but just
replacing libs at /usr/lib/ and binaries at /usr/bin/ doesn't worked.
I got some dynamic linking errors, due missing symbols, running
gst-inspect or gst-launch. I really need the newest source from git.

Maybe just to copy it isn't enough?


Sorry for bad english,
Erivaldo
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers