
cafaia
-
Content Count
83 -
Joined
-
Last visited
-
Days Won
7
Reputation Activity
-
cafaia got a reaction from seaofash in How to unmask clang, llvm, lldb 4 or 5?
Hello, seaofash!
You can do this to use lldb in sys-devel/llvm-3.9.1-r1:
# mkdir -p /etc/portage/profile/use.mask # echo '-lldb' > /etc/portage/profile/use.mask/test-forum # USE="lldb" emerge -1 =sys-devel/llvm-3.9.1-r1 or # echo '=sys-devel/llvm-3.9.1-r1 lldb' > /etc/portage/package.use/test-forum But if you want llvm, lldb and clang in version 4, you need all this:
# mkdir -p /var/git/overlay/local/sys-devel/llvm # cd /var/git/overlay/local/sys-devel/llvm/ # wget https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-devel/llvm/llvm-4.0.1.ebuild # ebuild llvm-4.0.1.ebuild digest # mkdir -p /var/git/overlay/local/sys-devel/llvm-common # cd /var/git/overlay/local/sys-devel/llvm-common/ # wget https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-devel/llvm-common/llvm-common-4.0.1.ebuild # ebuild llvm-common-4.0.1.ebuild digest And the file /etc/portage/package.unmask/test-forum with this: sys-devel/clang:4 sys-devel/llvm:4 =dev-util/lldb-4.0.1 =sys-devel/llvm-common-4.0.1 =sys-devel/clang-runtime-4.0.1
-
cafaia got a reaction from NikosAlexandris in Can't emerge 'www-client/chromium-62.0.3202.18::net-kit'
To compile this version of chromium you have upgrade gcc-5.3.0-r1 to gcc-5.4.0. Look here: https://bugs.funtoo.org/browse/FL-4235. sys-devel/gcc-5.4.0 is sufficient to complile this version of chromium.
-
cafaia got a reaction from seaofash in Can't emerge 'www-client/chromium-62.0.3202.18::net-kit'
To compile this version of chromium you have upgrade gcc-5.3.0-r1 to gcc-5.4.0. Look here: https://bugs.funtoo.org/browse/FL-4235. sys-devel/gcc-5.4.0 is sufficient to complile this version of chromium.
-
cafaia got a reaction from rsa4046 in How to change branch of kits from meta-repo
Hello, Oleg!
Thank you very much for the information!
I created a script with this:
#!/bin/sh cd /var/git/meta-repo/ git pull git submodule update cd /var/git/meta-repo/kits/xorg-kit/ git checkout master git pull cd /root/ chown -R portage:portage /var/git/meta-repo And now everything is going well! Thanks so much for the help! -
cafaia got a reaction from skunk in eix and kits
Hello, skunk!
I have this files:
/usr/local/sbin/meta-repo-update:
#!/bin/sh cd /var/git/meta-repo/ git pull git submodule update cd /root/ chown -R portage:portage /var/git/meta-repo /etc/eix-sync.conf:
* @emerge --regen || true @emerge --metadata || true And I do this:
#meta-repo-update
#eix-remote update
#eix-sync
And the program "eix" is working for me.
I hope I have helped!
-
cafaia got a reaction from cardinal in How to create localpatches?
Hello, cardinal!
Thank you very much for your attention.
-
cafaia reacted to cardinal in How to create localpatches?
Local patches are applied to the source code only, not the ebuild.
Modified ebuilds go in the local overlay.
-
cafaia got a reaction from Sandro in Troubles using new ports-2017 + xorg-kit
Hello, Sandro!
That good that I helped!
It may not be possible to have master and prime in same folder. You tried to put each one in one folder? So:
#mkdir /usr/portage-kits
#cd /usr/portage-kits/
#git clone -b master git://github.com/funtoo/xorg-kit.git
#mv xorg-kit xorg-kit-master
#mkdir /usr/portage-kits/xorg-kit-prime
And to have this in folder /etc/portage/repos.conf:
- file gentoo: [DEFAULT] main-repo = gentoo [gentoo] location = /usr/portage sync-type = git sync-uri = git://github.com/funtoo/ports-2017.git auto-sync = yes - file xorg-kit-master: [xorg-kit-master] location = /usr/portage-kits/xorg-kit-master sync-type = git sync-uri = git://github.com/funtoo/master/xorg-kit.git auto-sync = yes - file xorg-kit-prime: [xorg-kit-prime] location = /usr/portage-kits/xorg-kit-prime sync-type = git sync-uri = git://github.com/funtoo/master/xorg-kit.git auto-sync = yes
Then you do: eix-sync
Maybe this is the solution final!
-
cafaia got a reaction from Sandro in Troubles using new ports-2017 + xorg-kit
Correcting:
#rm -R /usr/portage-kits/xorg-kit #cd /usr/portage-kits/ #git clone -b master git://github.com/funtoo/xorg-kit.git -
cafaia got a reaction from Sandro in Troubles using new ports-2017 + xorg-kit
If I do 'eix xorg-server' I have:
x11-base/xorg-server [1] Available versions: 1.12.4-r7(0/1.12.4) 1.15.2-r4(0/1.15.2) 1.18.4(0/1.18.4) 1.19.2(0/1.19.2) (~)1.19.3(0/1.19.3) **9999(0/9999) {debug dmx doc glamor ipv6 kdrive libressl minimal nptl selinux static-libs +suid systemd tslib +udev unwind wayland xephyr xnest xorg xvfb} Installed versions: 1.19.3(0/1.19.3)(14:31:00 03-04-2017)(dmx ipv6 kdrive suid udev xorg -debug -doc -glamor -libressl -minimal -selinux -static-libs -systemd -tslib -unwind -wayland -xephyr -xnest -xvfb) Homepage: https://www.x.org/wiki/ Description: X.Org X servers [1] "xorg-kit" /usr/portage-kits/xorg-kit -
cafaia got a reaction from Sandro in Troubles using new ports-2017 + xorg-kit
Hello, Sandro!
I made it:
#mkdir /usr/portage-kits/
#cd /usr/portage-kits/
#git clone -b master git://github.com/funtoo/xorg-kit.git
And I have this in my folder /etc/portage/repos.conf:
- file gentoo:
[DEFAULT] main-repo = gentoo [gentoo] location = /usr/portage-tree sync-type = git sync-uri = git://github.com/funtoo/ports-2017.git auto-sync = yes - file xorg-kit: [xorg-kit] location = /usr/portage-kits/xorg-kit sync-type = git sync-uri = git://github.com/funtoo/master/xorg-kit.git auto-sync = yes And I did several times "emerge --sync" and "eix-sync" without any error! It's OK for me! -
cafaia got a reaction from Tassie_Tux in How to update Python without 'python-updater'?
Then all complete! Nothing for update or rebuild!
Thank you very much!