Skip to content

Commit

Permalink
Rename /usr/share/licenses/GPL3 to GPL-3.0+ (#4558)
Browse files Browse the repository at this point in the history
After #4551 some license files
were renamed to have a more descriptive name, the license text didn't change.

[skip ci] [skip build]
  • Loading branch information
giordano authored Mar 6, 2022
1 parent d04e948 commit 1808332
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion D/Deldir/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ done
mkdir -p "${libdir}"
${CC} -shared -o ${libdir}/libdeldir.${dlext} *.o
install_license /usr/share/licenses/GPL3
install_license /usr/share/licenses/GPL-3.0+
"""

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms()
# Filter out previously experimental platforms until we do a new build
filter!(p -> arch(p) != "armv6l" && !(Sys.isapple(p) && arch(p) == "aarch64"), platforms)

# The products that we will ensure are always built
products = [
Expand Down
2 changes: 1 addition & 1 deletion G/GAP_pkg/GAP_pkg_browse/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ make -j${nproc} CFLAGS="-I$includedir -I$includedir/ncurses"
mkdir -p ${prefix}/lib/gap
cp bin/*/*.so ${prefix}/lib/gap/
install_license /usr/share/licenses/GPL3
install_license /usr/share/licenses/GPL-3.0+
"""

name = gap_pkg_name(name)
Expand Down
2 changes: 1 addition & 1 deletion H/HiGHS/highs_common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if [[ "${BUILD_SHARED}" == "OFF" ]]; then
rm -r ${prefix}/lib
if [[ "${target}" == *-mingw* ]]; then
# The Windows build ships also GCC runtime, add its license as well
install_license /usr/share/licenses/GPL3
install_license /usr/share/licenses/GPL-3.0+
fi
fi
"""
Expand Down
2 changes: 1 addition & 1 deletion I/IGLWrap/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cmake \
..
make -j${nproc}
make install
install_license /usr/share/licenses/GPL3
install_license /usr/share/licenses/GPL-3.0+
"""

products = [
Expand Down
2 changes: 1 addition & 1 deletion O/Objconv/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cd $WORKSPACE/srcdir/objconv*/
mkdir -p ${prefix}/bin
${CXX} ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} -O2 -o ${prefix}/bin/objconv${exeext} src/*.cpp
install_license /usr/share/licenses/GPL3
install_license /usr/share/licenses/GPL-3.0+
"""

# These are the platforms we will build for by default, unless further
Expand Down

0 comments on commit 1808332

Please sign in to comment.