Re: Removing git dependencies on perl5 and python27
On Thu, Jun 14, 2018 at 09:15:49PM -0500, Mahmoud Al-Qudsi wrote: > > (Obviously the option of adding a "git-lite" package à la "vim-lite" also > exists, but I think it's fair to say that would be an ugly and unnecessary > compromise.) That ugly compromise has already been made: $ pkg search git-lite git-lite-2.17.1Distributed source code management tool (lite package) ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
new port devel/capnproto still awaiting approval
Hi, Any chance of getting this approved? https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231500 -felix ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: A port like pi-hole?
On Thu, Sep 05, 2019 at 08:50:10AM -0600, @lbutlr wrote: > I’ve been running pi-hole on my home LAN and would like to run something like > it on my FreeBSD machines as well. There isn’t a pi-hole port, but is there > something like it that lets you easily setup blacklists to block DNS queries > for adware/malware servers? Run unbound and then pull a blacklist. You will need to include the blacklist into your unbound config (this is actually taken from OpenBSD but just change the path): curl -s 'https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts' \ |awk '/^0\.0\.0\.0/ { printf "local-zone: \"\%s\" redirect\nlocal-data: \"\%s A 0.0.0.0\"\n", $2, $2 }' \ >/var/unbound/etc/black.conf \ && rcctl reload unbound \ >/dev/null -felix ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: Completely unscientific poll: cfengine, puppet, other?
On Mon, Feb 29, 2016 at 10:39:56AM +0100, Fernando Herrero Carrón wrote: > El 28 feb. 2016 8:11 p. m., "Chris Inacio" escribió: > > > > Hello all, > > > > I was considering adding some more support into some tooling/ports for > > FreeBSD and I thought it would probably be good to get configuration > > management support some thought. So I can understand under certain Linux > > flavors (e.g. RedHat) that puppet is the de facto choice - since the > > distribution packager has chosen one. > > > > Is there a dominant one for FreeBSD? > > > > Happy if you would just reply with which one, if any, you use. If you > want > > to add more to the conversation, that's fine. I understand the mailing > > list I posted this to and the likely audience - as I said I started think > > about this from adding more support into some ports. > > > > Thanks > > chris inacio > > ___ > > freebsd-ports@freebsd.org mailing list > > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > > To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org" > > Ansible? Not sure if dominant but Ansible is great. Leaves a clean remote machine and is very flexible. I used CFEngine for a year or so but most of the time was spent jumping through hoops just to do (what we thought were) simple tasks. Perhaps we were just doing it the "wrong way" but I would not say it was intuitive. It also proved to be buggy on enough occasions that we lost confidence. We also used Puppet for a while and while Ruby is nice to work with it gave us headaches with memory usage. That was a while back and things may have changed. For now I use Ansible where I can. -felix signature.asc Description: PGP signature
QA needed for net/libnss-pgsql
Hi, How can I get this new port moving again? https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=178333 Thanks, -felix -- email: fe...@userspace.com.au web: https://userspace.com.au/ phone: +61 3 9021 8964 gpg: 971C F7B2 913A D163 70AC 02C3 B6F2 29D7 7E20 D10B signature.asc Description: PGP signature
garbd from databases/galera
Hi, The garbd component of databases/galera is currently disabled in the port but I would like to get this working. When enabled it has issues with boost references: /usr/ports/databases/galera/work/galera-25.3.5-src/garb/garb_config.cpp:32: undefined reference to `boost::program_options::options_description::options_description(std::string const&, unsigned int, unsigned int)' /usr/ports/databases/galera/work/galera-25.3.5-src/garb/garb_config.cpp:39: undefined reference to `boost::program_options::options_description::options_description(std::string const&, unsigned int, unsigned int)' garb/garb_config.os: In function `basic_command_line_parser': /usr/local/include/boost/program_options/detail/parsers.hpp:44: undefined reference to `boost::program_options::detail::cmdline::cmdline(std::vector > const&)' garb/garb_config.os: In function `garb::Config::Config(int, char**)': ... etc ... I am not sure if this is due to the g++ compiler version that was used to build boost or something else (I don't work with C++ much, let alone boost). Has anyone been able to get garbd to build? -- email: fe...@userspace.com.au web: userspace.com.au phone: +61 3 9021 8964 gpg: 971C F7B2 913A D163 70AC 02C3 B6F2 29D7 7E20 D10B ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: Galera Cluster Packages and Support for FreeBSD are Now Available From Codership
On Wed, Feb 01, 2017 at 09:07:34AM +0800, Ganbold Tsagaankhuu wrote: > > As Steven asked earlier, do you have support or binary package available > for FreeBSD 11.0 or later ? I am currently implementing a proof-of-concept running two galera nodes and one garb node (no db, just for quorum) on FreeBSD 11. I had to build the packages from http://github.com/codership/freebsd-ports but even then I had to make a few changes which, if I have time, I will submit a pull request. Just some of the findings so far: - It all seems to build okay with clang. - The garbd arbitrator was not in the package. - A number of required dependencies were not listed in the packages. - You will probably need to write your own rc scripts. - There doesn't seem to be any man pages. - I did not use the mysql56-server package which is in the repo but instead used the FreeBSD mariadb101-server package which already has the patches needed. But so far I seem to be able to create a small cluster and add and remove nodes without too much trouble. See what happens. -felix ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: Welcome flavors! portmaster now dead? synth?
On Fri, Dec 01, 2017 at 09:59:33AM -0800, Kevin Oberman wrote: > First, welcome flavors. It has been badly needed for a while and is going > to clean up a couple of messes that have been plaguing the port system for > a long time. > > Second, whither port msanagement tools? At least portmaster now appears > dead. Any reason to expect it to be workable again? I have not tried synth > with flavors, yet,.but I see noting committed to deal with them, so it > looks like port management has devolved to raw "make" operations or > poudriere. Am I missing some other option? Give jrmarino some time, he is obviously working on it: https://github.com/jrmarino/synth/commit/35a664ac24b5cf6aedb2d0ae30594e5dc95c93d5 -felix ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Committer needed for new port (net/nuster)
Hi all, There is a new port (net/nuster) awaiting approval at https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225721 If there are no suggestions could someone commit it please. -felix ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: Committer needed for new port (net/nuster)
On Thu, Mar 22, 2018 at 07:06:55PM +0100, Matthias Andree wrote: > Am 21.03.2018 um 00:39 schrieb Felix Hanley: > > There is a new port (net/nuster) awaiting approval at > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225721 If there are no > > suggestions could someone commit it please. > > Committed (r465301). Thank you for the commit and the clean up. -felix ___ freebsd-ports@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"