~ubuntu-branches/ubuntu/wily/devscripts/wily

« back to all changes in this revision

Viewing changes to scripts/debsign.sh

  • Committer: Package Import Robot
  • Author(s): James McCoy, Paul Wise, James McCoy, Jakub Wilk, Adam D. Barratt, Stefano Zacchiroli
  • Date: 2014-12-03 23:01:48 UTC
  • mfrom: (10.10.17 sid)
  • Revision ID: package-import@ubuntu.com-20141203230148-05tj5glws63qrkla
Tags: 2.14.11
[ Paul Wise ]
* Suggest debbindiff for deep .deb comparisons
* Use mirror.ftp-master instead of specific hostnames

[ James McCoy ]
* debcommit: Correctly show --strip-message is the default in --help.
  (Closes: #766885)
* mk-origtargz: Warn about unmatched Files-Excluded patterns.  (Closes:
  #766641)
* annotate-output: Fix handling of a date format that contains whitespace.
  (Closes: #766180)
* Fix regression in dpkg-architecture using scripts when only -a or -t is
  specified, rather than both or neither.  (Closes: #768587)

[ Jakub Wilk ]
* sadt:
  + Fix handling of rw-build-tree restriction
  + Improve handling of non-executable test files.  When rw-build-tree is in
    effect, simply chmod the file.  Otherwise, attempt to chmod the file
    (skipping the test on failure) and restore the original permissions on
    completion.  (Closes: #749729)

[ Adam D. Barratt ]
* debchange:
  + Fix handling of changelogs where the most recent trailer line does not
    include a maintainer name.  (Closes: #766516)
  + Add jessie-backports to the version mapping for --bpo.
* bts: Support the "stretch", "buster", "stretch-ignore" and "buster-ignore"
  tags.

[ Stefano Zacchiroli ]
* bts:
  + Support for the "newcomer" tag
  + Backward compatibility for the old "gift" usertag: drop
    documentation for it, but do both gift and newcomer (user)tagging for
    the time being

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
# GNU General Public License for more details.
20
20
#
21
21
# You should have received a copy of the GNU General Public License
22
 
# along with this program. If not, see <http://www.gnu.org/licenses/>.
 
22
# along with this program. If not, see <https://www.gnu.org/licenses/>.
23
23
 
24
24
# Abort if anything goes wrong
25
25
set -e
639
639
        then
640
640
            if [ -n "$targetarch" ] && [ -n "$targetgnusystem" ]; then
641
641
                mustsetvar arch "$(dpkg-architecture "-a${targetarch}" "-t${targetgnusystem}" -qDEB_HOST_ARCH)" "build architecture"
 
642
            elif [ -n "$targetarch" ]; then
 
643
                mustsetvar arch "$(dpkg-architecture "-a${targetarch}" -qDEB_HOST_ARCH)" "build architecture"
 
644
            elif [ -n "$targetgnusystem" ]; then
 
645
                mustsetvar arch "$(dpkg-architecture "-t${targetgnusystem}" -qDEB_HOST_ARCH)" "build architecture"
642
646
            else
643
647
                mustsetvar arch "$(dpkg-architecture -qDEB_HOST_ARCH)" "build architecture"
644
648
            fi