What's the best way to update (rebuild) a Debian/Ubuntu-package to a more recent version? Should I be using apt source in all cases including when I want to publish it as Personal Package Archive? I would like to have Intel TBB 4.0 instead of 3.0, which is pre-packaged in Ubuntu 11.10.
Rebuilding a Newer Version of a Deb Package
1.3k Views Asked by Nordlöw At
1
There are 1 best solutions below
Related Questions in UBUNTU
- Git init --bare giving error fatal: Out of memory? mmap failed: No such device
- EMACS-Live + Slime error at startup
- Vagrant - Ansible error installing Apache
- Openfire Smack Connection issue
- Error in Ruby on Rails on Ubuntu 14.04
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- C++ string and char* manipulation acting weird
- Data transfer between Ubuntu/Windows to network
- How to upgrade Node js version to 0.12.4 on Ubuntu
- How do I install Intellij on Ubuntu 15.04?
- Can't run django-admin startproject mysite (ubuntu, django.core.exceptions.ImproperlyConfigured)
- How to add apt key with --recv-keys instead of --recv?
- Express - Multiparty/Formidable unable to parse files greater than 100kb on Ubuntu. Callback of Parse is not called at all
- Unable start mongoose im in ubuntu. process crashes
- Tkinter application topmost, even over fullscreen
Related Questions in VERSIONING
- How to handle distro versions in Yocto
- Biztalk: Side-by-Side Versioning in different Applications
- continuous integration - build separated projects or build all in one?
- C Compiler automatic Version increment
- How do multiple versions of a REST API share the same data model?
- Use version number in file links in Sphinx
- elasticsearch versions numbering algorithm
- how to maintain different versions of a symfony web site
- spring cloud handle multiple concurrent clients and servers
- How to manage POM version numbers in git without merge conflicts
- how to upgrade a dependency of a global package in npm
- Does node package.json support alpha or beta meta range according to SemVer?
- Why the substitution |version| is not working on Sphinx
- Trying to add versioning using filemtime but fail
- Git Eclipse and versioning
Related Questions in DEBIAN
- Python Requests just got very slow, better alternative?
- Getting X Cursor in WebKit GTK2+ widget if run by startx
- How to increase PHP memory_limit in Debian Jessie?
- Unable to install RabbitMQ using puppet due to curl error
- phpinfo() uses old version. What am I missing after "make install"?
- How to make home directory the root with useradd on Debian
- Is Google using Debian and Apache?
- scanbd doesn't work unless I restart it from the command line
- debconf selections for phpmyadmin unattended installation with no webserver installed and no dbconfig-common
- How to run TeamSpeak3 server on boot?
- Install Subversion 1.7 on Debian jessie
- apache proxy doesn't work
- module.js 340 error Cannot find module 'bonescript'
- Rails, Sidekiq and systemd are on a debian 8 ship
- Custon headers not working on php 5.6 - apache 2.4, debian 8 jessie
Related Questions in REBUILD
- Android Studio Requires rebuild every run
- Why are there two sets of Build and Rebuild options in my ASP.NET project?
- Windows Explorer Icon Cache is broken. How to solve it?
- Error while rebuilding tcl 8.5 to disabling threadings
- Changes are not happening until a rebuild is performed
- Propel erros on site migration
- Cassandra 1.1.10 streaming hangs on rebuild
- DraggableScrollableSheet rebuilds all children every frame when dragged
- Query to rebuilt domain index
- Eclipse: Complete Build State Clean/Reset
- Fullpage rebuild is not triggered
- Can't rebuild my application anymore
- How to stop Eclipse rebuild workspace?
- Renaming an android app to install a second modified version at the same time
- Performance declaring widget in stateful widget's build
Related Questions in PACKAGE-MANAGEMENT
- How to install a package using stack?
- Proper usage of Chocolatey (package update / version management)
- Is there a project file support like npm/package.json for Python's pip?
- How to remove package from internal git repo
- For a Gatsby Starter - why do some npm packages "want" an older package version instead of the latest package version
- Dart: library and export for web apps
- How bad is it to use hyphens in a conan package name?
- Header-only library with CMake logic - how to treat in Conan?
- Renv cache not working. Packages are copied not linked
- What are the "host and target platforms" of a dependency?
- What is propagation of a dependency?
- How do I ensure that a dependency only gets installed on Windows with Poetry?
- How should this table of platforms of dependencies be read?
- Rebuilding a Newer Version of a Deb Package
- Packages don't match when conda uninstall and install
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You should follow the standard procedure of the Debian New Maintainer's Guide (Section 8.3) even when deploying to a Personal Package Archive. That is, get the current debian packaging control using
apt-get source, unpack the TBB 4.0 source, unpack the Debian .tar.gz, do the "chores" described in Section 8.3. (New upstream release) and then build the package to obtain the new .deb.The reason for following this procedure is simply tool support: All Debian tools are intended for this standard use, and they provide excellent support and automation when used properly. You can cut some corners when you have understood this system.