Sie sind nicht angemeldet.

1

17.09.2013, 20:26

Finde ebuild in bestimmten Overlay nicht

Lt. gpo.zugaina.org gibt es ein ebuild dev-util/android-notifier-desktop-bin im Overlay bgo-overlay.
Mit layman das Overlay eingestellt und mit -s gesynct.
Was mich stutzig macht ist die Ausschrift beim syncen Overlay "bgo-overlay" could not be found in the remote lists.:

Quellcode

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
layman -s bgo-overlay

 * Fetching remote list,...
 * Remote list already up to date: http://www.gentoo.org/proj/en/overlays/repositories.xml
 * Last-modified: Fri, 23 Aug 2013 04:50:03 GMT
 * Fetch Ok

 * Syncing selected overlays,...
 * Running Rsync... # /usr/bin/rsync -rlptDvz --progress --delete --delete-after --timeout=180 --exclude=distfiles/* --exclude=local/* --exclude=packages/* rsync://gentoo.zugaina.org/bgo-overlay/ /var/lib/layman/bgo-overlay

receiving file list ... 
9835 files to consider
                    
sent 79 bytes  received 230846 bytes  461850.00 bytes/sec
total size is 11462422  speedup is 49.64
 * 
 * Succeeded:
 * ------
 * Successfully synchronized overlay "bgo-overlay".
 * 
 * 
 * Warnings:
 * ------
 * Overlay "bgo-overlay" could not be found in the remote lists.
 * Please check if it has been renamed and re-add if necessary.
 *


Jedenfalls kann ich mit emerge nicht o.g. Paket installieren. Was mache ich falsch?
Jörg
VDR-Server:
AMD Sempron 2200 - 512 MB - DVB-C 2 x Mystique CaBiX-C2
3.5.?-gentoo - MythTV 0.27 (UPnP-Clients BD-Player Sony und Philips TV)

VirtualBox-Host headless:
AMD Athlon 2-Kern - 4GB Ram VMware-Server 2 - mehrere virt. Maschinen mit Gentoo bzw. WinXP/Win7

2

18.09.2013, 07:21

Mhm, ja: dieses Overlay ist nicht in http://www.gentoo.org/proj/en/overlays/repositories.xml gelistet.

Aber es gibt da schon ein Overlay ...

Quellcode

1
 # rsync --list-only rsync://gentoo.zugaina.org/bgo-overlay/
Hast du das jetzt in deiner /var/lib/layman/ drinnen oder nicht? ... und kannst du dem Maintainer was mailen?
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

3

18.09.2013, 15:44

Zitat

Hast du das jetzt in deiner /var/lib/layman/ drinnen oder nicht?

Ja, alles da.

Zitat

und kannst du dem Maintainer was mailen?
Ähm, ???
VDR-Server:
AMD Sempron 2200 - 512 MB - DVB-C 2 x Mystique CaBiX-C2
3.5.?-gentoo - MythTV 0.27 (UPnP-Clients BD-Player Sony und Philips TV)

VirtualBox-Host headless:
AMD Athlon 2-Kern - 4GB Ram VMware-Server 2 - mehrere virt. Maschinen mit Gentoo bzw. WinXP/Win7

4

19.09.2013, 10:02

Auf http://gpo.zugaina.org/lst/gpo-repositories.xml

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
<repo quality="experimental" status="unofficial">
<name>
<![CDATA[ bgo-overlay ]]>
</name>
<description>
<![CDATA[ This overlay is generated from bugs.gentoo.org. ]]>
</description>
<homepage>http://bgo.zugaina.org/</homepage>
<owner>
<email>ycarus@zugaina.org</email>
</owner>
<source type="rsync">rsync://gentoo.zugaina.org/bgo-overlay</source>
</repo>


==> mail an "ycarus AT zugaina.org" ... andererseits ist die fehlende Auflistung ja vielleicht Absicht.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>

5

19.11.2014, 11:44

==> mail an "ycarus AT zugaina.org" ... andererseits ist die fehlende Auflistung ja vielleicht Absicht.


Das Overlay findet sich bis heute nicht in der "offiziellen" Liste.

Wie kann ich layman beibringen, nicht jedesmal per "-o" die Quell-URI angeben zu müssen, nur um ein Update (nornalerweise einfach epr layman -S) fahren zu können? Das ist sehr lästig und ich würde dazu ungern eigenen Code aufsetzen wollen.

Irgendwo/-wie muß man Layman doch dazu bekommen können, sich die URI zu" merken" (z.B. per Konfiguration oder im Overlay-Baum)?


Vielen Dank für jeden Tip,

Niels.
--
Niels Dettenbach
Syndicat IT & Internet
http://www.syndicat.com
Niels Dettenbach
Syndicat IT & Internet
WWW: http://www.syndicat.com
PGP: https://www.syndicat.com/pub_key.asc

6

20.11.2014, 10:57

Stelle eine eintsprechende overlay XML Datei in /etc/layman/overlays mach ein layman -o mit einem -L und dann sollte das Ding so wie alle anderen Overlays auch bei dir aufscheinen mit allem Features.

Also

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# cat /etc/layman/overlays/bgo-overlay.xml 
<?xml version="1.0" ?>                                                                                                     
 <repositories version="1.0">
    <repo quality="experimental" status="unofficial">
        <name>bgo-overlay</name>
        <description>This overlay is generated from bugs.gentoo.org.</description>
        <homepage>http://bgo.zugaina.org/</homepage>
        <owner>
            <email>ycarus@zugaina.org</email>
        </owner>
        <source type="rsync">rsync://gentoo.zugaina.org/bgo-overlay</source>
    </repo>
</repositories>
# layman -o /etc/layman/overlays/bgo-overlay.xml 

# layman -L | grep bgo
 * bgo-overlay               [Rsync     ] (rsync://gentoo.zugaina.org/bgo-ov...)


Das sollte dann mit einem layman -S erfasst sein.
http://www.dyle.org
IM-Account (Jabber!) sind auf meiner HP ...
There is no place like /home

http://www.gentooforum.de
http://www.gentoofreunde.org

<div>how to annoy a web developer?</span>