Re: Supporting hibernation in Workstation ed., draft 1

2020-06-04 Thread stan via devel
On Thu, 4 Jun 2020 10:13:59 -0600
Chris Murphy  wrote:

> Also, as it relates to authenticated encrypted hibernation images, the
> upstream proposal is that since hibernation images can exist anywhere,
> they should always be encrypted independently from swap, and therefore
> not depend on whether swap is encrypted or how.

Just following the conversation for information purposes, but I have
questions.  If systemd-boot were to be used as boot service,  could the
hibernate image be written to /boot/efi in place of the kernel and
initramfs, or in parallel? Would systemd-boot be able to use it?  Would
that satisfy the encrypted and signed requirements?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Supporting hibernation in Workstation ed., draft 1

2020-06-04 Thread stan via devel
On Thu, 4 Jun 2020 13:01:37 -0600
Chris Murphy  wrote:

> > Just following the conversation for information purposes, but I have
> > questions.  If systemd-boot were to be used as boot service,  could
> > the hibernate image be written to /boot/efi in place of the kernel
> > and initramfs, or in parallel? Would systemd-boot be able to use
> > it?  Would that satisfy the encrypted and signed requirements?  
> 
> No to all sadly.
> 
> On Linux, neither GRUB or sd-boot directly consume the hibernation
> image to perform resume. Bootloader and firmware based hibernation
> resumption is found on Windows and macOS (there are many hibernation
> implementations on Windows). On Linux, this is a kernel feature, so
> the bootloader loads kernel and initramfs and boots normally; the
> kernel uses a kernel parameter hint(s) to discover the location of the
> hibernation image within swap. And voila.
> 
> I think the kernel does have code to support Intel Rapid Start. This
> is a firmware based hibernation resume implementation, so first the
> firmware must support it. But honestly have no idea if it works
> exactly like it does on Windows. At least on Windows it requires a
> dedicated partition expressly for the hibernation image. And the
> firmware's Intel Rapid Start function is given a hint at hibernate
> time so i knows at next power on that it should resume from this
> hibernation image directly.
> 
> Anyway, it would take work to build a generic implementation supported
> in either bootloader.

Thanks for the information.  Too bad.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Increasing the packaging team: regular workshops/vFADs/classroom sessions on packaging

2020-06-06 Thread stan via devel
On Sat, 6 Jun 2020 06:40:43 -0500
Richard Shaw  wrote:

> On Sat, Jun 6, 2020 at 5:54 AM Andy Mender 
> wrote:

> > As someone who just recently started out with packaging and has a
> > fresh view on the problem, I would be more than happy to help out
> > with the docs :).
> >  
> 
> YES PLEASE. Documentation isn't necessarily and afterthought, but
> it's not "fun" and not many people want to do it.

It is *hard*.  Good documentation requires an intimate knowledge of the
system, and all the permutations it can exhibit.  Writing about that is
not a slap dash onto the page / screen if it is going to be useful for
both beginners and old hands, it is *work*.  Read some of the official
documentation manuals for proprietary software: turgid and exhaustive,
with excruciating detail.

Add Fedora's high rate of change, and it becomes understandable why
documentation is lagging.  That rate of change doesn't make
documentation less useful, though, rather the opposite.  So, needed
more, provided less => high barrier to entry.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 33 System-Wide Change proposal: CompilerPolicy Change

2020-06-07 Thread stan via devel
On Thu, 4 Jun 2020 16:30:09 -0400
Ben Cotton  wrote:

> https://fedoraproject.org/wiki/Changes/CompilerPolicy

> An obvious example is Firefox.  Upstream, the Firefox project builds
> primarily with Clang/LLVM.  Yet we force the Fedora package owner to
> find and fix issues building with GCC then either carry those custom
> fixes forward in Fedora or negotiate with upstream to get those
> changes upstreamed.  While this process can be helpful in finding
> non-portable code, this is ultimately a poor use of the packager's
> time.

I compile firefox nightly locally from an hg repository.  What I notice
is that although mozilla officially states that it is possible to limit
resource use, even though I set a maximum thread count, or maximum
load, the clang compiler grabs every core and maxes it out to 100%.
Will this change help with that?  i.e.  is this a clang problem?  Or is
my experience because of a problem with the firefox compilation process?
Thanks.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 33 System-Wide Change proposal: CompilerPolicy Change

2020-06-08 Thread stan via devel
On Mon, 08 Jun 2020 09:29:27 -0600
Jeff Law  wrote:

> On Sun, 2020-06-07 at 13:07 -0700, stan via devel wrote:
> > On Thu, 4 Jun 2020 16:30:09 -0400
> > Ben Cotton  wrote:
> >   
> > > https://fedoraproject.org/wiki/Changes/CompilerPolicy
> > > An obvious example is Firefox.  Upstream, the Firefox project
> > > builds primarily with Clang/LLVM.  Yet we force the Fedora
> > > package owner to find and fix issues building with GCC then
> > > either carry those custom fixes forward in Fedora or negotiate
> > > with upstream to get those changes upstreamed.  While this
> > > process can be helpful in finding non-portable code, this is
> > > ultimately a poor use of the packager's time.  
> > 
> > I compile firefox nightly locally from an hg repository.  What I
> > notice is that although mozilla officially states that it is
> > possible to limit resource use, even though I set a maximum thread
> > count, or maximum load, the clang compiler grabs every core and
> > maxes it out to 100%. Will this change help with that?  i.e.  is
> > this a clang problem?  Or is my experience because of a problem
> > with the firefox compilation process?  
> It's unclear if it's a problem in Clang/LLVM or the firefox build
> procedures. Regardless, this proposal shouldn't change/improve your
> issue in any way.

Thanks.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: The future of legacy BIOS support in Fedora.

2020-07-09 Thread stan via devel
On Thu, 09 Jul 2020 18:07:39 +0300
nick...@gmail.com wrote:

> Yes, that's why "secure boot" should only be an option and the user
> must have the option to turn it off. Otherwise, it wouldn't be
> possible to do any kernel development on that computer.

For my edification.  I build custom kernels, and sign them using
pesign with my own key that I generated locally, and put in the EFI key
database. I can then boot the custom kernel in secure mode.  Couldn't I
also sign modules if I ever generated them with that same key?

That is, isn't this only an issue if the person doing the kernel
development hasn't generated their own key, and isn't signing their
kernels locally?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: The future of legacy BIOS support in Fedora.

2020-07-09 Thread stan via devel
On Thu, 09 Jul 2020 23:10:46 +0300
nick...@gmail.com wrote:

> On Thu, 2020-07-09 at 11:17 -0700, stan via devel wrote:

> > That is, isn't this only an issue if the person doing the kernel
> > development hasn't generated their own key, and isn't signing their
> > kernels locally?  
> 
> To be honest, I don't know. Do all UEFI secure boot implementations
> allow you to add your own keys to the list of trusted keys?

I don't know, but I used Fedora tools to create the key pair, and
insert the public key (x86_64).  Anyway, just another data point in the
discussion.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Building kernel rpms with KASAN enabled

2020-07-16 Thread stan via devel
On Thu, 16 Jul 2020 11:02:02 -0400
Steve Grubb  wrote:
 
> What is the best way to build an official Fedora kernel SRPM with
> KASAN=y?

This is the official documentation for building a custom kernel.

https://fedoraproject.org/wiki/Building_a_custom_kernel

It might already be set in the stock Fedora kernel.  You could go into
/boot and run
grep -i kasan on one of the configuration files.  All my kernels are
custom builds, so I can't check the stock setting, but mine have it
turned on.

I use rpmbuild because I've been building custom kernels from the
srpm for a long time, but that is now deprecated in favor of fedpkg or
mock, I think.

If you want to run a custom kernel in uefi secure mode, you will have
to generate a local key pair, and sign the custom kernel with pesign.
If you don't have the rh-test-cert installed in the efi key database,
you will have to remove it from the kernel binary using pesign, as well,
or it won't be found on boot.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 33 System-Wide Change proposal: swap on zram

2020-07-28 Thread stan via devel
On Thu, 4 Jun 2020 16:30:07 -0400
Ben Cotton  wrote:

> https://fedoraproject.org/wiki/Changes/SwapOnZRAM

>  How can it be disabled? 
> 
> Immediately:
> swapoff /dev/zram0
> 
> Permanently:
> rm /etc/systemd/zram-generator.conf

I realize this is a really late reply, but I wanted to disable this
since it was never used, and when I looked at the man pages this
information was not in them.  I think it should be.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 33 System-Wide Change proposal: swap on zram

2020-07-29 Thread stan via devel
On Tue, 28 Jul 2020 13:51:00 -0600
Chris Murphy  wrote:

> That information is stale. The feature page has been updated.
> 
> man page contains:
> 
>To  disable a configuration file supplied by the vendor, the
> recommended way is to place a symlink to /dev/null in the
> configuration directory in /etc/, with the same filename as the vendor
> configuration file.

Thanks.

> It's maybe easier to just 'dnf remove zram-generator-defaults' but
> that is a Fedora specific instruction.

After some thought, this is what I did after I posted the message.
Makes sense, can't run if it isn't there. 
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: v4l2loopback kernel module in Fedora?

2020-04-05 Thread stan via devel
On Sun, 5 Apr 2020 02:56:08 -0400
Christopher  wrote:

> Has anyone tried packaging v4l2loopback into Fedora? I'd really like
> to set up a screen capture device for video conferencing stuff, but I
> keep running into problems with SecureBoot. I don't really know what
> I'm doing with mokutil or DKMS and I'm generally uncomfortable
> building kernel modules myself. I would be far more comfortable simply
> installing directly from a Fedora RPM that contains the signed kernel
> module needed.

Have you looked at OBS?  It's actually a tool to create streaming
content, but it performs screen capture, and has key mappings so it can
be started and stopped without switching to the gui.  It is on
rpmfusion.

> Does anybody have the requisite knowledge to create Fedora packaging
> of v4l2loopback and is willing to package for F31? I'd be happy to
> test... and possibly co-maintain, if the package maintenance were
> sufficiently simple.

Not me.

This is the procedure I used to create a local key in order to sign
custom compiled kernels.  So, if you decide to plow on through, you
should be able to adapt it for your purposes.  Though, if Leigh is
right, and out of tree modules are forbidden as Fedora packages, you
will have to keep the module rpm on your system only.

https://bugzilla.redhat.com/show_bug.cgi?id=1719930
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: v4l2loopback kernel module in Fedora?

2020-04-06 Thread stan via devel
On Sun, 5 Apr 2020 21:44:16 -0400
Christopher  wrote:

> I'm probably going to abandon the effort anyway. obs-studio in Fedora
> crashes constantly every time I try to change the settings and save,
> so I couldn't figure out how to get it to work with v4l2loopback. I

You are using obs in a different way than I am, but it works without
issue here for my unsophisticated use.  I've never had a crash.  F31.  I
am able to change settings, I changed the keymappings to use the left
windows key, finally getting some use out of it.  I am using X, and I
start obs from a terminal so if anything *does* go wrong, I see the
output from the program.  I've been really pleased with its
performance, though I'm sure I'm not really stressing it out the way
you want to.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Self Introdction: nick black

2020-04-06 Thread stan via devel
On Mon, 6 Apr 2020 09:03:54 -0400
Nick Black  wrote:

> Now, a "notcurses-noffmpeg" version in Core and a
> "notcurses+ffmpeg" in Fusion seems reasonable. Is this kind of
> thing ever done?

I think this is still true for audacity, mplayer, and chromium so they
get patented video codec support. Before mpeg was completely off patent,
there were other audio applications where this happened, with the
rpmfusion version adding support for mp3.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: v4l2loopback kernel module in Fedora?

2020-04-06 Thread stan via devel
On Mon, 6 Apr 2020 23:47:53 -0400
Christopher  wrote:

> I actually got it working with v4l2loopback. It normally works quite

That's great!

> well. But, changing settings still crashes.

That's not.

> Literally, all I have to do is: File -> Settings -> toggle any setting
> (just to make "Apply" button available) -> click Apply
> This results in a Segmentation fault every time.
> In any case, the settings are usually saved first, so when I restart,
> it's fine. If I get the motivation, I'll file a bug against the
> RPMFusion package.

Strange that the behavior is so different, especially on something as
basic as changing settings.

> As for the original issue regarding packaging: there is a ticket being
> tracked to get it upstream into the kernel:
> https://github.com/umlaeute/v4l2loopback/issues/268

Interesting, though I probably won't ever have a use for it, I think
I'll try building it into a custom kernel just for fun.  Since it
doesn't seem to be changing a lot, once and done.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 33 System-Wide Change proposal: systemd-resolved

2020-04-14 Thread stan via devel
On Tue, 14 Apr 2020 16:18:02 -0500
Michael Catanzaro  wrote:
 
> NetworkManager has three DNS backends: default (nss-dns, what we use 
> currently), dnsmasq, and systemd-resolved. The default backend just 
> does the wrong thing and cannot be fixed. When either dnsmasq or 
> systemd-resolved is in use, NetworkManager will go ahead and do the 
> right thing by telling dnsmasq/systemd-resolved which network 
> interfaces should be used to resolve which hostnames. I consulted
> with the NetworkManager developers and they recommended
> systemd-resolved over dnsmasq, although I understand that dnsmasq is
> good too.

Will the ability to turn off NetworkManager involvement in DNS in the
configuration file (None) still remain?  I use a local caching DNS
server, and had to do that in order to allow it to run without
interference / override by NetworkManager.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 33 System-Wide Change proposal: systemd-resolved

2020-04-14 Thread stan via devel
On Tue, 14 Apr 2020 15:52:55 -0700
stan via devel  wrote:

> On Tue, 14 Apr 2020 16:18:02 -0500
> Michael Catanzaro  wrote:
>  
> > NetworkManager has three DNS backends: default (nss-dns, what we
> > use currently), dnsmasq, and systemd-resolved. The default backend
> > just does the wrong thing and cannot be fixed. When either dnsmasq
> > or systemd-resolved is in use, NetworkManager will go ahead and do
> > the right thing by telling dnsmasq/systemd-resolved which network 
> > interfaces should be used to resolve which hostnames. I consulted
> > with the NetworkManager developers and they recommended
> > systemd-resolved over dnsmasq, although I understand that dnsmasq is
> > good too.  
> 
> Will the ability to turn off NetworkManager involvement in DNS in the
> configuration file (None) still remain?  I use a local caching DNS
> server, and had to do that in order to allow it to run without
> interference / override by NetworkManager.

Just a further note.  I tried both dnsmasq and systemd-resolved, but
neither seemed to work.  I still saw my browser saying 
Looking up blah-blah.com ...
and timing for seconds even if I just visited the page a few minutes
before.  Once I set up my own caching DNS server, that went away except
when I visit a new site.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 33 System-Wide Change proposal: systemd-resolved

