Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
459ae07e
Commit
459ae07e
authored
10 years ago
by
Thibault Cohen
Browse files
Options
Downloads
Patches
Plain Diff
Fix get orig sources
Change-Id: I7c7110ec04a77237369cc4aba249f441b4ba7539
parent
6f2eabbf
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/rules
+8
-2
8 additions, 2 deletions
debian/rules
ring-daemon.spec
+1
-1
1 addition, 1 deletion
ring-daemon.spec
with
9 additions
and
3 deletions
debian/rules
+
8
−
2
View file @
459ae07e
...
@@ -7,7 +7,8 @@ PKG = $(shell dpkg-parsechangelog -l$(PKD)/changelog --show-field=Source)
...
@@ -7,7 +7,8 @@ PKG = $(shell dpkg-parsechangelog -l$(PKD)/changelog --show-field=Source)
VER ?= $(shell dpkg-parsechangelog -l$(PKD)/changelog | perl -ne 'print $$1 if m{^Version:\s+(?:\d+:)?(\d.*)(?:\-\d+.*)};')
VER ?= $(shell dpkg-parsechangelog -l$(PKD)/changelog | perl -ne 'print $$1 if m{^Version:\s+(?:\d+:)?(\d.*)(?:\-\d+.*)};')
DISTRIB_ID = $(shell grep -hPo "^ID=\K.*" /etc/*ease)
DISTRIB_ID = $(shell grep -hPo "^ID=\K.*" /etc/*ease)
DISTRIB_VERSION_ID = $(shell grep -hPo "^VERSION_ID=\K.*" /etc/*ease)
DISTRIB_VERSION_ID = $(shell grep -hPo "^VERSION_ID=\K.*" /etc/*ease)
DAEMON_TAG = 2.1.0
DAEMON_TAG = $(VER)
# Uncomment this to turn on verbose mode.
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
export DH_VERBOSE=1
...
@@ -49,8 +50,13 @@ override_dh_auto_install:
...
@@ -49,8 +50,13 @@ override_dh_auto_install:
get-orig-source:
get-orig-source:
# Daemon
# Daemon
git init
git remote add origin https://gerrit-ring.savoirfairelinux.com/ring-daemon
git fetch --all
git fetch --all
git merge origin $(DAEMON_TAG) --no-edit
git checkout packaging-releases -f
git config user.name "joulupukki"
git config user.email "joulupukki@localhost"
git merge $(DAEMON_TAG) --no-edit
# Packing
# Packing
@echo "# Packing ... "
@echo "# Packing ... "
find . | sort \
find . | sort \
...
...
This diff is collapsed.
Click to expand it.
ring-daemon.spec
+
1
−
1
View file @
459ae07e
...
@@ -46,7 +46,7 @@ git fetch --all
...
@@ -46,7 +46,7 @@ git fetch --all
git checkout packaging-releases -f
git checkout packaging-releases -f
git config user.name "joulupukki"
git config user.name "joulupukki"
git config user.email "joulupukki@localhost"
git config user.email "joulupukki@localhost"
git merge
origin/
%{daemon_tag} --no-edit
git merge %{daemon_tag} --no-edit
# Apply all patches
# Apply all patches
for patch_file in $(cat debian/patches/series | grep -v "^#")
for patch_file in $(cat debian/patches/series | grep -v "^#")
do
do
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment