opensuse13.1 and certbot Where i can found certbot by opensuse13.1 ?

Hi All.

Where i can found certbot by opensuse13.1( x86) ?

Serg

nowhere as I’m afraid the 13.1 repo’s have been deleted and cerbot was never packaged
but you might add the gwdg.de copies of the 13.1 repo’s download the python dev packages and build it yourself
first off remove all your repo’s or replace them with the gwdg copies

zypper ar -f ftp://ftp.gwdg.de/pub/opensuse/discontinued/distribution/13.1/repo/oss/suse/ oss  
zypper ar -f ftp://ftp.gwdg.de/pub/opensuse/discontinued/distribution/13.1/repo/non-oss/suse/ non-oss 
zypper ar -f ftp://ftp.gwdg.de/pub/opensuse/discontinued/update/13.1/ oss-update
zypper ar -f ftp://ftp.gwdg.de/pub/opensuse/discontinued/update/13.1-non-oss/ non-oss-update

install rpmbuild, python-devel, gcc etc and try building from a source rpm
download the source
https://download.opensuse.org/repositories/openSUSE:/Factory/standard/src/certbot-0.19.0-1.1.src.rpm
install the src.rpm as an ordinary user the files will go in your home afaik you don’t have to download it you can point rpm to the remote url as the example bellow

rpm -i https://download.opensuse.org/repositories/openSUSE:/Factory/standard/src/certbot-0.19.0-1.1.src.rpm
cd ~/rpmbuild/SPECSS
rpmbuild -ba certbot

if all goes fine the 13.1 cerbot rpm should be in $HOME/rpmbuild/RPMS/noarch or i586 folder
if errors occur read them they’re most likely a missing package install it try again you can always read the cerbot documentation

the best answer is upgrade to TW it has a 32 bit distribution and is supported

Thank you. will be read.

What is “TW” ?

Tumbleweed.

One of the two tastes that openSUSE comes in.

What is wrong:

ipsec01:~ # rpm -i https://download.opensuse.org/repositories/openSUSE:/Factory/standard/src/certbot-0.19.0-1.1.src.rpm
curl: (22) The requested URL returned error: 404 Not Found
error: skipping https://download.opensuse.org/repositories/openSUSE:/Factory/standard/src/certbot-0.19.0-1.1.src.rpm - transfer failed

  1. Try with http instead of https
  2. Another option is to get certbot directly from github:
$ git clone https://github.com/certbot/certbot
$ cd certbot
$ ./certbot-auto --help

Thank you !
Problem resolved.
Everything works as it should

Serg