summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-05-14 01:25:44 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-05-14 01:25:44 (EDT)
commit194c8a98e0c935088da1a92b41db6dd3bb3d4df8 (patch)
tree99fe163b6edcf7f633d7d78f63c9f2aafea37f19
parent5800c309f7ce65c11d6a2687c6a0394d622032cc (diff)
Use Base-Version in package control fields
-rw-r--r--cpp-8.pkg/control4
-rw-r--r--g++.pkg.in/control8
-rw-r--r--gcc-8-common.pkg/control2
-rw-r--r--gcc-8-locales.pkg/control2
-rw-r--r--gcc.pkg.in/control6
-rw-r--r--libgcc.1.pkg/control2
-rw-r--r--libgomp.1.pkg/control2
-rw-r--r--libitm.1.pkg/control2
-rw-r--r--libssp.0.pkg/control2
-rw-r--r--libstdc++.6-8-dev.pkg/control2
-rw-r--r--libstdc++.6.pkg/control2
11 files changed, 17 insertions, 17 deletions
diff --git a/cpp-8.pkg/control b/cpp-8.pkg/control
index c6ef972..9896d06 100644
--- a/cpp-8.pkg/control
+++ b/cpp-8.pkg/control
@@ -1,8 +1,8 @@
Architecture: i686-any-any core-any-any k8-any-any amd64-any-any
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version}),
+Depends: gcc-${Base-Version}-common (= ${Binary-Version}),
libmpc.3, libmpfr.4, libgmp.10, libz.1
-Suggests: gcc-4.7-locales (>= ${Binary-Version})
+Suggests: gcc-${Base-Version}-locales (>= ${Binary-Version})
Description: GNU C preprocessor
A macro processor that is used automatically by the C compiler to transform
programs before actual compilation.
diff --git a/g++.pkg.in/control b/g++.pkg.in/control
index 12b8a61..068ffec 100644
--- a/g++.pkg.in/control
+++ b/g++.pkg.in/control
@@ -1,13 +1,13 @@
Architecture: @PKG_TARGET_ARCH@
# Architecture: i686-any-any amd64-any-any @PKG_TARGET_ARCH@
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version}),
- gcc-4.7-@PKG_TARGET_ARCH@ (= ${Binary-Version}),
- libstdc++.6-4.7-dev (= ${Binary-Version}),
+Depends: gcc-${Base-Version}-common (= ${Binary-Version}),
+ gcc-${Base-Version}-@PKG_TARGET_ARCH@ (= ${Binary-Version}),
+ libstdc++.6-${Base-Version}-dev (= ${Binary-Version}),
libgmp.10,
libmpc.3,
libmpfr.4,
libz.1,
-Suggests: gcc-4.7-locales (>= ${Binary-Version})
+Suggests: gcc-${Base-Version}-locales (>= ${Binary-Version})
Description: GNU C++ compiler for @PKG_TARGET_ARCH@
The C++ language front end for the GNU compiler collection.
diff --git a/gcc-8-common.pkg/control b/gcc-8-common.pkg/control
index a439637..4e5587d 100644
--- a/gcc-8-common.pkg/control
+++ b/gcc-8-common.pkg/control
@@ -1,4 +1,4 @@
Architecture: all
Platform: all
Description: GNU compiler collection - common files
- This package provides documentation for the gcc-4.7 source package.
+ This package provides documentation for the gcc-${Base-Version} source package.
diff --git a/gcc-8-locales.pkg/control b/gcc-8-locales.pkg/control
index 3f50a4b..a7653e2 100644
--- a/gcc-8-locales.pkg/control
+++ b/gcc-8-locales.pkg/control
@@ -1,5 +1,5 @@
Architecture: all
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version})
+Depends: gcc-${Base-Version}-common (= ${Binary-Version})
Description: GNU compiler collection - locales
This package provides native language support for the GNU compiler collection.
diff --git a/gcc.pkg.in/control b/gcc.pkg.in/control
index c668143..481c478 100644
--- a/gcc.pkg.in/control
+++ b/gcc.pkg.in/control
@@ -1,8 +1,8 @@
Architecture: @PKG_TARGET_ARCH@
# Architecture: i686-any-any amd64-any-any @PKG_TARGET_ARCH@
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version}),
- cpp-4.7 (= ${Binary-Version}),
+Depends: gcc-${Base-Version}-common (= ${Binary-Version}),
+ cpp-${Base-Version} (= ${Binary-Version}),
binutils-@PKG_TARGET_ARCH@,
libgcc.1 (= ${Binary-Version}),
libgomp.1 (= ${Binary-Version}),
@@ -13,6 +13,6 @@ Depends: gcc-4.7-common (= ${Binary-Version}),
libmpfr.4,
libz.1
Recommends: libc.6-dev
-Suggests: gcc-4.7-locales (>= ${Binary-Version}),
+Suggests: gcc-${Base-Version}-locales (>= ${Binary-Version}),
Description: GNU C compiler for @PKG_TARGET_ARCH@
The C language front end for the GNU compiler collection.
diff --git a/libgcc.1.pkg/control b/libgcc.1.pkg/control
index c8dd515..bb5ad58 100644
--- a/libgcc.1.pkg/control
+++ b/libgcc.1.pkg/control
@@ -1,6 +1,6 @@
Architecture: any
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version})
+Depends: gcc-${Base-Version}-common (= ${Binary-Version})
Description: GCC low-level runtime library
This package provides libgcc, a low-level runtime library that contains
routines for arithmetic operations not performed by the host processor,
diff --git a/libgomp.1.pkg/control b/libgomp.1.pkg/control
index 92b96e9..a3136e9 100644
--- a/libgomp.1.pkg/control
+++ b/libgomp.1.pkg/control
@@ -1,6 +1,6 @@
Architecture: any
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version})
+Depends: gcc-${Base-Version}-common (= ${Binary-Version})
Description: GNU OpenMP library
This package provides the GNU implementation of the OpenMP API for
multi-platform shared-memory parallel programming in C, C++, and Fortran.
diff --git a/libitm.1.pkg/control b/libitm.1.pkg/control
index eda49ea..a74d619 100644
--- a/libitm.1.pkg/control
+++ b/libitm.1.pkg/control
@@ -1,6 +1,6 @@
Architecture: any
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version}), libgcc.1
+Depends: gcc-${Base-Version}-common (= ${Binary-Version}), libgcc.1
Description: GNU Tranactional Memory Library
GNU Transactional Memory Library (libitm) provides transaction support for
accesses to the memory of a process, enabling easy-to-use synchronization of
diff --git a/libssp.0.pkg/control b/libssp.0.pkg/control
index b23de1a..4dcf615 100644
--- a/libssp.0.pkg/control
+++ b/libssp.0.pkg/control
@@ -1,6 +1,6 @@
Architecture: any
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version})
+Depends: gcc-${Base-Version}-common (= ${Binary-Version})
Description: GCC stack-smashing protector
This package provides the GCC stack-smashing protector extension to protect
applications from stack buffer overflow attacks.
diff --git a/libstdc++.6-8-dev.pkg/control b/libstdc++.6-8-dev.pkg/control
index f621435..2e86c48 100644
--- a/libstdc++.6-8-dev.pkg/control
+++ b/libstdc++.6-8-dev.pkg/control
@@ -1,6 +1,6 @@
Architecture: any
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version}),
+Depends: gcc-${Base-Version}-common (= ${Binary-Version}),
libstdc++.6 (= ${Binary-Version}),
Provides: libstdc++.6-dev
Description: GNU C++ library - development files
diff --git a/libstdc++.6.pkg/control b/libstdc++.6.pkg/control
index 6887fcb..fea3d31 100644
--- a/libstdc++.6.pkg/control
+++ b/libstdc++.6.pkg/control
@@ -1,5 +1,5 @@
Architecture: any
Platform: all
-Depends: gcc-4.7-common (= ${Binary-Version}), libgcc.1
+Depends: gcc-${Base-Version}-common (= ${Binary-Version}), libgcc.1
Description: GNU C++ library
This package provides the GNU Standard C++ Library v3.