Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
diaspora
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Milan
diaspora
Commits
40dabffa
Commit
40dabffa
authored
14 years ago
by
Alec Leamas
Browse files
Options
Downloads
Patches
Plain Diff
Formatting & comments
parent
93a43e09
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pkg/fedora/make-dist.sh
+62
-60
62 additions, 60 deletions
pkg/fedora/make-dist.sh
with
62 additions
and
60 deletions
pkg/fedora/make-dist.sh
+
62
−
60
View file @
40dabffa
#!/bin/bash
#Usage: See function usage() at bottom.
#
#
# Create a diaspora distribution
#
# Builds a diaspora distribution containing the application and bundled
# libraries. Normally checks out latest version of the master branch.
# Usage: See function usage() at bottom.
#
GIT_REPO
=
'http://github.com/diaspora/diaspora.git'
RELEASE
=
'HEAD'
VERSION
=
'0.0'
function
git_id
...
...
@@ -52,8 +47,9 @@ function git_id
function
fix_alphatag
()
# Patch version on top comment first id line:
# Usage: fix_alphatag <file> <version> <commi_id>
#* Fri Sep 24 2010 name surname <email@com> 1.20100925_faf234320
# Usage: fix_alphatag <file> <version> <commit_id>
# Patches:\
# * Fri Sep 24 2010 name surname <email@com> 1.20100925_faf23207
{
dist
=
$(
rpm
--eval
%dist
)
awk
-v
dist
=
"
$dist
"
-v
version
=
"
$2
"
-v
release
=
"
$3
"
\
...
...
@@ -74,36 +70,36 @@ function fix_alphatag()
}
function
fix_bundle_deps
# usage: fix_bundle_deps <specfile> <version> release
# Patches Requires: diaspora-bundle = 0.0-20101021-aefsf323148
# usage: fix_bundle_deps <specfile> <version>
<
release
>
# Patches
:
Requires: diaspora-bundle = 0.0-20101021-aefsf323148
{
awk
-v
vers
=
"
$2
-
$3
"
\
' /Requires:/ { if ($2 == "diaspora-bundle")
printf( "%s
%s = %s\n", $1,$2,vers)
else
print
next
}
{ print}'
\
<
$1
>
$1
.tmp
&&
cp
$1
.tmp
$1
&&
rm
$1
.tmp
awk
-v
vers
=
"
$2
-
$3
"
\
' /Requires:/ { if ($2 == "diaspora-bundle")
printf( "%s
%s = %s\n", $1,$2,vers)
else
print
next
}
{ print}'
\
<
$1
>
$1
.tmp
&&
cp
$1
.tmp
$1
&&
rm
$1
.tmp
}
function
patch
()
# Patch
git_release, Requires: diaspora-bundle and top comm
ent version
.
# Patch
spec-files with curr
ent version
-release
# Usage: patch VERSION RELEASE
{
sed
-e
"/^%define/s|HEAD|
$2
|"
\
sed
-e
"/^%define/s|HEAD|
$2
|"
\
-e
'/^Version:/s|.*|Version: '
$1
'|'
\
<diaspora.spec
>
dist/diaspora.spec
fix_alphatag dist/diaspora.spec
$1
$2
#mkdir dist/diaspora/tmp || :
bundle_id
=
$(
git_id dist/diaspora/Gemfile
)
fix_bundle_deps dist/diaspora.spec
$1
"1.
$bundle_id
.fc13"
sed
-e
"/^%define/s|HEAD|
$bundle_deps
|"
\
fix_alphatag dist/diaspora.spec
$1
$2
#mkdir dist/diaspora/tmp || :
bundle_id
=
$(
git_id dist/diaspora/Gemfile
)
fix_bundle_deps dist/diaspora.spec
$1
"1.
$bundle_id
.fc13"
sed
-e
"/^%define/s|HEAD|
$bundle_deps
|"
\
-e
'/^Version:/s|.*|Version: '
$1
'|'
\
< diaspora-bundle.spec
>
dist/diaspora-bundle.spec
cp
dist/diaspora.spec dist/diaspora/diaspora.spec
cp
dist/diaspora.spec dist/diaspora/diaspora.spec
}
function
checkout
()
...
...
@@ -137,18 +133,19 @@ function checkout()
function
make_dist
# Create a distribution tarball
# Usage: make dist [ commit, defaults to HEAD]
{
commit
=
$(
checkout
${
1
:-
'HEAD'
}
)
echo
"Creating source tarball for
$commit
"
patch
$VERSION
$commit
RELEASE_DIR
=
"diaspora-
$VERSION
-
$commit
"
rm
-rf
dist/
${
RELEASE_DIR
}
mkdir
dist/
${
RELEASE_DIR
}
cp
diaspora-ws diaspora-setup diaspora.logconf dist/
${
RELEASE_DIR
}
cd
dist
mkdir
${
RELEASE_DIR
}
/master
cp
-ar
diaspora/
*
diaspora/.git
*
diaspora/.bundle
${
RELEASE_DIR
}
/master
cp
-ar
diaspora/
*
diaspora/.git
*
diaspora/.bundle
${
RELEASE_DIR
}
/master
mv
${
RELEASE_DIR
}
/master/diaspora.spec
${
RELEASE_DIR
}
(
cd
${
RELEASE_DIR
}
;
find
.
-name
.gitkeep
-delete
)
tar
czf
${
RELEASE_DIR
}
.tar.gz
${
RELEASE_DIR
}
&&
rm
-rf
${
RELEASE_DIR
}
...
...
@@ -160,25 +157,30 @@ function make_dist
}
function
make_bundle
()
# Create the bundle tarball
# Usage: make_bundle [ commit, defaults to HEAD]
#
{
checkout
${
1
:-
'HEAD'
}
>
/dev/null
bundle_id
=
$(
git_id dist/diaspora/Gemfile
)
bundle_name
=
"diaspora-bundle-
$VERSION
-
$bundle_id
"
test
-e
"dist/
$bundle_name
.tar.gz"
||
{
echo
"Creating bundle
$bundle_name
"
cd
dist
rm
-rf
$bundle_name
mkdir
-p
$bundle_name
/bundle
pushd
diaspora
>
/dev/null
cd
dist
rm
-rf
$bundle_name
mkdir
-p
$bundle_name
/bundle
pushd
diaspora
>
/dev/null
test
-e
../../Gemfile.lock.patch
&&
git apply ../../Gemfile.lock.patch
>
/dev/null 2>&1
bundle
install
--deployment
\
git apply ../../Gemfile.lock.patch
>
/dev/null 2>&1
bundle
install
--deployment
\
--path
=
"../
$bundle_name
/bundle"
\
--without
=
test
rdoc
cp
-ar
AUTHORS Gemfile GNU-AGPL-3.0 COPYRIGHT
"../
$bundle_name
"
cp
-ar
AUTHORS Gemfile GNU-AGPL-3.0 COPYRIGHT
\
"../
$bundle_name
"
popd
tar
czf
$bundle_name
.tar.gz
$bundle_name
cd
..
}
echo
echo
"Bundle: dist/
$bundle_name
.tar.gz"
...
...
@@ -213,18 +215,18 @@ function make_links()
function
usage
()
{
cat
<<-
EOF
cat
<<-
EOF
Usage: make-dist [-c commit] <dist|bundle|links>
Usage: make-dist [-c commit] <dist|bundle|links>
-c Use a given commit, defaults to last checked in.
dist Build a diaspora application tarball.
bundle Build a bundler(1) bundle for diaspora.
links Symlink bundle and source tarballs to rpm source dir.
All results are stored in dist/
-c Use a given commit, defaults to last checked in.
dist Build a diaspora application tarball.
bundle Build a bundler(1) bundle for diaspora.
links Symlink bundle and source tarballs to rpm source dir.
All results are stored in dist/
EOF
}
}
test
"
$1
"
=
"-h"
-o
$#
=
0
&&
{
...
...
@@ -242,25 +244,25 @@ test "$1" = "-c" && {
}
case
$1
in
case
$1
in
"bundle"
)
make_bundle
$commit
;;
"bundle"
)
make_bundle
$commit
;;
'source'
)
make_dist
$commit
;;
'source'
)
make_dist
$commit
;;
'links'
)
make_links
$commit
;;
'links'
)
make_links
$commit
;;
"fix_gemfile"
)
fix_gemfile
;;
"fix_gemfile"
)
fix_gemfile
;;
*
)
usage
exit
1
;;
esac
*
)
usage
exit
1
;;
esac
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