2020-04-14 Thread stan via devel
On Tue, 14 Apr 2020 18:39:05 -0500
Michael Catanzaro  wrote:

> On Tue, Apr 14, 2020 at 3:52 pm, stan via devel 
>  wrote:
> > Will the ability to turn off NetworkManager involvement in DNS in
> > the configuration file (None) still remain?  I use a local caching
> > DNS server, and had to do that in order to allow it to run without
> > interference / override by NetworkManager.  
> 
> Of course. You just have to set dns=None in your 
> /etc/NetworkManager.conf, as before. Also: 'systemctl disable 
> systemd-resolved.service'.

Excellent!  Thanks.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 33 System-Wide Change proposal: systemd-resolved

2020-04-15 Thread stan via devel
On Wed, 15 Apr 2020 15:46:02 +0200
Lennart Poettering  wrote:

> resolved has three modes:

[Snipped for brevity.]

Thanks.  Saved for future reference.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: f32-backgrounds look like crap

2020-04-17 Thread stan via devel
On Fri, 17 Apr 2020 12:49:48 -
"Leigh Scott"  wrote:

> If there any plan to fix them?
> 
> https://leigh123linux.fedorapeople.org/pub/screenshots/Screenshot%20from%202020-04-17%2013-32-22.png

As a contrasting opinion, I accept, and am indifferent to, whatever
wallpaper the Fedora release process chooses.  I don't know if it will
work on your system, but I use wallpapoz, and only see images that I
have chosen to see after the first boot or two.  I set it so that every
window gets a different background.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Re-Launching the Java SIG

2020-05-15 Thread stan via devel
On Fri, 15 May 2020 08:02:34 +0200
Michal Srb  wrote:

> > I realize that this is technically possible to achieve, but that is
> > not how people use it. If you want to distribute your Java app, you
> > just bundle it with all its dependencies into a beefy tarball and
> > ship it. And if Java apps never share dependencies, then developers
> > are not really forced to keep up with latest versions of libraries.
> > Nobody can update the non-existent system-wide Java library that
> > would break their application. They are in control.

An aside, just to clarify for myself.  That means that all Java apps are
the equivalent of statically linked, right?  And are related to things
like flatpaks and modules?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Re-Launching the Java SIG

2020-05-16 Thread stan via devel
On Sat, 16 May 2020 11:23:03 +0200
Nicolas Mailhot  wrote:

> Le vendredi 15 mai 2020 à 08:30 -0700, stan via devel a écrit :
> > On Fri, 15 May 2020 08:02:34 +0200
> > Michal Srb  wrote:
> > 
> > An aside, just to clarify for myself.  That means that all Java apps
> > are
> > the equivalent of statically linked, right?  And are related to
> > things
> > like flatpaks and modules?  
> 
> No, that’s similar to venv everywhere. The language has bytecode-
> sharing objects. Java upstreams just got used not to share those
> executable objects between projects, not to version them properly, not
> to manage their ABI breaks, and to change things in the local copy
> instead of contributing changes to the original project.
> 
> That’s non-free software open source to its extreme. The code is
> available for a dev to copy and resell at his next work, but
> everything is organised (at the human not technical level) so it’s
> not possible to reuse the bytecode directly without paying someone to
> copy and fork the original code that this bytecode was generated from
> in the next project.
> 
> The practical effect is technical stagnation and market capture by
> deep pocket companies.

Thanks for the explanation.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Does the installer detects when a distro have already created BLS?

2020-05-24 Thread stan via devel
On Sun, 24 May 2020 14:56:34 -0400
Paul Dufresne via devel  wrote:

> I have installed the May 22 Rawhide on a disk today, and I am now 
> realizing that the installer did not helped me enough to create valid 
> Boot Loader Specification partitions.
> 
> So I wanted (still want) to make this disk dual boot (Fedora and
> NixOS).
> 
> Because NixOS does not follows BLS (I think... thought... I should 
> verify)... well I decided to create two boot partitions, one for the 
> Fedora BLS partition, and an other for NixOS.

Good thought.  Does NixOS allow the use of uefi?  If it doesn't, it
will definitely need a separate partition for /boot.

> And my idea was to create a big LVM(2) partition for more normal 
> partition: / and Swap... which I did.
> 
> I have chosen ext4 for my Fedora /boot, which is illegal according to 
> BLS: "$BOOT must be a VFAT (16 or 32) file system.".

I think $BOOT will be /boot/efi, and that is required to be vfat.
/boot does *not* have to be vfat.

> The installer, then forced my hand to add a /boot/efi partition,
> which I had not tought previously to add.
> 
> So I removed my LVM(2) partiton, add the /boot/efi partition, then
> added back my LVM(2) partition.
> 
> It finally installed...
> 
> One of the first problem I have, is /boot have not the correct GUID
> for BLS:
> 
> [paul@localhost /]$ cat /etc/fstab
> 
> #
> # /etc/fstab
> # Created by anaconda on Sun May 24 11:48:45 2020
> #
> # Accessible filesystems, by reference, are maintained under
> '/dev/disk/'. # See man pages fstab(5), findfs(8), mount(8) and/or
> blkid(8) for more info. #
> # After editing this file, run 'systemctl daemon-reload' to update
> systemd # units generated from this file.
> #
> /dev/mapper/myLVM-fedoraMain /   ext4 
> defaults    1 1
> UUID=4a82a496-5316-4aca-9d27-8376197c8a6d /boot ext4    defaults
>   1 2 UUID=62BD-AFFC  /boot/efi   vfat 
> umask=0077,shortname=winnt 0 2
> /dev/mapper/myLVM-fedoraSwap none    swap 
> defaults    0 0
> [paul@localhost /]$
> 
> Reading the BLS, it seems the installer did not generated a valid
> entry /boot... not the valid type (vfat, EFS)... nor a valid UUID.
> 
> Oh well, the other way of saying it is the installer did not force me
> to generate a valid /boot partition.

Because it is under / in the lvm.  /boot does not have to be vfat, it
is /boot/efi that has to be vfat.  If you want a separate /boot for the
/ in the lvm you will have to create a separate partition for it during
install (custom), but it is *not* required, thus why you did not get a
prompt.

> I have:
> 
> [paul@localhost /]$ sudo parted /dev/sda -- print
> [sudo] Mot de passe de paul :
> Modèle : ATA ST500LM021-1KJ15 (scsi)
> Disque /dev/sda : 500GB
> Taille des secteurs (logiques/physiques) : 512B/4096B
> Table de partitions : gpt
> Drapeaux de disque :
> 
> Numéro  Début   Fin    Taille  Système de fichiers Nom
> Drapeaux
>   1  1049kB  268MB  267MB   ext4
>   2  269MB   479MB  210MB fat16
> démarrage, esp
>   3  479MB   701MB  222MB   fat16    EFI System 
> Partition  démarrage, esp
>   4  701MB   194GB 
> 193GB  lvm
> 
> [paul@localhost /]$ lsblk
> NAME MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
> sda    8:0    0 465,8G  0 disk
> ├─sda1 8:1    0   255M  0 part /boot
> ├─sda2 8:2    0   200M  0 part
> ├─sda3 8:3    0   212M  0 part /boot/efi
> └─sda4 8:4    0   180G  0 part
>    ├─myLVM-fedoraMain 253:0    0    80G  0 lvm  /
>    └─myLVM-fedoraSwap 253:1    0 9G  0 lvm  [SWAP]
> sr0   11:0    1   6,6G  0 rom
> /run/media/paul/090130_0113 [paul@localhost /]$

Fedora can't run without a 
/ partition, usually defaults to ext4, but many other fs types available

/boot, ext? usually, but I *think* can be *some* other types. Can be
under /, then no separate /boot needed.  /boot under the / partition
the default now.  
Is there not a /boot under the / in the lvm partition
after install?   Are there not entries in /boot/loader/entries/ of the
/boot in the lvm partition?

/boot/efi required to be vfat by the uefi standard
Is there no /boot/efi/EFI/fedora directory with entries corresponding
to the lvm partition?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: GNU IceCat Updates

2019-10-25 Thread stan via devel
On Sat, 26 Oct 2019 01:25:10 +0330
Alireza Hayati  wrote:

> Hello. I don't know if I'm right to ask this in this mailing list and
> if I should post this elsewhere, please forgive me bothering you.
> 
> I believe GNU IceCat updates are not shipped to Fedora repositories
> and we're still using 60.9 version. How can I ask for updates or just
> remind maintainers about it?
> 
> Thanks and sorry I bothered.

Asking here is OK, but you are more likely to get action if you open a
ticket asking for an update at
https://bugzilla.redhat.com
I checked koji, and it looks like it won't be in F31, but there are
several updated versions for rawhide, the future F32, the latest
being version 68.2.  I'm not sure why this is, perhaps there is a
feature it requires that won't arrive until F32.  The F32 keys
should be in F31 (there was some discussion about that happening), so
you could try downloading that package for your arch, and installing it
manually in F31 using
dnf -C update icecat
in the directory where the downloaded rpm is.
https://koji.fedoraproject.org/koji/buildinfo?buildID=1404006

You'll probably want to download the icecat-x11 package as well, and
install them together.
dnf -C update icecat icecat-x11
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Encrypted DNS in Fedora

2019-11-07 Thread stan via devel
On Thu, 7 Nov 2019 12:20:50 +0100
David Sommerseth  wrote:
 
> Please just watch the talk by Paul Vixie (who is one of the really
> big DNS gurus these days, even ISC BIND maintainer for quite some
> years).  And you will see that DoH is pointless when you have DoT.
> But DoT can also go much further than DoH will, when you consider the
> bigger part of the DNS query chain.

Thank you for pointing to that talk.  I found it very informative, as a
mostly ignorant user of DNS.  I run knot-resolver as a local caching DNS
server, pulling from, ironically, 1.1.1.1 via the router, and bypassing
my ISP's DNS servers.  Really opened my eyes.

For convenience, repeating it here.
https://www.youtube.com/watch?v=8SJorQ9Ufm8
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Something wrong with kernel-headers on fedora 30?

2019-11-07 Thread stan via devel
On Thu, 07 Nov 2019 13:31:23 -0500
"James Cassell"  wrote:

> On Thu, Nov 7, 2019, at 1:23 PM, Joseph D. Wagner wrote:
> > I am on kernel 5.3.8 but I still have 
> > kernel-headers-5.3.6-200.fc30.x86_64, which hasn't updated.
> > 
> > Is there a reason a new kernel-headers package hasn't been
> > generated for the newer versions?  Has it be superseded by another
> > package? If so, then dependencies on glibc-headers need to be fixed.
> >   
> 
> I've also been confused why kernel-headers is a separate SRPM...

I have nothing to do with this change, but it has been in place for at
least 6 months, and maybe almost a year.  If the kernel api doesn't
change with a new version, there is no need to create new header files.
I assume it was done to cut down on compile time, spec file complexity,
and installation size and time (resource churn).

Maybe someone else can clarify more authoritatively.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 32 System-Wide Change proposal: Drop Optical Media Release Criterion

2019-12-13 Thread stan via devel
On Fri, 13 Dec 2019 15:34:29 -0500
Mike Pinkerton  wrote:

> I would say that the Everything netinstall image is more useful than  
> the Workstation Live image:
> 
> *  netinstall is smaller
> *  netinstall can be used to install servers
> *  netinstall with updates repo enabled yields current system without
> doing the almost inevitable post-install (from non-netinstall image)  
> update

+1
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: orphaning bleachbit

2019-12-22 Thread stan via devel
On Sun, 19 May 2019 11:05:46 +0200
Silvia Sánchez  wrote:
 
> Yes, I know Python 2 will be soon removed, but I can't just let
> Bleachbit die.  It's too useful for that.
> Finding a sponsor seems to be the hard bit.  I've been looking for
> one for ages.

I have never used bleachbit, but I took a look at this program to see if
it would be a simple matter to convert it to python3.  It won't.  The
program uses the python2 and gtk2 module pygtk.  To convert it to
python3, the entire program would have to be rewritten to use gtk3 for
python3. gtk2 and gtk3 don't have the same api calls, so someone with
domain knowledge of gtk2 and gtk3 would have to do this (I don't have
that knowledge).

It looks like the command line version doesn't use the gtk module, only
the gui version.  So it probably would be fairly simple to convert the
program to a python3 version that only worked via the command line by
stripping all the gui code.  As long as the other modules it uses to
do its actual function are compatible with python3.  I didn't check that
deeply.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: orphaning bleachbit

2019-12-22 Thread stan via devel
On Sun, 22 Dec 2019 21:57:01 +0100
Alessio  wrote:

> As I wrote in another e-mail, upstream is working to port the program
> to python3. There is a related branch on github.

Apologies for the noise.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Intent to unretire ladspa-swh-plugins

2019-09-10 Thread stan via devel
On Tue, 10 Sep 2019 10:06:39 +0300
Vascom  wrote:

> It is not dependency for pulseeffects.

It's a dependency for pulseaudio-equalizer.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Intent to unretire ladspa-swh-plugins

2019-09-11 Thread stan via devel
On Tue, 10 Sep 2019 22:50:32 +0100
"Ryan Walklin"  wrote:

> I built pulseaudio-equalizer directly from github today and it
> doesn't seem to be able to parse it's own config files? Which is a
> pain because I'd prefer something lighter than pulseeffects for a
> simple EQ.

I built it on f31 from the f29 src.rpm in koji.  I had to build
the f29 src.rpm for ladspa-swh-plugins first, and install it, then
everything built fine, and works as usual.  But, pulseaudio-equalizer is
a python2 program, so has to be explicitly started as 
python2 pulseaudio-equalizer
in a terminal now that python2 is deprecated and replaced as default
python.

pulseaudio-equalizer
https://koji.fedoraproject.org/koji/buildinfo?buildID=1121317

ladspa-swh-plugins
https://koji.fedoraproject.org/koji/buildinfo?buildID=1112542

How to build rpm from src.rpm

http://fedoranews.org/hoyt/rpm/
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 31 System-Wide Change proposal (late): No i686 Repositories

2019-09-11 Thread stan via devel
On Tue, 10 Sep 2019 15:41:14 -0400
Przemek Klosowski via devel  wrote:

> Wait---so you are using 32-bit Gnome on a 64-bit capable CPU running 
> 64-bit kernel? If the reason is to save 200MB of memory, you should 
> definitely try one of the memory-thrifty desktop environments like
> xfce.
> 
> You also said that you're running a memory-hungry non-Fedora 
> application, which you presumably compile yourself.
> 
> Therefore, it looks to me that you should try a 64-bit Fedora with a 
> memory-saving xfce, install a 32-bit GCC toolchain and compile your
> app in 32-bit mode.

