Re: Why portmaster uses g++ not g++6 nor clang++?

2018-05-18 Thread Rozhuk Ivan
On Fri, 18 May 2018 20:30:38 +0200
Stefan Esser  wrote:

> Sorry, this was my fault and I hope it is fixed with the follow-up
> commit to portmaster version 3.19-10.
> 

Sorry for offtopic, but if portmaster install some build dep or run dep
if does not mark it as autoinstalled, and:
pkg query -e '%a = 0' %o
show autotools, help2man and other build only crap as user install it,
pkg autoremove
does not remove this.

Also --delete-build-only broken.

portmaster -BgvDa -y --delete-build-only --local-packagedir=/usr/ports/packages 
--packages-local
if found some package - install it, and after install create package and 
overwrite original.
pkg create -n will prevent this, or additional checks, or just keep remember 
that pkg allready
exist because port just installed from it.
___
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: Why portmaster uses g++ not g++6 nor clang++?

2018-05-18 Thread Rozhuk Ivan
On Fri, 18 May 2018 22:46:15 +0200
Stefan Esser  wrote:

> I'm working on a completely new re-implementation of portmaster and
> the new version will get these points right. Fixing the current port
> version is too hard and wasted effort, since only the features and
> command line options are carried over, but none of the code of the
> current version.

Thanks!
I see code, take parts frome there for my work purposes and old portmaster
have bad design. 


As one more future request.
Current pkg create use only one thread to compress.

I do small set of benchmarks on Ryzen 2700x:

root@rimwks# /usr/bin/time -h pkg create --format tar -o /tmp/ llvm60
7.01s real  6.11s user  0.72s sys
796,5 MB

root@rimwks# /usr/bin/time -h pkg create --format tbz -o /tmp/ llvm60
1m3.56s real1m1.48s user0.38s sys
209,9 MB

root@rimwks# /usr/bin/time -h pkg create --format tgz -o /tmp/ llvm60
36.54s real 35.10s user 0.48s sys
244,8 MB

root@rimwks# /usr/bin/time -h pkg create --format txz -o /tmp/ llvm60
5m42.69s real   5m33.15s user   0.53s sys
154,7 MB

root@rimwks# /usr/bin/time -h pbzip2 -k -p16 /tmp/llvm60-6.0.0_3.tar
7.47s real  1m40.36s user   5.34s sys
210,7 MB

root@rimwks# /usr/bin/time -h tar --use-compress-program=pigz -cf 
/tmp/llvm60-6.0.0_3.tar.gz /tmp/llvm60-6.0.0_3.tar
2.85s real  40.44s user 0.75s sys
244,6 MB

root@rimwks# /usr/bin/time -h xz -T 0 --compress /tmp/llvm60-6.0.0_3.tar
49.96s real 9m30.88s user   33.84s sys
156,9 MB


5m42.69s - for compress, compile time ~ 15 minutes. Terrable!!!
49.96s - is mutch better.

Can you try to implement option to chose at least tar/txz, and probably
for txz use "xz -T 0 --compress" ?

___
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"


gcc and -mretpoline

2018-07-28 Thread Rozhuk Ivan
Hi!

Can some one add:
CFLAGS:=${CFLAGS:N-mretpoline}
CXXFLAGS:=  ${CXXFLAGS:N-mretpoline}

to all ports that uses GCC to build or some where in ports .mk files?

More details: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=228205
this fixed, but many other ports does not.

___
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: gcc and -mretpoline

2018-07-30 Thread Rozhuk Ivan
On Sun, 29 Jul 2018 05:44:30 +0300
Rozhuk Ivan  wrote:


> Can some one add:
> CFLAGS:=  ${CFLAGS:N-mretpoline}
> CXXFLAGS:=${CXXFLAGS:N-mretpoline}
> 

Done, need review:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230200

___
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: databases/mantis - require_once(/usr/local/www/mantis/vendor/autoload.php): failed to open stream

2018-08-19 Thread Rozhuk Ivan
On Sun, 19 Aug 2018 12:38:03 -0400
Dan Langille  wrote:

> There is no vendor directory in the pkg-plist for this port.
> 
> What are other mantis users doing?
 
IMHO makefile must be switch back to use vendor site instead github: vendor 
package contain things that not included in github.

___
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"


emulators/i386-wine-devel

2018-09-01 Thread Rozhuk Ivan
Hi!

What happen with emulators/i386-wine-devel ?

I use it on FreeBSD 11.2 x64 to run old win32 apps.

___
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"


timeout, commit it

2018-09-01 Thread Rozhuk Ivan


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230199
___
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: emulators/i386-wine-devel

2018-09-16 Thread Rozhuk Ivan
On Sat, 15 Sep 2018 10:06:01 +0200
David Naylor  wrote:

> Hi
> 
> > What happen with emulators/i386-wine-devel ?  
> 
> Honestly, I've lost interest in compiling the port.  I'm working on a
> means to avoid manual compilation [1][2].  I've attached the scripts
> I use to build and update the ports - if anyone is interested.  
> 
> > I use it on FreeBSD 11.2 x64 to run old win32 apps.  
> 
> The above mentioned work will also make running win64 apps
> concurrently with win32 apps.  
> 
> Regards
> 
> [1] https://reviews.freebsd.org/D14721
> [2] https://reviews.freebsd.org/D16830


