From willysr at sbopkg.org Sun Oct 11 01:14:50 2015 From: willysr at sbopkg.org (Willy Sudiarto Raharjo) Date: Sun, 11 Oct 2015 08:14:50 +0700 Subject: [sbopkg-users] https and better protection for website Message-ID: <5619B80A.5030800@sbopkg.org> Hi, Just to inform you that sbopkg is now served under HTTPS and have better protection behind cloudflare, thanks to Ryan McQuen who have helped to set up the DNS (as he is the owner of sbopkg.org domain, taking over from Chess). I have modified the website code so that it will points to HTTPS and make the redirection automatically so you can still point to the old URL and it will be redirected to https://sbopkg.org. -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: OpenPGP digital signature URL: From Bradley at NorthTech.US Sun Oct 11 17:32:59 2015 From: Bradley at NorthTech.US (Bradley D. Thornton) Date: Sun, 11 Oct 2015 10:32:59 -0700 Subject: [sbopkg-users] https and better protection for website In-Reply-To: <5619B80A.5030800@sbopkg.org> References: <5619B80A.5030800@sbopkg.org> Message-ID: <561A9D4B.7000704@NorthTech.US> Well congrats and thanks to Ryan, I can't imagine a more suitable custodian and shepherd for the project. On 10/10/2015 6:14 PM, Willy Sudiarto Raharjo wrote: > Hi, > > Just to inform you that sbopkg is now served under HTTPS and have better > protection behind cloudflare, thanks to Ryan McQuen who have helped to > set up the DNS (as he is the owner of sbopkg.org domain, taking over > from Chess). > > I have modified the website code so that it will points to HTTPS and > make the redirection automatically so you can still point to the old URL > and it will be redirected to https://sbopkg.org. > > > > > _______________________________________________ > sbopkg-users mailing list > sbopkg-users at sbopkg.org > http://sbopkg.org/mailman/listinfo/sbopkg-users --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From willysr at sbopkg.org Tue Oct 27 03:14:40 2015 From: willysr at sbopkg.org (Willy Sudiarto Raharjo) Date: Tue, 27 Oct 2015 10:14:40 +0700 Subject: [sbopkg-users] Announcing: sbopkg-0.37.1 Message-ID: <562EEC20.1050608@sbopkg.org> After almost two years, we finally have a new release sbopkg-0.37.1 (2015-10-27 03:02:59 UTC) FEATURES * Add --visit-items option in certain part of dialog to help disabled people * Added SBo master branch repo (git) MODIFICATIONS * Move PIDFILE to global variable * Update copyright * Transitions from code.google.com to github.com * Remove SVN-stuff * Fix sqg branch to 14.1 by default. Thanks to our contributors: Ryan McQuen Didier Spaier Philippe Delavalade As this is a transitions release, please let me know if there are some text that are still pointing to the old code.google.com please submit new ideas/bugs report to github https://github.com/sbopkg/sbopkg/issues I'm also planning to move sqg from /usr/doc/sbopkg-xxx/contrib into /usr/sbin for the next major release as i found sqg is quite stable. Any comment on sqg? Thanks -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: OpenPGP digital signature URL: From yalhcru at gmail.com Thu Oct 29 02:31:43 2015 From: yalhcru at gmail.com (B Watson) Date: Wed, 28 Oct 2015 22:31:43 -0400 Subject: [sbopkg-users] sbosrcarch proof of concept patch Message-ID: Probably everyone here saw the announcement on the slackbuilds-users mailing list about the SBo source archive. If not: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2015-October/015081.html I wrote a couple of client scripts for the archive, that can parse a .info file and download the archived sources... ...but to make the archive *really* handy to use, it should be supported by sbopkg. My original plan was to just look at the sbopkg code to try to gauge how difficult this would be to implement... but the code is so readable and well-documented that it wasn't hard to just go ahead and add simple archive support to it. Attached is a proof of concept diff (against the sbopkg-0.37.1 released source). As-is, it works fine, but no doubt the sbopkg maintainers will see ways it could be improved [*]. Usage: any time a file fails to download, or its md5sum fails, the prompt that asks whether to use it anyway, retry, or cancel now has an A (attempt to download from archive) option. For testing, desktop/musca currently has a broken download link, and its source file is in the archive already. The way it works: constructs a URL such as: http://slackware.org.uk/sbosrcarch/by-md5/e/0/e067a8e39b1a97d62fc8e43800edee70/musca-0.9.24.tgz (that's a live link, BTW, but stoopid gmail might "helpfully" break the line into two) ...and replaces the current DOWNLOAD value with that, then falls through to the rest of the download loop. [*] Actually I can think of a way to improve it: the patch only supports one sbosrcarch site. I added a SBOSRCARCH variable to sbopkg.conf, which takes just a single URL for a value. Right now there's only one complete SBo archive site, so that's OK... but probably it will get mirrored in the future, so it might be nice to have it try a list of them, in order. I didn't do this in this PoC because it would complicate the code and be a likely source of bugs. -------------- next part -------------- A non-text attachment was scrubbed... Name: sbopkg-0.37.1-sbosrcarch-poc.diff.gz Type: application/x-gzip Size: 1248 bytes Desc: not available URL: From willysr at sbopkg.org Thu Oct 29 02:57:13 2015 From: willysr at sbopkg.org (Willy Sudiarto Raharjo) Date: Thu, 29 Oct 2015 09:57:13 +0700 Subject: [sbopkg-users] sbosrcarch proof of concept patch In-Reply-To: References: Message-ID: <56318B09.5030606@sbopkg.org> On 10/29/2015 09:31 AM, B Watson wrote: > Probably everyone here saw the announcement on the slackbuilds-users > mailing list about the SBo source archive. If not: > > http://lists.slackbuilds.org/pipermail/slackbuilds-users/2015-October/015081.html > > I wrote a couple of client scripts for the archive, that can parse a > .info file and download the archived sources... > > ...but to make the archive *really* handy to use, it should be supported > by sbopkg. My original plan was to just look at the sbopkg code to try > to gauge how difficult this would be to implement... but the code is so > readable and well-documented that it wasn't hard to just go ahead and > add simple archive support to it. > > Attached is a proof of concept diff (against the sbopkg-0.37.1 released > source). As-is, it works fine, but no doubt the sbopkg maintainers will > see ways it could be improved [*]. > > Usage: any time a file fails to download, or its md5sum fails, the prompt > that asks whether to use it anyway, retry, or cancel now has an A (attempt > to download from archive) option. For testing, desktop/musca currently > has a broken download link, and its source file is in the archive already. > > The way it works: constructs a URL such as: > > http://slackware.org.uk/sbosrcarch/by-md5/e/0/e067a8e39b1a97d62fc8e43800edee70/musca-0.9.24.tgz > > (that's a live link, BTW, but stoopid gmail might "helpfully" break > the line into two) > > ...and replaces the current DOWNLOAD value with that, then falls through > to the rest of the download loop. > > [*] Actually I can think of a way to improve it: the patch only supports one > sbosrcarch site. I added a SBOSRCARCH variable to sbopkg.conf, which takes > just a single URL for a value. Right now there's only one complete SBo > archive site, so that's OK... but probably it will get mirrored in the > future, so it might be nice to have it try a list of them, in order. I > didn't do this in this PoC because it would complicate the code and be > a likely source of bugs. Hi Actually Ryan talked to me this morning (my local time) about adding support for external site such as sbosrcarch which was introduced in slackbuilds-users list few days ago and now you posted a patch to really implement this my concern is whether this project (sbosrcarch) will be supported for long term? So far, only one contributor works on that project (B. Watson) I will try to review the patch as soon as possible, but my work load is currently rising at this moment -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: OpenPGP digital signature URL: From yalhcru at gmail.com Thu Oct 29 03:44:06 2015 From: yalhcru at gmail.com (B Watson) Date: Wed, 28 Oct 2015 23:44:06 -0400 Subject: [sbopkg-users] sbosrcarch proof of concept patch In-Reply-To: <56318B09.5030606@sbopkg.org> References: <56318B09.5030606@sbopkg.org> Message-ID: On 10/28/15, Willy Sudiarto Raharjo wrote: > my concern is whether this project (sbosrcarch) will be supported for > long term? So far, only one contributor works on that project (B. Watson) I'm the only contributor (so far) to sboscrarch, the perl script that creates and updates the archive. But, slackware.org.uk isn't my site, it's Tadgy's, and he's the one hosting the archive and giving me feedback on the script. Also there's at least one other person on IRC who's expressed an interest in running a mirror of the archive... and Tadgy's got his archive available by rsync, so any mirror site could carry it with no issues. > I will try to review the patch as soon as possible, but my work load is > currently rising at this moment Totally understand. Thanks. From willysr at sbopkg.org Thu Oct 29 05:48:19 2015 From: willysr at sbopkg.org (Willy Sudiarto Raharjo) Date: Thu, 29 Oct 2015 12:48:19 +0700 Subject: [sbopkg-users] sbosrcarch proof of concept patch In-Reply-To: References: <56318B09.5030606@sbopkg.org> Message-ID: <5631B323.9060902@sbopkg.org> > I'm the only contributor (so far) to sboscrarch, the perl script that > creates and updates the archive. But, slackware.org.uk isn't my site, > it's Tadgy's, and he's the one hosting the archive and giving me feedback > on the script. Yes, we need lots of people willing to contribute to the repository to make it working for long term >> I will try to review the patch as soon as possible, but my work load is >> currently rising at this moment > > Totally understand. Thanks. If all goes well, it should be part of the next major release 0.38.0 which should be released for next Slackware 14.2 -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: OpenPGP digital signature URL: From willysr at sbopkg.org Fri Oct 30 00:39:00 2015 From: willysr at sbopkg.org (Willy Sudiarto Raharjo) Date: Fri, 30 Oct 2015 07:39:00 +0700 Subject: [sbopkg-users] sbosrcarch proof of concept patch In-Reply-To: References: Message-ID: <5632BC24.4050708@sbopkg.org> > Probably everyone here saw the announcement on the slackbuilds-users > mailing list about the SBo source archive. If not: > > http://lists.slackbuilds.org/pipermail/slackbuilds-users/2015-October/015081.html > > I wrote a couple of client scripts for the archive, that can parse a > .info file and download the archived sources... > > ...but to make the archive *really* handy to use, it should be supported > by sbopkg. My original plan was to just look at the sbopkg code to try > to gauge how difficult this would be to implement... but the code is so > readable and well-documented that it wasn't hard to just go ahead and > add simple archive support to it. > > Attached is a proof of concept diff (against the sbopkg-0.37.1 released > source). As-is, it works fine, but no doubt the sbopkg maintainers will > see ways it could be improved [*]. > > Usage: any time a file fails to download, or its md5sum fails, the prompt > that asks whether to use it anyway, retry, or cancel now has an A (attempt > to download from archive) option. For testing, desktop/musca currently > has a broken download link, and its source file is in the archive already. > > The way it works: constructs a URL such as: > > http://slackware.org.uk/sbosrcarch/by-md5/e/0/e067a8e39b1a97d62fc8e43800edee70/musca-0.9.24.tgz > > (that's a live link, BTW, but stoopid gmail might "helpfully" break > the line into two) > > ...and replaces the current DOWNLOAD value with that, then falls through > to the rest of the download loop. > > [*] Actually I can think of a way to improve it: the patch only supports one > sbosrcarch site. I added a SBOSRCARCH variable to sbopkg.conf, which takes > just a single URL for a value. Right now there's only one complete SBo > archive site, so that's OK... but probably it will get mirrored in the > future, so it might be nice to have it try a list of them, in order. I > didn't do this in this PoC because it would complicate the code and be > a likely source of bugs. Hi i have pushed this changes to a separate branch in github: sbosrcarch please help to test this new features copy src/usr/sbin/sbopkg to /usr/sbin/sbopkg copy src/etc/sbopkg/sbopkg.conf to /etc/sbopkg/sbopkg.conf if all goes well, it should be coming to next major release 0.38.0 -- Willy Sudiarto Raharjo -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 181 bytes Desc: OpenPGP digital signature URL: