From tbier at posteo.de Mon Apr 1 05:05:13 2019 From: tbier at posteo.de (Tim) Date: Mon, 1 Apr 2019 07:05:13 +0200 Subject: [crux-devel] Application for contrib In-Reply-To: <725be6cee8c70bacfab7f7ab3e24da67@serverop.de> References: <20190331195313.14effa2d@thor.lan> <725be6cee8c70bacfab7f7ab3e24da67@serverop.de> Message-ID: <20190401070513.53051b62@thor.lan> Hi Thomas, On Sun, 31 Mar 2019 23:16:10 +0200 Thomas Penteker wrote: > What ports are you planning to take on or bring in? I think I am flexible about that. On a quick glance over my REPO, I would consider moving flatpak, keepassxc, lightlocker, lightdm, nnn, nextcloud*, qownnotes, r and the yubico packages. If there is anything else needed, let me know. Best regards, -- Tim Biermann -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 228 bytes Desc: OpenPGP digital signature URL: From fredrik at rinnestam.se Mon Apr 1 08:33:57 2019 From: fredrik at rinnestam.se (Fredrik) Date: Mon, 1 Apr 2019 10:33:57 +0200 Subject: [crux-devel] Application for contrib In-Reply-To: <20190331195313.14effa2d@thor.lan> References: <20190331195313.14effa2d@thor.lan> Message-ID: <25ee384c-ef69-2627-0350-9f4a2ab10bf7@rinnestam.se> On 2019-03-31 19:53, Tim wrote: > Hi everybody, > > I want to apply to help out with contrib. > > I use CRUX for quiet some time now (10+ years at least), I maintain my > own repository [1] publicly since 2018/06/19 and I recently added > crux-libreoffice [2], behind closed doors I'm preparing a repository > for steam-native ports. > I have been hosting some ports before, but this has been around 2010, > maybe somebody remembers me from then, I've been hanging out on IRC > back then too, but I don't remeber the name I used and since that > server I used to host in a shoe box died I lost most of my CRUX > related stuff at the time. O:) Let's say the situation looks somewhat > better today. > > If there is anything you want to know in particular, let me know. > > TimB_ on irc. > > Have a great sunday, best regards Hi! Seems like you forgot to include URLs to your repo /f -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: OpenPGP digital signature URL: From tbier at posteo.de Mon Apr 1 09:27:48 2019 From: tbier at posteo.de (Tim) Date: Mon, 1 Apr 2019 11:27:48 +0200 Subject: [crux-devel] Application for contrib In-Reply-To: <25ee384c-ef69-2627-0350-9f4a2ab10bf7@rinnestam.se> References: <20190331195313.14effa2d@thor.lan> <25ee384c-ef69-2627-0350-9f4a2ab10bf7@rinnestam.se> Message-ID: <20190401112748.04263541@thor.lan> On Mon, 1 Apr 2019 10:33:57 +0200 Fredrik wrote: > On 2019-03-31 19:53, Tim wrote: > > Hi everybody, > > > > I want to apply to help out with contrib. > > > > I use CRUX for quiet some time now (10+ years at least), I maintain > > my own repository [1] publicly since 2018/06/19 and I recently added > > crux-libreoffice [2], behind closed doors I'm preparing a repository > > for steam-native ports. > > I have been hosting some ports before, but this has been around > > 2010, maybe somebody remembers me from then, I've been hanging out > > on IRC back then too, but I don't remeber the name I used and since > > that server I used to host in a shoe box died I lost most of my CRUX > > related stuff at the time. O:) Let's say the situation looks > > somewhat better today. > > > > If there is anything you want to know in particular, let me know. > > > > TimB_ on irc. > > > > Have a great sunday, best regards > > Hi! Seems like you forgot to include URLs to your repo > > /f > Hi Fredrik, Indeed, silly me.. steam is still private, I want to release it as soon as it's polished enough. So here we go: [1]: https://github.com/TimB87/crux-ports [2]: https://github.com/TimB87/crux-libreoffice Best regards -- Tim Biermann -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 228 bytes Desc: OpenPGP digital signature URL: From alan+crux at mizrahi.com.ve Thu Apr 4 13:51:00 2019 From: alan+crux at mizrahi.com.ve (Alan Mizrahi) Date: Thu, 4 Apr 2019 22:51:00 +0900 Subject: [crux-devel] Patch to allow pkgmk to rename downloaded tarballs Message-ID: <4090c040-98d4-5456-b2e5-4b4ee8c00d69@mizrahi.com.ve> Hi, When building ports, sometimes source tarballs have names that could collide with other ports. I don't remember it ever happening to me, but it was raised in Flyspray [1], and I guess it could happen. To show it with a sample Pkgfile: name=dotconf version=1.3 release=1 source=(https://github.com/williamh/$name/archive/v$version.zip) So I made a patch that allows renaming the downloaded source files by using an associative array, like this: name=dotconf version=1.3 release=1 declare -A \ source=([$name-$version.zip]=https://github.com/williamh/$name/archive/v$version.zip) While being compatible with current Pkgfiles. The patch is attached to Flyspray, along with alternative solutions proposed by other people. I also have a patch that allows to continue building a port after it fails, instead of starting from the beginning. If this sounds interesting (and worthy of merging), please let me know. Best regards, Alan [1] https://crux.nu/bugs/index.php?do=details&task_id=923 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 488 bytes Desc: OpenPGP digital signature URL: From fredrik at rinnestam.se Thu Apr 4 14:26:32 2019 From: fredrik at rinnestam.se (Fredrik) Date: Thu, 4 Apr 2019 16:26:32 +0200 Subject: [crux-devel] Patch to allow pkgmk to rename downloaded tarballs In-Reply-To: <4090c040-98d4-5456-b2e5-4b4ee8c00d69@mizrahi.com.ve> References: <4090c040-98d4-5456-b2e5-4b4ee8c00d69@mizrahi.com.ve> Message-ID: On 2019-04-04 15:51, Alan Mizrahi wrote: > Hi, > > When building ports, sometimes source tarballs have names that could > collide with other ports. > > I don't remember it ever happening to me, but it was raised in Flyspray > [1], and I guess it could happen. > > To show it with a sample Pkgfile: > > name=dotconf > version=1.3 > release=1 > source=(https://github.com/williamh/$name/archive/v$version.zip) > > So I made a patch that allows renaming the downloaded source > files by using an associative array, like this: > > name=dotconf > version=1.3 > release=1 > declare -A \ > source=([$name-$version.zip]=https://github.com/williamh/$name/archive/v$version.zip) > > While being compatible with current Pkgfiles. > > The patch is attached to Flyspray, along with alternative solutions > proposed by other people. > > I also have a patch that allows to continue building a port after it > fails, instead of starting from the beginning. If this sounds > interesting (and worthy of merging), please let me know. > > Best regards, > > Alan > > [1] https://crux.nu/bugs/index.php?do=details&task_id=923 There are other ways of dealing with github tarballs, however: https://crux.nu/Wiki/DealingWithGithub /Fredrik From jaeger at crux.ninja Thu Apr 4 22:50:38 2019 From: jaeger at crux.ninja (Matt Housh) Date: Thu, 4 Apr 2019 17:50:38 -0500 Subject: [crux-devel] Patch to allow pkgmk to rename downloaded tarballs In-Reply-To: References: <4090c040-98d4-5456-b2e5-4b4ee8c00d69@mizrahi.com.ve> Message-ID: While github has a workaround available for this, it could be very useful if we run into this problem elsewhere. I don't recall seeing it outside of github *yet* but it's a nice feature all the same. Matt From jue at jue.li Sat Apr 20 13:42:40 2019 From: jue at jue.li (Juergen Daubert) Date: Sat, 20 Apr 2019 15:42:40 +0200 Subject: [crux-devel] Application for contrib In-Reply-To: <20190331195313.14effa2d@thor.lan> References: <20190331195313.14effa2d@thor.lan> Message-ID: <20190420134240.GA1471@jue.netz> On Sun, Mar 31, 2019 at 07:53:13PM +0200, Tim wrote: > Hi everybody, Hello Tim, > > I want to apply to help out with contrib. > > I use CRUX for quiet some time now (10+ years at least), I maintain my > own repository [1] publicly since 2018/06/19 and I recently added > crux-libreoffice [2], behind closed doors I'm preparing a repository > for steam-native ports. > I have been hosting some ports before, but this has been around 2010, > maybe somebody remembers me from then, I've been hanging out on IRC > back then too, but I don't remeber the name I used and since that > server I used to host in a shoe box died I lost most of my CRUX > related stuff at the time. O:) Let's say the situation looks somewhat > better today. > > If there is anything you want to know in particular, let me know. sorry for the late response, even though I second your application. thanks and best regards Juergen From fredrik at rinnestam.se Mon Apr 29 22:09:29 2019 From: fredrik at rinnestam.se (Fredrik) Date: Tue, 30 Apr 2019 00:09:29 +0200 Subject: [crux-devel] Application for contrib In-Reply-To: <20190420134240.GA1471@jue.netz> References: <20190331195313.14effa2d@thor.lan> <20190420134240.GA1471@jue.netz> Message-ID: <4cc8f4c0-db53-2b85-bf0f-fc595f5d58fe@rinnestam.se> On 4/20/19 3:42 PM, Juergen Daubert wrote: >> If there is anything you want to know in particular, let me know. > > sorry for the late response, even though I second your application. > > > thanks and best regards > Juergen > Sorry for even the later reply. I also second it. /f -------------- next part -------------- A non-text attachment was scrubbed... Name: 0xE574862E61F68E07.asc Type: application/pgp-keys Size: 6084 bytes Desc: not available URL: