Skip to content

Commit

Permalink
add original gcc-arm-embedded debian files
Browse files Browse the repository at this point in the history
  • Loading branch information
flixr committed Oct 8, 2013
1 parent 0bae18f commit 543da28
Show file tree
Hide file tree
Showing 9 changed files with 3,669 additions and 0 deletions.
36 changes: 36 additions & 0 deletions linux/gcc-arm-embedded/debian/changelog
@@ -0,0 +1,36 @@
gcc-arm-none-eabi (4-7-2013q3-0precise6) precise; urgency=low

* Upgrade to 4.7 2013Q3 release.

-- Terry Guo <terry.guo@arm.com> Mon, 16 Sep 2013 16:15:43 +0800

gcc-arm-none-eabi (4-7-2013q2-0precise5) precise; urgency=low

* Upgrade to 4.7 2013Q2 release.

-- Terry Guo <terry.guo@arm.com> Mon, 17 Jun 2013 10:58:53 +0800

gcc-arm-none-eabi (4-7-2013q1-0precise4) precise; urgency=low

* No source changes. Just have to re-upload after admin enable build for
armhf.

-- Terry Guo <terry.guo@arm.com> Thu, 23 May 2013 10:00:46 +0800

gcc-arm-none-eabi (4-7-2013q1-0precise3) precise; urgency=low

* Build tool chain for armel and armhf.

-- Terry Guo <terry.guo@arm.com> Wed, 22 May 2013 16:59:39 +0800

gcc-arm-none-eabi (4-7-2013q1-0precise2) precise; urgency=low

* Add missed libexpat1-dev to support XML.

-- Terry Guo <terry.guo@arm.com> Mon, 22 Apr 2013 11:41:30 +0800

gcc-arm-none-eabi (4-7-2013q1-0precise1) precise; urgency=low

* Initial release.

-- Terry Guo <terry.guo@arm.com> Wed, 13 Mar 2013 08:10:50 +0800
1 change: 1 addition & 0 deletions linux/gcc-arm-embedded/debian/compat
@@ -0,0 +1 @@
6
14 changes: 14 additions & 0 deletions linux/gcc-arm-embedded/debian/control
@@ -0,0 +1,14 @@
Source: gcc-arm-none-eabi
Section: devel
Priority: extra
Maintainer: Terry Guo <terry.guo@arm.com>
Build-Depends: debhelper (>= 5.0.62), gawk, gzip (>=1.3.12), autoconf, m4, automake, libtool, gettext, autogen, flex, bison, texlive, texinfo, texlive-extra-utils, g++ (>= 4.4.3), gcc-multilib, texlive-font-utils, texlive-latex-base, ghostscript, texlive-latex-recommended, texlive-generic-recommended, libncurses5-dev, zlib1g-dev, libmpfr-dev (>= 2.3.1), libmpc-dev (>= 0.8.0), libexpat1-dev
Standards-Version: 3.8.3
Homepage: https://launchpad.net/~terry.guo

Package: gcc-arm-none-eabi
Architecture: i386 amd64
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: A GNU-based tool chain for arm embedded processors
Besides this PPA based release, there are other formats for various
platforms which can be found at https://launchpad.net/gcc-arm-embedded.
3,555 changes: 3,555 additions & 0 deletions linux/gcc-arm-embedded/debian/copyright

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions linux/gcc-arm-embedded/debian/gcc-arm-none-eabi.manpages
@@ -0,0 +1 @@
install-native/share/doc/gcc-arm-none-eabi/man/man1/*
5 changes: 5 additions & 0 deletions linux/gcc-arm-embedded/debian/install
@@ -0,0 +1,5 @@
install-native/bin/* /usr/bin/
install-native/arm-none-eabi/* /usr/arm-none-eabi/
install-native/lib/* /usr/lib/
install-native/share/* /usr/share/
src/samples/* /usr/share/gcc-arm-none-eabi/samples/
52 changes: 52 additions & 0 deletions linux/gcc-arm-embedded/debian/rules
@@ -0,0 +1,52 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

export DH_VERBOSE=1
export DH_OPTIONS=-v

top_dir := $(shell pwd)

build:build-stamp

unpack-sources-stamp:
cd $(top_dir)/src && find . -maxdepth 1 -name "*.bz2" -exec tar xf '{}' \;
touch $@

build-stamp: unpack-sources-stamp
$(top_dir)/build-toolchain.sh --skip_mingw32 --ppa
touch $@


clean:
dh_testdir
dh_testroot
rm -rf $(build_dir) *-stamp
dh_clean

binary-indep:
binary-arch: build
dh_testdir
dh_testroot
dh_install
dh_installdocs
dh_installman
dh_lintian
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb

binary: binary-indep binary-arch

.PHONY: binary-indep binary-arch binary clean build install
1 change: 1 addition & 0 deletions linux/gcc-arm-embedded/debian/source/format
@@ -0,0 +1 @@
3.0 (quilt)
4 changes: 4 additions & 0 deletions linux/gcc-arm-embedded/debian/source/lintian-overrides
@@ -0,0 +1,4 @@
gcc-arm-none-eabi source: debian-rules-missing-recommended-target
gcc-arm-none-eabi source: debian-rules-missing-recommended-target
gcc-arm-none-eabi source: ancient-standards-version

0 comments on commit 543da28

Please sign in to comment.