Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
allure: New upstream release (0.8.3.0)
· fdd2f7aa
Mikolaj Konarski
authored
Jul 02, 2018
fdd2f7aa
allure: Turn off optimization for architectures that take forever compiling
· 5165e901
Mikolaj Konarski
authored
Jul 02, 2018
5165e901
haskell-lambdahack: Turn off optimization for architectures that take forever compiling
· 6af4a99c
Mikolaj Konarski
authored
Jul 02, 2018
6af4a99c
Show whitespace changes
Inline
Side-by-side
p/allure/debian/changelog
View file @
6af4a99c
allure (0.8.3.0-1) unstable; urgency=medium
* New upstream release
* Turn off optimization for architectures that take forever compiling
-- Mikolaj Konarski <mikolaj.konarski@funktory.com> Mon, 02 Jul 2018 17:09:51 +0200
allure (0.7.1.0-3) unstable; urgency=medium
[ Clint Adams ]
...
...
p/allure/debian/control
View file @
6af4a99c
...
...
@@ -9,10 +9,10 @@ Build-Depends: debhelper (>= 10),
cdbs,
ghc,
ghc-prof,
libghc-lambdahack-dev (>= 0.
7.1
.0),
libghc-lambdahack-dev (<< 0.
7.2
.0),
libghc-lambdahack-dev (>= 0.
8.3
.0),
libghc-lambdahack-dev (<< 0.
8.4
.0),
libghc-async-dev (>= 2),
libghc-enummapset-
th-
dev (>= 0.
6.0.0
),
libghc-enummapset-dev (>= 0.
5.2.2
),
libghc-optparse-applicative-dev (>= 0.13),
libghc-random-dev (>= 1.1),
libghc-text-dev (>= 0.11.2.3),
...
...
@@ -27,7 +27,7 @@ Architecture: any
Section: games
Depends: ${haskell:Depends},
${misc:Depends},
${shlibs:Depends}
${shlibs:Depends}
,
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
...
...
p/allure/debian/rules
View file @
6af4a99c
...
...
@@ -5,6 +5,10 @@ DEB_SETUP_BIN_NAME = debian/hlibrary.setup
DEB_CABAL_PACKAGE = allure
DEB_DEFAULT_COMPILER = ghc
ifneq (,$(filter $(DEB_BUILD_ARCH),armel armhf mips mipsel sparc64 mips64el hppa))
DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-O0"
endif
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
...
...
p/haskell-lambdahack/debian/changelog
View file @
6af4a99c
haskell-lambdahack (0.8.3.0-2) UNRELEASED; urgency=medium
* Turn off optimization for architectures that take forever compiling
-- Mikolaj Konarski <mikolaj.konarski@funktory.com> Mon, 02 Jul 2018 17:26:16 +0200
haskell-lambdahack (0.8.3.0-1) unstable; urgency=medium
* New upstream release
...
...
p/haskell-lambdahack/debian/rules
View file @
6af4a99c
...
...
@@ -5,7 +5,7 @@ DEB_SETUP_BIN_NAME = debian/hlibrary.setup
DEB_CABAL_PACKAGE = lambdahack
DEB_DEFAULT_COMPILER = ghc
ifneq (,$(filter $(DEB_BUILD_ARCH),armel armhf mips mipsel sparc64))
ifneq (,$(filter $(DEB_BUILD_ARCH),armel armhf mips mipsel sparc64
mips64el hppa
))
DEB_SETUP_GHC_CONFIGURE_ARGS += --ghc-options="-O0"
endif
...
...