غير قادر على إضافة منفذ إلى الريبو المحلي في macports

StackOverflow https://stackoverflow.com/questions/765392

  •  12-09-2019
  •  | 
  •  

سؤال

أحاول إضافة منفذ إلى ريبو المحلي في macports.

أنا أعرف ال يرشد.

أركض في / المستخدمين / MASI / BIN / Macports / المنافذ / GIT دون جدوى

portindex
Creating software index in /Users/Masi/bin/MacPorts/ports/Git

Total number of ports parsed:   0 
Ports successfully parsed:  0    
Ports failed:           0

لي ميناء الملف هو ما يلي

PortSystem          1.0

name                git-svn 
version             1.0 
categories          git 
maintainers         sl 
description         svn for Git 
long_description    Git-svn is a tool which allows Git to use svn 
homepage            http://www.kernel.org/pub/software/scm/git/docs/git-svn.html 
platforms           darwin
master_sites        http://git-scm.com/ 

checksums           md5 

depends_lib         
                    port:syfi-dev\ 
                    port:syfi-doc\ 
                    port:python-syfi0\ 
                    port:libcln5\ 
                    port:libsyfi0\ 
                    port:libginac1.4\ 
                    port:libsyfi0-dev\
                    port:syfi-bin\

#I do not know what these are: I leave them as they are by default
configure.args      --enable-perl-site-install \
                    --mandir=${prefix}/share/man

مصادر بلدي

#  MacPorts system wide sources configuration file
#  $Id: sources.conf 42662 2008-11-28 23:18:50Z raimue@macports.org $

#  To setup a local ports repository, insert a "file://" entry following
#  the example below that points to your local ports directory:
#  Example: file:///Users/landonf/misc/MacPorts/ports
file:///Users/Masi/bin/MacPorts/ports
rsync://rsync.macports.org/release/ports


#  The default MacPorts repository should always be tagged [default]
#  for proper functionality of various resources (port groups, mirror
#  sites, etc).  If you switch it from the rsync:// URL, be sure to keep
#  it tagged [default].

#  To prevent a source from synchronizing when `port sync` is used,
#  append [nosync] at the end as shown in this example:
#  Example: file:///Users/landonf/misc/MacPorts/ports [nosync]

#  NOTE: The port command parses source URLs in order and installs the
#        first occurrance when a port appears in multiple repositories.
#        So keep "file://" URLs above other URL types.


#  To get the ports tree from the master MacPorts server in California, USA use:
#      rsync://rsync.macports.org/release/ports/
#  To get it from the mirror in Trondheim, Norway use:
#      rsync://trd.no.rsync.macports.org/release/ports/
#  A current list of mirrors is available at http://trac.macports.org/wiki/Mirrors
rsync://rsync.macports.org/release/ports/ [default]

كيف يمكنك إضافة منفذ إلى macports المحلية بنجاح؟

هل كانت مفيدة؟

المحلول

portfiles. يجب يتم تنظيمها في الأزياء التالية:

$LOCAL_PORT_DIR/{category}/{portname}/

جميع الملفات، بما في ذلك Portfile, ، الذهاب تحت هذا الدليل.

في حالتك، فإن Port Dir المحلي الخاص بك /Users/Masi/bin/MacPorts/ports, ، وميناء الخاص بك، git-svn, ، في الفئة git, ، لذلك يجب أن تبدو هيكل الدليل الخاص بك مثل هذا:

/Users/Masi/bin/MacPorts/ports/git/git-svn/Portfile

(في حالة خاصة من git-svn, ، رغم ذلك، يمكنك دائما تثبيت المنفذ git-core مع البديل +svn, ، مثل ذلك: $ sudo port install git-core +svn.)

(أيضا، كملاحظة جانبية أخرى، يتم تنظيم المنافذ ذات الصلة ب GIT عادة تحت فئة "Devel"، وليس "GIT".)

نصائح أخرى

لست متأكدا، لكنني أعتقد أنك بحاجة إلى تغيير هيكل الدليل الخاص بك إلى هذا التنسيق: portcategory/portname/Portfile. وبعد في حالتك سيكون /Users/Masi/bin/MacPorts/ports/git/git-svn/Portfile

ثم حاول تشغيل portindex من جذر الريبو المحلي (/Users/Masi/bin/MacPorts/ports)

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top