ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] Собственный репозиторий..
@ 2005-02-26 10:26 Anton Gorlov aka Stalker
  2005-02-26 11:09 ` Ilya V. Pobelov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Anton Gorlov aka Stalker @ 2005-02-26 10:26 UTC (permalink / raw)
  To: community

Здравствуйте, community.

Поскольку  накопилось  довольно  таки  много  пакетов  (часть  из  них
пересобранные  из  сизифа,часть  самосборные)  для облегчения работы с
ними  думаю  имеет  смысл  сделать свой мини-репозиторий. Что по этому
поводу скажет All? Как вообще создаётся репозиторий?

-- 
С уважением,
 Anton                          mailto:Pnz.Stalker@mail.ru



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Comm] Собственный репозиторий..
  2005-02-26 10:26 [Comm] Собственный репозиторий Anton Gorlov aka Stalker
@ 2005-02-26 11:09 ` Ilya V. Pobelov
  2005-02-26 13:32 ` Yura Kalinichenko
  2005-02-28 12:13 ` php-coder
  2 siblings, 0 replies; 4+ messages in thread
From: Ilya V. Pobelov @ 2005-02-26 11:09 UTC (permalink / raw)
  To: community

[-- Attachment #1: Type: text/plain, Size: 676 bytes --]

On Sat, Feb 26, 2005 at 01:26:13PM +0300, Anton Gorlov aka Stalker wrote:

> Как вообще создаётся репозиторий?

Я делаю так:
genbasedir --bz2only --progress --partial --create
--topdir=<dir1> <dir2>
В <dir1>/<dir2> в подкаталогах RPMS.<что-нибудь> и (опционально) SRPMS.<что-нибудь> лежат rpm и src.rpm
В sources.list писать 
rpm file:/<dir1> <dir2>
Для более продвинутых примеров - genbasedir --help

$ rpm -qf `which genbasedir`
apt-utils-0.5.15cnc6-alt6

P.S. В FAQ?

--
With best regards, Ilya V. Pobelov
ALT Linux Master 2.4 (Citron)
kernel 2.6.10-wks26-up-alt2, system uptime: 21 days, 2:47
NP: Summoning - 1995 - Minas Morgul - 11 - Dor Daedeloth

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Comm] Собственный репозиторий..
  2005-02-26 10:26 [Comm] Собственный репозиторий Anton Gorlov aka Stalker
  2005-02-26 11:09 ` Ilya V. Pobelov
@ 2005-02-26 13:32 ` Yura Kalinichenko
  2005-02-28 12:13 ` php-coder
  2 siblings, 0 replies; 4+ messages in thread
From: Yura Kalinichenko @ 2005-02-26 13:32 UTC (permalink / raw)
  To: community

On Суб, 2005-02-26 at 13:26 +0300, Anton Gorlov aka Stalker wrote:
> Здравствуйте, community.
> 
> Поскольку  накопилось  довольно  таки  много  пакетов  (часть  из  них
> пересобранные  из  сизифа,часть  самосборные)  для облегчения работы с
> ними  думаю  имеет  смысл  сделать свой мини-репозиторий. Что по этому
> поводу скажет All? Как вообще создаётся репозиторий?
#!/bin/sh
root=`pwd`
subrepositories="yuk sisyphus kernel msm"

#                        subrepositories
#                        --------------- 
# root --- UPDATES ---+-- RPMS.yuk ----- *.i586.rpm
#                     |
#                     +-- SRPMS.yuk ---- *.src.rpm
#                     |
#                   ......
#                     +-- RPMS.msm ----- *.i586.rpm
#                     |
#                     +-- SRPMS.msm ---- *.src.rpm
#                     | 
#                     +-- base
# 

fatal() {
  echo -e "\007FATAL ERROR: $1"
  exit 1
}

if [ \! -d $root/UPDATES/base ]; then
   mkdir $root/UPDATES/base || fatal "Can't create directory $root/UPDATES/base"  
fi  
rpm -q apt-utils || apt-get install apt-utils || fatal "You NEED installed package apt-utils"
genbasedir --topdir=$root UPDATES $subrepositories || fatal "Can't do genbasedir"
if grep -q "UPDATES ${subrepositories}" /etc/apt/sources.list ; then
   echo "sources.list already changed."
else
   echo "rpm file:${root} UPDATES ${subrepositories}" >> /etc/apt/sources.list
fi
apt-get update




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Comm] Собственный репозиторий..
  2005-02-26 10:26 [Comm] Собственный репозиторий Anton Gorlov aka Stalker
  2005-02-26 11:09 ` Ilya V. Pobelov
  2005-02-26 13:32 ` Yura Kalinichenko
@ 2005-02-28 12:13 ` php-coder
  2 siblings, 0 replies; 4+ messages in thread
From: php-coder @ 2005-02-28 12:13 UTC (permalink / raw)
  To: community


--- Anton Gorlov aka Stalker 26.02.2005 16:26:13
+++ php-coder 28.02.2005 18:13:12

AGaS> Как вообще создаётся репозиторий?

    Создавал по статье с atmsk.ru Если нужно -- могу выслать...
    (пишите лично)
  
-- 
 + php-coder
 + php-coder[at]ngs[dot]ru
 + ALT Linux Master 2.4

>Неправда ли забавно, это как сам с собой разговаривать у зеркала.
Всегда приятно поговорить с умным человеком :-)
                    -- anonymous (linux.org.ru)



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-02-28 12:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-26 10:26 [Comm] Собственный репозиторий Anton Gorlov aka Stalker
2005-02-26 11:09 ` Ilya V. Pobelov
2005-02-26 13:32 ` Yura Kalinichenko
2005-02-28 12:13 ` php-coder

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git