Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
etersoft-build-utils
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
korinf
etersoft-build-utils
Commits
336ea428
Commit
336ea428
authored
Aug 23, 2015
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small fixes
parent
888ef77d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
rpmrb
bin/rpmrb
+2
-1
repl
share/eterbuild/functions/repl
+2
-3
web
share/eterbuild/functions/web
+1
-0
No files found.
bin/rpmrb
View file @
336ea428
...
...
@@ -26,7 +26,8 @@ SPEC=$1
# allow run with spec file (obsoleted)
[
-r
"
$SPEC
"
]
&&
shift
test
-f
"
$SPEC
"
||
SPEC
=
$(
get_gear_spec
)
[
-s
"
$SPEC
"
]
||
SPEC
=
$(
get_gear_spec
)
[
-s
"
$SPEC
"
]
||
fatal
"Can't find spec file. Run
$0
--help for help."
VER
=
$1
# need for rpmgs
...
...
share/eterbuild/functions/repl
View file @
336ea428
...
...
@@ -222,15 +222,14 @@ print_grprepl_list()
# Converts ALT Linux Sisyphus dependencies to target notation
# and print out result dependencies
# needs DISTRVENDOR, BUILDARCH, PKGFORMAT and so one
# call with package list
convert_pkgreqs_to_target
()
{
local
listdep
=
$@
TARGETPKGNAME
assert_var DISTRVENDOR BUILDARCH PKGFORMAT
repl_list
=
$(
print_pkgrepl_list
)
local
j
for
j
in
$listdep
;
do
for
j
in
"
$@
"
;
do
tolocal_anyrepl
$j
$repl_list
&&
estrlist list
"
$TARGETPKGNAME
"
||
echo
$j
done
|
sort
-u
|
sed
-e
"s|
\\\\
+|
\+
|g"
}
...
...
share/eterbuild/functions/web
View file @
336ea428
...
...
@@ -23,6 +23,7 @@ download_url()
# NOTE: disable cert checking
# use wget with try=1 and timeout = 30 sec
showcmd wget
--no-check-certificate
--unlink
-c
-t
1
-T
30
"
$1
"
-O
"
$NAME
"
a
=
wget
--no-check-certificate
--unlink
-c
-t
1
-T
30
"
$1
"
-O
"
$NAME
"
&&
return
rm
-f
"
$NAME
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment