From 105b58bd852369cd085781b9573a2f82064c27d8 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Thu, 30 May 2019 17:49:39 -0400 Subject: Drop use of opkhelper --- diff --git a/build b/build index 7b1a8d6..8aaeb16 100755 --- a/build +++ b/build @@ -3,10 +3,12 @@ build: install: - mkdir -p dest/usr/bin - set -e; for target in $$(cat ../targets); do \ - ln -sf "$${target}-cpp-4.7" "dest/usr/bin/$${target}-cpp"; \ - ln -sf "$${target}-gcc-4.7" "dest/usr/bin/$${target}-gcc"; \ - ln -sf "$${target}-g++-4.7" "dest/usr/bin/$${target}-g++"; \ + set -e; \ + for target in $$(cat ../targets); do \ + for exe in cpp gcc g++; do \ + dir="$${exe}-$${target}.data/usr/bin"; \ + mkdir -p "$${dir}"; \ + ln -sf "$${target}-$${exe}-4.7" \ + "$${dir}/$${target}-$${exe}"; \ + done; \ done - oh-installfiles diff --git a/changelog b/changelog index 9f7897b..6f6a421 100644 --- a/changelog +++ b/changelog @@ -1,6 +1,7 @@ gcc-defaults (1.1) trunk * Update Maintainer. + * Drop use of opkhelper. * gcc-defaults-common: New binary package. * Drop gcc-*-*-* -> cpp, g++-*-*-* -> cpp, and g++-*-*-* -> gcc-*-*-* dependencies. diff --git a/config b/config index 9ed2533..35640d4 100755 --- a/config +++ b/config @@ -43,8 +43,6 @@ configure_build() mkdir -p "${_pkg}-${PKG_TARGET_ARCH}.pkg" sed "${_ss}" "${_pkg}.pkg.in/control" \ >"${_pkg}-${PKG_TARGET_ARCH}.pkg/control" - sed "${_ss}" "${_pkg}.pkg.in/files" \ - >"${_pkg}-${PKG_TARGET_ARCH}.pkg/files" sed "${_ss}" "${_pkg}.pkg.in/postinst" \ >"${_pkg}-${PKG_TARGET_ARCH}.pkg/postinst" sed "${_ss}" "${_pkg}.pkg.in/prerm" \ diff --git a/control b/control index 9fedfb3..c6a2cba 100644 --- a/control +++ b/control @@ -1,2 +1 @@ Maintainer: Patrick McDermott -Build-Depends: opkhelper-3.0 diff --git a/cpp.pkg.in/files b/cpp.pkg.in/files deleted file mode 100644 index 0fd7e3c..0000000 --- a/cpp.pkg.in/files +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/@PKG_TARGET_ARCH@-cpp diff --git a/g++.pkg.in/files b/g++.pkg.in/files deleted file mode 100644 index b5a2cbc..0000000 --- a/g++.pkg.in/files +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/@PKG_TARGET_ARCH@-g++ diff --git a/gcc.pkg.in/files b/gcc.pkg.in/files deleted file mode 100644 index fe8350b..0000000 --- a/gcc.pkg.in/files +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/@PKG_TARGET_ARCH@-gcc -- cgit v0.9.1