Thanks!
I already subscribe to this and post few comments.
I have no choice - I need wine to few win programs.

___
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: Request for commit approval (multimedia/webcamd)

2018-12-13 Thread Rozhuk Ivan
On Thu, 13 Dec 2018 15:33:06 +0100
Hans Petter Selasky  wrote:

> Add devd rule for a Logitech gamepad.
> 
> Submitted by: Rozhuk Ivan 
> Approved by:
> 
> --HPS

Mine last version:

# Gamepad Logitech
notify 100 {
match "system"  "USB";
match "subsystem"   "INTERFACE";
match "type""ATTACH";
match "vendor"  "0x046d";
match "product" "0xc216|0xc219";
action "/usr/local/etc/rc.d/webcamd start $cdev $interface";
};
___
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: Request for commit approval (multimedia/webcamd)

2018-12-13 Thread Rozhuk Ivan
On Thu, 13 Dec 2018 22:32:57 +0100
Hans Petter Selasky  wrote:

> On 12/13/18 10:31 PM, Rozhuk Ivan wrote:
> > On Thu, 13 Dec 2018 15:33:06 +0100
> > Hans Petter Selasky  wrote:
> >   
> >> Add devd rule for a Logitech gamepad.
> >>
> >> Submitted by:  Rozhuk Ivan 
> >> Approved by:
> >>
> >> --HPS  
> > 
> > Mine last version:
> > 
> > # Gamepad Logitech
> > notify 100 {
> > match "system"  "USB";
> > match "subsystem"   "INTERFACE";
> > match "type""ATTACH";
> > match "vendor"  "0x046d";
> > match "product" "0xc216|0xc219";
> > action "/usr/local/etc/rc.d/webcamd start $cdev $interface";
> > };  
> 
> Hi,
> 
> Can you submit this patch? Or do you want me to?
> 

You, please.

PS: I start with new webcamd, will email later.
___
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: pcmanfm segfaults on start

2019-01-11 Thread Rozhuk Ivan
On Thu, 10 Jan 2019 05:38:20 +0100
Walter Schwarzenfeld  wrote:

> pcmanfm-gtk and pcmanfm-gtk3 segfaults on start (11.2-amd64) without 
> error message.
> 

On 12.0 - ok.
___
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"


/etc/make.conf included twice by FreeBSD make

2019-03-15 Thread Rozhuk Ivan
Hello!

I spent some time while debugging math/mprime build, then build:
...
cc -O2 -pipe -O2 -DSTRIP_FBSDID -pipe -D_FORTIFY_SOURCE=2 -mretpoline  
-fstack-protector-all -fno-strict-aliasing  -O2 -DSTRIP_FBSDID -pipe 
-D_FORTIFY_SOURCE=2 -mretpoline -I.. -I../sqlite-amalgamation-318 -DX86_64 
-c gwnum.c
...

where:
-O2 -pipe - from /usr/share/mk/sys.mk
-O2 -DSTRIP_FBSDID -pipe -D_FORTIFY_SOURCE=2 -mretpoline - mine /etc/make.conf
-fstack-protector-all -fno-strict-aliasing - from /usr/ports/Mk/bsd.port.mk, 
/usr/ports/Mk/bsd.ssp.mk
-I.. -I../sqlite-amalgamation-318 -DX86_64 -c gwnum.c - port makefile

this options added twice:
-O2 -DSTRIP_FBSDID -pipe -D_FORTIFY_SOURCE=2 -mretpoline

first time then you call make to on Makefile in ports tree,
second then ports trying to build port.
If use gmake to build port then this not happen.

This can be problem, because ports build system does not control
CFLAGS and other staff that in /etc/make.conf.
For example if you try build mprime using gcc - it fail, because
gcc does not support -mretpoline.
/usr/ports/Mk/bsd.gcc.mk - handle this and remove first -mretpoline,
but second -mretpoline added after run MAKE_CMD.

To prevent second include /etc/make.conf this must be done:
__MAKE_CONF=/dev/null
It can be added to /etc/make.conf, /usr/ports/Mk/bsd.port.mk or
port Makefile.

Some ports already done this.
I add to /etc/make.conf and buld dozen ports without isses.


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236565

___
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: Mk/bsd.gcc.mk errors

2019-03-15 Thread Rozhuk Ivan
On Fri, 15 Mar 2019 20:04:16 +
tech-lists  wrote:

> context: ports r495804]
> 
> Getting these errors when trying to compile a port needing gcc:
> 
> make: stopped in /usr/ports
> make[2]: "/usr/ports/Mk/bsd.gcc.mk" line 130: warning: String
> comparison operator should be either == or !=
> make[2]: "/usr/ports/Mk/bsd.gcc.mk" line 130: Malformed conditional
> (${_USE_GCC} < ${GCC_DEFAULT})
> make[2]: Fatal errors encountered -- cannot continue
> make[2]: stopped in /usr/ports/net/ipxe
> *** Error code 1
> 

Just buld this port withiut errors.

Probably you set GCC_DEFAULT somewhere in /etc/make.conf or env.
GCC_DEFAULT can be:
4.2
4.8
5
6
7
8

___
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: Why is security/py-pywinrm limited to Python 2.7 only?

2019-04-03 Thread Rozhuk Ivan
On Wed, 3 Apr 2019 11:02:37 +0300
Pavel Timofeev  wrote:

