From nobody Sun May 5 11:52:54 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1545054880168439.0034032276686; Mon, 17 Dec 2018 05:54:40 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 06603811DB; Mon, 17 Dec 2018 13:54:38 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C163E17D69; Mon, 17 Dec 2018 13:54:37 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 6813C3F603; Mon, 17 Dec 2018 13:54:37 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id wBHDsa8s030482 for ; Mon, 17 Dec 2018 08:54:36 -0500 Received: by smtp.corp.redhat.com (Postfix) id 6F436608F3; Mon, 17 Dec 2018 13:54:36 +0000 (UTC) Received: from kinshicho.redhat.com (unknown [10.40.205.97]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 98285608DA for ; Mon, 17 Dec 2018 13:54:35 +0000 (UTC) From: Andrea Bolognani To: libvir-list@redhat.com Date: Mon, 17 Dec 2018 14:54:23 +0100 Message-Id: <20181217135428.18924-2-abologna@redhat.com> In-Reply-To: <20181217135428.18924-1-abologna@redhat.com> References: <20181217135428.18924-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 1/6] guests: Fix FreeBSD symlink kludge X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Mon, 17 Dec 2018 13:54:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" The version check was not written in a future-proof manner, as all versions of FreeBSD after 10 need the kludge. Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrang=C3=A9 --- guests/playbooks/update/tasks/kludges.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guests/playbooks/update/tasks/kludges.yml b/guests/playbooks/u= pdate/tasks/kludges.yml index 0ad61a7..f9127ac 100644 --- a/guests/playbooks/update/tasks/kludges.yml +++ b/guests/playbooks/update/tasks/kludges.yml @@ -15,8 +15,8 @@ when: - os_name =3D=3D 'FreeBSD' =20 -# Same as above, except we only need to do it on FreeBSD 11 because -# FreeBSD 10 shipped (an old version of) readline in the base system +# Same as above, except we should skip it on FreeBSD 10 because it +# shipped (an old version of) readline in the base system - name: Create compatibility symlinks file: src: '/usr/local/{{ item }}' @@ -28,7 +28,7 @@ - lib/libreadline.so when: - os_name =3D=3D 'FreeBSD' - - os_version =3D=3D '11' + - os_version !=3D '10' =20 # FreeBSD compiles bash without defining SSH_SOURCE_BASHRC, which means # it won't try to detect when it's spawned by ssh and source ~/.bashrc --=20 2.19.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 11:52:54 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1545054885772403.10973149051574; Mon, 17 Dec 2018 05:54:45 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 7904087638; Mon, 17 Dec 2018 13:54:43 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 432B85D6A6; Mon, 17 Dec 2018 13:54:43 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id CAE99181B9E7; Mon, 17 Dec 2018 13:54:42 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id wBHDscEK030495 for ; Mon, 17 Dec 2018 08:54:38 -0500 Received: by smtp.corp.redhat.com (Postfix) id 487FD2C8EF; Mon, 17 Dec 2018 13:54:38 +0000 (UTC) Received: from kinshicho.redhat.com (unknown [10.40.205.97]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0E3BF608DA for ; Mon, 17 Dec 2018 13:54:36 +0000 (UTC) From: Andrea Bolognani To: libvir-list@redhat.com Date: Mon, 17 Dec 2018 14:54:24 +0100 Message-Id: <20181217135428.18924-3-abologna@redhat.com> In-Reply-To: <20181217135428.18924-1-abologna@redhat.com> References: <20181217135428.18924-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 2/6] guests: Add FreeBSD 12 X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Mon, 17 Dec 2018 13:54:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrang=C3=A9 --- guests/host_vars/libvirt-freebsd-12/main.yml | 22 +++++ guests/inventory | 1 + guests/vars/vault.yml | 86 ++++++++++---------- 3 files changed, 68 insertions(+), 41 deletions(-) create mode 100644 guests/host_vars/libvirt-freebsd-12/main.yml diff --git a/guests/host_vars/libvirt-freebsd-12/main.yml b/guests/host_var= s/libvirt-freebsd-12/main.yml new file mode 100644 index 0000000..ac50271 --- /dev/null +++ b/guests/host_vars/libvirt-freebsd-12/main.yml @@ -0,0 +1,22 @@ +--- +ansible_python_interpreter: /usr/local/bin/python2 + +projects: + - libosinfo + - libvirt + - libvirt-dbus + - libvirt-glib + - libvirt-go + - libvirt-go-xml + - libvirt-ocaml + - libvirt-perl + - libvirt-python + - libvirt-tck + - osinfo-db + - osinfo-db-tools + - virt-manager + - virt-viewer + +package_format: pkg +os_name: FreeBSD +os_version: 12 diff --git a/guests/inventory b/guests/inventory index 6749efa..252666e 100644 --- a/guests/inventory +++ b/guests/inventory @@ -7,6 +7,7 @@ libvirt-fedora-29 libvirt-fedora-rawhide libvirt-freebsd-10 libvirt-freebsd-11 +libvirt-freebsd-12 libvirt-freebsd-current libvirt-ubuntu-16 libvirt-ubuntu-18 diff --git a/guests/vars/vault.yml b/guests/vars/vault.yml index 2a3efe6..59caa53 100644 --- a/guests/vars/vault.yml +++ b/guests/vars/vault.yml @@ -1,42 +1,46 @@ $ANSIBLE_VAULT;1.1;AES256 -62633761366530363333313437356231623231396562306637643861643065626261306135= 306264 -3463323633623961656434323565303633613465643565640a356531393365393339656563= 653734 -65336234666563653039383663373735306164623436306137346137383137643736343334= 346533 -3532626538323331660a353632363633383362336332356262613761653030323939373030= 343038 -37633537303330663061303639643666383037313764323764386438313862313464646564= 636631 -35616166313937643864626631646566623836396562666563656463363532393963323662= 656432 -36316536666236653439383835386637386561353832383238393731393433373535633662= 353336 -66623633666666623636306561666232653064333731663662656161653836616537653266= 393235 -61393862313338333433626331346434663435623363343137363063336336313032616633= 613935 -64393462333364666634313065373863616236326162303361303735366666633638666334= 656333 -31356534316137376536356237336133373635323139393535393232356630616666343737= 626564 -63376637633635643730313239666534646264333439393432383039316262343733633539= 656333 -61633137333664646166626433613962313039633163363635323430663339313066363137= 643565 -30303564333062646266353937616135363863343965643964643235386135666539313264= 333631 -36666331346334386463646465353136366261336634376634643837393636333935643632= 663539 -64336162643631383066663861363162323665623438616361333338616136303035616562= 656634 -65343636643234393635353565653934396261386134653535663363653333333931393436= 336362 -66393462366635356536383137623331646263323865393061626130393934646561633530= 303832 -35323439383962383735646532336632396431653866636162333663323831643431613136= 346230 -35396331316466643133363661656662633231396561306262313165303631663130323436= 343533 -64363236323538626266323631623338333530383765633463326336343636313732396633= 623830 -39396363333538366336323535333735666461313261313838633732343365636431343061= 613061 -39643632613365613561323361376139656137343764383636383338373166663264356337= 333832 -36386330343731656466326530613762653331363163316136643734333664633935303266= 333263 -36343537343463353164643734396436373664373465666432313139353937343439356238= 366635 -33643439643738353638626535386231353530386533303830343535373733356137323930= 613436 -31336336633163316364653235646161353737306661653538336235353563373531666661= 633839 -34366439366262653933613439323565626564663836663165366464363266313334336330= 313766 -64656336633532646635333261346436386238633438313665313033353664636163323466= 313230 -64633861653666303936616432313263636333623862366163333930613836396165626365= 313965 -36623663666230326536306236373737343431363534313061653639336164626264353138= 646230 -64376639643530663261616263633639386666363936643533363933376563353739646531= 306165 -66343066363732643561643661376239646363326339663866326566613862363561613031= 373630 -33303362333463316564303734373866303936613738356231303234626231363162363135= 353634 -39363031623935373239633330383736626136313536383637653561636239623864376563= 326664 -39323366376339303732386538656561396435303930346563376466623930343162363262= 613637 -62363637623034376632626665663566336331643539643034336663623037353739663739= 393133 -61663132636634353030613538326166663664373462363166343164626634636639303435= 653361 -61616138333961643735653134643561353563323866613664333563666239316361383439= 326134 -32366564333933306234346635643961383036303839343638323964306136353831343866= 326136 -62623439303038306536373964303232333461633062303163656638653132353665 +63633637333233376433313132376136663030393330643762616339326638653730643037= 656565 +6464376661333237303566346539393565386333376261620a646631346130303639666630= 333464 +34363138386335363231363732346262613736306139346263623937613930623236336237= 386363 +3531303936343239360a376665353935363863306432623262333931666636306135666638= 373335 +32613765643431653531383237323639306536393766646263336661303161656331386362= 393630 +64386238336532383033303465333139663366353935656337663063613363386366386561= 323134 +66663634653935376531376465396333333032656638306661343435396634396266383332= 653134 +66343265646333363537353262356239393138343361343466613265313036643035633734= 333466 +35663730663832353962356534653738653434633861653834353263323965326231393931= 333336 +37313436333530336365356533643438616637666439336561303838306537626335653531= 316665 +34356563323563656631353037373663303138323366356632323332326234333266626535= 623137 +32303361656232643065636639383866363631646666323436376239303961663863383035= 336431 +62356331383064373530623666353166376239303139656263613461626532303465313066= 616437 +36306266626432393865393433366430383665303735313731643962346134316331346437= 303733 +31386465646234653337336333366430383361343864363730316562393265396266663333= 636334 +61616535626239363961393464356636646362333936343262623162616438363638333534= 393237 +33363836376138373333653865663333383937323936633131316162386265346130633631= 613161 +65366338303834666135343933623366643038313734643561373230613137663838663930= 393765 +32663233636364313764616262363565303435396631356363653735626363663534303065= 376262 +33346436303462623763303439636136666333386664616565663533636632366335376265= 386134 +37353063646335633731313261616234633938356461366565336330353037646138366231= 356434 +64336334313436313163363864373733646363313839373664616631303232313732636633= 303566 +30656236343963646631383639323836653565323831383832363237313464323933326536= 636338 +30663837636634626261663761646534393762656666633563323337646265643530626134= 393065 +39663333316532626437303830356130333938396430336163666635666635326135396236= 633461 +36306234626134383635616233346536353962643236663838626130323831336432343833= 633536 +66626432623831376161323432303232343438393138303031663432623865633239386330= 343061 +64373765613137666466636136323832373266333131646530393865383361366235623932= 636166 +35316563353766366530636234396431626435666137323638303866663736666132306434= 396138 +32333464643233363461653833376466313161353966326538393036353164633530653635= 333966 +31356234396636383837306639336537303332663664303165613336613430333539306431= 616334 +38626630623666323765376633326264666161303561343266396432306263336432373766= 613266 +31326230333535663632633530316537313035663562646133653566303836326133666666= 393564 +37383434363135343739373864666635656638306639353337333566343366643639323930= 656361 +64366163393831643063363734313266656464303036306231373262326231613130333533= 663430 +35643739643939386363616433633365656164653737636631326232646561356134613033= 383635 +39346633643235333732383966353263653934653538343763313635303239303835393232= 656238 +64393637373265623533343766333338623830316230396536386633623238353065373238= 626565 +36313764346437353066653530626632623031316263633362376435326263356361333766= 616131 +64366362373230393666633835396638336165643064303134303865663535613333663735= 633564 +65396139386235656431663862656433303531613166396333303333313939356165383631= 336630 +33666631333235363839346538393632653561346630643963643338633534616135656162= 333963 +33663438353434613538623334613732383366316135383763643965633331653330376164= 623862 +66646562363064396162346465646434363666333531303534633333316637636134373465= 653365 +36636163353732366633623530313830623830383538653762646137623935613562 --=20 2.19.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 11:52:54 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 15450548901624.085133203084865; Mon, 17 Dec 2018 05:54:50 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 26A977F6B2; Mon, 17 Dec 2018 13:54:48 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E20155D744; Mon, 17 Dec 2018 13:54:47 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 93C723F607; Mon, 17 Dec 2018 13:54:47 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id wBHDsdZq030506 for ; Mon, 17 Dec 2018 08:54:39 -0500 Received: by smtp.corp.redhat.com (Postfix) id B0F7D6090D; Mon, 17 Dec 2018 13:54:39 +0000 (UTC) Received: from kinshicho.redhat.com (unknown [10.40.205.97]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C16EA608DA for ; Mon, 17 Dec 2018 13:54:38 +0000 (UTC) From: Andrea Bolognani To: libvir-list@redhat.com Date: Mon, 17 Dec 2018 14:54:25 +0100 Message-Id: <20181217135428.18924-4-abologna@redhat.com> In-Reply-To: <20181217135428.18924-1-abologna@redhat.com> References: <20181217135428.18924-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 3/6] Build on FreeBSD 12 X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Mon, 17 Dec 2018 13:54:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrang=C3=A9 --- guests/playbooks/build/jobs/defaults.yml | 1 + guests/playbooks/build/projects/libvirt-dbus.yml | 2 ++ guests/playbooks/build/projects/libvirt-ocaml.yml | 1 + guests/playbooks/build/projects/libvirt-tck.yml | 1 + guests/playbooks/build/projects/virt-manager.yml | 1 + jobs/defaults.yaml | 1 + projects/libvirt-dbus.yaml | 2 ++ projects/libvirt-ocaml.yaml | 1 + projects/libvirt-tck.yaml | 1 + projects/virt-manager.yaml | 1 + 10 files changed, 12 insertions(+) diff --git a/guests/playbooks/build/jobs/defaults.yml b/guests/playbooks/bu= ild/jobs/defaults.yml index d9e81e0..cc1429f 100644 --- a/guests/playbooks/build/jobs/defaults.yml +++ b/guests/playbooks/build/jobs/defaults.yml @@ -9,6 +9,7 @@ all_machines: - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 - libvirt-freebsd-current - libvirt-ubuntu-16 - libvirt-ubuntu-18 diff --git a/guests/playbooks/build/projects/libvirt-dbus.yml b/guests/play= books/build/projects/libvirt-dbus.yml index 41e670c..4b27c50 100644 --- a/guests/playbooks/build/projects/libvirt-dbus.yml +++ b/guests/playbooks/build/projects/libvirt-dbus.yml @@ -11,6 +11,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 - libvirt-freebsd-current - libvirt-ubuntu-16 - libvirt-ubuntu-18 @@ -44,6 +45,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 - libvirt-freebsd-current - libvirt-ubuntu-18 - include: '{{ playbook_base }}/jobs/autotools-rpm-job.yml' diff --git a/guests/playbooks/build/projects/libvirt-ocaml.yml b/guests/pla= ybooks/build/projects/libvirt-ocaml.yml index bb70d47..3ee8dad 100644 --- a/guests/playbooks/build/projects/libvirt-ocaml.yml +++ b/guests/playbooks/build/projects/libvirt-ocaml.yml @@ -11,6 +11,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 - libvirt-freebsd-current - libvirt-ubuntu-16 - libvirt-ubuntu-18 diff --git a/guests/playbooks/build/projects/libvirt-tck.yml b/guests/playb= ooks/build/projects/libvirt-tck.yml index 4e40565..03e7957 100644 --- a/guests/playbooks/build/projects/libvirt-tck.yml +++ b/guests/playbooks/build/projects/libvirt-tck.yml @@ -10,6 +10,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 - libvirt-freebsd-current - libvirt-ubuntu-16 - libvirt-ubuntu-18 diff --git a/guests/playbooks/build/projects/virt-manager.yml b/guests/play= books/build/projects/virt-manager.yml index 432f6eb..1256557 100644 --- a/guests/playbooks/build/projects/virt-manager.yml +++ b/guests/playbooks/build/projects/virt-manager.yml @@ -12,6 +12,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 - libvirt-freebsd-current - libvirt-ubuntu-18 archive_format: gz diff --git a/jobs/defaults.yaml b/jobs/defaults.yaml index b5cf4f2..e3664a9 100644 --- a/jobs/defaults.yaml +++ b/jobs/defaults.yaml @@ -11,6 +11,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 rpm_machines: - libvirt-centos-7 - libvirt-fedora-28 diff --git a/projects/libvirt-dbus.yaml b/projects/libvirt-dbus.yaml index 3d1ed9c..d559c05 100644 --- a/projects/libvirt-dbus.yaml +++ b/projects/libvirt-dbus.yaml @@ -10,6 +10,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 title: Libvirt D-Bus archive_format: xz git_url: '{git_urls[libvirt-dbus][default]}' @@ -37,6 +38,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 - autotools-rpm-job: parent_jobs: 'libvirt-dbus-check' machines: '{rpm_machines}' diff --git a/projects/libvirt-ocaml.yaml b/projects/libvirt-ocaml.yaml index 1372fe9..36bc7c9 100644 --- a/projects/libvirt-ocaml.yaml +++ b/projects/libvirt-ocaml.yaml @@ -10,6 +10,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 title: Libvirt OCaml archive_format: xz git_url: '{git_urls[libvirt-ocaml][default]}' diff --git a/projects/libvirt-tck.yaml b/projects/libvirt-tck.yaml index f6e3775..f9edc64 100644 --- a/projects/libvirt-tck.yaml +++ b/projects/libvirt-tck.yaml @@ -11,6 +11,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 title: Libvirt TCK archive_format: gz git_url: '{git_urls[libvirt-tck][default]}' diff --git a/projects/virt-manager.yaml b/projects/virt-manager.yaml index 224e821..bd6c8e1 100644 --- a/projects/virt-manager.yaml +++ b/projects/virt-manager.yaml @@ -11,6 +11,7 @@ - libvirt-fedora-rawhide - libvirt-freebsd-10 - libvirt-freebsd-11 + - libvirt-freebsd-12 title: Virtual Machine Manager archive_format: gz git_url: '{git_urls[virt-manager][default]}' --=20 2.19.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 11:52:54 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1545054885674568.8579826150035; Mon, 17 Dec 2018 05:54:45 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 98DFDC0669A0; Mon, 17 Dec 2018 13:54:43 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5C8155C549; Mon, 17 Dec 2018 13:54:43 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 092E93F608; Mon, 17 Dec 2018 13:54:43 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id wBHDsf0m030517 for ; Mon, 17 Dec 2018 08:54:41 -0500 Received: by smtp.corp.redhat.com (Postfix) id 4205C608DA; Mon, 17 Dec 2018 13:54:41 +0000 (UTC) Received: from kinshicho.redhat.com (unknown [10.40.205.97]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 512BB6090D for ; Mon, 17 Dec 2018 13:54:40 +0000 (UTC) From: Andrea Bolognani To: libvir-list@redhat.com Date: Mon, 17 Dec 2018 14:54:26 +0100 Message-Id: <20181217135428.18924-5-abologna@redhat.com> In-Reply-To: <20181217135428.18924-1-abologna@redhat.com> References: <20181217135428.18924-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 4/6] Stop building on FreeBSD 10 X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Mon, 17 Dec 2018 13:54:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrang=C3=A9 --- guests/playbooks/build/jobs/defaults.yml | 1 - guests/playbooks/build/projects/libvirt-dbus.yml | 2 -- guests/playbooks/build/projects/libvirt-ocaml.yml | 1 - guests/playbooks/build/projects/libvirt-tck.yml | 1 - guests/playbooks/build/projects/virt-manager.yml | 1 - jobs/defaults.yaml | 1 - projects/libvirt-dbus.yaml | 2 -- projects/libvirt-ocaml.yaml | 1 - projects/libvirt-tck.yaml | 1 - projects/virt-manager.yaml | 1 - 10 files changed, 12 deletions(-) diff --git a/guests/playbooks/build/jobs/defaults.yml b/guests/playbooks/bu= ild/jobs/defaults.yml index cc1429f..1c241fe 100644 --- a/guests/playbooks/build/jobs/defaults.yml +++ b/guests/playbooks/build/jobs/defaults.yml @@ -7,7 +7,6 @@ all_machines: - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 - libvirt-freebsd-current diff --git a/guests/playbooks/build/projects/libvirt-dbus.yml b/guests/play= books/build/projects/libvirt-dbus.yml index 4b27c50..1aee627 100644 --- a/guests/playbooks/build/projects/libvirt-dbus.yml +++ b/guests/playbooks/build/projects/libvirt-dbus.yml @@ -9,7 +9,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 - libvirt-freebsd-current @@ -43,7 +42,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 - libvirt-freebsd-current diff --git a/guests/playbooks/build/projects/libvirt-ocaml.yml b/guests/pla= ybooks/build/projects/libvirt-ocaml.yml index 3ee8dad..16b022d 100644 --- a/guests/playbooks/build/projects/libvirt-ocaml.yml +++ b/guests/playbooks/build/projects/libvirt-ocaml.yml @@ -9,7 +9,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 - libvirt-freebsd-current diff --git a/guests/playbooks/build/projects/libvirt-tck.yml b/guests/playb= ooks/build/projects/libvirt-tck.yml index 03e7957..e55c10e 100644 --- a/guests/playbooks/build/projects/libvirt-tck.yml +++ b/guests/playbooks/build/projects/libvirt-tck.yml @@ -8,7 +8,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 - libvirt-freebsd-current diff --git a/guests/playbooks/build/projects/virt-manager.yml b/guests/play= books/build/projects/virt-manager.yml index 1256557..4402f86 100644 --- a/guests/playbooks/build/projects/virt-manager.yml +++ b/guests/playbooks/build/projects/virt-manager.yml @@ -10,7 +10,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 - libvirt-freebsd-current diff --git a/jobs/defaults.yaml b/jobs/defaults.yaml index e3664a9..6b39724 100644 --- a/jobs/defaults.yaml +++ b/jobs/defaults.yaml @@ -9,7 +9,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 rpm_machines: diff --git a/projects/libvirt-dbus.yaml b/projects/libvirt-dbus.yaml index d559c05..997218c 100644 --- a/projects/libvirt-dbus.yaml +++ b/projects/libvirt-dbus.yaml @@ -8,7 +8,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 title: Libvirt D-Bus @@ -36,7 +35,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 - autotools-rpm-job: diff --git a/projects/libvirt-ocaml.yaml b/projects/libvirt-ocaml.yaml index 36bc7c9..c20cb72 100644 --- a/projects/libvirt-ocaml.yaml +++ b/projects/libvirt-ocaml.yaml @@ -8,7 +8,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 title: Libvirt OCaml diff --git a/projects/libvirt-tck.yaml b/projects/libvirt-tck.yaml index f9edc64..005ebd8 100644 --- a/projects/libvirt-tck.yaml +++ b/projects/libvirt-tck.yaml @@ -9,7 +9,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 title: Libvirt TCK diff --git a/projects/virt-manager.yaml b/projects/virt-manager.yaml index bd6c8e1..9724ff9 100644 --- a/projects/virt-manager.yaml +++ b/projects/virt-manager.yaml @@ -9,7 +9,6 @@ - libvirt-fedora-28 - libvirt-fedora-29 - libvirt-fedora-rawhide - - libvirt-freebsd-10 - libvirt-freebsd-11 - libvirt-freebsd-12 title: Virtual Machine Manager --=20 2.19.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 11:52:54 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1545054892982927.0060417561515; Mon, 17 Dec 2018 05:54:52 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D7D2B394D34; Mon, 17 Dec 2018 13:54:50 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 924096012B; Mon, 17 Dec 2018 13:54:50 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 38567181B9F6; Mon, 17 Dec 2018 13:54:50 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id wBHDsg1s030524 for ; Mon, 17 Dec 2018 08:54:42 -0500 Received: by smtp.corp.redhat.com (Postfix) id C4BA52C8FA; Mon, 17 Dec 2018 13:54:42 +0000 (UTC) Received: from kinshicho.redhat.com (unknown [10.40.205.97]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D3E01608DA for ; Mon, 17 Dec 2018 13:54:41 +0000 (UTC) From: Andrea Bolognani To: libvir-list@redhat.com Date: Mon, 17 Dec 2018 14:54:27 +0100 Message-Id: <20181217135428.18924-6-abologna@redhat.com> In-Reply-To: <20181217135428.18924-1-abologna@redhat.com> References: <20181217135428.18924-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 5/6] guests: Drop FreeBSD 10 X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Mon, 17 Dec 2018 13:54:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrang=C3=A9 --- guests/host_vars/libvirt-freebsd-10/main.yml | 22 ----- guests/inventory | 1 - guests/vars/vault.yml | 86 ++++++++++---------- 3 files changed, 41 insertions(+), 68 deletions(-) delete mode 100644 guests/host_vars/libvirt-freebsd-10/main.yml diff --git a/guests/host_vars/libvirt-freebsd-10/main.yml b/guests/host_var= s/libvirt-freebsd-10/main.yml deleted file mode 100644 index 6547ab4..0000000 --- a/guests/host_vars/libvirt-freebsd-10/main.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -ansible_python_interpreter: /usr/local/bin/python2 - -projects: - - libosinfo - - libvirt - - libvirt-dbus - - libvirt-glib - - libvirt-go - - libvirt-go-xml - - libvirt-ocaml - - libvirt-perl - - libvirt-python - - libvirt-tck - - osinfo-db - - osinfo-db-tools - - virt-manager - - virt-viewer - -package_format: pkg -os_name: FreeBSD -os_version: 10 diff --git a/guests/inventory b/guests/inventory index 252666e..7619ffc 100644 --- a/guests/inventory +++ b/guests/inventory @@ -5,7 +5,6 @@ libvirt-debian-sid libvirt-fedora-28 libvirt-fedora-29 libvirt-fedora-rawhide -libvirt-freebsd-10 libvirt-freebsd-11 libvirt-freebsd-12 libvirt-freebsd-current diff --git a/guests/vars/vault.yml b/guests/vars/vault.yml index 59caa53..4229056 100644 --- a/guests/vars/vault.yml +++ b/guests/vars/vault.yml @@ -1,46 +1,42 @@ $ANSIBLE_VAULT;1.1;AES256 -63633637333233376433313132376136663030393330643762616339326638653730643037= 656565 -6464376661333237303566346539393565386333376261620a646631346130303639666630= 333464 -34363138386335363231363732346262613736306139346263623937613930623236336237= 386363 -3531303936343239360a376665353935363863306432623262333931666636306135666638= 373335 -32613765643431653531383237323639306536393766646263336661303161656331386362= 393630 -64386238336532383033303465333139663366353935656337663063613363386366386561= 323134 -66663634653935376531376465396333333032656638306661343435396634396266383332= 653134 -66343265646333363537353262356239393138343361343466613265313036643035633734= 333466 -35663730663832353962356534653738653434633861653834353263323965326231393931= 333336 -37313436333530336365356533643438616637666439336561303838306537626335653531= 316665 -34356563323563656631353037373663303138323366356632323332326234333266626535= 623137 -32303361656232643065636639383866363631646666323436376239303961663863383035= 336431 -62356331383064373530623666353166376239303139656263613461626532303465313066= 616437 -36306266626432393865393433366430383665303735313731643962346134316331346437= 303733 -31386465646234653337336333366430383361343864363730316562393265396266663333= 636334 -61616535626239363961393464356636646362333936343262623162616438363638333534= 393237 -33363836376138373333653865663333383937323936633131316162386265346130633631= 613161 -65366338303834666135343933623366643038313734643561373230613137663838663930= 393765 -32663233636364313764616262363565303435396631356363653735626363663534303065= 376262 -33346436303462623763303439636136666333386664616565663533636632366335376265= 386134 -37353063646335633731313261616234633938356461366565336330353037646138366231= 356434 -64336334313436313163363864373733646363313839373664616631303232313732636633= 303566 -30656236343963646631383639323836653565323831383832363237313464323933326536= 636338 -30663837636634626261663761646534393762656666633563323337646265643530626134= 393065 -39663333316532626437303830356130333938396430336163666635666635326135396236= 633461 -36306234626134383635616233346536353962643236663838626130323831336432343833= 633536 -66626432623831376161323432303232343438393138303031663432623865633239386330= 343061 -64373765613137666466636136323832373266333131646530393865383361366235623932= 636166 -35316563353766366530636234396431626435666137323638303866663736666132306434= 396138 -32333464643233363461653833376466313161353966326538393036353164633530653635= 333966 -31356234396636383837306639336537303332663664303165613336613430333539306431= 616334 -38626630623666323765376633326264666161303561343266396432306263336432373766= 613266 -31326230333535663632633530316537313035663562646133653566303836326133666666= 393564 -37383434363135343739373864666635656638306639353337333566343366643639323930= 656361 -64366163393831643063363734313266656464303036306231373262326231613130333533= 663430 -35643739643939386363616433633365656164653737636631326232646561356134613033= 383635 -39346633643235333732383966353263653934653538343763313635303239303835393232= 656238 -64393637373265623533343766333338623830316230396536386633623238353065373238= 626565 -36313764346437353066653530626632623031316263633362376435326263356361333766= 616131 -64366362373230393666633835396638336165643064303134303865663535613333663735= 633564 -65396139386235656431663862656433303531613166396333303333313939356165383631= 336630 -33666631333235363839346538393632653561346630643963643338633534616135656162= 333963 -33663438353434613538623334613732383366316135383763643965633331653330376164= 623862 -66646562363064396162346465646434363666333531303534633333316637636134373465= 653365 -36636163353732366633623530313830623830383538653762646137623935613562 +34653262643236653630616233396231366465363137396438363234336539366631666430= 363735 +3738616330663632323663303738323739366234623932360a306233666539653734353635= 626334 +39386438383137366436313865623861336331366164383439303466653639383636376265= 656137 +6133366231346131390a333066333433626630623766383238666630366633353232663430= 613161 +64373231333739613763303664383233333732636438643234343635356466376234663735= 356433 +37663038653238386362666536316635363466663266323461376331663735656263643337= 663161 +31323435323666313665616533393335626638656134303937396232633636393936636439= 653561 +65323365353531663438646538343537616236363631326666376232313162613134623766= 353162 +38666262346261306439383235333765613834356231336430306533613262376137333430= 643062 +62666633343734643636346135303137666263316333656665383837303133613037323266= 643664 +36373234636466393630393836653538613332306434396533343162396262346234623965= 373732 +39663634336239616538653337383135613534623462623230633861303764326561646531= 643636 +30386263626165386361366135333261323435386334613232346533376461656134376636= 613135 +33646432386632306133383862653065643134303030313032643962316534383366613364= 316234 +33353765626565386536373634613564383138393164336236343537353936373230653634= 656238 +35356238656235363235653837393862376335376338636361653535383432613961353832= 386234 +30336136326163303234333662313666306238383761303836616138343165656264363637= 383465 +33646561303366313132636633393231393966356633323464396639623066323337326534= 373835 +62663235343264623564316439343739663565383338373739643966343134643930346366= 666232 +39633631353365666464323138323036353666636230626563633733656461613736316639= 366137 +66326234306137653864643263616334316233663761366239346432356463336530326432= 326238 +30323330643838363631343865663238653335633862316639393237326566613863653834= 623334 +63613538326332376633376364653033623335356462383231303062643837663332393262= 613265 +32346635313130306134363133313134336666343439616636306237393466313362366135= 643862 +38376136323833363737396637336436366338373431333765373738396234626663386538= 353530 +66626337633337323563343666633131323235396564393534393234373530303135373335= 643338 +36366264323930396236663932383764313633353663313236376366653237333432333263= 643962 +63366438343662343331323861313838323837633238356431313034373132363434336536= 316536 +36646461323832363134386538353130363563373139333734346632346265373530373532= 643462 +33313661646533303636646337346232356437393334396436343162646631303537383466= 353230 +62633964303165626636373766616261313036666230306132626239623366346662373061= 613463 +30633637653838646133346261633934646665666161363137313362626638363961313935= 633464 +63363762356564393239353232386230313464336364393066646632316265313764393430= 323037 +33643830613565343263323233656333646161313062666461396264316538626339376339= 303232 +35653466346533633435613934326538323166613139393166623434326134353238333736= 383134 +62316266633137356265643638623862373332353665326235316139646362336530373834= 353966 +62633062303966666230303931653461653331383731376165633030396131363062356163= 303335 +61353861343338303233373536333331356234656138616561653465646262313662636630= 313134 +63616465393735623861383564383338626333653763366564396133356664396662653331= 303632 +62383438366330346261303264326636366239313864343261343364383237626663356262= 616230 +64376530353433643865626635666332356138623037633935656437653530613461 --=20 2.19.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 11:52:54 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1545054895059894.0002671616393; Mon, 17 Dec 2018 05:54:55 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id E8DC02D2BE2; Mon, 17 Dec 2018 13:54:52 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id B890E60139; Mon, 17 Dec 2018 13:54:52 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 6075C3F60E; Mon, 17 Dec 2018 13:54:52 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id wBHDsiMh030535 for ; Mon, 17 Dec 2018 08:54:44 -0500 Received: by smtp.corp.redhat.com (Postfix) id 3A5FF6090D; Mon, 17 Dec 2018 13:54:44 +0000 (UTC) Received: from kinshicho.redhat.com (unknown [10.40.205.97]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 48A29608DA for ; Mon, 17 Dec 2018 13:54:43 +0000 (UTC) From: Andrea Bolognani To: libvir-list@redhat.com Date: Mon, 17 Dec 2018 14:54:28 +0100 Message-Id: <20181217135428.18924-7-abologna@redhat.com> In-Reply-To: <20181217135428.18924-1-abologna@redhat.com> References: <20181217135428.18924-1-abologna@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 6/6] guests: Simplify FreeBSD symlink kludge X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Mon, 17 Dec 2018 13:54:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Now that we no longer support FreeBSD 10, we don't need to special-case the readline symlinks. Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrang=C3=A9 --- guests/playbooks/update/tasks/kludges.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/guests/playbooks/update/tasks/kludges.yml b/guests/playbooks/u= pdate/tasks/kludges.yml index f9127ac..c955a30 100644 --- a/guests/playbooks/update/tasks/kludges.yml +++ b/guests/playbooks/update/tasks/kludges.yml @@ -8,28 +8,15 @@ state: link force: yes with_items: + - include/readline - include/sasl - include/yajl + - lib/libreadline.so - lib/libsasl2.so - lib/libyajl.so when: - os_name =3D=3D 'FreeBSD' =20 -# Same as above, except we should skip it on FreeBSD 10 because it -# shipped (an old version of) readline in the base system -- name: Create compatibility symlinks - file: - src: '/usr/local/{{ item }}' - dest: '/usr/{{ item }}' - state: link - force: yes - with_items: - - include/readline - - lib/libreadline.so - when: - - os_name =3D=3D 'FreeBSD' - - os_version !=3D '10' - # FreeBSD compiles bash without defining SSH_SOURCE_BASHRC, which means # it won't try to detect when it's spawned by ssh and source ~/.bashrc # when that's the case. Our workaround is setting $BASH_ENV globally --=20 2.19.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list