This, a perfectly adequate solution.  Or LXDE or mate or LXQt or fvwm
or just X with a simple xterm that he uses to start his custom app.  I
think cinnamon or KDE would be roughly the same size as Gnome, so
probably not viable alternatives to reduce memory usage.

He could also compile a custom kernel tuned to his hardware from the
x86_64 src.rpm, so it is smaller.  The spec file could even be set up to
build a 686 kernel from the source, if that is what he wants.  He would
have to fix any problems himself, though, to do that.  He could share
his results in copr for anyone wanting such a kernel.

https://fedoraproject.org/wiki/Building_a_custom_kernel

koji for the kernel
https://koji.fedoraproject.org/koji/packageinfo?packageID=8

___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Intent to unretire ladspa-swh-plugins

2019-09-12 Thread stan via devel
On Thu, 12 Sep 2019 13:32:45 +0100
"Ryan Walklin"  wrote:

> Thanks for the clarification, I hadn't realised the LV2 versions of
> the plugins weren't working. I've managed to get the F29 version as
> you suggest, and patched (attached) the scripts to force Python 2 so
> I can run the  GUI from the launcher. Upstream seems to have updated
> the GUI to Python 3, but as mentioned there are some bugs with their
> config parser currently.

Thanks for the patch.  I had caught the generic python reference in the
python file, but not the one in the gtk file.  Now, I can have normal
operation.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Change proposal discussion - Optimize SquashFS Size

2020-02-16 Thread stan via devel
On Sun, 16 Feb 2020 10:57:26 -0700
"John M. Harris Jr"  wrote:

> On Monday, February 10, 2020 10:53:45 AM MST Jared K. Smith wrote:
> > On Mon, Feb 10, 2020 at 3:30 AM John M. Harris Jr
> > 
> > 
> > wrote:  
> > > As for the software available, that's called choice. I know
> > > it's a relative unknown in the GNOME world, as one option is
> > > shoved down everyones' throat, but it's a key part of the KDE
> > > ideology, as well as GNU/
> > > Linux itself.  
> > 
> > John, it's obvious from your posts in this list that you're not a
> > fan of GNOME.  I'd kindly ask you to please refrain from attacking
> > GNOME, especially when the discussion at hand isn't about GNOME
> > itself.  It's not in keeping with the "be excellent to each other"
> > spirit that Fedora likes to keep in its mailing lists.
> > 
> > --
> > Jared Smith  
> 
> An observation is not an attack. What I said about GNOME is simply
> true, and is commonly considered a good thing by GNOME developers on
> this list. I just don't agree with that, and thus far there is no
> rule against disagreeing with the GNOME mindset.

No dog in this fight, so I'll probably get my just desserts for butting
in, but even if what you said about gnome is true, the way you stated
your viewpoint would be considered hostile and attacking by an unbiased
bystander.  Me, for instance.  There was no need to throw in the put
down of gnome.  You could have just said, "... called choice, one of
the basic principles of GNU / Linux.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Donate 1 minute of your time to test upgrades from F31 to F32

2020-03-04 Thread stan via devel
On Wed, 4 Mar 2020 16:24:58 +0100
Miroslav Suchý  wrote:

> But very likely you get some dependency problem now. In that case,
> please report it against the appropriate package. Or against
> fedora-obsolete-packages if that package should be removed in Fedora
> 32. Please check existing reports first: https://red.ht/2kuBDPu

I hit 124 issues.  I have attached the dnf output.  That's a lot of
bugzillas to open;  is there a better way?

Error: 
 Problem 1: problem with installed package 
python3-django-post_office-3.1.0-5.fc31.noarch
  - python3-django-post_office-3.1.0-5.fc31.noarch does not belong to a 
distupgrade repository
  - nothing provides python3.8dist(jsonfield) needed by 
python3-django-post_office-3.1.0-6.fc32.noarch
 Problem 2: package PyQt4-devel-4.12.3-7.fc31.x86_64 requires PyQt4(x86-64) = 
4.12.3-7.fc31, but none of the providers can be installed
  - PyQt4-4.12.3-7.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package PyQt4-devel-4.12.3-7.fc31.x86_64
 Problem 3: package audio-convert-mod-3.46.0b-18.fc31.noarch requires 
python2-mutagen, but none of the providers can be installed
  - python2-mutagen-1.42.0-5.fc31.noarch does not belong to a distupgrade 
repository
  - problem with installed package audio-convert-mod-3.46.0b-18.fc31.noarch
 Problem 4: package audit-viewer-0.7.4-17.fc31.x86_64 requires 
gnome-python2-gnome, but none of the providers can be installed
  - gnome-python2-gnome-2.28.1-27.fc31.x86_64 does not belong to a distupgrade 
repository
  - problem with installed package audit-viewer-0.7.4-17.fc31.x86_64
 Problem 5: package blenderplayer-1:2.79b-17.fc31.x86_64 requires 
libOpenImageIO.so.2.0()(64bit), but none of the providers can be installed
  - OpenImageIO-2.0.13-1.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package blenderplayer-1:2.79b-17.fc31.x86_64
 Problem 6: package blueproximity-1.2.5-20.fc29.noarch requires pybluez, but 
none of the providers can be installed
  - pybluez-0.22-14.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package blueproximity-1.2.5-20.fc29.noarch
 Problem 7: package bubbros-1.6.2-8.fc30.x86_64 requires pygame, but none of 
the providers can be installed
  - python2-pygame-1.9.6-1.fc31.x86_64 does not belong to a distupgrade 
repository
  - problem with installed package bubbros-1.6.2-8.fc30.x86_64
 Problem 8: package cegui-devel-doc-0.8.7-15.fc31.noarch requires cegui = 
0.8.7-15.fc31, but none of the providers can be installed
  - cegui-0.8.7-15.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package cegui-devel-doc-0.8.7-15.fc31.noarch
 Problem 9: package chameleon-0.2-15.fc29.noarch requires python2-ply, but none 
of the providers can be installed
  - python2-ply-3.11-3.fc31.noarch does not belong to a distupgrade repository
  - problem with installed package chameleon-0.2-15.fc29.noarch
 Problem 10: package comedilib-devel-0.11.0-2.fc31.x86_64 requires 
libcomedi.so.0()(64bit), but none of the providers can be installed
  - package comedilib-devel-0.11.0-2.fc31.x86_64 requires comedilib(x86-64) = 
0.11.0-2.fc31, but none of the providers can be installed
  - comedilib-0.11.0-2.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package comedilib-devel-0.11.0-2.fc31.x86_64
 Problem 11: package decibel-audio-player-1.08-20.fc31.noarch requires 
gnome-python2-gnomekeyring, but none of the providers can be installed
  - gnome-python2-gnomekeyring-2.32.0-38.fc31.x86_64 does not belong to a 
distupgrade repository
  - problem with installed package decibel-audio-player-1.08-20.fc31.noarch
 Problem 12: package exaile-4.0.0-3.fc31.noarch requires python2-dbus, but none 
of the providers can be installed
  - python2-dbus-1.2.8-6.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package exaile-4.0.0-3.fc31.noarch
 Problem 13: package expendable-0.0.10-10.fc29.noarch requires 
gnome-python2-gconf, but none of the providers can be installed
  - gnome-python2-gconf-2.28.1-27.fc31.x86_64 does not belong to a distupgrade 
repository
  - problem with installed package expendable-0.0.10-10.fc29.noarch
 Problem 14: package firmware-tools-2.1.15-5.fc29.noarch requires python2-rpm, 
but none of the providers can be installed
  - python2-rpm-4.15.1-1.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package firmware-tools-2.1.15-5.fc29.noarch
 Problem 15: package fwbackups-1.43.7-6.fc29.noarch requires python2-notify, 
but none of the providers can be installed
  - python2-notify-0.1.1-42.fc31.x86_64 does not belong to a distupgrade 
repository
  - problem with installed package fwbackups-1.43.7-6.fc29.noarch
 Problem 16: package fwfstab-0.04-0.16.rc1.fc28.noarch requires 
python2-pyparted, but none of the providers can be installed
  - python2-pyparted-1:3.11.2-2.fc31.x86_64 does not belong to a distupgrade 
repository

Re: Donate 1 minute of your time to test upgrades from F31 to F32

2020-03-04 Thread stan via devel
On Wed, 4 Mar 2020 09:22:12 -0700
stan via devel  wrote:

> On Wed, 4 Mar 2020 16:24:58 +0100
> Miroslav Suchý  wrote:
> 
> > But very likely you get some dependency problem now. In that case,
> > please report it against the appropriate package. Or against
> > fedora-obsolete-packages if that package should be removed in Fedora
> > 32. Please check existing reports first: https://red.ht/2kuBDPu
> 
> I hit 124 issues.  I have attached the dnf output.  That's a lot of
> bugzillas to open;  is there a better way?

When I looked at them, there were a lot of python2 problems.  Since it
is going away in F32, I just deleted them as problems.  That leaves
only 36 issues.  Much more manageable.  Attached.


Error: 
 Problem 1: problem with installed package 
python3-django-post_office-3.1.0-5.fc31.noarch
  - python3-django-post_office-3.1.0-5.fc31.noarch does not belong to a 
distupgrade repository
  - nothing provides python3.8dist(jsonfield) needed by 
python3-django-post_office-3.1.0-6.fc32.noarch
 Problem 2: package PyQt4-devel-4.12.3-7.fc31.x86_64 requires PyQt4(x86-64) = 
4.12.3-7.fc31, but none of the providers can be installed
  - PyQt4-4.12.3-7.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package PyQt4-devel-4.12.3-7.fc31.x86_64
 Problem 5: package blenderplayer-1:2.79b-17.fc31.x86_64 requires 
libOpenImageIO.so.2.0()(64bit), but none of the providers can be installed
  - OpenImageIO-2.0.13-1.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package blenderplayer-1:2.79b-17.fc31.x86_64
 Problem 6: package blueproximity-1.2.5-20.fc29.noarch requires pybluez, but 
none of the providers can be installed
  - pybluez-0.22-14.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package blueproximity-1.2.5-20.fc29.noarch
 Problem 8: package cegui-devel-doc-0.8.7-15.fc31.noarch requires cegui = 
0.8.7-15.fc31, but none of the providers can be installed
  - cegui-0.8.7-15.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package cegui-devel-doc-0.8.7-15.fc31.noarch
 Problem 10: package comedilib-devel-0.11.0-2.fc31.x86_64 requires 
libcomedi.so.0()(64bit), but none of the providers can be installed
  - package comedilib-devel-0.11.0-2.fc31.x86_64 requires comedilib(x86-64) = 
0.11.0-2.fc31, but none of the providers can be installed
  - comedilib-0.11.0-2.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package comedilib-devel-0.11.0-2.fc31.x86_64
 Problem 17: package gcc-python-plugin-c-api-0.17-4.fc31.x86_64 requires (gcc 
>= 9 with gcc < 10), but none of the providers can be installed
  - gcc-9.2.1-1.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package gcc-python-plugin-c-api-0.17-4.fc31.x86_64
 Problem 22: package gnomebaker-0.6.4-32.fc31.x86_64 requires 
libgstreamer-0.10.so.0()(64bit), but none of the providers can be installed
  - gstreamer-0.10.36-24.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package gnomebaker-0.6.4-32.fc31.x86_64
 Problem 23: package gstreamer-rtsp-0.10.8-25.fc31.x86_64 requires 
libgstrtp-0.10.so.0()(64bit), but none of the providers can be installed
  - package gstreamer-rtsp-0.10.8-25.fc31.x86_64 requires 
libgstrtsp-0.10.so.0()(64bit), but none of the providers can be installed
  - package gstreamer-rtsp-0.10.8-25.fc31.x86_64 requires 
libgstsdp-0.10.so.0()(64bit), but none of the providers can be installed
  - package gstreamer-rtsp-0.10.8-25.fc31.x86_64 requires 
libgstapp-0.10.so.0()(64bit), but none of the providers can be installed
  - gstreamer-plugins-base-0.10.36-24.fc31.x86_64 does not belong to a 
distupgrade repository
  - problem with installed package gstreamer-rtsp-0.10.8-25.fc31.x86_64
 Problem 24: package gxine-mozplugin-0.5.910-5.fc31.x86_64 requires gxine = 
0.5.910-5.fc31, but none of the providers can be installed
  - gxine-0.5.910-5.fc31.x86_64 does not belong to a distupgrade repository
  - problem with installed package gxine-mozplugin-0.5.910-5.fc31.x86_64
 Problem 25: package hibernate-search-5.5.4-2.fc26.noarch requires 
mvn(org.apache.lucene:lucene-facet), but none of the providers can be installed
  - lucene-facet-7.7.0-2.fc31.noarch does not belong to a distupgrade repository
  - problem with installed package hibernate-search-5.5.4-2.fc26.noarch
 Problem 26: package k3d-devel-0.8.0.6-24.fc31.x86_64 requires 
libk3d-solar-solpos.so.1()(64bit), but none of the providers can be installed
  - package k3d-devel-0.8.0.6-24.fc31.x86_64 requires 
libk3dsdk-expression.so.1()(64bit), but none of the providers can be installed
  - package k3d-devel-0.8.0.6-24.fc31.x86_64 requires 
libk3dsdk-half.so.1()(64bit), but none of the providers can be installed
  - package k3d-devel-0.8.0.6-24.fc31.x86_64 requires 
libk3dsdk-ngui.so.1()(64bit), but none of the providers can be i

Re: Bugzilla signal/noise ratio

2020-03-23 Thread stan via devel
On Mon, 23 Mar 2020 10:13:05 -0700
Kevin Fenzi  wrote:

> On Mon, Mar 23, 2020 at 03:35:11PM +0100, Dominik 'Rathann'
> Mierzejewski wrote:
> > On Monday, 23 March 2020 at 12:10, Daniel Pocock wrote:
> > [...]  
> > > The bottom line is that these tools need to support our
> > > workflows, not try to shoehorn us into a particular way of
> > > working.  
them to suit your workflow.
> > 
> > And I do sympathize as I didn't like them, either. That's why I
> > spent maybe 15 minutes deleting all default notifications and
> > adding only those I wanted, e.g. new version notifications, bodhi
> > update status changes and koschei build status changes. The link to
> > the configuration interface is in each notification e-mail.  
> 
> So, indeed you can customize these notifications, which perhaps not
> all maintainers are aware of.

I have a suggestion that probably would require a lot of work to set
up, but would solve this issue.