> I'm curious why security/py-pywinrm is limited to python 2.7 now.
> 
> I tried it with python 3.6:
> 

Hello!

This was required by my work, we use 2.7 and do not test with other python 
versions.

___
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: good gui bit-torrent client?

2020-03-05 Thread Rozhuk Ivan
On Fri, 28 Feb 2020 18:49:02 -0500
Robert Huff  wrote:

>   I used to use azureus/vuze, but it hasn't been maintained is
> quite a while.
>   So I changed to deluge ... which now has a dependency
> semi-permanently BROKEN.
>   What can people recommend as a replacement?
> 


rtorrent + rutorrent

rutorrent:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239921
___
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"


STOP rust!

2020-11-10 Thread Rozhuk Ivan
Hi all!

With latest ports tree librsvg2-rust-2.50.0 is required to some ports.
It want replace librsvg2-2.40.21.

I do not want build ugly rust during hours to build small lib in less than 
minute.


Same with polkit & spidermonkey.
https://gitlab.freedesktop.org/polkit/polkit/-/merge_requests/35

I remove polkit where it is possible.
___
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: STOP rust!

2020-11-10 Thread Rozhuk Ivan
On Tue, 10 Nov 2020 16:38:26 +0300
Yuri Pankov  wrote:

> > With latest ports tree librsvg2-rust-2.50.0 is required to some
> > ports. It want replace librsvg2-2.40.21.
> > 
> > I do not want build ugly rust during hours to build small lib in
> > less than minute.  
> 
> You might want to send your complaints to librsvg authors, or fork
> the before-the-rust version and maintain it; ports list really seems
> to be a wrong target for this discussion.
> 

This done not by librsvg authors.
https://reviews.freebsd.org/D18878

And "# Use librsvg2-rust where lang/rust is available" means that it is not 
required for all other arch.

___
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: STOP rust!

2020-11-10 Thread Rozhuk Ivan
On Tue, 10 Nov 2020 19:44:58 +0300
Yuri Pankov  wrote:

 
> >>> With latest ports tree librsvg2-rust-2.50.0 is required to some
> >>> ports. It want replace librsvg2-2.40.21.
> >>>
> >>> I do not want build ugly rust during hours to build small lib in
> >>> less than minute.  
> >>
> >> You might want to send your complaints to librsvg authors, or fork
> >> the before-the-rust version and maintain it; ports list really
> >> seems to be a wrong target for this discussion.
> >>  
> > 
> > This done not by librsvg authors.
> > https://reviews.freebsd.org/D18878
> > 
> > And "# Use librsvg2-rust where lang/rust is available" means that
> > it is not required for all other arch.  
> 
> It is done in the latest version of librsvg, namely 2.50, and
> starting from that version rust is required to build (not to run
> though, AFAIK). The arches on which FreeBSD doesn't have working rust
> yet are to keep older version (2.40) for the moment, but that is only
> temporary workaround as you might understand.

I do not care that 2.50 > 2.40, I care only that it requires heavy dep.


> BTW, `pkg install rust` should solve the "build ugly rust during
> hours" problem for you.

I use portmaster and do not want do some actions by hand, and
pkg install may reinstall some of my apps.

___
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: STOP rust!

2020-11-10 Thread Rozhuk Ivan
On Tue, 10 Nov 2020 20:01:55 +0300
Yuri Pankov  wrote:

> Actually, it started quite some time ago, and it was 2.41 that 
> introduced the rust dependency:
> 
> https://mail.gnome.org/archives/desktop-devel-list/2017-January/msg1.html

This does not explain why I should waste my time and money to compile ugly rust.

___
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"


Need help with python based port (home assistant)

2020-11-22 Thread Rozhuk Ivan
Hi!

Im trying to make Home Assistant port.

It requires many deps:
https://github.com/home-assistant/core/blob/dev/setup.py
"aiohttp==3.7.1",
"astral==1.10.1",
"async_timeout==3.0.1",
"attrs==19.3.0",
"bcrypt==3.1.7",
"certifi>=2020.6.20",
"ciso8601==2.1.3",
"httpx==0.16.1",
"importlib-metadata==1.6.0;python_version<'3.8'",
"jinja2>=2.11.2",
"PyJWT==1.7.1",
# PyJWT has loose dependency. We want the latest one.
"cryptography==3.2",
"pip>=8.0.3",
"python-slugify==4.0.1",
"pytz>=2020.1",
"pyyaml==5.3.1",
"requests==2.25.0",
"ruamel.yaml==0.15.100",
"voluptuous==0.12.0",
"voluptuous-serialize==2.4.0",
"yarl==1.4.2",

we have most of them, but many ports have different versions.

I made a hack:
post-patch:
@${REINPLACE_CMD} -e 's|requests==2.25.0|requests>=2.22.0|g' \
-e 's|cryptography==3.2|cryptography>=2.6.1|g' \
-e 's|aiohttp==3.7.1|aiohttp>=3.6.2|g' \
-e 's|==|>=|g' \
${WRKSRC}/setup.py
it force to use newer versions and make few downgrades.
With this HA install and start.
But on first start it show errors in console and download and install
some python packets that was hacked version and some packets that
was not in requires list.
(I suspest it set as deps in plugins/componets)


Questions:

1. Is it ok that I use hack to change required deps versions?
Or how to deal with it?

