Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
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
etersoft
eepm
Commits
7c44f016
Commit
7c44f016
authored
Apr 29, 2023
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm repack: run repack scripts with buildroot dir as current dir
parent
18310b79
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
16 deletions
+18
-16
epm-repack-rpm
bin/epm-repack-rpm
+15
-15
README.md
pack.d/README.md
+3
-1
No files found.
bin/epm-repack-rpm
View file @
7c44f016
...
@@ -164,47 +164,47 @@ __epm_repack_to_rpm()
...
@@ -164,47 +164,47 @@ __epm_repack_to_rpm()
local
subdir
=
"
$(
echo
*)
"
local
subdir
=
"
$(
echo
*)
"
[
-d
"
$subdir
"
]
||
fatal
"can't find subdir in
$(
pwd
)
"
[
-d
"
$subdir
"
]
||
fatal
"can't find subdir in
$(
pwd
)
"
local
buildroot
=
"
$tmpbuilddir
/
$subdir
"
# detect spec and move to prev dir
# detect spec and move to prev dir
local
spec
=
"
$(
echo
$
tmpbuilddir
/
$subdir
/
*
.spec
)
"
local
spec
=
"
$(
echo
$
buildroot
/
*
.spec
)
"
[
-s
"
$spec
"
]
||
fatal
"Can't find spec
$spec
"
[
-s
"
$spec
"
]
||
fatal
"Can't find spec
$spec
"
mv
$spec
$tmpbuilddir
||
fatal
mv
$spec
$tmpbuilddir
||
fatal
spec
=
"
$tmpbuilddir
/
$(
basename
"
$spec
"
)
"
spec
=
"
$tmpbuilddir
/
$(
basename
"
$spec
"
)
"
#__set_name_version $spec $PKGNAME $VERSION
#__set_name_version $spec $PKGNAME $VERSION
local
pkgname
=
"
$(
grep
"^Name: "
$spec
|
sed
-e
"s|Name: ||g"
|
head
-n1
)
"
local
pkgname
=
"
$(
grep
"^Name: "
$spec
|
sed
-e
"s|Name: ||g"
|
head
-n1
)
"
# for tarballs fix permissions
# for tarballs fix permissions
[
-n
"
$VERSION
"
]
&&
chmod
$verbose
-R
a+rX
$
tmpbuilddir
/
$subdir
/
*
[
-n
"
$VERSION
"
]
&&
chmod
$verbose
-R
a+rX
$
buildroot
/
*
__fix_spec
$pkgname
$tmpbuilddir
/
$subdir
$spec
cd
$buildroot
||
fatal
__apply_fix_code
"generic"
$tmpbuilddir
/
$subdir
$spec
$pkgname
__fix_spec
$pkgname
$buildroot
$spec
[
-n
"
$SUBGENERIC
"
]
&&
__apply_fix_code
"generic-
$SUBGENERIC
"
$tmpbuilddir
/
$subdir
$spec
__apply_fix_code
"generic"
$buildroot
$spec
$pkgname
__apply_fix_code
$pkgname
$tmpbuilddir
/
$subdir
$spec
$pkgname
[
-n
"
$SUBGENERIC
"
]
&&
__apply_fix_code
"generic-
$SUBGENERIC
"
$buildroot
$spec
remove_on_exit
$HOME
/RPM/BUILD
$HOME
/RPM
__apply_fix_code
$pkgname
$buildroot
$spec
$pkgname
cd
-
>
/dev/null
TARGETARCH
=
$(
epm print info
-a
|
sed
-e
's|^x86$|i586|'
)
TARGETARCH
=
$(
epm print info
-a
|
sed
-e
's|^x86$|i586|'
)
showcmd rpmbuild
--buildroot
$
tmpbuilddir
/
$subdir
--target
$TARGETARCH
-bb
$spec
showcmd rpmbuild
--buildroot
$
buildroot
--target
$TARGETARCH
-bb
$spec
if
[
-n
"
$verbose
"
]
;
then
if
[
-n
"
$verbose
"
]
;
then
a
=
''
rpmbuild
--buildroot
$
tmpbuilddir
/
$subdir
--target
$TARGETARCH
-bb
$spec
||
fatal
a
=
''
rpmbuild
--buildroot
$
buildroot
--target
$TARGETARCH
-bb
$spec
||
fatal
else
else
a
=
''
rpmbuild
--buildroot
$
tmpbuilddir
/
$subdir
--target
$TARGETARCH
-bb
$spec
>
/dev/null
||
fatal
a
=
''
rpmbuild
--buildroot
$
buildroot
--target
$TARGETARCH
-bb
$spec
>
/dev/null
||
fatal
fi
fi
# remove copy of source binary package (don't mix with generated)
# remove copy of source binary package (don't mix with generated)
rm
-f
$tmpbuilddir
/../
$alpkg
rm
-f
$tmpbuilddir
/../
$alpkg
local
repacked_rpm
=
"
$(
realpath
$tmpbuilddir
/../
*
.rpm
)
"
local
repacked_rpm
=
"
$(
realpath
$tmpbuilddir
/../
*
.rpm
)
"
if
[
-s
"
$repacked_rpm
"
]
;
then
if
[
-s
"
$repacked_rpm
"
]
;
then
repacked_pkgs
=
"
$repacked_pkgs
$repacked_rpm
"
remove_on_exit
"
$repacked_rpm
"
remove_on_exit
"
$repacked_rpm
"
[
-n
"
$repacked_pkgs
"
]
&&
repacked_pkgs
=
"
$repacked_pkgs
$repacked_rpm
"
||
repacked_pkgs
=
"
$repacked_rpm
"
else
else
warning
"Can't find converted rpm for source binary package '
$pkg
'"
warning
"Can't find converted rpm for source binary package '
$pkg
'"
fi
fi
cd
$EPMCURDIR
>
/dev/null
cd
$EPMCURDIR
>
/dev/null
rm
-rf
$tmpbuilddir
/
$subdir
/
rm
-rf
$spec
done
done
rmdir
$tmpbuilddir
#rmdir $tmpbuilddir/..
true
true
}
}
pack.d/README.md
View file @
7c44f016
As for now, pack script creates tarball in the current directory and return it by return_tar function.
All works done in a temporary dir.
As for now, pack script have to create tarball in the current directory and return it with return_tar function.
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