All the notification emails come with a reply-to address.  If a
packager sends a reply to a notification, an application receives the
email at that address, and cancels the sending of that type of
notification for that person (that email address). So, as a packager
goes about their daily work, if they don't want to receive a type of
notification, they just hit reply, and they never receive that type of
notification again. If they want to receive it in the future after
cancelling it, however, they will have to manually configure that.

The work is in writing an application to receive the emails and do the
cancellation of future emails.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Enable dmarc mitigations

2019-05-05 Thread stan via devel
On Sun, 5 May 2019 14:19:59 +0200
Vitaly Zaitsev via devel  wrote:

> Hello, qrsBRWN.
> 
> Sun, 05 May 2019 10:57:06 +0200 you wrote:
> 
> > Exactly what platform did you have in mind?  
> 
> Discourse[1] for example. GTK developers already testing it[2] as
> mailing lists replacement.
> 
> 1: https://github.com/discourse/discourse
> 2: https://blog.gtk.org/2019/03/05/testing-discourse-for-gtk/

To each their own, of course, but there was a long discussion of
discourse here a while ago.  I tried it out, but it was like a bad
version of a mailing list.  It sent me a mail informing me that there
were messages to read.  Then I had to go there and read the messages on
the web, using their interface.  

So much better than just getting the message directly into my chosen
mail client!  (/sarcasm)  It probably works well for those who are
addicted to the web, and check their phone every few minutes; it
fits with their work style, plus they get affirmation.  But I don't
fit that template, so I wasn't enamored.

If forced to, I could probably use it, but I prefer the push model
to the pull model.  That is, it isn't an improvement for me, it doesn't
buy me anything I want.


___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Upgrade to F30 gone wrong

2019-05-05 Thread stan via devel
On Sun, 05 May 2019 12:45:00 -0400
Sam Varshavchik  wrote:

> It's been sitting in the grub menu ever since.
> 
> I have a /boot/vmlinuz-0-rescue-f0fe67c2a80d43d2947358968ab5277e with
> a 2013 timestamp. No idea which kernel it is. It appears to be immune
> to installonly_limit.

From an old message thread, here are two ways to update to a current
rescue kernel.

> What's the proper way to get an appropriate F27 rescue kernel instead
> of an F25 rescue kernel ?  

"""
Delete (or move out of "/boot" the rescue kernel and initramfs.

Run

/etc/kernel/postinst.d/51-dracut-rescue-postinst.sh f27_kern_ver
/boot/f27_kern_img
"""

"""
You delete the rescue initramfs from /boot.  Then the next time you 
install a new kernel, it will create a new one.  Possibly reinstalling 
the existing kernel would work as well.
"""
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Summary/Minutes from today's FESCo Meeting (2019-05-17)

2019-05-17 Thread stan via devel
On Fri, 17 May 2019 22:56:37 +0200
Omar Diaa  wrote:

> PLEASE I DO NOT WANT THESE MAILS BLOCK ME FEDORA I AM NOT IN GSoC
> ANYMORE, I UNSUBSCRIBEd +10 TIMES PLEASE UNSUBSCRIBE MY GMAIL FROM
> THIS  PLEASE PLEASE PLEASE

To unsubscribe send an email to devel-le...@lists.fedoraproject.org
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 31 System-Wide Change proposal: Disable Root Password Login in SSH

2019-05-23 Thread stan via devel
On Mon, 20 May 2019 14:33:57 -0400
Przemek Klosowski via devel  wrote:
 
> Right, but it's just a stepping stone to a world with universal 
> authentication, and granular authorization based on credentials from 
> that universal authentication.

I hope that world never arrives.  That would be absolutely terrible for
privacy.  And if, heaven forbid, the universal authentication became
compromised, it would destroy an individual.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 30 Not Working on Omen with nVidia

2019-05-28 Thread stan via devel
On Tue, 28 May 2019 18:09:50 -
"Personalized Marketing Inc"  wrote:

> Hello, I have tried to install Fedora 28, 29, and 30 on my HP Omen
> with nVidia Graphics. Fedora 28 and 29 had issues with the Keyboard,
> Fedora 30 tested just fine from the USB drive however after
> installing it, the system would not go past the login screen. No
> functions on the keyboard or mouse worked either. 
> 
> I loved Fedora 26 and would love to use Fedora 30 over Windows 10. Is
> there a patch that needs installed while using the trial USB drive?
> Any thoughts or driver programs that I need to install with it? 
> 
> I know that other Linux Editions have nVidia Graphics included in the
> IOS and wondered if Fedora had similar?

Fedora doesn't package in the main project any software that has a
non-free license.  There are other repositories that do package such
software, the primary one being rpmfusion.org.  They package the binary
blob from nvidia, and a utility called akmod that builds it into a
module for the linux kernel.  You can find more information here:

https://rpmfusion.org/

In particular, it is possible to enable those repositories so that
doing an update of Fedora pulls in any updates of their packages.

https://rpmfusion.org/Configuration

I'm not sure that this will fix your issue.  You are actually asking on
the wrong list, this is really a users issue, so you should post it on
one of the following with a detailed description:

The users mailing list,
Community support for Fedora users 

or the web based help interface,
https://ask.fedoraproject.org/c/english

These are independent of each other.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Procedure to get keytable included in official console and X and wayland keytables.

2019-06-09 Thread stan via devel
I use a custom keymapping that I developed to save my hands, and
because it is very efficient.  It's strength is that the most used keys
are under the strongest fingers, and that for my typing about 80% of
what I type is on the home row.  

The problem is that whenever I have issues with my system, it reverts
to qwerty, and I have to hunt and peck to do things.  If it was
official, this wouldn't be a problem, because I could just select it,
the same as one can select dvorak or colemak.  Unlike those, I really
rearranged the keys for efficiency, and there are only 2 or 3 keys the
same as qwerty.  I used to use qwerty as a touch typist, and I suppose
I could learn to switch back and forth, but qwerty is just so clumsy,
and my hands don't like it.

Does anyone know how I would go about getting my keytable, which I
call uneaf after the left home row, included? Is there an official
procedure, or is it just a submission with a request to a programmer
somewhere.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Procedure to get keytable included in official console and X and wayland keytables.

2019-06-10 Thread stan via devel
On Mon, 10 Jun 2019 10:22:02 +0200
Alexander Ploumistos  wrote:

> Over the years I have resorted to different hacks to have my extra
> mouse and keyboard keys mapped to either other keys or key
> combinations, especially on laptops. With the changes on the stack,
> I've had to abandon most of them and for the last few releases, I've
> been using evdevremapkeys[0] and its fork[1], their main difference
> being N:N key mappings. It loads a yaml file with your mappings and
> remaps input events on the fly. I haven't been able to run it as a
> daemon, so I just launch a terminal at the beginning of my session and
> run it from there. It would be great if our DEs had a gui tool that
> allowed the same functionality, but for now this is adequate.
> 
> 
> 0. https://github.com/philipl/evdevremapkeys
> 1. https://github.com/pronobis/evdevremapkeys

Thanks.

This is a great idea, but not really needed by me, except perhaps with
wayland, that doesn't do custom keytables.  Once the system is running,
I just put my console keymap in /usr/lib/kbd/keymaps/xkb/, and then if
it doesn't pick up the kernel command option or the /etc/default
change, I can run loadkeys in an /etc/rc.d/rc.local.

For X, I just put the X keymapping in /usr/share/X11/xkb/symbols/ with
an .Xkbmap pointing to it in my home directory.  The location changes
from release to release, sometimes it has to be a stanza in the us
keytable in the symbols directory.

But, none of these are available with the official release kernels, so
do not help when things go south (a grub prompt, install, etc.)  The
daemon above suffers the same limitations.  It is a solution to a
problem I already have a workaround for after the system is up and
running.

The ultimate solution is to buy a programmable keyboard, but even the
ergonomic programmable keyboards I have looked at have the same brain
dead left hand keys sloping off to the north west instead of the north
east like they should if they were to be as ergonomic as the right hand
keys.  And, they are pricey [1] to buy on spec and then find that they
are terrible to use.

1. I understand why; it is expensive to build a mold, and custom
electronics boards, and they don't have the mass demand to spread that
cost around.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Procedure to get keytable included in official console and X and wayland keytables.

2019-06-10 Thread stan via devel
On Mon, 10 Jun 2019 07:24:21 +
Zbigniew Jędrzejewski-Szmek  wrote:

> Keyboard mappings are managed by the kbd project [1, 2],
> but actual non-legacy keymaps are converted from xkeyboard mappings
> [3, 4]. (The idea is that it is best if the same mapping is available
> in the graphical environment and on the console).
> If you want to add a new mapping, I'd talk with the xkeyboard
> upstream.
> 
> [1] https://github.com/legionus/kbd
> [2] https://src.fedoraproject.org/rpms/kbd
> [3] http://www.freedesktop.org/wiki/Software/XKeyboardConfig
> [4] https://src.fedoraproject.org/rpms/xkeyboard-config

Thanks a lot.  I suspect there are some hurdles, but this gets me
started.  I have both console and X keymappings, and the console keymap
is a converted X keymap that was built at the time they became
related.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: adding speech installation to fedora network installation image

2019-06-26 Thread stan via devel
On Wed, 26 Jun 2019 14:26:14 +0200
Mmobilea  wrote:

> Hello,
> I’m new blind user of fedora 30. I couldn’t find where to post this
> request. I have small pendrive, and I must use network installer.
> Howewer orca or speakup doesn’t run on it. Could you add speech to
> the installer? Sorry for my English, i’m from Poland
 
Nothing wrong with your English.  Orca requires a desktop (graphical
user interface) to run, and the server netinstall image does not have a
desktop. And, from what I can find on the web, the Fedora kernels do
not include speakup because it is not considered part of the stable
kernel tree, so it would be difficult to add speech support.

I suggest you try the network installer for fedora workstation.  It
uses gnome, which has the best linux accessibility interfaces, and is
the same size as the server netinstall image.  Because of the size
restriction, the accessibility interfaces might be limited, though.

https://download.fedoraproject.org/pub/fedora/linux/releases/30/Workstation/x86_64/iso/Fedora-Workstation-netinst-x86_64-30-1.2.iso
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: adding speech installation to fedora network installation image

2019-06-27 Thread stan via devel
On Thu, 27 Jun 2019 10:26:23 +0200
Mmobilea  wrote:

> But I have tried fedora workstation net inst image, not server image.
> I pressed alt+super+s, and orca doesn’t run on net installer. Next, I
> thought, that I must to have wired internet connection. I created a
> USB hodspot with my mobile phone, and it wasn’t any speech.

I'm not familiar enough with orca and gnome to say if this is a bug or
not.  When I looked for bugs, I found a bug from February that stated 

WARNING: Could not parse desktop file orca-autostart.desktop or it
references a not found TryExec binary

I don't know if that would cause the behavior you are seeing.  It might
be that there is not enough space on the netinstall image to support
orca, and that it is only supported on the full image.  If you like, I
can open a bugzilla about this for you, to see if your experience is
expected behavior because of space limitations, or a bug.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 31 System-Wide Change proposal: Python means Python3

2019-06-27 Thread stan via devel
On Thu, 27 Jun 2019 12:32:26 +0200
Miro Hrončok  wrote:

> On 26. 06. 19 20:07, Adam Williamson wrote:
> > On Wed, 2019-06-26 at 13:57 -0400, Ben Cotton wrote:  
> >> https://fedoraproject.org/wiki/Changes/Python_means_Python3
> >>
> >> == Summary ==
> >> In package and command names, "Python" will mean "Python 3".
> >>
> >> Users installing and running Python or Python packages without
> >> specifying a version will get Python 3.
> >>
> >> Running python will run python3.  
> > 
> > Oh, man. I thought we'd decided against this in the past?  
> 
> We did. Circumstances changed.
> 
> > I'm worried
> > about the cost/benefit ratio on such a change.  
> 
> What worries you do most about "the cost"?

Wouldn't this mean that when python4 is released, there is a replay of
the python2 -> python3 transition experience?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 31 System-Wide Change proposal: Python means Python3

2019-06-27 Thread stan via devel
On Thu, 27 Jun 2019 16:09:07 +0200
Miro Hrončok  wrote:

> No, we keep everything called python3, we just provide the "python"
> name. With python2 -> python3, one of the problems was that
> everything was just called "python" before. We are not proposing to
> start doing that again. All packages still need to eb called
> python3-foo, ale package still need to use python3-foo dependencies
> and all packages still need to invoke "python3" explicitly.
> 
> If Python 4 ever happens, it's going to be a problem one way or
> another, this doesn't make it nay more complicated.

Thanks for the explanation.
 
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: adding speech installation to fedora network installation image

2019-06-28 Thread stan via devel
On Thu, 27 Jun 2019 22:01:23 +0200
Mmobilea  wrote:

> OK. If you can, open a new bug.

Because of the response of mcatanzaro,

Only the live image runs in a GNOME session where GNOME session 
services like orca are expected to be working. The netinstall image 
only runs anaconda, it doesn't run GNOME at all.

it doesn't make sense to open a bug.  There is no gnome, and because
adding gnome would make the image too large, it will not be added.
Netinstall is a minimal image meant to be used from virtual consoles
with no graphical support.

Your only alternative for accessibility is the workstation live image.

https://download.fedoraproject.org/pub/fedora/linux/releases/30/Workstation/x86_64/iso/Fedora-Workstation-Live-x86_64-30-1.2.iso

This is approximately 1.8GB in size, so about 3 times as large as the
netinstall images.  Is that too large for your pen drive?  It seems
unlikely, unless it is very old.

If you are running windows or mac, you will need the fedora media
writer, from one of the links on this page at the upper left.

https://getfedora.org/en/workstation/download/

This page gives alternatives for creating a bootable live image from
linux (fedora in particular).

https://docs.fedoraproject.org/en-US/quick-docs/creating-and-using-a-live-installation-image/index.html
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: New machine - no virtual terminals

2023-03-21 Thread stan via devel
On Tue, 21 Mar 2023 10:25:36 -0400
"Steven A. Falco"  wrote:

> I recently put a new machine together using an AMD Radeon PRO W6600
> Graphics Card.  CPU is a threadripper pro.  Motherboard is an ASUS
> Pro WS WRX80E-SAGE SE WIFI II sWRX8 E-ATX.  Software is the KDE spin
> of Fedora 37.
> 
> It mostly works perfectly, but if I try to access a virtual terminal
> with Ctrl-Alt-F3 my monitors go to sleep, so apparently the video
> sync shuts off.  Typing Ctrl-Alt-F2 brings me back to my KDE session.
> 
> Also Ctrl-Alt-F1 shows me the text that occurred during boot - I have
> rhgb and quiet disabled in my grub configuration.  So Ctrl-Alt-F1 and
> F2 work, but F3 and above do not.
> 
> I don't see anything in /var/log/messages that would give me a hint
> as to where to start with debugging this.  I've tried running SDDM in
> wayland and in x11 modes, but that doesn't make a difference.
> 
> I'd like to write a bug for this, but I'm not sure how to gather
> enough data for a meaningful report.  Are there some kernel options I
> can try, or other ways to get more data?