2. Is it ok that HA download all deps that required into HA
work dir?
Should I add all these deps in port to prevent this?

3. If I set: USES=cpe python:3.8+ then some deps fail to install,
but with
DEFAULT_VERSIONS+=python=2.7
DEFAULT_VERSIONS+=python3=3.8
all install ok.
Is it ok?
___
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: STOP rust!

2020-11-22 Thread Rozhuk Ivan
On Fri, 13 Nov 2020 08:47:48 +1100
Dewayne Geraghty  wrote:

> > With latest ports tree librsvg2-rust-2.50.0 is required to some
> > ports. It want replace librsvg2-2.40.21.
> > 
> > I do not want build ugly rust during hours to build small lib in
> > less than minute.


THANK YOU, Tobias!!!

https://svnweb.freebsd.org/ports?view=revision&revision=555776

  Add new default-version variant for librsvg2

  New default version for librsvg2.

  Current versions of graphics/librsvg2 are using parts written in rust.
  For architectures that do not have support for rust, and for people
  who prefer not to have, or are not able to compile rust software due
  to hardware limitations, the version can be chosen via this new flag.

  The default on almost all architectures is rust.

  If you prefer no to use rust, add the following to your make.conf:

DEFAULT_VERSIONS+=librsvg2=legacy

This makes the change committed in r554733 a bit more flexible for people
who are opposed to oxidation.

PR: 251014
Exp-run by: antoine
___
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: Need help with python based port (home assistant)

2020-11-23 Thread Rozhuk Ivan
On Mon, 23 Nov 2020 19:26:49 +0100
Mateusz Piotrowski <0...@freebsd.org> wrote:

> > Questions:
> >
> > 1. Is it ok that I use hack to change required deps versions?
> > Or how to deal with it?  
> It is OK to change the required deps as long as the program keeps
> working. Sometimes, however, we just add new ports for the specific
> desired versions of the dependencies (e.g.,
> py37-sphinxcontrib-websupport11 and py37-sphinxcontrib-websupport).

Ok.


> > 2. Is it ok that HA download all deps that required into HA
> > work dir?
> > Should I add all these deps in port to prevent this?  
> If I understand correctly, HA is missing some runtime dependencies.
> Each runtime dependency should be specified (e.g., via RUN_DEPENDS).

HA deps to run - already in makefile.
But HA have many plugins, every plugin have its own dep list.
HA requires at least some of plugins to run "core" with GUI.
There is a very big deps list: 
https://github.com/home-assistant/core/blob/dev/requirements_all.txt
HA on startup download and install plugins deps into HA work dir (path may be 
set via command line).

HA has 960+ plugins.
It is to many for hands job. I can write some shell script to do most work.
Makefile will require to much time to process all options, like nginx but 
longer.


To prevent autoinstall:
- run with: --skip-pip  Skips pip install of required packages on startup
- patch all required versions to versions => vers in ports tree
- add all deps to port Makefile
- some plugins requires other plugins


On other side, Kodi downloads python plugins into its own work dir, some of 
them - same things that in ports tree.


There is 2 ways:

1. Allow HA download and install all deps that required for plugins.
All or almost all things will work, like on other HA platforms.

2. Allow user to chose plugins to install, istall all deps from ports tree,
do not allow HA auto install anything.
Only some of plugins will available and work. 5-30% from start.


___
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"


ccache: zero cache hit ratio on port update

2020-12-20 Thread Rozhuk Ivan
Hi!

I spent some time to digg into this.
This is my 2-3 attempt to fix it. [1]


Current we have normal cache hit ratio on port rebuild and
zero on version/hashtag/any_thing_that_change_port_src_dir_name.

Zero cache hit ratio even if only readme.md changed in project,
that causes hashtag->dir name change.

Most annoying effect of this - build time for heavy projects
is very different:
chorome: build ~4 hours, rebuild 15 minutes. (Ryzen 2700x)
I do not expext that 4h->15m, but even 2h - is good motivation for me.


I know two ways to fix it:

1. Change port system to use static names
Example:
Now: 
/tmp/ports/usr/ports/net/ssdpd/work/ssdpd-784c7a726c26561bb65345b71b4e1726b69f58c7/
Fixed: /tmp/ports/usr/ports/net/ssdpd/work/ssdpd
Fixed: /tmp/ports/usr/ports/net/ssdpd/work/src
(Can some one explain: why port system add version/hashtag/random to dir name?)
(Is it strongly required?)

2. Do something with ccache + out of source build:
https://github.com/ccache/ccache/issues/751


[1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=246245
___
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"


xfce4-mixer -> gtk-mixer

2021-02-01 Thread Rozhuk Ivan
Hi!

I am was very dissapointed that xfce4-mixer is deprecated, so I am rewrite it to
new app - GTK-Mixer.

GUI mostly same, but many features now work:
- show all sound cards
- handle sound card connect/disconnect
- handle default device change
- allow switch default sound device
- tray icon (like audio/volumeicon / audio/gvolwheel)

It does not require nothing but gtk3.
If some one want - feel free to write ALSA/sndio/... sound backend plugins.


https://github.com/rozhuk-im/gtk-mixer
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=253150
___
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: xfce4-mixer -> gtk-mixer

2021-02-01 Thread Rozhuk Ivan
On Mon, 1 Feb 2021 12:04:14 +0100
Guido Falsi  wrote:

> At the same time upstream is working on reviving the project, so, if
> you have time, you can also contribute there.
> 
> https://gitlab.xfce.org/apps/xfce4-mixer

I know, but:
1. Before I found that xfce4-mixer under construction - I already done most of 
work.
2. gtk-mixer have different design, it can not be "upstreamed" back :)
3. There is a few of cool features that I want to implement here.


