Juan RP
aafb971991
xbps-src: code to handle new pycompile trigger.
2011-10-05 14:26:54 +02:00
Juan RP
07db31cb54
xbps-src: cleanup version/revision mess.
2011-07-18 16:25:18 +02:00
Juan RP
d9f155607c
xbps-src: added strip_cmd variable, can be overriden per template.
2011-07-17 17:47:31 +02:00
Juan RP
a78e885a29
xbps-src: in setup_subpkg_tmpl() set SUBPKG for subpkgs.
2011-07-14 15:01:14 +02:00
Juan RP
47025ec4c6
xbps-src: setup main pkg in setup_subpkg_tmpl() if it's not a subpkg.
2011-07-14 12:47:16 +02:00
Juan RP
6058498069
xbps-src: added setup_subpkg_tmpl() to setup subpkg tmpls.
2011-07-14 12:30:29 +02:00
Juan RP
1cf57eab23
xbps-src: reserve "kernel_hooks_version" variable.
...
This variable can be used in templates to specify the kernel version
passed to the Vanilla kernel hooks in /etc/kernel.d/<target>.
2011-07-09 23:07:50 +02:00
Juan RP
f731f08540
xbps-src: for meta-templates always set no{extract,fetch}.
2011-07-07 18:07:08 +02:00
Juan RP
40f6852c62
xbps-src: handle correctly {C,LD,CXX,CPP}FLAGS envvars.
2011-07-06 13:36:59 +02:00
Juan RP
fae03c067e
xbps-src: rename IGNORE_BOOTSTRAP_PKGS to BOOTSTRAP_PKG_REBUILD.
2011-07-06 08:28:34 +02:00
Juan RP
5355f32aca
xbps-src: support building bootstrap pkgs in chroot with -D.
...
The base_chroot var has been renamed to bootstrap, to avoid conflicts
with the base-chroot pkg. So now you can rebuild any bootstrap package
if the masterdir is ready (base-chroot already) installed and
installation is only to destdir.
2011-07-06 08:16:56 +02:00
Juan RP
9b52e244c6
xbps-src: added -K flag to KEEP automatic installed deps, cleanups.
2011-07-04 19:07:08 +02:00
Juan RP
141c0ab3ba
xbps-src: only process broken_as_needed in one place.
2011-07-04 10:56:35 +02:00
Juan RP
e17baedf00
xbps-src: improve C{,PP,XX}FLAGS and LDFLAGS settings.
2011-07-04 10:24:52 +02:00
Juan RP
3bb5c279df
xbps-src: source install_files.sh for v funcs in templates.
2011-07-02 17:48:48 +02:00
Juan RP
7984b39928
xbps-src: fix fetch phase with depends, performance improvements.
...
- The fetch phase *must* run after installing pkg dependencies,
otherwise it could fail if we need them for fetching.
- Performance improvements for xbps-src. Only source shutils files
at the start, not every time we use a function.
2011-07-02 17:04:08 +02:00
Juan RP
75d55258a5
xbps-src: added new funcs to install files into DESTDIR.
...
vcopy <files> <targetdir>
Executes cp -a <files> ${DESTDIR}/<targetdir>
vinstall <file> <mode> <targetdir> <targetfile>
4th argument is optional.
Executed install -Dm<mode> <file> ${DESTDIR}/<targetdir>/<file>
vmkdir <dir> <mode>
Executed install -dm<mode> ${DESTDIR}/<dir>
2011-07-02 10:49:22 +02:00
Juan RP
f190895d30
xbps-src::info_tmpl(): also print $homepage and $license.
2011-06-02 09:01:11 +02:00
Juan RP
6ed4e562cc
xbps-src: add three new metadata objects in binary pkgs.
...
homepage (string): package upstream URL.
license (string): package licenses.
build_date (string): package build date in UTC.
2011-05-26 10:40:31 +02:00
Juan RP
5e9f331526
xbps-src: added "provides" var for use in templates.
...
This will add support for virtual packages in XBPS; will be implemented
in the following days.
2011-01-26 13:37:37 +01:00
Juan RP
2a31f296ac
xbps-src: improve the 'info' target.
2011-01-11 17:01:23 +01:00
Juan RP
e6abf71b04
xbps-src: disable -Wl,--as-needed if $broken_as_needed is set.
2011-01-10 12:02:08 +01:00
Juan RP
2168077d11
xbps-src: added new var 'system_groups' for pkgs requiring new system groups.
2010-12-28 11:23:33 +01:00
Juan RP
81cad50a1e
xbps-src: do not return error if $wrksrc doesn't exist in the 'clean' target.
2010-12-23 20:39:54 +01:00
Juan RP
ae3c15cb59
xbps-src: added a new var for templates "dkms_modules".
...
It will be used by packages that will install DKMS modules.
2010-12-23 14:29:38 +01:00
Juan RP
3da3783333
xbps-src: improve msg_* funcs and update all callers.
2010-12-20 00:22:12 +01:00
Juan RP
722db61ea2
xbps-src: improve how patches can be applied.
...
1) $patch_args can be used if all patches need special args other than "-Np0"
(set by default).
2) If the $PATCHESDIR/series file exist, it will specify how the patches
will be applied, in that order.
2010-11-03 15:56:37 +01:00
Juan RP
f85dba88f3
xbps-src::tmpl_funcs: add two comments for BUILD_32BIT.
2010-10-31 01:40:23 +02:00
Juan RP
71e5c38598
xbps-src: added XBPS_LDFLAGS into the configuration file.
...
This is to specify common LDFLAGS settings for all packages, by default
it's set to '-Wl,--as-needed' to avoid linking extra libraries into
the binaries. This helped to find such cases.
2010-10-29 10:23:25 +02:00
Juan RP
c34e13336b
xbps-src: multiple changes to improve infrastructure.
...
- Remove buildvars_funcs.sh, its code has been moved into set_tmpl_common_vars().
- Move stripping code into its own file, and don't run it via fakeroot.
- Remove unnecesary reset_tmpl_vars() call in install_pkg().
- Misc changes.
2010-05-26 15:41:26 +02:00
Juan RP
c785787fdd
xbps-src: added 'clean' target to remove pkg build directory.
2010-05-20 04:05:35 +02:00
Juan RP
ceefb18bff
xbps-src: multiple improvements to messages and phases.
...
- Prefix all messages with 'Package 'pkgname (version)': ..." to really
understand what's going on. Add more messages in some stages...
- Do not run pre/post_{configure,build,install} or do_{build,install} stages
if they were executed successfully in the past.
2010-05-14 00:07:47 +02:00
Juan RP
a785022b62
reset_tmpl_vars: add do_{build,install}.
2010-05-12 01:51:53 +02:00
Juan RP
2ee55de018
Finally fix fakeroot on Arch linux, return on errors while processing deps.
2010-05-10 12:09:06 +02:00
Juan RP
481e74178e
xbps-src: do not append $PATH to $PATH on every prepare_tmpl() call!
...
--HG--
rename : xbps-src/shutils/tmpl_funcs.sh => xbps-src/shutils/tmpl_funcs.sh.in
2010-05-06 01:21:27 +02:00