1

Windowsボックスのコマンドプロンプトからこのコードを使用しました(Linuxマシンは稼働中です):

ftp -u ftp://cran.R-project.org/incoming/ qdap_0.1.0.tar.gz

私は次の情報を使用しました:

https://github.com/hadley/devtools/wiki/Release
http://cran.r-project.org/doc/manuals/R-exts.html#Submitting-a-package-to-CRAN

ここに表示されると思っていました: ftp://cran.r-project.org/incoming/ですが、表示されません。

せっかちなだけですか、それともパッケージがアップロードされていませんか? コマンドライン出力は次のとおりです。

C:\Users\trinker\GitHub>ftp -u ftp://cran.R-project.org/incoming/ qdap_0.1.0.tar
.gz

Transfers files to and from a computer running an FTP server service
(sometimes called a daemon). Ftp can be used interactively.

FTP [-v] [-d] [-i] [-n] [-g] [-s:filename] [-a] [-A] [-x:sendbuffer] [-r:recvbuf
fer] [-b:asyncbuffers] [-w:windowsize] [host]

  -v              Suppresses display of remote server responses.
  -n              Suppresses auto-login upon initial connection.
  -i              Turns off interactive prompting during multiple file
                  transfers.
  -d              Enables debugging.
  -g              Disables filename globbing (see GLOB command).
  -s:filename     Specifies a text file containing FTP commands; the
                  commands will automatically run after FTP starts.
  -a              Use any local interface when binding data connection.
  -A              login as anonymous.
  -x:send sockbuf Overrides the default SO_SNDBUF size of 8192.
  -r:recv sockbuf Overrides the default SO_RCVBUF size of 8192.
  -b:async count  Overrides the default async count of 3
  -w:windowsize   Overrides the default transfer buffer size of 65535.
  host            Specifies the host name or IP address of the remote
                  host to connect to.

Notes:
  - mget and mput commands take y/n/q for yes/no/quit.
  - Use Control-C to abort commands.
4

1 に答える 1

3

(これは以前はコメントであり、ここで回答に転送されています。)

  1. ブラウザによって以前にキャッシュされたページを表示していないことを確認してください。

  2. 実際のアップロードを実行するには、無料のクロス プラットフォームFileZilla FTP ソフトウェアを試してみてください。マシンのソース ディレクトリ (左側のペイン) と CRAN のターゲット ディレクトリ (右側のペイン) の内容をアップロードして同時に表示し、上部のペインに何が起こっているかのログを表示し下のペイン。また、アップロード先のサイトを保存するサイト マネージャーも備えているため、アップロードのたびに URL を入力し続ける必要はありません。

于 2013-01-31T12:39:32.337 に答える