> I'm going to test it, there should not be any problem adding it to
> the tree.
 
Thanks!
___
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"


Python update 3.7->3.8

2021-04-26 Thread Rozhuk Ivan
Hi!

After doing all manipulations for rebuild and reinstall with pkg+portmaster
some files not affected, I suspect that files after shebang fix:

# grep -rsp "python3\.7" /usr/local/
Binary file /usr/local/bin/youtube-dl matches
/usr/local/bin/gsettings-schema-convert:#!/usr/local/bin/python3.7
/usr/local/bin/gtk-builder-convert:#!/usr/local/bin/python3.7
/usr/local/bin/event_rpcgen.py:#!/usr/local/bin/python3.7
/usr/local/bin/vigra-config:#!/usr/local/bin/python3.7
/usr/local/bin/retroarch-cg2glsl:#!/usr/local/bin/python3.7
/usr/local/lib/python3.8/site-packages/certifi-2020.12.5-py3.8.egg-info/PKG-INFO:
'/usr/local/lib/python3.7/site-packages/certifi/cacert.pem'
/usr/local/lib/python3.8/site-packages/certifi-2020.12.5-py3.8.egg-info/PKG-INFO:
/usr/local/lib/python3.7/site-packages/certifi/cacert.pem
/usr/local/lib/qt5/mkspecs/features/uikit/devices.py:#!/usr/local/bin/python3.7
/usr/local/lib/xfce4/xfce4-compose-mail:#!/usr/local/bin/python3.7
/usr/local/libexec/dbusmenu-bench:#!/usr/local/bin/python3.7
Binary file /usr/local/man/mandoc.db matches
/usr/local/share/claws-mail/eud2gc.py:#!/usr/local/bin/python3.7
/usr/local/share/claws-mail/tbird2claws.py:#!/usr/local/bin/python3.7
/usr/local/share/claws-mail/vcard2xml.py:#!/usr/local/bin/python3.7
/usr/local/share/subversion/backup/hot-backup.py:#!/usr/local/bin/python3.7

Is any way to way to fix it by scripts?


Also "pkg del -f py37-\*" must be "pkg del -f \*py37-\*": some packages have 
py37 in middle of name. (scons)
___
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: Python update 3.7->3.8

2021-04-26 Thread Rozhuk Ivan
On Mon, 26 Apr 2021 11:55:07 -0400 (EDT)
AN  wrote:

> > After doing all manipulations for rebuild and reinstall with
> > pkg+portmaster some files not affected, I suspect that files after
> > shebang fix:
> >
> > # grep -rsp "python3\.7" /usr/local/
> > Binary file /usr/local/bin/youtube-dl matches
> > /usr/local/bin/gsettings-schema-convert:#!/usr/local/bin/python3.7
> > /usr/local/bin/gtk-builder-convert:#!/usr/local/bin/python3.7
> > /usr/local/bin/event_rpcgen.py:#!/usr/local/bin/python3.7
> > /usr/local/bin/vigra-config:#!/usr/local/bin/python3.7
> > /usr/local/bin/retroarch-cg2glsl:#!/usr/local/bin/python3.7
> > /usr/local/lib/python3.8/site-packages/certifi-2020.12.5-py3.8.egg-info/PKG-INFO:
> >'/usr/local/lib/python3.7/site-packages/certifi/cacert.pem'
> > /usr/local/lib/python3.8/site-packages/certifi-2020.12.5-py3.8.egg-info/PKG-INFO:
> >/usr/local/lib/python3.7/site-packages/certifi/cacert.pem
> > /usr/local/lib/qt5/mkspecs/features/uikit/devices.py:#!/usr/local/bin/python3.7
> > /usr/local/lib/xfce4/xfce4-compose-mail:#!/usr/local/bin/python3.7
> > /usr/local/libexec/dbusmenu-bench:#!/usr/local/bin/python3.7 Binary
> > file /usr/local/man/mandoc.db matches
> > /usr/local/share/claws-mail/eud2gc.py:#!/usr/local/bin/python3.7
> > /usr/local/share/claws-mail/tbird2claws.py:#!/usr/local/bin/python3.7
> > /usr/local/share/claws-mail/vcard2xml.py:#!/usr/local/bin/python3.7
> > /usr/local/share/subversion/backup/hot-backup.py:#!/usr/local/bin/python3.7
> >
> > Is any way to way to fix it by scripts?
> >

This long command hanle files that requires shebang:
portmaster -BvD -y --no-confirm --delete-build-only `grep -rsp "\/python3\.7" 
/usr/local/ | grep -v '/usr/local/man/' | grep -v '/usr/local/lib/python3' | 
sed -e 's|:.*||' -e 's|Binary file ||' -e 's| matches||' | xargs pkg which -oq 
| sort -u`

Also I found that this can be used instead all other commands:
portmaster -BvD -y `pkg query %ro python38`

but if it fail, then no recovery, only start from beginning and redo all work 
again.



