From nobody Tue Nov 15 00:05:32 2022 X-Original-To: freebsd-ports@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4NB5zs45p8z4hFPM for ; Tue, 15 Nov 2022 00:05:45 +0000 (UTC) (envelope-from jamie@catflap.org) Received: from donotpassgo.dyslexicfish.net (donotpassgo.dyslexicfish.net [IPv6:2001:19f0:300:2185:123::1]) by mx1.freebsd.org (Postfix) with ESMTP id 4NB5zr2mlKz3vRQ for ; Tue, 15 Nov 2022 00:05:44 +0000 (UTC) (envelope-from jamie@catflap.org) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of jamie@catflap.org designates 2001:19f0:300:2185:123::1 as permitted sender) smtp.mailfrom=jamie@catflap.org; dmarc=pass (policy=none) header.from=catflap.org X-Catflap-Envelope-From: X-Catflap-Envelope-To: freebsd-ports@freebsd.org Received: from donotpassgo.dyslexicfish.net (donotpassgo.dyslexicfish.net [104.207.135.49]) by donotpassgo.dyslexicfish.net (8.14.5/8.14.5) with ESMTP id 2AF05WKb063548; Tue, 15 Nov 2022 00:05:32 GMT (envelope-from jamie@donotpassgo.dyslexicfish.net) Received: (from jamie@localhost) by donotpassgo.dyslexicfish.net (8.14.5/8.14.5/Submit) id 2AF05WDv063547; Tue, 15 Nov 2022 00:05:32 GMT (envelope-from jamie) From: Jamie Landeg-Jones Message-Id: <202211150005.2AF05WDv063547@donotpassgo.dyslexicfish.net> Date: Tue, 15 Nov 2022 00:05:32 +0000 Organization: Dyslexic Fish To: freebsd-ports@freebsd.org, freebsd-users@freebsd.org Cc: jailbird@fdf.net Subject: Intentionally bad port behaviour User-Agent: Heirloom mailx 12.4 7/29/08 List-Id: Porting software to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-ports List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.2.7 (donotpassgo.dyslexicfish.net [104.207.135.49]); Tue, 15 Nov 2022 00:05:33 +0000 (GMT) X-Spamd-Result: default: False [-0.99 / 15.00]; DMARC_POLICY_ALLOW(-0.50)[catflap.org,none]; NEURAL_HAM_SHORT(-0.29)[-0.287]; R_SPF_ALLOW(-0.20)[+mx:dyslexicfish.net]; RCVD_NO_TLS_LAST(0.10)[]; MIME_GOOD(-0.10)[text/plain]; MLMMJ_DEST(0.00)[freebsd-ports@freebsd.org]; ARC_NA(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; HAS_ORG_HEADER(0.00)[]; FREEFALL_USER(0.00)[jamie]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; TO_DN_NONE(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; ASN(0.00)[asn:20473, ipnet:2001:19f0::/38, country:US] X-Rspamd-Queue-Id: 4NB5zr2mlKz3vRQ X-Spamd-Bar: / X-ThisMailContainsUnwantedMimeParts: N What's the policy on dodgy acting ports? I had elinks crash (well, the spidermonkey part crashed) elinks then accused me of editting the config file manually (I hadn't) and then went into an intentional endless loop. I think this should be patched out: | src/util/error.c : | | /* User torturation. */ | /* You are worried about what you see here? You don't see anything in | * the first place. Also, be assured that we know what are we doing. */ | /* (We are killing the user, obviously.) */ | | /* TODO: Gettextify? Er, better not. More people (translators) could | * find out what are we doing... ;-) --pasky */ | /* TODO: Be more cruel when in trouble? ;-) --pasky */ | | fputs( "Wheeeeeeeeeee! You played with the config.h by hand, didn't you?\n" | "Of _COURSE_ you did! Is that how a nice .. creature behaves like?\n" | "Of _COURSE_ it isn't! I feel offended and thus I will revenge now!\n" | "You will _suffer_ >:).\n" | "\n" | "CPU burning sequence initiated...\n", f); | | /* TODO: Include cpuburn.c here. --pasky */ | while (1); Cheers