IRC log for #devuan on 20170319

00:20.27*** join/#devuan infobot (ibot@rikers.org)
00:20.27*** topic/#devuan is beta2 is out: http://ur1.ca/q572u ** https://devuan.org/ discussion channel (logged at https://botbot.me/freenode/devuan - with useful 'search') | Please take off-topic conversation to #debianfork | /msg chanserv info #devuan | !listkeys #devuan <foo> | Devuan Forum: https://dev1galaxy.org/
00:22.03*** join/#devuan sh4 (~sh4@unaffiliated/sh4)
00:31.26*** join/#devuan dog_ (~underd0g@93.140.36.121)
00:50.03*** join/#devuan jrc (~jrc@pool-100-2-192-84.nycmny.fios.verizon.net)
01:28.17*** part/#devuan TheBlueWizard (6c331021@gateway/web/freenode/ip.108.51.16.33)
01:43.04*** join/#devuan furrywolf (~randyg@172.56.38.176)
01:50.20*** join/#devuan MDrights (~MDrights@37.205.8.235)
02:11.41*** join/#devuan sh4 (~sh4@unaffiliated/sh4)
02:27.26*** join/#devuan Humpelstilzchen (erik@x4e32a0eb.dyn.telefonica.de)
02:30.25*** join/#devuan Hoshpak (~Hoshpak@p2003005B4B783300B43C954A6D75BF71.dip0.t-ipconnect.de)
02:33.23*** join/#devuan qtXiao (~Xiaoman@unaffiliated/xiaoman)
02:41.21*** join/#devuan Not_a_Robot (~soul@62.red-88-12-101.dynamicip.rima-tde.net)
02:46.16*** join/#devuan Xiaoman (~Xiaoman@unaffiliated/xiaoman)
02:48.32*** join/#devuan Xiaoman_ (~Xiaoman@unaffiliated/xiaoman)
02:56.47*** join/#devuan Xiaoman (~Xiaoman@unaffiliated/xiaoman)
02:59.57*** join/#devuan qtXiao (~Xiaoman@unaffiliated/xiaoman)
03:07.19*** join/#devuan Drugo (~Drugo@host66-207-dynamic.53-79-r.retail.telecomitalia.it)
03:07.57*** join/#devuan Xiaoman (~Xiaoman@unaffiliated/xiaoman)
03:09.02*** join/#devuan Xiaoman_ (~Xiaoman@unaffiliated/xiaoman)
03:13.18*** join/#devuan qtXiao (~Xiaoman@unaffiliated/xiaoman)
04:56.18*** join/#devuan Centurion_Dan (~Icedove@office.centurion.net.nz)
05:02.23*** join/#devuan DocScrutinizer05 (~saturn@openmoko/engineers/joerg)
05:08.39*** join/#devuan AlexLikeRock (~AlexLikeR@unaffiliated/alexlikerock)
05:26.04*** join/#devuan menip (~menip@c-24-18-78-230.hsd1.wa.comcast.net)
05:45.15*** join/#devuan ruenoak (~Thunderbi@122-60-54-241.jetstream.xtra.co.nz)
05:47.22*** join/#devuan Weeezy (~Weazzy@179-113-181-66.dsl.sacoriver.net)
05:58.54*** join/#devuan ruenoak (~Thunderbi@122-60-54-241.jetstream.xtra.co.nz)
05:59.13*** join/#devuan DocScrutinizer05 (~saturn@openmoko/engineers/joerg)
06:00.06*** join/#devuan ruenoak (~Thunderbi@122-60-54-241.jetstream.xtra.co.nz)
06:10.40*** join/#devuan Weeezy (~Weazzy@179-113-181-66.dsl.sacoriver.net)
07:25.06*** join/#devuan Centurion_Dan (~Icedove@office.centurion.net.nz)
07:31.48*** join/#devuan rrq (~ralph@60-242-139-200.static.tpgi.com.au)
07:42.51*** join/#devuan marvn (~marvn@46.33.broadband3.iol.cz)
08:23.57*** join/#devuan peetaur (~peter@p57AAA0C2.dip0.t-ipconnect.de)
08:32.25*** join/#devuan aitor (~aitor@178.83-213-58.dynamic.clientes.euskaltel.es)
08:32.30aitorg'morning
08:39.32*** join/#devuan peetaur (~peter@p57AAA0C2.dip0.t-ipconnect.de)
08:44.47aitorit's curious...
08:45.23aitorconstants.h doen't admit const char* declarations:
08:46.07aitorhttps://git.devuan.org/aitor_czr/simple-netaid-gtk/blob/master/include/constants.h
08:46.49aitoryesterday i got: multiple declaration of const char*...
08:48.11aitorand then i replaced it by std::string or Glib::ustring
08:48.41aitorand the error disappeared
08:50.04*** join/#devuan captainfixerpc14 (~captainfi@unaffiliated/captainfixerpc14)
08:50.58aitorso, i use c_str() to change it to char*
08:51.50aitorsee the function: void on_statusicon_activated( GtkWidget* widget, gpointer object )
08:51.53aitorin:
08:52.05aitorhttps://git.devuan.org/aitor_czr/simple-netaid-gtk/blob/master/include/window_main.h
08:52.51aitorsorry, this other one:
08:52.52aitorhttps://git.devuan.org/aitor_czr/simple-netaid-gtk/blob/master/src/window_main.cpp
08:53.40aitorfor example, the line:
08:53.48aitorsystem( SimpleNetaid::Exec::SPINNER_PATH_A.c_str() );
08:55.01*** join/#devuan TwistedFate (~TwistedFa@unaffiliated/twistedfate)
09:01.20aitorkelsoo is in #fsf, i think...
09:01.26aitori'm a whisperer
09:01.44aitorcoffee :)
09:01.49aitorfew minutes
09:20.18*** join/#devuan netdemon (~netdemon@223.42.194.178.dynamic.wline.res.cust.swisscom.ch)
09:24.17*** join/#devuan aitor (~aitor@178.83-213-58.dynamic.clientes.euskaltel.es)
09:24.23aitorhere again
09:27.21aitorthe code of the function:  void on_statusicon_activated( GtkWidget* widget, gpointer object )
09:28.07aitorwill be present in several methods and and constructors
09:28.16aitori'm referring to:
09:28.36aitorGlib::RefPtr<Gio::File> ref_spinner_path_A = Gio::File::create_for_path( SimpleNetaid::Exec::SPINNER_PATH_A );
09:28.39aitoretc...
09:29.59aitorthis is because the location of some files (pixmaps, executables...) is different depending on the circumstances
09:30.45aitorfor example, if we build the sources, the will be located in the build area
09:33.05aitorafter the installation, they can be in /usr or /usr/local
09:35.46aitorAnjuta uses an special file for that, config.h.in or something similar
09:36.15aitori will locate this functions in the singleton class
09:46.48*** join/#devuan ltem (~panta@h081217057026.dyn.cm.kabsi.at)
09:47.16*** part/#devuan marvn (~marvn@46.33.broadband3.iol.cz)
09:55.29*** join/#devuan MDrights (~MDrights@37.205.8.235)
09:58.23*** join/#devuan Levure (~quassel@91.179.234.76)
10:27.50*** join/#devuan devil (~quassel@vmd16322.contabo.host)
10:33.39*** join/#devuan sauron (~quassel@mail.coruscant.org.uk)
10:39.44*** join/#devuan Kruppt (~Kruppt@74-37-197-137.dr01.aplv.mn.frontiernet.net)
10:44.29*** join/#devuan devil (~quassel@vmd16322.contabo.host)
10:45.28*** join/#devuan enyc (~enyc@muddle.enyc.org.uk)
10:48.44*** join/#devuan Besnik_b (~Besnik@athedsl-79573.home.otenet.gr)
11:01.37*** join/#devuan snux (~snux@net-2-42-31-158.cust.vodafonedsl.it)
11:12.55*** join/#devuan wildlander (~wildlande@unaffiliated/wildlander)
11:51.31*** join/#devuan devCon (~Const@77.231.223.152)
11:53.51devConestimated date of devuan stable release?
11:54.55parazydsoon™
11:57.20devConOMG I'm eager to install this and specially devuan 2 (based on stretch)
11:58.44*** join/#devuan blueness (~blueness@gentoo/developer/blueness)
11:58.51parazydi'm already using devuan ascii in heads
11:58.53parazydworks great
11:59.08parazydstable is a myth :p
12:00.18XenguydevCon: Jump in the pool, the water temperature is fine :-)
12:00.58XenguyBeta2 works great for me
12:02.10devConI would jump, but I remember trying it out awhile ago and had some problems with the network manager
12:03.12XenguyIf you are good with MATE, the default is wicd, which works well for me, and I quite like
12:04.20devConand currently cannot invest much time on my system. I need a system to work out of the box. What about KDE? I find it very suited for me
12:04.59XenguySomeone else here can doubtless answer that question; I haven't tried KDE on Devuan
12:05.46devConAnyway, I wish this project a long life
12:06.00Xenguyditto
12:06.19XenguyA very courageous effort IMHO
12:07.51*** join/#devuan Pali (~pali@Maemo/community/contributor/Pali)
12:21.03jaromildevCon: network-manager was fixed by CenturionDan, I'm not sure the package is present in jessie already
12:23.31devConOK, I'll give it a try and report back when I have a little more time
12:24.50parazydsupposedly it's in jessie-proposed
12:37.42*** join/#devuan catprints (~realperso@172.58.139.227)
12:56.16*** join/#devuan wildlander (~wildlande@unaffiliated/wildlander)
12:57.25*** join/#devuan wildlander (~wildlande@unaffiliated/wildlander)
13:14.28*** join/#devuan ltem (~panta@h081217057026.dyn.cm.kabsi.at)
13:15.27*** join/#devuan Centurion_Dan (~Icedove@office.centurion.net.nz)
13:24.53*** join/#devuan peetaur (~peter@p57AAA0C2.dip0.t-ipconnect.de)
13:25.46*** join/#devuan Kruppt (~Kruppt@104.169.18.71)
14:01.28*** join/#devuan chomwitt (~chomwitt@athedsl-352169.home.otenet.gr)
14:10.17*** join/#devuan furrywolf (~randyg@172.56.39.66)
14:10.18*** join/#devuan golinux (~golinux@unaffiliated/golinux)
14:11.01*** join/#devuan davec_ (~davec@host-69-145-45-32.shr-wy.client.bresnan.net)
14:12.03*** join/#devuan aitor (~aitor@178.83-213-58.dynamic.clientes.euskaltel.es)
14:12.30aitordevCon!
14:13.35enycparazyd: reminds me, has the mess with  jessie-backports  been sorted  so it doesn't 'take over' by default any more?
14:13.35devConAitor
14:13.40devCon!
14:13.44aitorhi
14:13.55devConhello there
14:14.03devConbeen very busy lately
14:14.11parazydenyc: i'm not sure, but i hear people are using it and it doesn't cause trouble
14:14.12aitorme too
14:14.58enycparazyd: there was definitel issue with server-side settings not being right, so a manual apt.onf type pinnig/override was required
14:15.12enycparazyd: and it seemed to drag on and no not getting fixed
14:15.16enycmaybe it has finally got sorted
14:16.43*** part/#devuan devCon (~Const@77.231.223.152)
14:23.23*** join/#devuan TwistedFate (~TwistedFa@unaffiliated/twistedfate)
14:25.06*** join/#devuan aitor (~aitor@178.83-213-58.dynamic.clientes.euskaltel.es)
14:25.36*** join/#devuan Weeezy (~Weazzy@179-113-181-66.dsl.sacoriver.net)
14:25.44aitori pushed another commit
14:27.03aitorshortly i'll add the status icons
14:27.21aitori need testers for that :)
14:27.52aitorsee you :)
14:41.30*** join/#devuan Ryushin (chris@2001:470:4b:38f:527b:9dff:fe9e:37e6)
14:48.59*** join/#devuan FrozenWes (~FrozenWes@unaffiliated/frozenwes)
15:16.18*** join/#devuan blueness (~blueness@gentoo/developer/blueness)
15:35.58Artemis3i stopped testing when netinstall broke early this year xD
16:02.24*** join/#devuan Centurion_Dan (~Icedove@office.centurion.net.nz)
16:11.57*** join/#devuan level7 (~quassel@31.44.16.132)
16:24.27*** join/#devuan aitor (~aitor@178.83-213-58.dynamic.clientes.euskaltel.es)
16:25.38aitorcarriers work on sundays?
16:25.42buZzArtemis3: what broke?
16:26.16aitori'm so impatient...
16:32.04*** join/#devuan Guest5025 (~Guest@83.220.237.1)
17:24.27*** join/#devuan AntoFox (~Thunderbi@dynamic-adsl-78-12-45-154.clienti.tiscali.it)
17:25.32*** join/#devuan menip (~menip@c-24-18-78-230.hsd1.wa.comcast.net)
17:41.28*** join/#devuan AntoFox (~Thunderbi@dynamic-adsl-78-12-45-154.clienti.tiscali.it)
17:45.49*** join/#devuan Chanku (~Chanku@c-68-52-188-31.hsd1.tn.comcast.net)
17:56.44*** join/#devuan Not_a_Robot (~soul@62.red-88-12-101.dynamicip.rima-tde.net)
18:17.32*** join/#devuan level7 (~quassel@31.44.17.250)
18:18.32Artemis3buZz, something about unsupported symbol in ext4, the same happened to debian jessie but a quick update there fixed it, and when i checked the netinstaller for devuan didn't change since april, not sure about now. perhaps the kernel installer.
18:18.58Artemis3in the
18:19.19buZzah hmm
18:19.23*** join/#devuan blueness (~blueness@gentoo/developer/blueness)
18:19.29buZzi used netinst since then, and installed just fine
18:20.47*** join/#devuan knidos (~knidos@85.100.171.246)
18:27.30*** join/#devuan snux (~snux@net-2-42-31-158.cust.vodafonedsl.it)
18:32.04*** join/#devuan xep1 (~user@pD9EF11C5.dip0.t-ipconnect.de)
18:48.21golinuxArtemis3: The ext4 failure is a known problem and will be addressed in the RC
18:57.07*** join/#devuan Akuli (~Akuli@mobile-access-5d6acb-140.dhcp.inet.fi)
18:59.21*** join/#devuan blueness (~blueness@gentoo/developer/blueness)
19:01.16*** join/#devuan level7 (~quassel@31.44.17.250)
19:02.12Artemis3golinux, good to know, i'll be waiting xD
19:12.45*** join/#devuan Centurion_Dan (~Icedove@101.98.241.204)
19:22.24*** join/#devuan Drugo (~Drugo@host16-206-dynamic.26-79-r.retail.telecomitalia.it)
20:03.12*** join/#devuan [0__0] (~0__0]@ec2-54-85-45-223.compute-1.amazonaws.com)
20:03.21*** join/#devuan rrq (~ralph@60-242-139-200.static.tpgi.com.au)
20:16.14*** join/#devuan fleeky (~fleeky@75-101-60-65.dsl.static.fusionbroadband.com)
20:25.53*** join/#devuan ponchale (~ponchale@186.118.75.86)
20:26.02ponchalehi people how are you?
20:31.42golinuxHi ponchale
20:31.59golinuxNot much going on here today
20:33.07*** join/#devuan KaiO^ (~stealth@151.49.245.225)
20:38.14*** join/#devuan chomwitt (~chomwitt@ppp-94-67-203-20.home.otenet.gr)
20:41.22ponchaleok one question, for boot devuan on USB is possible use tools as unetbooting?
20:41.52ponchaleWe will soon start translating certain things from Devuan :)
20:45.40golinuxYou can dd.  And there's refracta2usb http://www.ibiblio.org/refracta/docs/readme.refracta2usb.txt
20:46.12golinuxNo one here mentions unetboot
20:48.58golinuxhttps://sourceforge.net/projects/refracta/files/tools/
20:50.18golinuxI have a recollection of hearing the unetbootin is buggy but might be wrong about that . . .
21:02.13ponchaleI think you could be wrong, personally so far I have not failed, but I will use refracta
21:02.24ponchaleAnd I will give you my opinion
21:03.36*** join/#devuan amphi (~amphi@73.red-88-22-14.staticip.rima-tde.net)
21:11.30golinuxponchale: I have only dd'd a usb once so not really up on the options.  Wait for someone with more experience to chime in
21:13.05*** join/#devuan xes (~xes@unaffiliated/xes)
21:28.53*** join/#devuan aitor (~aitor@178.83-213-58.dynamic.clientes.euskaltel.es)
21:30.28aitorhi, ponchale
21:30.30aitorunetbootin didn't work for me changing from squeeze to wheezy, i only use dd
21:34.04*** join/#devuan aaro (~aaro@unaffiliated/xyox/x-040147)
22:10.03Centurion_Danponchale: don't use unetbootin.  Just dd the image and boot it.
22:18.13*** join/#devuan fsmithred (~fsmithred@68-184-46-18.dhcp.oxfr.ma.charter.com)
22:26.19ponchaleCenturion_Dan: thanks
22:28.51ponchaleCenturion_Dan: I already had a conversation with jaromil, about the partnership :)
22:29.09ponchaleAre you aware of that?
22:45.32*** join/#devuan menip (~menip@2601:602:500:9058:f0cc:8fb2:761b:30cc)
23:00.30*** join/#devuan M-16 (~Drugo@host139-78-dynamic.181-80-r.retail.telecomitalia.it)
23:03.26kelsooHi aitor. Just posted a reply to you trisquel thread if your interested :-)
23:09.53*** join/#devuan amphi (~amphi@73.red-88-22-14.staticip.rima-tde.net)
23:12.21*** join/#devuan Centurion_Dan1 (~Icedove@office.centurion.net.nz)
23:21.45*** join/#devuan blueness (~blueness@gentoo/developer/blueness)
23:33.25*** join/#devuan Xenguy (~Xenguy@unaffiliated/xenguy)
23:40.37*** join/#devuan minnesotags (~herbgarci@2603:3016:1e01:7500:222:faff:fe54:322e)
23:41.35aitorhi, kelsoo
23:41.41*** join/#devuan Spagno`BNC (~Spagno@host44-161-dynamic.30-79-r.retail.telecomitalia.it)
23:42.04kelsoohi aitor
23:42.47aitori'm reading it, dragora ...
23:42.59kelsoocool
23:44.36aitorkelsoo, thanks
23:44.45kelsooDragora 2 is old but D3 is immient
23:45.09aitor:)
23:45.23aitortime to bed, here
23:45.28aitor00:45
23:45.31kelsooPlease take your time to have a look at Dragora and microde
23:45.43aitorof course
23:45.49kelsooFor me to.
23:46.04kelsooanytime I'm always in #dragora
23:46.26aitoryou have my email: aitor_czr@gnuinos.org
23:47.02aitoryou can email me, g'night :)
23:47.23kelsooThanks. kelsoo@gragora.org
23:47.31aitorbye
23:47.32kelsoonite

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.