> --->  Uninstallation of py27-setuptools-44.0.0 started at: Mon, 26
> Apr 2021 11:49:52 -0400
> --->  Fixing up dependencies before creating a package
> --->  Backing up the old version
> --->  Uninstalling the old version  
> [Reading data from pkg(8) ... - 945 packages found - done]
> --->  Deinstalling 'py27-setuptools-44.0.0'  
> Updating database digests format: 100%
> Checking integrity... done (0 conflicting)
> Deinstallation has been requested for the following 1 packages (of 0
> packages in the universe):
> 
> Installed packages to be REMOVED:
>   py27-setuptools: 44.0.0
> 
> Number of packages to be removed: 1
> 
> The operation will free 4 MiB.
> [1/1] Deinstalling py27-setuptools-44.0.0...
> [1/1] Deleting files for py27-setuptools-44.0.0: 100%
> [Reading data from pkg(8) ... - 944 packages found - done]
> --->  Uninstallation of py27-setuptools-44.0.0 ended at: Mon, 26 Apr
> 2021 11:49:55 -0400 (consumed 00:00:02)
> --->  Installation of devel/py-setuptools started at: Mon, 26 Apr
> 2021 11:49:55 -0400
> --->  Installing the new version via the port
> ===>  Deinstalling for py38-setuptools
> ===>   py38-setuptools not installed, skipping
> ===>  Installing for py38-setuptools-44.0.0_1
> ===>  Checking if py38-setuptools is already installed
> ===>   Registering installation for py38-setuptools-44.0.0_1 as
> automatic Installing py38-setuptools-44.0.0_1...
> pkg-static: py38-setuptools-44.0.0_1 conflicts with
> py37-setuptools-44.0.0 (installs files into the same place).
> Problematic file: /usr/local/bin/easy_install
> *** Error code 1
> 
> Stop.
> make[1]: stopped in /usr/ports/devel/py-setuptools
> *** Error code 1
> 
> Stop.
> make: stopped in /usr/ports/devel/py-setuptools
> ** Command failed [exit code 1]: /usr/bin/script -qa
> /tmp/portupgrade20210426-16971-13n0qvl env UPGRADE_TOOL=portupgrade
> UPGRADE_PORT=py27-setuptools-44.0.0 UPGRADE_PORT_VER=44.0.0 make
> -DINSTALLS_DEPENDS reinstall
> --->  Updating dependency info
> --->  Restoring the old version  
> Installing py27-setuptools-44.0.0...
> Extracting py27-setuptools-44.0.0: 100%
> =
> 

IMHO you miss something.
Only py37 must be affected, but some how you are trying to replace py27.

___
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: Python update 3.7->3.8

2021-04-27 Thread Rozhuk Ivan
On Tue, 27 Apr 2021 07:29:01 +0200 (CEST)
obx2...@oldach.net (Helge Oldach) wrote:

> > This long command hanle files that requires shebang:
> > portmaster -BvD -y --no-confirm --delete-build-only `grep -rsp
> > "\/python3\.7" /usr/local/ | grep -v '/usr/local/man/' | grep -v
> > '/usr/local/lib/python3' | sed -e 's|:.*||' -e 's|Binary file ||'
> > -e 's| matches||' | xargs pkg which -oq | sort -u`  
> 
> I am afraid this is botching up things. For instance, tinkering with
> pkg installed files will break proper removal of packages in the
> future because of md5 mismatch. Also please note that you are not
> just changing shebang but unrelated documentation files as well which
> may be overly excessive.


This long command find all files that contain "/python3.7", then find
package name that own this file and reinstall it.
It does not shange file content.


___
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: Python update 3.7->3.8

2021-04-28 Thread Rozhuk Ivan
On Wed, 28 Apr 2021 03:25:02 -0600
"@lbutlr"  wrote:

> > This long command hanle files that requires shebang:
> > portmaster -BvD -y --no-confirm --delete-build-only `grep -rsp
> > "\/python3\.7" /usr/local/ | grep -v '/usr/local/man/' | grep -v
> > '/usr/local/lib/python3' | sed -e 's|:.*||' -e 's|Binary file ||'
> > -e 's| matches||' | xargs pkg which -oq | sort -u`  
> 
> What grep are you using?
> 
> /usr/bin/grep -rsp "python3\.7" /usr/local/ => grep: invalid option
> -- p
> 
> (FreeBSD 12.2, grep (GNU grep) 2.5.1-FreeBSD)
> 

WITH_BSD_GREP=
# Install BSD-licensed grep as '[ef]grep' instead of GNU grep.

___
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"


maintensers does not respond for long time

2017-03-08 Thread Rozhuk Ivan


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=213790
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216050

Patch ready to apply, but no respond from maintenser (2+ weeks)

What next?
___
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

2017-03-08 Thread Rozhuk Ivan



https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215907 devel/libaravis: 
glib/gobject based library for video acquisition using Genicam cameras
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215908 multimedia/aravis: 
glib/gobject based viewer for video acquisition using Genicam cameras
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210505 graphics/opencv: 
Update to 3.2

First two done, last in process.

I want to be maintainer.
What I need to do?
___
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: Excessive CFLAGS: -pthread -D_THREAD_SAFE

2017-04-06 Thread Rozhuk Ivan
On Thu, 06 Apr 2017 16:28:29 +0200
Jan Beich  wrote:

