File: README.source

package info (click to toggle)
sassphp 0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 348 kB
  • sloc: ansic: 741; xml: 129; php: 81; makefile: 15; sh: 12
file content (23 lines) | stat: -rw-r--r-- 606 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Merging upstream releases
=========================

Importing a new upstream version can be done like this:

# set target version
upstream_version=0.5.12
# go to git repo
cd $GIT_DIR
# Check gbp.conf (especially debian-branch)
cat debian/gbp.conf
# Import upstream
git remote add upstream https://github.com/absalomedia/sassphp.git
git fetch upstream
# go to the Debian branch
git checkout debian
# Import latest version
gbp import-orig --uscan \
  -u "${upstream_version}" \
  --upstream-vcs-tag "${upstream_version}"
# all done :)

 -- Ondřej Surý <ondrej@debian.org>, Tue, 30 May 2017 10:31:20 +0200