Is the number of consoles in /etc/systemd/logind.conf set to more than
2?  The default is 6, and so systemd should set up 6 virtual consoles
for use.  They usually don't actuate until visited, but they should
still be available to a Ctrl-Alt-[3-6].

I boot to multiuser and start X from there, and I always get virtual
consoles.  If you do a 
journalctl -r
and then a 
/vcon
do you see lines like

fedora dracut[128053]: -rwxr-xr-x   1 root root20528 Mar 13 13:01 
usr/lib/systemd/systemd-vconsole-setup
fedora dracut[128053]: -rw-r--r--   1 root root  650 Mar 13 12:59 
usr/lib/systemd/system/systemd-vconsole-setup.service

If the setup isn't occurring it would be a systemd bug.  But check if
systemd is reporting errors when it tries to set the vconsoles up.  And
try booting into multiuser by hitting a key during boot, and putting a
3 at the end of the boot line options to see if that sets them up.

Fedora recently dropped support from the kernel for the old fbcon and
replaced it with the new simple version.  Might be related if it wasn't
taken into account.  Or KDE might have decided virtual consoles were
obsolete and dropped support for them (unlikely).

Anyway some things to try, and a confirmation that it does work.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [heads-up] dracut-059 comming to F38 and F37

2023-03-21 Thread stan via devel
On Tue, 21 Mar 2023 18:39:26 +0100
Pavel Valena  wrote:

> I'm preparing an update for F38 and F37 for dracut. There might be
> some upstream breaking-changes for non-standard setups, I expect the
> builds to be identical to Fedora Rawhide.
> 
>  - F37 Koji scratch-build:
> https://koji.fedoraproject.org/koji/taskinfo?taskID=98976054

I'm on F37.  I downloaded and installed the rpms from the above link,
and then rebuilt the initramfs for an older kernel.  It booted
the system successfully.  So, one successful trial.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: New machine - no virtual terminals

2023-03-22 Thread stan via devel
On Tue, 21 Mar 2023 17:14:44 -0400
"Steven A. Falco"  wrote:

> I think I'm finally getting somewhere with this problem.
> 
> My motherboard has a built-in VGA interface, which shows up as
> "astdrmfb" on fb0.  My AMD video card is "amdgpudrmfb" on fb1.
> 
> For some reason, the kernel uses fb1 for the graphical desktop, but
> when I type Ctrl-Alt-F3 it switches to the VGA interface on fb0.
> 
> So my question is now probably simpler - I need to find a way to tell
> the kernel to ignore fb0 completely, and just use fb1 for everything.
> 
> I'll do some searching to see if I can figure that out, but if
> someone knows off the top of their head how to force a framebuffer to
> be ignored, I'd appreciate it.

Is there a way to turn off the fb0 in the BIOS?  Hit F2 or Del to get
into the bios while booting.  Yours might be different, but I think
these are pretty standard.

Check the frame buffer configs in your kernel, /boot/config*.

Mine are 
CONFIG_SYSFB=y
CONFIG_SYSFB_SIMPLEFB=y
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=200
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB=y
CONFIG_FB_DDC=m
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
CONFIG_FB_SYS_FOPS=m
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_BACKLIGHT=m
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_VGA16=m
CONFIG_FB_VESA=y
CONFIG_FB_RADEON=m
CONFIG_FB_RADEON_I2C=y
CONFIG_FB_RADEON_BACKLIGHT=y
CONFIG_FB_SIMPLE=m
but I run a custom kernel, so yours could be significantly different.
You could compare a grep of the f38 kernel config that works with a
grep of the f37 kernel config that doesn't to see if there is a
difference in their framebuffer configuration.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: New machine - no virtual terminals

2023-03-23 Thread stan via devel
On Wed, 22 Mar 2023 12:12:42 -0400
"Steven A. Falco"  wrote:
 
> I read through the motherboard manual and while I don't see a way to
> turn off the on-board VGA hardware from the BIOS, there is a physical
> switch on the motherboard to disable it completely.
> 
> I tried that, and it worked.  Now the kernel only sees my AMD video
> card and assigns it to fb0.  And all the virtual consoles now work
> properly.
> 
> Thanks again for your help, Stan.  I appreciate it!

You're welcome.  And I learned something from Dominik's response.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: default bash history (non)preservation

2023-04-11 Thread stan via devel
On Tue, 11 Apr 2023 10:48:11 -0400
"Chris Murphy"  wrote:

> Hi,
> 
> For a long time I've noticed lost history from multiple Terminal
> tab/windows. It seems like the last tab or window to close is the
> history that gets written to .bash_history, and everything else is
> just lost.
> 
> Somehow I found this:
> https://web.archive.org/web/20090815205011/http://www.cuberick.com/2008/11/update-bash-history-in-realtime.html
> 
> I've implemented the suggested two line change to .bash_profile:
> 
> # User specific environment and startup programs
> shopt -s histappend
> PROMPT_COMMAND="history -a;$PROMPT_COMMAND"
> 
> The resulting behavior appears to be shells still have their own
> unique histories while active. But once closed, their histories
> become merged (interlaced based on the time they were issued?) and
> available when a new shell is created.
> 
> I think this would be a pretty cool yet subtle Fedora 39 feature.
> However, 
> 
> a) I'm uncertain exactly where this belongs as a default, .bashrc or
> .bash_profile or some parent file that's copied to create these files
> (for new users); 

I like option 3 if it is going to be automatic.

> b) if this is (still) an optimal way to go about it;

Providing it without effort or awareness for users seems like the way
to go.

> c) what are the possible negative side effects?

I can't think of any.  What good is a history that doesn't include all
the commands that have been used?  Well, complex commands.  I've turned
off some common commands, like ls, because all they are is clutter.  I
also turned off saving duplicate commands, though that only works if
they are contiguous in history.  I think that would be a downside to
this if people weren't used to all the clutter in their history.
Though, with Ctrl-R, it really doesn't matter.

I actually wrote a little python program to load history, and eliminate
all duplicate commands in history while preserving order of the
commands.  So, the last duplicate command is always the one saved.
> 
> Any thoughts?

I have the following defined in .bashrc:

# this logs the history explicitly before exiting a shell
hx ()
{
  history -a;
  exit;
}

It means that I have to exit using the command hx when closing a
terminal.  Not as elegant as an automatic process you are suggesting,
but it seems to work.  I'll have to try the process you are
suggesting, (from the link you gave), to see if it results in the
same effect.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: default bash history (non)preservation

2023-04-12 Thread stan via devel
On Wed, 12 Apr 2023 10:39:44 +0200
Vít Ondruch  wrote:

> Dne 11. 04. 23 v 18:02 stan via devel napsal(a):
> >
> > I have the following defined in .bashrc:
> >
> > # this logs the history explicitly before exiting a shell
> > hx ()
> > {
> >history -a;
> >exit;
> > }
> >
> > It means that I have to exit using the command hx when closing a
> > terminal.  
> 
> 
> What about using `~/.bash_logout` to avoid the need of `hx`?

I had to do some research to even understand what you were asking.
With that caveat, it seems that a .bash_logout only executes on login
shells.  So, it would not save the history of terminals in X when they
were closed.  Am I misunderstanding?

I did find something that might work in that case, at this link.

https://superuser.com/questions/410525/explain-why-bash-logout-wont-run-commands/410534#410534

"""
~/.bash_logout is only run if it you explicitly exit the shell with
exit or logout, or by typing Control-D to enter an end-of-file at the
command prompt. If you close the terminal emulator, processes are sent
SIGHUP, and bash doesn’t run ~/.bash_logout in that case.

If you want to perform work any time bash exits (and whether it’s a
login shell or not), use trap foo EXIT. The most convenient way to do
this is to put your code in a shell function, e.g.,:

print_goodbye () { echo Goodbye; }
trap print_goodbye EXIT
"""

Typing exit or logout is more keystrokes than hx, so .bash_logout is not
really compelling. The trap looks promising, I assume that I would put 
save_history_on_exit () {history -a;}
trap save_history_on_exit EXIT
in .bashrc.  Basically, running a .bash_logout in a different way.

Thanks.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: default bash history (non)preservation

2023-04-13 Thread stan via devel
On Thu, 13 Apr 2023 12:48:01 +0200
Vít Ondruch  wrote:

> Dne 12. 04. 23 v 17:40 stan via devel napsal(a):
> > On Wed, 12 Apr 2023 10:39:44 +0200
> > Vít Ondruch  wrote:
> >  
> >> What about using `~/.bash_logout` to avoid the need of `hx`?  
> > I had to do some research to even understand what you were asking.  
> 
> 
> Sorry, I am not expert in this field. The discussion just caught my 
> attention and that was result of my very brief research.

What I meant is that I wasn't aware of .bash_logout until you asked
about it.  So I learned by researching it, and improved what I was
doing.

> > Typing exit or logout is more keystrokes than hx, so .bash_logout
> > is not really compelling.  
> 
> 
> Ctrl+D is what I am using all the time. That is probably less
> keystrokes then `hx`, because you save the pressing the Enter ;)

You're right.  And it flows off the fingers nicely.  I ended up adding
the trap command to my .bashrc, so now it doesn't matter how I close
the session, it will always be appended to history.  I currently have
the PROMPT_COMMAND altered to add history -a too, so I have belt and
suspenders.  I haven't really noticed any issues with the appends to
.bash_history every time a new prompt happens, so might leave it.  On
the other hand, it isn't really necessary anymore.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: It’s time to transform the Fedora devel list into something new

2023-04-25 Thread stan via devel
On Mon, 24 Apr 2023 19:47:07 +0200
Kamil Paral  wrote:

> On Thu, Apr 20, 2023 at 11:21 PM Matthew Miller
>  wrote:
> 
> > I propose that we transition devel list, and eventually most of our
> > mailing lists, to Fedora Discussion (our Discourse-powered forum).

> project is going to die eventually. Mailing lists are a big hurdle
> for newcomers. Young people are not used to it (who still uses
> mailing lists, in read-write mode, except for OSS communities?), the
> lists are difficult to set up, the user interfaces are bad, there are
> many peculiarities to be aware of (top-posting, etc).

I think an analogy would be that mailing lists are like vim or emacs,
and web forums are like nano.  To someone who is used to using a power
editor, using nano is irritating.  Sure they can accomplish the task,
but it is like slogging through mud instead of running on a track.
If all you've ever known is slogging through mud, of course, that
is going to be acceptable, and using a power editor is going to be like
slogging through mud (because of the learning curve).

I think that is why there are so many complaints about the switch from
existing mail list users.  They have a system in place that allows them
to run, and really don't want to slog through mud instead.

The change to a forum doesn't really benefit them.  The benefits mainly
accrue to the maintainers and managers of the forums, not the users.  I
suppose it could be argued that if the change makes the project more
efficient, more viable, they are gaining a benefit, but what assurances
are there that the benefit will happen?  i.e. what evidence is there
that the benefit they are slogging through mud for will actually occur?

I've read all the responses to the announcement, and I don't think I've
seen an architectural analysis.  
What communication requirements does a project like Fedora need?
What is the theoretical optimal process for each requirement?
Is there an existing optimal tool for each of those optimal
processes?
Are there sub optimal tools that can be used for multiple requirements?
Is the loss of effectiveness / efficiency of using a sub optimal
tool worth the reduction in the number of tools?

This is trying to answer the question, "If there was a magic wand we
could wave, and perfectly satisfy the communication needs of the
fedora project, what would that look like?"  And, "How would we get
from here to there?"
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Is texlive-was-9 retired for Fedora 38?

2023-04-25 Thread stan via devel
On Tue, 25 Apr 2023 17:30:28 + (UTC)
Globe Trotter via devel  wrote:

> Is texlive-was-9 retired for Fedora 38? My package did not upgrade
> from F37 and so I was wondering about it.

As near as I can tell, there is no package in fedora called
texlive-was-9.

There is a package 
texlive-wasy-10:svn53533-65.fc38.noarch.rpm
that contains
/usr/share/texlive/texmf-dist/fonts/source/public/wasy/wasy9.mf
in F38.
https://koji.fedoraproject.org/koji/rpminfo?rpmID=33307983

Is that what you mean?  It seems to be there in F38.  Is it possible
that it has conflicts, and so wasn't updated?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: It’s time to transform the Fedora devel list into something new

2023-04-27 Thread stan via devel
On Thu, 27 Apr 2023 07:01:15 -0400
Stephen Smoogen  wrote:

> I am NOT a proponent of this proposal. I don't want to go to
> Discourse. Web interfaces like that cause me cognitive pain and
> grumpiness to use longer than a few minutes. As such I know my
> involvement with Fedora will go down further.
> 
> If it comes across that I am for this change, it is because I am
> tired and frustrated. The mailman system has been running on inertia
> since at least February 2018, when the last software updates to the
> mailman software were done. Over the last 5 years, the system has
> mostly run, but in the last year has increasingly had longer and
> longer outages. My tiredness comes from spending most of my
> Thanksgiving and Winter breaks trying to find reasons and then doing
> whatever cave-man hacks I could to fix it without breaking mail
> altogether. My frustration and anger comes from the fact that I spent
> most of the last 5 years assuming that it was somebody else's problem
> and they would take care of it so I could focus on keeping other
> things running.

I know almost nothing about mail list infrastructure.

Are there other open source linux distributions using the latest
mailman?  Could their process be copied and put in as a drop in
replacement for fedora with a little tweaking?  How do they deal with
the spam problem?  I'm not asking you to do it, but you appear to be a
domain expert, so you can probably answer these questions off the top
of your head.

Some more questions.  What language is mailman written in?  What are
the major incompatibilities of the new version with the older version?
Are there more modern alternatives that are easier to set up and
maintain?

Crazy ideas.

Would it cost less resources to set up a private usenet server for
messages than to continue maintaining the mailman application?  Is
it even possible?  Could it be outsourced to one of the big usenet
providers? I doubt it would be even a dent in their capacity since they
maintain 10 years of binary usenet posts.  Could such a usenet
server be kept in sync with Discourse, and allow posts to the server to
be propagated to Discourse?  I'm thinking of some kind of automated web
application that takes each post on the usenet server and logs in to
Discourse and posts it to the appropriate place.  A user would
configure it with their credentials once, and forget it.  Sort of the
way youtube-downloader works, except opposite.  In the other direction,
there would be a web scraper that regularly scrapes posts on fedora
discourse and reposts them to the usenet server.  Again, the user
enters their credentials once, and done.

