diff -Nru aspectc++-2.3+git20211104/debian/changelog aspectc++-2.3+git20211104/debian/changelog --- aspectc++-2.3+git20211104/debian/changelog 2021-11-04 15:30:14.000000000 +0000 +++ aspectc++-2.3+git20211104/debian/changelog 2021-11-22 20:49:20.000000000 +0000 @@ -1,3 +1,10 @@ +aspectc++ (1:2.3+git20211104-2) unstable; urgency=medium + + * Update float128.patch, kudost oFrédéric Bonnard + for the patch! + + -- Reinhard Tartler Mon, 22 Nov 2021 15:49:20 -0500 + aspectc++ (1:2.3+git20211104-1) unstable; urgency=medium * New upstream version diff -Nru aspectc++-2.3+git20211104/debian/.gitlab-ci.yml aspectc++-2.3+git20211104/debian/.gitlab-ci.yml --- aspectc++-2.3+git20211104/debian/.gitlab-ci.yml 2021-11-04 15:30:14.000000000 +0000 +++ aspectc++-2.3+git20211104/debian/.gitlab-ci.yml 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ -image: registry.gitlab.com/eighthave/ci-image-git-buildpackage:latest - -build: - only: - refs: - - master - artifacts: - paths: - - "*.deb" - expire_in: 2 day - script: - - gitlab-ci-git-buildpackage-all diff -Nru aspectc++-2.3+git20211104/debian/patches/float128.patch aspectc++-2.3+git20211104/debian/patches/float128.patch --- aspectc++-2.3+git20211104/debian/patches/float128.patch 2021-11-04 15:30:14.000000000 +0000 +++ aspectc++-2.3+git20211104/debian/patches/float128.patch 2021-11-22 20:49:20.000000000 +0000 @@ -3,6 +3,8 @@ Cc: 907632@bugs.debian.org, debian-powerpc@lists.debian.org Subject: Re: Bug#907632: [ppc64-el] Breaks building aspectc++ Date: Tue, 11 Sep 2018 15:52:38 +0200 +Last-Update: Mon, 22 Nov 2021 09:51:36 +0100 + --- a/Ag++/PumaConfigFile.cc +++ b/Ag++/PumaConfigFile.cc @@ -10,8 +12,8 @@ config_command_str = "\"" + _config.cc_bin() + "\" " + _config.optvec().getString( (OptionItem::OPT_GCC | OptionItem::OPT_CONFIG)) -+#ifdef __powerpc__ && __powerpc64__ && __LITTLE_ENDIAN__ -+ + " -mno-float128 -E -dM -v -x c++ \"" + empty_file_name + "\""; ++#if defined(__powerpc__) && defined(__PPC64__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ ++ + " -mno-float128 -D __clang__ -E -dM -v -x c++ \"" + empty_file_name + "\""; +#else + " -E -dM -v -x c++ \"" + empty_file_name + "\""; +#endif diff -Nru aspectc++-2.3+git20211104/debian/salsa-ci.yml aspectc++-2.3+git20211104/debian/salsa-ci.yml --- aspectc++-2.3+git20211104/debian/salsa-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ aspectc++-2.3+git20211104/debian/salsa-ci.yml 2021-11-22 20:49:20.000000000 +0000 @@ -0,0 +1,9 @@ +--- +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml + +variables: + SALSA_CI_DISABLE_APTLY: 0 + SALSA_CI_DISABLE_BLHC: 1 + SALSA_CI_DISABLE_REPROTEST: 1