> A few weeks ago (just before 2017Q2 has branched) many GUI apps
> started to have very long compile lines. Most of it is composed of
> duplicate occurence of the same flags with the first bad being
> r437182 e.g.,


Try this: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=218453

___
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"


security/secpanel

2017-04-07 Thread Rozhuk Ivan

Waiting for a long time to responce and merge:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=213790

___
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: security/secpanel

2017-04-08 Thread Rozhuk Ivan
On Sat, 8 Apr 2017 20:00:53 +0200
Kurt Jaeger  wrote:

> Hi!
> 
> > Waiting for a long time to responce and merge:
> > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=213790  
> 
> Done.
> 

Thanks!

___
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: About opencv2

2017-04-13 Thread Rozhuk Ivan
On Thu, 13 Apr 2017 21:48:06 -0300
Otacílio  wrote:

> I saw that the OpenCV port does not have a maintainer. However, until 
> recently there was an effort to port OpenCV3 to FreeBSD. Has Opencv 2 
> been abandoned because of OpenCV3 or does it have no correlation?

No correlation, IMHO.
I start 3.1 and now it 3.2 - for my work.

___
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: About opencv2

2017-04-13 Thread Rozhuk Ivan


>  I'm using a openCV 3.2 in my box, but I don't have time to
> lean to create a new port.  I need finish my qualify exam to Phd
> 
>  If yopu need some help I can help you.
> 

All ready done: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210505

___
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: pkg and packages

2017-05-09 Thread Rozhuk Ivan
On Mon, 8 May 2017 19:24:10 +0100
RW via freebsd-ports  wrote:

> > ​Samba + GVFS + Thunar doesn't make your FreeBSD filesystems
> > available from Windows machines.  It makes your Windows file shares
> > available on FreeBSD, and they show up in Thunar just like other
> > folders.  GVFS uses libsmbclient and/or smbclient itself to access
> > the CIFS/SMB shares, and abstracts all that away to make it look
> > like just another folder.​  
> 
> It seems strange that this support is controlled by setting a port
> option called "Trash Panel Applet plugin" rather than one called
> "Gnome Virtual Filesystem".

Few days ago I remove GVFS port, before it I rebuild thunar without "Trash 
Panel Applet plugin".
For samba I use smbfs mount points.



___
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"

Firefox and OSS

2017-06-03 Thread Rozhuk Ivan
Hi!

Why we have no option OSS in www/firefox?
If we build always with OSS (patch-bug1021761) then why user cant unselect all 
options in audio section?



___
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: Firefox and OSS

2017-06-04 Thread Rozhuk Ivan
On Sun, 4 Jun 2017 09:33:03 +0300
abi  wrote:

