Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haikuports/haikuports
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 842da908c2c4
Choose a base ref
...
head repository: haikuports/haikuports
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 32e452df6fd5
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 15, 2021

  1. libfmt, bump version (#6057)

    Begasus authored Jul 15, 2021
    Copy the full SHA
    32e452d View commit details
Showing with 10 additions and 14 deletions.
  1. +10 −14 dev-libs/libfmt/{libfmt-7.0.3.recipe → libfmt-8.0.1.recipe}
Original file line number Diff line number Diff line change
@@ -6,11 +6,11 @@ COPYRIGHT="2012-2020 Victor Zverovich"
LICENSE="BSD (2-clause)"
REVISION="1"
SOURCE_URI="https://github.com/fmtlib/fmt/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="b4b51bc16288e2281cddc59c28f0b4f84fed58d016fb038273a09f05f8473297"
CHECKSUM_SHA256="b06ca3130158c625848f3fb7418f235155a4d389b2abc3a6245fb01cb0eb1e01"
SOURCE_FILENAME="fmt-$portVersion.tar.gz"
SOURCE_DIR="fmt-$portVersion"

ARCHITECTURES="?x86_gcc2 ?x86 x86_64"
ARCHITECTURES="!x86_gcc2 x86_64"
SECONDARY_ARCHITECTURES="x86"

libVersion="$portVersion"
@@ -47,23 +47,19 @@ defineDebugInfoPackage libfmt$secondaryArchSuffix \

BUILD()
{
mkdir -p haiku_build
cd haiku_build

cmake .. \
cmake -B build -S . \
-DBUILD_SHARED_LIBS=ON \
$cmakeDirArgs

make $jobArgs
-DFMT_TEST=OFF \
$cmakeDirArgs -L
make -C build $jobArgs
}

INSTALL()
{
cd haiku_build
make install
make -C build install

# prepare develop/lib
prepareInstalledDevelLibs libfmt
prepareInstalledDevelLib libfmt
fixPkgconfig

# devel package
@@ -74,6 +70,6 @@ INSTALL()

TEST()
{
cd haiku_build
make test
# enable test in BUILD()
make -C build test
}