Re: [aur-general] AUR Comment for white_dune
Ralf_Mardorf [1] added the following comment to white_dune [2]:
white_dune 1.660 isn't provided by ftp://ftp.ourproject.org/pub/wdune/
Sorry, white_dune 1.660 is a defect package 8-( I am unable to rollback to white_dune-1.654: $ git add PKGBUILD .SRCINFO $ git commit On branch master nothing to commit, working tree clean $ git push fatal: 'mufti@aur.archlinux.org/packages/white_dune' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. I used the AUR web interface to disown the package and hope to use git commit/psuh in future... sorry so long MUFTI
On Thu, Dec 26, 2019 at 09:49:30PM +0100, J. Scheurich wrote:
Ralf_Mardorf [1] added the following comment to white_dune [2]:
white_dune 1.660 isn't provided by ftp://ftp.ourproject.org/pub/wdune/
Sorry, white_dune 1.660 is a defect package 8-(
I am unable to rollback to white_dune-1.654:
$ git add PKGBUILD .SRCINFO $ git commit On branch master nothing to commit, working tree clean $ git push fatal: 'mufti@aur.archlinux.org/packages/white_dune' does not appear to be a git repository fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
I used the AUR web interface to disown the package and hope to use git commit/psuh in future...
sorry so long MUFTI
Your remote URL looks wrong. You want to be using the username `aur`, not `mufti`, and the format is not like the one used on the web interface. I.e. git remote set-url origin aur@aur.archlinux.org:white_dune.git To change to the correct format so you can pull/push to and from the repo. BR, David
Hi,
Your remote URL looks wrong. You want to be using the username `aur`, not `mufti`, and the format is not like the one used on the web interface. I.e.
git remote set-url origin aur@aur.archlinux.org:white_dune.git
To change to the correct format so you can pull/push to and from the repo. $ git push aur@aur.archlinux.org: Permission denied (publickey). fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists. How do i set the $HOME/.ssh/id_rsa.pub to AUR ? so long MUFTI
Put: Host aur.archlinux.org User aur PreferredAuthentications publickey IdentityFile ~/.ssh/id_rsa ...into your ~/.ssh/config. See `man ssh_config`. Best regards, Frederick Zhang --- Email: frederick888@tsundere.moe Blog: https://blog.onee3.org
On 27 Dec 2019, at 3:34 pm, J. Scheurich <mufti11@web.de> wrote:
/.ssh/id_rsa.pub
On 2019-12-27 06:44, Frederick Zhang via aur-general wrote:
Put:
Host aur.archlinux.org User aur PreferredAuthentications publickey IdentityFile ~/.ssh/id_rsa
...into your ~/.ssh/config. See `man ssh_config`.
$ cat ~/.ssh/config Host aur.archlinux.org User aur PreferredAuthentications publickey IdentityFile ~/.ssh/id_rsa $ $ git push aur@aur.archlinux.org: Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. Shouldn't i set something from id_rsa.pub on aur.archlinux.org ? so long MUFTI
On 12/26/19 11:34 PM, J. Scheurich wrote:
Hi,
Your remote URL looks wrong. You want to be using the username `aur`, not `mufti`, and the format is not like the one used on the web interface. I.e.
git remote set-url origin aur@aur.archlinux.org:white_dune.git
To change to the correct format so you can pull/push to and from the repo. $ git push aur@aur.archlinux.org: Permission denied (publickey). fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
How do i set the $HOME/.ssh/id_rsa.pub to AUR ?
Are you able to successfully run this command: ssh -T aur@aur.archlinux.org If not, you will need to fix your ssh setup until this works. After that the AUR website will list a section for "Git Clone URL". If you're the maintainer, it will mention an ssh url in addition to the usual "https://... (read-only)". Use that url. -- Eli Schwartz Bug Wrangler and Trusted User
Hi, Are you able to successfully run this command: ssh -Taur@aur.archlinux.org If not, you will need to fix your ssh setup until this works. $ ssh -T aur@aur.archlinux.org The authenticity of host 'aur.archlinux.org (2a01:4f8:160:3033::2)' can't be established. ECDSA key fingerprint is SHA256:L71Q91yHwmHPYYkJMDgj0xmUuw16qFOhJbBr1mzsiOI. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added 'aur.archlinux.org,2a01:4f8:160:3033::2' (ECDSA) to the list of known hosts. aur@aur.archlinux.org: Permission denied (publickey). How to fix the ssh setup ? ssh-keygen do not help 8-( $ cat .ssh/config Host aur.archlinux.org User aur PreferredAuthentications publickey IdentityFile ~/.ssh/id_rsa $ ssh -T aur@aur.archlinux.org aur@aur.archlinux.org: Permission denied (publickey). $ so long MUFTI
Hmmm... May I know whether you've actually uploaded your public key to https://aur.archlinux.org/account/<username>/edit/? And what about the file permissions of your key files? IIRC it should be something stricter than or equal to 600 for the private key. Output from `ssh -Tv aur.archlinux.org` may help us further identify the issue. Btw ~/.ssh/config actually doesn't need the first level of indentation. Sorry that my email was a bit confusing. I remember this file should be indentation- insensitive tho. Best regards, Frederick Zhang --- Email: frederick888@tsundere.moe Blog: https://blog.onee3.org
On 27 Dec 2019, at 5:33 pm, J. Scheurich <mufti11@web.de> wrote:
Hi,
Are you able to successfully run this command:
ssh -Taur@aur.archlinux.org
If not, you will need to fix your ssh setup until this works.
$ ssh -T aur@aur.archlinux.org The authenticity of host 'aur.archlinux.org (2a01:4f8:160:3033::2)' can't be established. ECDSA key fingerprint is SHA256:L71Q91yHwmHPYYkJMDgj0xmUuw16qFOhJbBr1mzsiOI. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added 'aur.archlinux.org,2a01:4f8:160:3033::2' (ECDSA) to the list of known hosts. aur@aur.archlinux.org: Permission denied (publickey).
How to fix the ssh setup ?
ssh-keygen do not help 8-(
$ cat .ssh/config
Host aur.archlinux.org User aur PreferredAuthentications publickey IdentityFile ~/.ssh/id_rsa $ ssh -T aur@aur.archlinux.org aur@aur.archlinux.org: Permission denied (publickey). $
so long MUFTI
Hi, I dont understand the following: # Maintainer: J Scheurich <mufti11@web.de> pkgname=white_dune pkgver=1.654 pkgrel=1 epoch= pkgdesc="white_dune X3D/VRML97 tool" arch=() url="ftp://ftp.ourproject.org/pub/wdune/$pkgname-$pkgver.tar.bz2" ... $ pkgname=white_dune $ pkgver=1.654 $ wget "ftp://ftp.ourproject.org/pub/wdune/$pkgname-$pkgver.tar.bz2" --2019-12-27 09:36:02-- ftp://ftp.ourproject.org/pub/wdune/white_dune-1.654.tar.bz2 => 'white_dune-1.654.tar.bz2' Resolving ftp.ourproject.org (ftp.ourproject.org)... 80.81.122.49 Connecting to ftp.ourproject.org (ftp.ourproject.org)|80.81.122.49|:21... connected. Logging in as anonymous ... Logged in! ==> SYST ... done. ==> PWD ... done. ==> TYPE I ... done. ==> CWD (1) /pub/wdune ... done. ==> SIZE white_dune-1.654.tar.bz2 ... 24429987 ==> PASV ... done. ==> RETR white_dune-1.654.tar.bz2 ... done. Length: 24429987 (23M) (unauthoritative) white_dune-1.654.ta 100%[===================>] 23.30M 1.35MB/s in 15s 2019-12-27 09:36:19 (1.58 MB/s) - 'white_dune-1.654.tar.bz2' saved [24429987] $ rm white_dune-1.654.tar.bz2 $ updpkgsums ==> Retrieving sources... ==> ERROR: white_dune-1.654.tar.bz2 was not found in the build directory and is not a URL. ==> ERROR: Failed to generate new checksum The URL exists, but updpkgsums refuses to read it... so long MUFTI
On 12/27/19 3:46 AM, J. Scheurich wrote:
Hi,
I dont understand the following:
# Maintainer: J Scheurich <mufti11@web.de> pkgname=white_dune pkgver=1.654 pkgrel=1 epoch= pkgdesc="white_dune X3D/VRML97 tool" arch=() url="ftp://ftp.ourproject.org/pub/wdune/$pkgname-$pkgver.tar.bz2" ... $ pkgname=white_dune $ pkgver=1.654 $ wget "ftp://ftp.ourproject.org/pub/wdune/$pkgname-$pkgver.tar.bz2" --2019-12-27 09:36:02-- ftp://ftp.ourproject.org/pub/wdune/white_dune-1.654.tar.bz2 => 'white_dune-1.654.tar.bz2' Resolving ftp.ourproject.org (ftp.ourproject.org)... 80.81.122.49 Connecting to ftp.ourproject.org (ftp.ourproject.org)|80.81.122.49|:21... connected. Logging in as anonymous ... Logged in! ==> SYST ... done. ==> PWD ... done. ==> TYPE I ... done. ==> CWD (1) /pub/wdune ... done. ==> SIZE white_dune-1.654.tar.bz2 ... 24429987 ==> PASV ... done. ==> RETR white_dune-1.654.tar.bz2 ... done. Length: 24429987 (23M) (unauthoritative)
white_dune-1.654.ta 100%[===================>] 23.30M 1.35MB/s in 15s
2019-12-27 09:36:19 (1.58 MB/s) - 'white_dune-1.654.tar.bz2' saved [24429987]
$ rm white_dune-1.654.tar.bz2 $ updpkgsums ==> Retrieving sources... ==> ERROR: white_dune-1.654.tar.bz2 was not found in the build directory and is not a URL. ==> ERROR: Failed to generate new checksum
The URL exists, but updpkgsums refuses to read it...
Because "url" shows the homepage of the software, and has nothing to do with the "source" to be downloaded. I have no idea what you are trying to do here. What modifications have you made to https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=white_dune ? Have you fixed your ssh issue yet? -- Eli Schwartz Bug Wrangler and Trusted User
git makes strange things 8-( $ git add .SRCINFO PKGBUILD $ git commit [master c25bda5] white_dune 1.654 rollback 2 files changed, 6 insertions(+), 4 deletions(-) $ git push To aur.archlinux.org:white_dune.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'aur@aur.archlinux.org:white_dune.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details. [mufti@archlinux archlinux_white_dune]$ git pull There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull <remote> <branch> If you wish to set tracking information for this branch you can do so with: git branch --set-upstream-to=<remote>/<branch> master $ git pull white_dune master ssh: Could not resolve hostname 2a01: Name or service not known fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. $ git remote set-url origin aur@aur.archlinux.org:white_dune.git $ git pull white_dune master ssh: Could not resolve hostname 2a01: Name or service not known fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
I have no idea what you are trying to do here. What modifications have you made to https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=white_dune ?
I change the pkgver to 1.654 and removed the . from the J. Scheurich comment
Have you fixed your ssh issue yet?
I uploaded .ssh/id_rsa.pub to the aur website so long MUFTI
On 12/27/19 9:26 AM, J. Scheurich wrote:
$ git remote set-url origin aur@aur.archlinux.org:white_dune.git $ git pull white_dune master ssh: Could not resolve hostname 2a01: Name or service not known fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
Why did you set the remote url for "origin", then try to pull from "white_dune"? What is the "white_dune" remote? Consider deleting your clone, re-cloning, and redoing your changes. It might help you avoid confusing configurations. -- Eli Schwartz Bug Wrangler and Trusted User
participants (4)
-
David Phillips
-
Eli Schwartz
-
Frederick Zhang
-
J. Scheurich