> AFAIK OSS support is not complete (WebRTS doesn't use it)

If WebRTS is not spoorted - ok, let user decide.
I prefer to have option for OSS, and able to build firefox without sound 
support at all.
___
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: FreeBSD Port: nvidia-driver-375.39

2017-06-04 Thread Rozhuk Ivan
On Fri, 19 May 2017 22:50:38 -0700
"The Saccullo's"  wrote:

> I'm having a problem loading the nvidia-driver 375.39.
> 
>  
> 
> I get the following error:
> 
> link_elf_obj: symbol sc_get_softc undefined
> 
> linker_load_file: Unsupported file type
> 
>  
> 
> Any suggestions? 
> 
>  

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216050

Dont know why it does not commited.
___
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"


FreeBSD 11 desktop - unsupported by ports committers die to amdgpu

2017-09-06 Thread Rozhuk Ivan
Hi!

Why commiters ignory FreeBSD 11.x users!?

graphics/mesa-dri 17.1.8: fails to build: 
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=222098
graphics/libdrm upfate to 2.4.83,1 failed ('uve_ib.h' file not found): 
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221881


___
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: FreeBSD 11 desktop - unsupported by ports committers die to amdgpu

2017-09-06 Thread Rozhuk Ivan
On Wed, 6 Sep 2017 14:27:35 -0500
Matthew Donovan  wrote:

> Well it's an upstream bug. So port maintainer is not the issue.  It's
> being worked after n looks like simple fix per upstream bug report.
> 

At least for graphics/libdrm amdgpu is option.
And maintainer can add OS version check and automatic enable/disable it.
___
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: FreeBSD 11 desktop - unsupported by ports committers die to amdgpu

2017-09-06 Thread Rozhuk Ivan
On Wed, 6 Sep 2017 21:27:32 +0200
Kurt Jaeger  wrote:

> My testbuild on 11.1a in poudriere was sucessful. Can you try to
> build in poudriere ?

No.
I remove zfs and jail from system.

 
> Building on a box where some packages are already installed can lead
> to broken builds.
> 
> See Jan's comment in the libdrm PR. It looks that if you have
> devel/cunit installed, it causes the build error.
> 

Yes, I have CUnit in system.

___
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: FreeBSD 11 desktop - unsupported by ports committers die to amdgpu

2017-09-06 Thread Rozhuk Ivan
On Thu, 7 Sep 2017 08:06:36 +1200
Jonathan Chen  wrote:

> It's always safer to build ports/packages using one of the newer
> builders, ie: poudriere or synth. These builders ensure that the build
> environment is clean and avoids cross contamination from other
> installed ports. If poudriere is too heavy for your comfort, try using
> synth instead. Manual builds, portupgrade and portmaster will slap you
> in the face if you're unlucky.


Too many poudriere - lower ports quality in wild.
___
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?

2017-12-02 Thread Rozhuk Ivan
On Sat, 2 Dec 2017 09:58:15 -0800
Steve Kargl  wrote:

> I have a laptop with 664 installed packages.  It has 6.4 GB 
> of free diskspace and 3.5 GB of available memory.  It is the
> only i686 system that I have and it is used to develop and
> test all of the libm code that I contribute to FreeBSD.
> /usr/src, /usr/obj, and /usr/ports/distfiles are symlinked
> to directories on a USB 2.0 external drive.  Using `poudriere
> bulk` may strain the available resources when constructing jails,
> storing built packages, and then going throught the actual
> upgrading process; whereas `portmaster -Byd` just worked.
> 
 
+1
I dont want poudriere because I dont need ZFS, jails and other crap on my 
system.
I dont want to play system administrator: keep and admin build servers at 
home/work.

I just want update from source all my ports, make packages, and on other
computers run portmaster to update from these packages on nfs share.
Minimum overhead.

synth - at least require specific depencies.
___
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: make reinstall does not work

2017-12-08 Thread Rozhuk Ivan
On Sat, 9 Dec 2017 09:52:02 +1100
Greg 'groggy' Lehey  wrote:

> Yes, I've seen this too and used the same workaround.
> 
> Has something changed?  Does 'make reinstall' still work for others?

Not work for me.
FreeBSD rimwks 11.1-STABLE FreeBSD 11.1-STABLE #2 r325400M
+
all updated ports
___
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: FreeBSD Palemoon branding violation

2018-02-06 Thread Rozhuk Ivan
On Tue, 6 Feb 2018 22:21:37 +
Mark Felder  wrote:

> Dear Matt,
> 
> After your recent harassment of OpenBSD
> (https://github.com/jasperla/openbsd-wip/issues/86) I decided to
> investigate our own packaging of Palemoon. As expected, we are also
> building against system libraries. You can review our build log here:
> 
> http://beefy6.nyi.freebsd.org/data/103amd64-default/461032/logs/palemoon-27.7.2.log
> 
> Adding configure options
> from /wrkdirs/usr/ports/www/palemoon/work/Pale-Moon-27.7.2_Release/.mozconfig
> --enable-application=browser --enable-official-branding
>   --enable-devtools
>   --enable-jemalloc
>   --enable-jemalloc-lib
>   --prefix=/usr/local
>   --enable-jemalloc
>   --with-system-libevent
>   --enable-system-ffi
>   --with-system-graphite2
>   --with-system-harfbuzz
>   --enable-system-hunspell
>   --with-system-icu
>   --with-intl-api
>   --with-system-jpeg=/usr/local
>   --with-system-nspr
>   --with-system-nss
>   --with-system-png=/usr/local
>   --enable-system-pixman
>   --enable-system-sqlite
>   --with-system-libvpx
>   --enable-chrome-format=omni
>   --enable-default-toolkit=cairo-gtk2
>   --enable-update-channel=release
>   --disable-updater
>   --enable-pie
>   --with-pthreads
>   --enable-extensions=default
>   --with-system-zlib
>   --with-system-bz2
>   --enable-optimize
>   --enable-startup-notification
>   --disable-gstreamer
>   --enable-gconf
>   --disable-libproxy
>   --enable-alsa
>   --enable-pulseaudio
>   --disable-rust
>   --disable-debug
>   --disable-debug-symbols
>   --enable-release
>   --disable-dtrace
>   --enable-profiling
>   --disable-tests
>   --disable-strip
>   --disable-install-strip
> 
> 

Using at least:
>   --with-system-nss

is risk of instability.
Pale Moon peoples just ask to not modify their product or do not name it "Pale 
Moon".
Do not see any troubles there.


mattatobin > Because we do alter our in-tree libs with specific fixes with our 
glue
mattatobin > in mind as well as add additional features and capabilities they 
are as
mattatobin > much parts of the total sum of what makes up Pale Moon as the 
layout
mattatobin > engine or javascript engine.
mattatobin > Most notably, nspr/nss as well as libpng, and who knows what 
happens with libicu.



PS: mpv wants ffmpeg as in-tree after mpv brokes die to ffmpeg bug and mpv devs 
looking for a bug in mpv few days.
___
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: FreeBSD Palemoon branding violation

2018-02-07 Thread Rozhuk Ivan
On Wed, 7 Feb 2018 02:18:28 -0700
LuKreme  wrote:

> Huh. I would have nuked the port after about the 5th post in that
> thread. You’re a very patient person, and Matt is... well. I can’t
> say anything nice, so...
> 

The reaction of the community (OpenBSD) is more like a emotional baiting:
all just attacked a defenseless victim who dared to pick up words inaccurately.
No one read further than the first message, but everyone condemns.
Many do not even use the palemoon.
Such a reaction is not appropriate for educated people.

___
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"


Commiter needed

2018-04-20 Thread Rozhuk Ivan


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227551
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227244
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226450
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226454
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226453
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226448
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226264
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223758



___
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"


Commiter needed

2018-04-26 Thread Rozhuk Ivan


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227551
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227244
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226450
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226454
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226453
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226448
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226264
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223758


___
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"