Ignore this if it seems too woo woo or irrelevant or resource intense.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: fedora 38 - in witch timespan a net iso is build..??

2023-05-10 Thread stan via devel
On Tue, 09 May 2023 12:10:49 -
André verwijs  wrote:

> installed Fedora with "Fedora-Everything-netinst-x86_64-38-1.6.iso"
> but hat small issues. (firewall packages) In witch timespan will a
> new iso be build..?? At least use the latest updates for  this (or
> any other) installation iso... 

As I understand it, once the final isos have been released, they are
permanent.  They don't get rebuilt because it would require testing to
ensure that they pass all the QA tests, and that testing is being
conducted on the next release in rawhide instead.  So, to answer your
question, the new iso is built at the release of the next version of
fedora (in approximately 6 months).

Once the iso packages are installed, it is possible to access the
fedora repositories and get packages via the package manager of choice.
In a terminal, with an internet connection active, type
dnf update
to see the available updates.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: more distinct default bash prompt?

2023-05-25 Thread stan via devel
On Wed, 24 May 2023 15:05:07 -0400
"Chris Murphy"  wrote:
 
> Green is an efficient color choice. It tends to appear to the
> brightest. Part of this relates to the luminosity function of human
> vision which has a peak wavelength that happens to be the same as the
> medium wavelength photo receptor (i.e. green). So given the same
> amount of  radiant energy emitted across the visible spectrum, green
> will appear to be the brightest.
> 
> Light purple is OK, Blue, indigo, or yellow tends to be harder to to
> detect complex shapes (like letters and numbers) but I'm not sure of
> the reason(s).

I'm attaching an image of a prompt with yellow, my default, and a
prompt with green using Jens' prompt suggestion.  I find the green too
bright, I would prefer it with a little more black in it.  But I would
just override it anyway.

A long time ago I had a monochrome crt that defaulted to a sort of burnt
orange which also worked fine.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: LibreOffice packages

2023-06-05 Thread stan via devel
On Sat, 03 Jun 2023 08:45:28 -0500
Michael Catanzaro  wrote:

> I'm not going to defend callous layoffs during a time when Red Hat is 
> earning big profits. And I have no clue what our corporate overloads 

It is a fact of corporate life that if you are a manager and want to be
promoted, cutting head count / costs, doing more with less resources, is
a great way to move up the ladder.  It shows the people above you that
you have the right attitude.  No one makes it to the executive level
without a certain ruthlessness.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Using AI/Machine Learning with rpmautospec?

2023-06-10 Thread stan via devel
On Fri, 09 Jun 2023 21:22:44 -
Reon Beon via devel  wrote:

> It it atomaticly add/update the spec file when more files are added
> in the right places in the spec file?

So, are you suggesting that a neural network be trained on all existing
spec files in fedora, and then used to automatically correct new spec
files?  That seems like a lot of work, and is the theoretical concept
even sound?  That is, is there too much variation in spec files, even
correct spec files, because of the underlying variation in material
being packaged, to allow a neural network to be trained and function
correctly?

Sounds like a great summer intern project, or the seed for a PhD thesis.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: SecureBoot certificates

2023-06-14 Thread stan via devel
On Tue, 13 Jun 2023 11:05:53 -0400
"Chris Murphy"  wrote:

> OK I tried this again and discover shim is signed twice.

It has been awhile since I built a local kernel that I signed, but even
a locally built kernel was signed twice when using rpmbuild.  I assume
that somewhere in the build plumbing there are two certificates and two
sign procedures.  I just removed them because they were dummy
certificates (test) when I built locally, and I didn't need them.

So, this has been happening for years.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Two Years of Fedora Releases

2023-06-23 Thread stan via devel
On Fri, 23 Jun 2023 10:41:00 +
مصعب الزعبي  wrote: 
> - One year between releases.

This is easy to attain under the current system.  Just don't upgrade
every 6 months.  The upgrade process is tested to upgrade 2 fedora
versions, so, for example, from f38 to f40.  This is a one year
cadence.  You'll miss some changes, those that are not backward
compatible, but you will still receive security updates.

Incidentally, I'm not in favor of lengthening release and lifetime.  If
I wanted that, I would look for a distro that did that.

As someone else suggested, in the past I have run rawhide for a few
years, and it was just fine, with occasional glitches, but nothing like
'it eats babies'.  I wouldn't recommend it to someone who just came
from windows, but anyone who has worked through issues for a few
releases of fedora should be fine.  And, there are the forums and
lists, so it is possible to get help.  I *do* recommend that if you run
rawhide continuously, that you leave a working stable fedora install on
your machine that you can boot to access the web for help and essential
services in case something goes wrong.  Insurance.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Macro expanded on comment?

2022-12-28 Thread stan via devel
On Tue, 27 Dec 2022 12:29:21 -0600
Ron Olson  wrote:

> Hey all-
> 
> I commented out a SOURCES line in a spec file to test something and
> got an interesting warning: “Macro expanded in comment on line …”. I
> assume it’s just that, a warning, but was kinda surprised to see a
> commented-out line being evaluated at all. I did some searching and
> came across this BZ from 2015:
> https://bugzilla.redhat.com/show_bug.cgi?id=1224660 that seems to
> suggest there’s a better way (%dnl), so if I want to comment
> something out instead of putting a # in front of the line, I should
> use %dnl?

Thank you for asking this question.  When I got this error, I just
replaced the percent with a hash.  Now I can do it properly and just
put %dnl at the start of the line.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: firefox glxtest: VA-API test failed: no supported VAAPI profile found.

2023-01-28 Thread stan via devel
On Fri, 27 Jan 2023 23:31:21 -
Reon Beon via devel  wrote:

> It seems to be this bug:
> https://github.com/rpmfusion-infra/fedy/issues/110

Strictly speaking, it is not a bug.  The fedora mesa rpm was
deliberately changed to remove some va-api and vdpau support because of
patent issues. When that new mesa stack hit fedora, I started seeing
the same messages that you are.  I then looked into it, and found the
same information as you have.  I ran the swap command recommended at
the above link, which restored the removed functionality, and I no
longer see the messages. I'm not even sure that I *need* that support.
It might be that firefox just generically checks for the support, and
reports when it is missing, whether it is needed or not.  I certainly
didn't notice any difference in my browsing experience when I was
getting the messages.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Tenacity

2023-02-08 Thread stan via devel
On Wed, 08 Feb 2023 06:25:07 +1100
Philip Rhoades via devel  wrote:
 
> Has there been any discussion about getting a Tenacity RPM going for 
> Fedora? - I would prefer that to having to use the AppImage version .

I knew about the corporate takeover of audacity, but I didn't know
about this fork.  I'm not aware of any effort to package it, but you
could build it from source, and install it in /usr/local, probably the
default.

If you have development tools installed, that could be as easy as
./configure  (not as root)
make  (not as root)
make install  (as root)
in the directory where you unpack the source code.  I used to build
audacity that way from its git repository.  Occasionally there would be
a glitch with versions, but it worked pretty consistently.  You will
have to have /usr/local/bin in your path (I think that is also a
default in Fedora).

https://tenacityaudio.org/

Of course, an rpm would be more convenient, but this *is* an
alternative.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Tenacity

2023-02-08 Thread stan via devel
On Wed, 8 Feb 2023 08:44:30 -0700
stan  wrote:

> On Wed, 08 Feb 2023 06:25:07 +1100
> Philip Rhoades via devel  wrote:
>  
> > Has there been any discussion about getting a Tenacity RPM going
> > for Fedora? - I would prefer that to having to use the AppImage
> > version .  
> 
> I knew about the corporate takeover of audacity, but I didn't know
> about this fork.  I'm not aware of any effort to package it, but you
> could build it from source, and install it in /usr/local, probably the
> default.
> 
> If you have development tools installed, that could be as easy as
> ./configure  (not as root)
> make  (not as root)
> make install  (as root)
> in the directory where you unpack the source code.  I used to build
> audacity that way from its git repository.  Occasionally there would
> be a glitch with versions, but it worked pretty consistently.  You
> will have to have /usr/local/bin in your path (I think that is also a
> default in Fedora).
> 
> https://tenacityaudio.org/
> 
> Of course, an rpm would be more convenient, but this *is* an
> alternative.

PS
I see on the devel list that there are potential patent issues because
of the use of certain codecs.  I finessed that by using the ffmpeg
version from rpmfusion, and thus installing the free and nonfree codecs
they are referencing.  If you try the above build without them, it will
probably still build, but will have reduced functionality.  Now that
mp3 and mpeg are off patent, I think the use of other codecs would be
limited unless you are editing commercial DVD files using aac, or video
files using h264.  Videos using webm probably are using open source
video and audio encoders.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Tenacity

2023-02-08 Thread stan via devel
On Wed, 8 Feb 2023 09:02:47 -0700
stan  wrote:

> On Wed, 8 Feb 2023 08:44:30 -0700
> stan  wrote:
> 
> > On Wed, 08 Feb 2023 06:25:07 +1100
> > Philip Rhoades via devel  wrote:
> >
> > > Has there been any discussion about getting a Tenacity RPM going
> > > for Fedora? - I would prefer that to having to use the AppImage
> > > version .
> > 
> > I knew about the corporate takeover of audacity, but I didn't know
> > about this fork.  I'm not aware of any effort to package it, but you
> > could build it from source, and install it in /usr/local, probably
> > the default.
> > 
> > If you have development tools installed, that could be as easy as
> > ./configure  (not as root)
> > make  (not as root)
> > make install  (as root)
> > in the directory where you unpack the source code.  I used to build
> > audacity that way from its git repository.  Occasionally there would
> > be a glitch with versions, but it worked pretty consistently.  You
> > will have to have /usr/local/bin in your path (I think that is also
> > a default in Fedora).
> > 
> > https://tenacityaudio.org/
> > 
> > Of course, an rpm would be more convenient, but this *is* an
> > alternative.  
>
> PS
> I see on the devel list that there are potential patent issues because
> of the use of certain codecs.  I finessed that by using the ffmpeg
> version from rpmfusion, and thus installing the free and nonfree
> codecs they are referencing.  If you try the above build without
> them, it will probably still build, but will have reduced
> functionality.  Now that mp3 and mpeg are off patent, I think the use
> of other codecs would be limited unless you are editing commercial
> DVD files using aac, or video files using h264.  Videos using webm
> probably are using open source video and audio encoders.

Disregard my comments.  The process to compile tenacity is completely
different from the process to compile audacity.  A plus is that the
BUILDING.md file gives a command to install the dependencies for
building tenacity in Fedora. As they say in the BUILDING.md file,
though, fedora lacks wxWidgets 3.1.5 or greater. That stops the
configuration,
cmake -G Ninja -S . -B build
when it errors out.
They give a link to the wxWidgets website, so it is possible to
compile it and put it in /usr/local, but that seems to be going down
the rabbit hole.  I might pursue this, even though I don't really do a
lot of (any?) sound editing anymore.  Just for the challenge.  Maybe
not. :-)
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Tenacity

2023-02-09 Thread stan via devel
On Wed, 8 Feb 2023 09:51:37 -0700
stan via devel  wrote:

> lot of (any?) sound editing anymore.  Just for the challenge.  Maybe
> not. :-)

I see lots of other people have taken up the challenge, and reported
issues they found, but I thought I would update with my unsuccessful
results.

I downloaded the wxWidgets code from their site, and compiled it using
their instructions on f37.  Compiled easily, with only a warning about
missing midi support.  I installed it in /usr/local

When I tried to get tenacity to use it, though, I hit a dead end.  Even
though I set the environment variable WX_CONFIG to point to it, cmake
find_program kept finding the system version 3.0.4.  I assume it looks
there first, and once it finds it, it stops.  I tried the alternative of
building it as a subprogram with the tenacity source (the tenacity
build instructions helpfully pointed to this), but it was compiled as
3.0 compatible, and tenacity complained about too old a version of some
constructs.  I then gave up.

___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Tenacity

2023-02-10 Thread stan via devel
On Thu, 9 Feb 2023 17:46:51 +0100
Alec Leamas  wrote:

> Using several wxWidgets version is indeed a bit painful, been there, 
> done that. One quick fix is to configure alternatives to use the new
> 3.2 version version of wx-config instead of the default 3.0.

I'm not sure what alternatives is, but now that I know about it I can
probably find out.  The key thing is that I didn't know that wxWindows
was configurable for version.

> There is no need to actually build, just running "wx-config
> --version" reveals the version currently selected by alternatives.
> 
> There are other options including hard-wiring wx-config to an
> absolute path. However, it's IMHO more complicated and with some
> traps.

Thanks.
 
> HTH

Yes, that does help.  I'll give it another try.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: reclaim orphaned moarvm package

2023-02-13 Thread stan via devel
On Mon, 13 Feb 2023 12:07:56 -
"Felix Wang"  wrote:

> But I am not in the Fedora packager group yet. So what I am confused
> that what should I do next.

I am not a packager, but I think this might clarify what you need to
do.  Maybe an actual packager can give more detail, if it is needed.

https://docs.fedoraproject.org/en-US/fesco/Packager_sponsor_policy/
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Self Introduction: Elliot

2023-07-14 Thread stan via devel
On Fri, 14 Jul 2023 14:20:28 -
"Elliot L"  wrote:

> Hi, my name is Elliot and I am a digital humanities student. In the
> open source world, I've made some small contributions to desktops
> such as Budgie and Xfce and I hope to do more work in this area. I
> also know basic RPM packaging and I would like to contribute to
> Fedora in the packaging field.
> 
> Since I am a new user, I don't have a sponsor and I am not in the
> packager broup. Looking at some of the orphaned packages, I know one
> I would like to try to maintain would be the
> rhythmbox-alternative-toolbar plugin. Should I post this in a
> separate thread?
> 
> Please let me know if there is any other information I should
> provide, thanks!

Welcome to Fedora.  I'm not a packager, but these are some links to
official information on how to become a Fedora packager.

https://docs.fedoraproject.org/en-US/package-maintainers/Joining_the_Package_Maintainers/
https://docs.fedoraproject.org/en-US/package-maintainers/How_to_Get_Sponsored_into_the_Packager_Group/
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Should Fedora switch to full kernel preemption (CONFIG_PREEMPT=y)?

2023-07-20 Thread stan via devel
On Thu, 20 Jul 2023 09:17:51 -0500
Justin Forbes  wrote:

> for them. I have been running preempt=full for quite some time on my
> desktops systems here.

I've been running custom compiled kernels with preempt_full=Y on my
desktop for several years (since at least kernel 5.1). Currently
running 6.5 with it enabled.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Orphaned packages looking for new maintainers

