[Accel-config] Re: [PATCH v1 0/2] Add Debian packaging scripts and templates
Dave Jiang <dave.jiang at intel.com>
| Newsgroups | dev.linux.lists.accel-config |
|---|---|
| Message-ID | <[email protected]> |
On 4/18/2021 12:11 PM, ramesh.thomas(a)intel.com wrote: > From: Ramesh Thomas <ramesh.thomas(a)intel.com> > > These patches add scripts and templates to crate Debian packaging > components. The templates are stored in 'debian' subfolder. 'debdch.sh' > script will update the debian/changelog file with git commits since last > release till the latest release in stable branch. 'debbuild.sh' script > will build the package and put the components in 'debpkg' subfolder. > > README.md is updated with documentation of debian build steps and > resolving dependencies. > > Following packages are created along with other components necessary for > upload to debian.org. > - accel-config (configuration tool) > - libaccel-config (libraries) > - libaccel-config-dev (library and headers for development) > - accel-config-test (test application and configurations) Reviewed-by: Dave Jiang <dave.jiang(a)intel.com> > > Ramesh Thomas (2): > accel-config: Add debian template files and package creations scripts > accel-config: Update README with Debian packaging documentation > > README.md | 32 +++++++++++++++ > debbuild.sh | 64 ++++++++++++++++++++++++++++++ > debdch.sh | 45 +++++++++++++++++++++ > debian/accel-config-test.install | 1 + > debian/accel-config.install | 3 ++ > debian/changelog | 5 +++ > debian/control | 59 +++++++++++++++++++++++++++ > debian/copyright | 46 +++++++++++++++++++++ > debian/libaccel-config-dev.install | 3 ++ > debian/libaccel-config.install | 1 + > debian/rules | 45 +++++++++++++++++++++ > debian/source/format | 1 + > 12 files changed, 305 insertions(+) > create mode 100755 debbuild.sh > create mode 100755 debdch.sh > create mode 100644 debian/accel-config-test.install > create mode 100644 debian/accel-config.install > create mode 100644 debian/changelog > create mode 100644 debian/control > create mode 100644 debian/copyright > create mode 100644 debian/libaccel-config-dev.install > create mode 100644 debian/libaccel-config.install > create mode 100644 debian/rules > create mode 100644 debian/source/format >