2023-07-24 Thread stan via devel
On Mon, 24 Jul 2023 15:38:03 -
"Julio Faracco"  wrote:
 
> I also need access to the packager group to claim maintainership.
> Who could provide it to me?
> I will probably take twincam.

I'm not a packager, but these are some links to official information on
how to become a Fedora packager.

https://docs.fedoraproject.org/en-US/package-maintainers/Joining_the_Package_Maintainers/
https://docs.fedoraproject.org/en-US/package-maintainers/How_to_Get_Sponsored_into_the_Packager_Group/
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Help running centpkg

2023-10-07 Thread stan via devel
On Fri, 06 Oct 2023 16:05:25 -
"Michael Dawson"  wrote:

> I'm trying to build
> https://gitlab.com/redhat/centos-stream/rpms/nodejs using centpkg but
> am running into errors.
> 
> I'm using Fedora 37 and get this error when I run centpkg mockbuild
> --with=bundled in the directory where I've cloned the
> https://gitlab.com/redhat/centos-stream/rpms/nodejs respository and
> switched to the stream-nodejs-18-rhel-8.10.0 branch.
> 
> I'm getting this error:
> 
> Total
>3.7 MB/s |  50 MB
>00:13 Running transaction check Transaction check succeeded.
> Running transaction test
> Error: Transaction test error:
>   file /usr/sbin/alternatives from install of
> chkconfig-1.19.2-1.el8.x86_64 conflicts with file from package
> alternatives-1.24-1.fc38.x86_64
  

This sounds like a package conflict error.  Two packages are trying to
manage the same file.  I find no bugzillas for chkconfig or
alternatives. I infer from that that packages within the same fedora
version don't have this conflict.  Thus, I suggest that you use an f38
instance, so that this package conflict doesn't occur.  No guarantees,
though, maybe no one else has hit this error.  If it still doesn't work,
you should open a bugzilla against one of the packages with the
information you have provided in this email.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: DNF5: Checking signatures of packages installed out of a repository?

2023-10-31 Thread stan via devel
On Tue, 31 Oct 2023 16:23:41 +0100
Petr Pisar  wrote:

> I would would like to hear your opinion: Should DNF5 start verifying
> all packages? Should DNF5 keep ignoring signatures for
> out-of-repository packages? Or should rather narrow the verification
> skip to packages from a local file system? Any other options?

I build a local kernel from the src.rpm, and install it with 

dnf -C install [etc.]

I never see this warning (dnf4).  Would I start
seeing it with dnf5?  It is easy enough to add the --no-gpgchecks
option if it is required, and it seems like a good reminder that the
package being installed might be a security risk.  Though, in my
specific case, that isn't true if the fedora src.rpm is valid.  A
pretty safe bet.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: I made a new Fedora Apps page, do you want it?

2022-09-08 Thread stan via devel
On Thu, 8 Sep 2022 12:38:49 +0200
Jakub Kadlcik  wrote:

> Hello,
> 
> I am reimplementing the current https://apps.fedoraproject.org
> page. It is not finished yet, but I wanted to share a demo with you:
> https://fedora-apps.netlify.app
> 
> The upstream is here: https://github.com/frostyx/fedora-apps/
> 
> Do you have any interest to eventually switch to this implementation
> and sunset the original one?
> 
> PS: Please don't judge me too harshly for the code quality, I am
> learning the language. I will refactor once the basic features are
> done (I know everybody is saying that :D)

I use a dark theme, and I prefer the gray text only approach of the
current page to the bright white circles with black text of your
approach.  I think that is partly to do with the text size difference
(your text is smaller).  I like the color aesthetics of the current
page better, too. I do like the ability to zoom that you have added, and
the extra content shown below the initial map.  Though I would like the
viewing window to expand when zoomed in so that it fills the screen.

I wasn't aware of this before, but it really brings home how many
aspects there are to Fedora.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Donate 1 minute of your time to test upgrades from F36 to F37

2022-09-14 Thread stan via devel
On Wed, 14 Sep 2022 05:06:29 -
"Richard Myers"  wrote:

> This is for F35 -> F37 ...
> 
> I sure
> would love it if anybody knows how to fix the below warning(?), which
> shows up every time I run DNF (it has persisted through at least 3 or
> 4 Fedora revisions, maybe more):
> 
> Traceback (most recent call last):
>   File "/usr/lib/python3.10/site-packages/dnf/plugin.py", line 104,
> in _caller getattr(plugin, method)()
>   File
> "/usr/lib/python3.10/site-packages/dnf-plugins/generate_completion_cache.py",
> line 62, in sack cur.execute("delete from available")
> sqlite3.DatabaseError: database disk image is malformed
> 
> I've tried (in the past) many things to try to fix it, but nothing
> worked.  Can't remember everything I tried, because it has been a
> couple of years, but suffice to say, I've tried the low-hanging,
> obvious stuff, and some obscure things...

The database it is trying to access is
/var/cache/dnf/packages.db
If you delete it, it will rebuild it at the next update, and that
should take care of the error, since it shouldn't build a malformed
database from scratch.  If it does, you should open an error agaist
package
python3-dnf-plugins-core
component
generate_completion_cache.py
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Aside: Re: Inactive packagers to be removed after the F37 release

2022-09-16 Thread stan via devel
On Thu, 15 Sep 2022 11:57:53 -0700
Adam Williamson  wrote:

> We have "critical path" groups for lots of desktops, including ones
> that aren't release-blocking: deepin, lxde, lxqt, and xfce. The logic
> here is approximately: things that are critical to those desktops are
> indeed critical to users of those desktops, and don't affect anybody
> else. So it makes sense to put them on the "critical path", because to
> the relatively small subset of users who *do* use those desktops, the
> updates really *are* critical, and it doesn't hurt users of any other
> desktop for them to be held up.

This sounds a lot more like critical set or critical graph (as in
node-edge) than critical path.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Donate 1 minute of your time to test upgrades from F36 to F37

2022-09-16 Thread stan via devel
On Fri, 16 Sep 2022 13:06:42 +
Zbigniew Jędrzejewski-Szmek  wrote:

> Error: Transaction test error:
>   file /usr/include/lv2/atom from install of
> lv2-devel-1.18.8-1.fc37.x86_64 conflicts with file from package
> lv2-devel-1.18.2-2.fc36.x86_64

[snip list of lv2-devel conflicts]


https://bugzilla.redhat.com/show_bug.cgi?id=2123422
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Mesa in F37- vaapi support disabled for h264/h265/vc1

2022-09-29 Thread stan via devel
On Wed, 28 Sep 2022 19:24:34 +0200
Julian Sikorski  wrote:
  
> Wasn't this being used by firefox?
> https://fedoraproject.org/wiki/Firefox_Hardware_acceleration

I don't know if it is used, but I received messages from firefox
nightly that VA-API support was missing when I ran it in the terminal
with the latest mesa for f37 installed.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Mesa in F37- vaapi support disabled for h264/h265/vc1

2022-10-01 Thread stan via devel
On Fri, 30 Sep 2022 22:19:44 +0200
Björn Persson  wrote:

> Kevin Kofler via devel wrote:
> > Considering that we have been shipping these hardware codec
> > interfaces for years without any legal trouble, I find this
> > absolutely ridiculous.  
> 
> The entire codec patent business is absolutely ridiculous. Such is the
> reality we must live in.

Given the speed which digital development moves, those patents, if they
exist at all, should be no more than 5 years.  As it is, rather than
speed up the rate of innovation, the whole justification for patents,
they are slowing and restricting the rate of innovation in this area.

In the digital space, the cost of development is low, so that the
innovation that those patents are issued for would be discovered in the
course of general research without the patent holder.  There are often
conflicts of who has first discovered some innovation, resolved by
first to file, showing the lack of need for patents at all.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Failed RPM database migrations

2022-10-28 Thread stan via devel
On Fri, 28 Oct 2022 13:08:19 -
"Sergey Mende"  wrote:

> I upgraded from 35 to 36 in the beginning of Sept this year. The
> migration failed. May I help somehow?

I used the advice from Tom Hughes in his earlier message to complete my
failed migration.

# systemctl enable rpmdb-migrate
# systemctl start rpmdb-migrate

When that completed, the migration was successfully done.

I am running F37, started as F35 rawhide, updated using dnf,
usually daily, with reboots also usually daily.  I am currently running
rpm-4.18.0-1.fc37.x86_64.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Failed RPM database migrations

2022-10-28 Thread stan via devel
On Fri, 28 Oct 2022 14:59:54 -
"Sergey Mende"  wrote:

> thank you, I got the recipe from the previous conversations. I just
> asked if I could help with logs analysis or somehow else before I fix
> the issue.

Sorry for the misunderstanding.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Fedora 37: Add kernel parameters that help prevent local exploits

2022-05-20 Thread stan via devel
On Fri, 20 May 2022 13:26:14 +0100
Simon Farnsworth via devel  wrote:

> On Thursday, 19 May 2022 04:15:16 BST Hellosway Here via devel wrote:
> > Add `slab_nomerge init_on_alloc=1 init_on_free=1
> > page_alloc.shuffle=1 pti=on randomize_kstack_offset=on
> > vsyscall=none ` as default kernel command line arguments. This can
> > help prevent local exploits by making it harder to exploit the
> > kernel. I do not think there will be any breakage, I have been
> > using these for a long time. The performance impact is minimal, a
> > few of these can improve performance.   
> 
> A question, then: if these options are helpful to performance and/or
> security, why are they not yet the kernel's  defaults?
> 
> If there are tradeoffs that mean that these aren't suitable for
> general use, then Fedora needs to know what those tradeoffs are
> before it can make the decision, while if they're a simple net
> improvement, then upstream kernel developers should be happy to
> switch the defaults over without requiring a kernel argument.
> 
> > This can help increase the security of Fedora, while also not
> > causing any other problems. Many users do not know what kernel
> > command line arguments are, so doing this will help them with the
> > security of their system. This does not address every problem, or
> > even most of them, but every little bit matters.  
> 
> If that's the case, why doesn't the upstream kernel switch them over?
> Is there an ABI break caused by some of these? A major performance
> regression on some workloads (if so, which workloads and does Fedora
> care)? Known bugs that upstream hasn't tracked down yet?

As an anecdotal point of reference, I compile a local custom kernel, and
have had kernel hardening set as defaults from their implementation. I
have not noticed any issues.  With the 5.18 series, however, there was
a security measure that I didn't think I needed, so I didn't implement
it.

Initialize kernel stack variables at function entry (zero-init everything 
(strongest and safest))  --->│ │   
  │ │[*] Poison 
kernel stack before returning from syscalls 
│ │   
  │ │[ ]   
Report stack depth analysis instrumentation 
 │ │   
  │ │(100) 
Minimum stack frame size of functions tracked by STACKLEAK  
 │ │   
  │ │[ ]   Show 
STACKLEAK metrics in the /proc file system  
│ │   
  │ │[*]   
Allow runtime disabling of kernel stack erasing 
 │ │   
  │ │[*] Enable 
heap memory zeroing on allocation by default
│ │   
  │ │[*] Enable 
heap memory zeroing on free by default  
│ │   
  │ │[*] Enable 
register zeroing on function exit

I don't bother with the STACKLEAK metrics or stack depth analysis.  I
also have the random implementations mentioned above turned on via
configuration options, and so compiled into the kernel as defaults.

These are all small hits to performance, and as someone in the US
Congress once said, 'a billion here and a billion there, and pretty soon
you're talking real money'.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: remove-retired-packages feedback

2022-05-27 Thread stan via devel
On Thu, 26 May 2022 15:52:06 +0200
Miroslav Suchý  wrote:

> If you already upgraded to Fedora 36 - what is your feedback about
> 
> https://docs.fedoraproject.org/en-US/fedora/latest/release-notes/sysadmin/System_Utilities/#remove-retired-packages
> 
> Did you run the command `remove-retired-packages`? Do you find it
> useful? Comments and ideas are welcome either here or at:
> 
> https://github.com/xsuchy/fedora-upgrade/issues
> 
> Just be sure that you have latest version, i.e.,
> remove-retired-packages-36.3.

Thanks for creating this, a nice tool.  I run rawhide, and it found no
retired packages for f36 or f37.  I think that would be expected by
default.  I agree that deciding on removal of each package individually
is the right choice.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


OT: triggered Re: You can't be serious! you want to remove mesa-libGL.i686 support?

2022-07-06 Thread stan via devel
On Wed, 6 Jul 2022 07:59:08 -0400
Stephen Smoogen  wrote:

> Thank you for your pointers. I have reflected on my original email and
> agree I made several mistakes in that email:
> I did not know the size of the bug problem.
> I did not investigate why the bugs were filed.
> I approached this as a one off versus a systematic problem.
> I did not help people who were affected by this in a forward moving
> way.

This reminds me too much of those old videos of the cultural revolution
when the bourgeoisie in China wore signs around their neck confessing
their crimes, while being berated by the proletariat (the communist /
Maoist true believers). I think this is a bad thing for a community like
Fedora. Isn't a simple apology or acknowledgement of error enough?

Maybe I'm reading too much into it, or it is satire?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Problem signing custom kernel package

2020-10-25 Thread stan via devel
On Sun, 25 Oct 2020 06:20:16 -0500
Richard Shaw  wrote:

> I'm following the directions here[1] on building a custom kernel to
> test some patches[2] related to suspend[3] on my new HP ENVY X360 AMD
> laptop without S3 support.
> 
> The directions could be updated to include which commands need to be
> run as root, however, my problem is at this step:
> 
> """
> Create a PKCS #12 key file:
> 
> openssl pkcs12 -export -out key.p12 -inkey key.pem -in cert.der
> """
> 
> # openssl pkcs12 -export -out key.p12 -inkey key.pem -in cert.der
> unable to load certificates
> 
> Both files are in the current directory...
> 
> Thanks,
> Richard
> 
> [1]
> https://docs.fedoraproject.org/en-US/quick-docs/kernel/build-custom-kernel/#_secure_boot
> [2] https://gitlab.freedesktop.org/drm/amd/-/issues/1230#note_671110
> [3] https://gitlab.freedesktop.org/drm/amd/-/issues/1230

It's been a while since I did this, so it might have changed, but these
are the steps I went through to create the signing keys.  It should at
least give you some hints, if nothing else.

A lot of work.

The configuration file needed for openssl to create the keys.
cat configuration_file.config 
"""
[ req ]
default_bits = 4096
distinguished_name = req_distinguished_name
prompt = no
string_mask = utf8only
x509_extensions = myexts

[ req_distinguished_name ]
O = Organization
CN = Organization signing key
emailAddress = E-mail address

[ myexts ]
basicConstraints=critical,CA:FALSE
keyUsage=digitalSignature
subjectKeyIdentifier=hash
authorityKeyIdentifier=keyid
"""

Creating the public and private key.
openssl req -x509 -new -nodes -utf8 -sha256 -days 36500 -batch -config 
./configuration_file.config -outform DER -out public_key.der -keyout 
private_key.priv
alternate form, haven't tried yet
openssl req -new -x509 -newkey rsa:2048 -sha256 -keyout key.asc -out cert.pem 
-nodes -days 666 -subj "/CN=$USER/"

Telling mok that on next boot, use root password to import key into its
database.
mokutil -P --import public_key.der

Converting der to pem using openssl.
openssl x509 -inform DER -in public_key.der -outform PEM -out public_key.pem

Convert the private key and pem certificate to a pk12 structure.
openssl pkcs12 -export -out kernel_key.p12 -inkey public_key.pem -in 
xyz_cert.x509.pem
# openssl pkcs12 -export -inkey private_key.priv -in public_key.pem -name 
kernel_cert -out kernel_cert.p12
Enter Export Password:
Verifying - Enter Export Password:

# Import pkcs12 file into pesign db

# pk12util -i kernel_cert.p12 -d /etc/pki/pesign
Enter password for PKCS12 file: 
pk12util: no nickname for cert in PKCS12 file.
pk12util: using nickname: Organization signing key - Organization
pk12util: PKCS12 IMPORT SUCCESSFUL
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Problem signing custom kernel package

2020-10-29 Thread stan via devel
On Thu, 29 Oct 2020 12:13:03 -0500
Richard Shaw  wrote:

> On Sun, Oct 25, 2020 at 3:50 PM stan via devel <
> devel@lists.fedoraproject.org> wrote:  

> > Convert the private key and pem certificate to a pk12 structure.
> > openssl pkcs12 -export -out kernel_key.p12 -inkey public_key.pem -in
> > xyz_cert.x509.pem
> >  
> 
> Ok, you lost me right here. There is no file xyz_cert.x509.pem file
> to be used with "-in"...

From my history, it appears that the actual command I used was this:

openssl pkcs12 -export -inkey private_key2.priv -in public_key2.pem -name 
kernel_cert -out kernel_cert2.p12

So, I actually replaced the xyz_cert.x509.pem with public_key2.pem
It was probably my second try, thus the 2, as it took me some trial and
error to work this out.  Thus, you should use the version of keys from
your first two commands.

While I'm typing, these are the commands I actually use to sign a
kernel.  You'll need them once the keys are all distributed properly.
Depending on how you build the kernel, the redhat-testing-key might
already have signed it, and if you don't have that installed, the
kernel won't boot.  I have to remove it.  Actually, the kernels have
been signed twice lately with that test key, so I have to remove both
of them.

pesign -S -i /boot/vmlinuz-5.9.1-300.20201025.fc31.x86_64
pesign -r -u 0 -i /boot/vmlinuz-5.9.1-300.20201025.fc31.x86_64 -o 
/boot/vmlinuz-5.9.1-300.20201025.fc31.x86_64.unsigned
pesign -r -u 0 -i /boot/vmlinuz-5.9.1-300.20201025.fc31.x86_64.unsigned -o 
/boot/vmlinuz-5.9.1-300.20201025.fc31.x86_64.unsigned2
pesign -S -i /boot/vmlinuz-5.9.1-300.20201025.fc31.x86_64.unsigned2
pesign  --certdir /etc/pki/pesign --certificate kernel_cert --in 
/boot/vmlinuz-5.9.1-300.20201025.fc31.x86_64.unsigned2 --out 
/boot/vmlinuz-5.9.1-300.20201025.fc31.x86_64.signed --sign
pesign -S -i /boot/vmlinuz-5.9.1-300.20201025.fc31.x86_64.signed
ls -nZ
cp vmlinuz-5.9.1-300.20201025.fc31.x86_64.signed 
vmlinuz-5.9.1-300.20201025.fc31.x86_64
ls -nZ
rm vmlinuz-5.9.1-300.20201025.fc31.x86_64.signed 
vmlinuz-5.9.1-300.20201025.fc31.x86_64.unsigned 
vmlinuz-5.9.1-300.20201025.fc31.x86_64.unsigned2
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 34 Change: Route all Audio to PipeWire (System-Wide Change)

2020-11-23 Thread stan via devel
On Sun, 22 Nov 2020 15:47:04 +0100
Andy Mender  wrote:

> Is ALSA still a valid use case? I thought ALSA support was phased out
> from most relevant software?

It is for me.  I run some audio software that I do not want interrupted
while it is running.  So, I use pavucontrol to turn it off to pulse and
make it available only to alsa.  Then, I can directly configure, send
commands to, and use the sound device, ignored by pulse.  As near as I
can tell, it is still available in audacity, as well.

alsa is going nowhere since it is the interface to the hardware that
every other sound application depends on.  It is mature so it should
take very little maintenance to allow it to remain.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Dell XPS 13 9310 Fingerprint Driver

2020-12-01 Thread stan via devel
On Mon, 30 Nov 2020 21:16:35 -
"Ondra Kalousek"  wrote:

> Hello. I want to buy myself Dell XPS 13 9310 (2020). The unit will
> arrive in few weeks, so I used the time to ask this questio. It has a
> fingerprint sensor Goodix 27c6:533c. But official driver is for
> Ubuntu and no RPM. There is a post how to install it, but replacing
> packages' files is very likely to break after update. Post link:
> https://aboutcher.co.uk/2020/10/goodix-fingerprint-reader-on-fedora-linux/
> 
> It is absolutely unecessary to do write to modules.alias, I think.
> 
> That Ubuntu package has a TOD library, which enables to use OEM
> drivers but there is no TOD for fedora. It would be nice to do TOD
> libfprint package, which provides libfprint (so no ugly replacements
> which will disappear after update) and that driver package or make it
> one package.
> 
> If it can be possible, can someone please make good, quality and nice
> RPM(s), which I have to install and and "at the drop of the hat" run
> into GNOME Settings and setup fingerprint? It will help me and many
> XPS 13 users, because according to reviews, this computer is very
> good for running Linux (not that one I have, which is Ok, but not
> very good).

I think this is more suited to rpmfusion since it uses a proprietary
binary blob.  If so, you should ask on one of the lists there.  See the
possible mailing lists here.
https://lists.rpmfusion.org/archives/
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 34 Change: GitRepos-master-to-main (Self-Contained Change)

2020-12-12 Thread stan via devel
On Sat, 12 Dec 2020 15:28:57 +
Sérgio Basto  wrote:

> I'm strongly against change master to main , just because master
> suggest that is a racist word as master/slave, is like change chess
> and play not with black and white pieces but maybe with green and
> blue . This change will deprecate all I.T. books since Turing machine
> and it will be just a big a mess, first because we don't have a
> unanimous name, so here it will be main, in other place will be devel
> etc etc it will be a big confusion
> And I don't see any benefit, words will always be words and their
> meaning is given by the context.

I also think this is window dressing.  Every human being alive on the
planet today has a slave (of some description) among their ancestors,
or as a relative of their ancestors. I'm curious who came up with this
as a remedy for the effects of slavery on the descendants of slaves, and
how they decided that this was a meaningful gesture.  To me it looks
like virtue signaling designed to have a minimal impact on the bottom
line.

What does a poll of programmers who encounter the word master in code
indicate about their attitudes towards it?  Especially meaningful
would be to hear from the programmers this is meant to help.

There are millions of actual slaves on the planet as I type this, and
there are even countries where slavery is still legal, and there is at
least one religion with slavery sanctified in their scriptures.  Across
the globe sex slaves are trafficked from poorer countries to richer
countries.  Is this really the best use of resources to combat that?

If it is, then we can look forward to the demonizing of words like hit,
chain, bound, bind, submit, control in code across the globe.  It's a
good thing the people implementing this are masters of their craft, and
have lots of spare time.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Fedora 34 Change: GitRepos-master-to-main (Self-Contained Change)

2020-12-12 Thread stan via devel
On Sat, 12 Dec 2020 09:09:46 -0700
stan  wrote:
> Is this really the best use of resources to combat
> that?

What if all the money dedicated to implementing this across the tech
industry was dedicated instead to a stem scholarship fund.  Students
who qualify to a stem program at a certified university, and who are
disadvantaged, could apply for such scholarships.  Those scholarships
could be fewer full ride, or more partial ride.  The background hardship
of the student could be taken into account in addition to poverty.
Growing up a nerd in the inner city is a magnitude more difficult than
growing up a nerd in a suburban school.  In New York state, there are
charter schools for disadvantaged students that protect studious
students from disruptive students by expelling the disruptive students.
The public schools can't do that, so studious students there are in a
toxic environment, and their performance shows that.  The students of
those charter schools perform at levels equivalent to students in
suburban schools.

Just an alternative idea.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: Problems upgrading to f33 cloud edition

2020-12-18 Thread stan via devel
On Fri, 18 Dec 2020 10:25:30 +0100
Guido Aulisi  wrote:

> Hi, sorry for posting here if this is not correct.

Probably more appropriate for the user list.

> I'm upgraing a f32 cloud edition to f33 and I found this problem which
> I can't solve:
> 
> $ sudo dnf system-upgrade --releasever 33 --skip-broken
> --allowerasing -vvv download
> 
> I get this response:
> 
> Error: 
>  Problem: conflicting requests
>   - package
> console-login-helper-messages-issuegen-0.20.3-1.fc33.noarch requires
> NetworkManager, but none of the providers can be installed
>   - package
> console-login-helper-messages-issuegen-0.20.1-1.fc33.noarch requires
> NetworkManager, but none of the providers can be installed

It seems that something wants to install
console-login-helper-messages-issuegen
but the NetworkManager packages the only available versions can use
cannot be installed, probably because there is a later version being
installed.

> I don't have console-login-helper-messages installed in f32.

You could try

$ sudo dnf -x console-login-helper-messages-issuegen system-upgrade
--releasever 33 --skip-broken --allowerasing -vvv download

so that it skips the install of whatever is requiring
console-login-helper-messages-issuegen. At the least that should show
you what the chain of dependencies is that is dragging in
console-login-helper-messages.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: F34 Change proposal: Wayland by Default for KDE Plasma Desktop (System-Wide Change)

2020-09-08 Thread stan via devel
On Tue, 8 Sep 2020 11:28:20 -0400
Ben Cotton  wrote:

>  Is Wayland ready? 
> Wayland has been used by default for Fedora Workstation (which uses
> GNOME) since Fedora 25. And while it was somewhat immature initially,
> today it is a very rock-solid experience on virtually everything
> Fedora Workstation runs on.

Does it now have support for custom keymappings?  That is, does it have
a way to set a user keymap as the default? X has a very mature system
for setting this, so I can have my custom keymapping everywhere except
in editing the grub menu.  I've thought about buying a programmable
ergonomic keyboard so this would no longer be an issue, but my current
setup works.  Will it now work in Wayland?

Does it allow booting from multiuser?  Is there something equivalent to
startx so I can start it on the virtual console of my choice?

Or are these obsolete concepts in Wayland?
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Re: F34 Change proposal: Wayland by Default for KDE Plasma Desktop (System-Wide Change)

2020-09-09 Thread stan via devel
On Tue, 8 Sep 2020 17:48:30 -0400
Matthew Miller  wrote:

> On Tue, Sep 08, 2020 at 01:35:11PM -0700, stan via devel wrote:
> > Does it now have support for custom keymappings?  That is, does it
> > have a way to set a user keymap as the default? X has a very mature
> > system for setting this, so I can have my custom keymapping
> > everywhere except in editing the grub menu.  I've thought about
> > buying a programmable ergonomic keyboard so this would no longer be
> > an issue, but my current setup works.  Will it now work in Wayland?
> >  
> 
> It probably will not. Everything related to this is different, and
> there's nothing as easy or as nice. You will probably want to select
> the X session rather than the proposed new default.

Thanks for the info.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


System no longer distributes load to multiple cores for long running task

2020-09-21 Thread stan via devel
Hi,

It's been a while (6 months?) since I ran a python program that uses a
100% cpu core for hours.  The last time I ran it, the task would migrate
from core to core to core, every second or so.  I could see it doing so
in the various tops.

Now, it runs on only one core, and doesn't move.

This is more efficient from a computing perspective because there
aren't as many task switches, but it means that the core that is
running gets very hot.  Since the rest of the cores are idle, I would
like to switch back to the previous behavior for this reason.  Can
someone tell me how?

Thanks.

PS I'm copying devel in case this isn't a kernel issue, and also
because my posts to the kernel list just seem to disappear into the
ether.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


Problem building kernel 5.9 rc6 from src.rpm when perf enabled, looks to be a script error, a typo

2020-09-28 Thread stan via devel
Hi,

When building the kernel with perf enabled from the src.rpm
kernel-5.9.0-0.rc6.20200925git171d4ff79f96.17.fc34.src.rpm
I get an error.  There seems to be an error in one of the build
scripts.  This was not a problem in src.rpm for
kernel-5.9.0-0.rc4.20200911git581cb3a26baf.8.fc34.src.rpm

The error seems to be in a script, and looks like a typo,
+ +# perf
/var/tmp/rpm-tmp.bbuLwN: line 499: +#: command not found
error: Bad exit status from /var/tmp/rpm-tmp.bbuLwN (%build)
Bad exit status from /var/tmp/rpm-tmp.bbuLwN (%build)

When I look in that temporary file, I find this, with the error line
marked by << error:

###
# DO it...
###

# prepare directories
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/boot
mkdir -p $RPM_BUILD_ROOT/usr/libexec

cd linux-5.9.0-0.rc6.20200925git171d4ff79f96.17.20200927.fc31.x86_64





BuildKernel bzImage arch/x86/boot/bzImage 1

+# perf    error
# make sure check-headers.sh is executable
chmod +x tools/perf/check-headers.sh

  /usr/bin/make -s EXTRA_CFLAGS="${RPM_OPT_FLAGS}"
  LDFLAGS="-Wl,-z,relro -Wl,--as-needed  -Wl,-z,now
  -specs=/usr/lib/rpm/redhat/redhat-hardened-ld"  -C tools/perf V=1
  NO_PERF_READ_VDSO32=1 NO_PERF_READ_VDSOX32=1 WERROR=0 NO_LIBUNWIND=1
  HAVE_CPLUS_DEMANGLE=1 NO_GTK2=1 NO_STRLCPY=1 NO_BIONIC=1 prefix=/usr
  PYTHON=/usr/bin/python3 DESTDIR=$RPM_BUILD_ROOT all


I don't know where that script comes from so I haven't corrected it and
run again, but when I turn off perf, the kernel builds and runs just
fine.

Thanks for any insight.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org


  1   2   >