q66
7febf540a9
shutils/purge_distfiles.sh: fix purging of multiple distfiles
...
Previously, xbps-src would try to find checksums in template files
and not purge those found but it actually ignored everything that
had the checksums specified on multiple lines.
The reason for this is that the bash 'read' builtin reads until it
finds a newline, and if you specify multiple checksums on multiple
lines rather than on one line it would ignore all but the first.
Fix this by replacing newlines with spaces, so that it can properly
read all checksums into an array.
2019-12-23 00:53:29 +01:00
Juan RP
f7412cdf8d
xbps-src: don't set -i to xbps-install(1).
...
As reported by @pullmoll via https://github.com/void-linux/xbps/issues/190
the culprit is this assignment, rather than in the xbps code.
Tested with local and remote repos, no regressions found.
2019-12-15 18:53:04 +01:00
q66
3a363d2611
xbps-src: account for nonfree repo with -E
...
This makes sure nonfree packages don't get rebuilt when -E is
passed to xbps-src.
[ci skip]
2019-12-14 11:26:36 +01:00
Stefano Ragni
3c8ad720a3
shutils/bulk.sh: use XBPS_DISTDIR when running xbps-src
2019-12-01 12:14:39 +01:00
q66
021b7cc11e
xbps-src: revert to previous bulk_sortdeps code
...
This should restore sort-dependencies behavior back to its former
behavior of not including all of the build dependencies not in
the input list in its listing.
2019-11-19 02:04:25 +01:00
Duncaen
2a59e976c1
xbps-src/chroot.sh: don't set empty PROXY environment variables
2019-11-08 18:48:25 +01:00
John
c1acedacaa
xbps-src/shutils/cross.sh: error out if cross toolchain can't be compiled
...
$rval was the return code of pkg_available and not of build.sh, since
pkg_available returns 0. because of this install_cross_pkg() would
always return 0 for success.
2019-11-03 18:42:17 +01:00
Johannes
175b65f006
common: change wording in error message
...
build helper and build styles are now different concepts
2019-11-01 00:45:49 +01:00
Juan RP
23f75a842d
xbps-src/chroot.sh: fix previous correctly
2019-10-27 12:15:49 +01:00
Juan RP
b469f1d590
xbps-src/chroot.sh: initialize XBPS_CONFIG_FILE.
...
Fixes #15208
2019-10-27 12:14:24 +01:00
John
46ac0aeb23
common/build_dependencies.sh: Disallow subpackages in makedepends
2019-10-26 00:44:22 +02:00
q66
0a38409da6
xbps-src: work around autodeps removal needing multiple passes
2019-10-25 23:53:38 +02:00
Duncaen
581ee5b7b2
xbps-src: add back support for 32bit dependencies
2019-10-21 18:37:53 +02:00
Andrew Benson
7acadabc6b
xbps-src/chroot: pass proxy variables
2019-10-21 18:27:09 +02:00
John
1c16711b3f
common/build_dependencies.sh: don't ignore subpkgs in host while cross
...
compiling, this falls (obviously) apart if it is missing.
See e.g. https://build.voidlinux.org/builders/aarch64-musl_builder/builds/22678/steps/shell_3/logs/stdio
2019-10-15 21:34:20 +03:00
John
188cb5c6d4
xbps-src/cross.sh: raise mimimum cross-vpkg-dummy version to 0.33_1
2019-09-28 11:30:13 +02:00
Piotr Wójcik
18a8a3c690
xbps-src: Actually unset subpkg functions
2019-08-27 19:26:31 +02:00
Jürgen Buchmüller
f1a7dfbfef
common: fix XBPS_{,TARGET_}{ENDIAN,LIBC,WORDSIZE}
...
My first attempt was not working at all.
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2019-08-03 23:09:49 +02:00
Jürgen Buchmüller
6a1b977e0c
Revert "profiles: introduce XBPS_{,TARGET_}{ENDIAN,LIBC}"
...
This reverts commit 9b3203401d
.
It doesn't actually work. Use the method suggested by @q66 instead.
2019-08-03 23:09:36 +02:00
Jürgen Buchmüller
9b3203401d
profiles: introduce XBPS_{,TARGET_}{ENDIAN,LIBC}
...
Provide new environment variables for simplifaction of template checks:
...ENDIAN defines the (target) machine's endianness: "le" or "be".
...LIBC defines the (target) machine's C library: "glibc" or "musl".
Closes : #13356
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2019-08-02 17:34:05 +02:00
Jürgen Buchmüller
ed4cdadcfd
common/profiles: introduce XBPS_{,TARGET_}WORDSIZE
...
The host and target word size can be used to determine whether
cross compiling certain packages is possible.
2019-07-26 15:18:11 +02:00
Juan RP
b79077c930
xbps-src: install cross pkg after checking dependencies.
...
... this should help buildbot a bit more.
2019-07-10 21:07:16 +02:00
Juan RP
e4984d01ea
xbps-src: multiple performance improvements
...
- use xbps-checkvers(1) to resolve dependencies.
- all dependencies are installed at once for the host and target.
- the show-build-deps target is now much faster.
- the update-bulk/show-repo-updates targets are now much faster.
- the update-sys/show-sys-updates targets are now much faster.
- the bootstrap target now works on musl hosts.
- simplified some loops.
- use cut(1) rather than awk(1) where applicable.
- multiple random changes to improve performance.
Based on work started by @Duncaen on #12433
Close #12433
Close #11282
2019-07-10 20:28:46 +02:00
John
506c2faf14
xbps-src/chroot.sh: reuse $PATH from outsude
...
This partially reverts commit e0e48d6f6a
This commit broke xbps-src when the xbps tools weren't in /usr/bin
2019-07-07 07:28:02 +00:00
Jürgen Buchmüller
17ba00b095
Revert "xbps-src: multiple performance improvements."
...
This reverts commit 2a4e178e35
.
2019-07-05 12:08:45 +02:00
Jürgen Buchmüller
95beffd0f5
Revert "xbps-src: fix XBPS_CHECKVERS_XCMD."
...
This reverts commit 1fc6aea821
.
2019-07-05 12:08:43 +02:00
Jürgen Buchmüller
7da591e1e4
Revert "xbps-src: improve bulk_sortdeps()."
...
This reverts commit 3b73edbaa5
.
2019-07-05 12:08:42 +02:00
Jürgen Buchmüller
0eb55debee
Revert "xbps-src: improve bulk code a bit more."
...
This reverts commit 4262450928
.
2019-07-05 12:08:41 +02:00
Jürgen Buchmüller
f5b502d3c5
Revert "xbps-src: bulk_build() use existing shell funcs."
...
This reverts commit 642cfa74c4
.
2019-07-05 12:08:35 +02:00
Juan RP
642cfa74c4
xbps-src: bulk_build() use existing shell funcs.
...
... rather than forking xbps-src again.
Closes : #12797 [via git-merge-pr]
2019-07-05 08:53:52 +02:00
Juan RP
4262450928
xbps-src: improve bulk code a bit more.
...
- use `show-avail` to discard broken pkgs.
- the parallel logic was incomplete.
- avoid unnecessary sorting.
2019-07-05 08:53:52 +02:00
Juan RP
3b73edbaa5
xbps-src: improve bulk_sortdeps().
...
./xbps-src sort-dependencies $(./xbps-src show-build-deps xbps)
0.202s vs 0.514s
2019-07-05 08:53:52 +02:00
Juan RP
1fc6aea821
xbps-src: fix XBPS_CHECKVERS_XCMD.
...
Needs to set -r $XBPS_CROSS_BASE to use correct dbdir.
2019-07-05 08:53:51 +02:00
Juan RP
2a4e178e35
xbps-src: multiple performance improvements.
...
- use xbps-checkvers(1) to resolve dependencies.
- all dependencies are installed at once for the host and target.
- the `show-build-deps` target is now much faster.
- the `update-bulk/show-repo-updates` targets are now much faster.
- the `update-sys/show-sys-updates` targets are now much faster.
- the `bootstrap` target now works on musl hosts.
- simplified some loops.
- use cut(1) rather than awk(1) where applicable.
- multiple random changes to improve performance.
Based on work started by @Duncaen on https://github.com/void-linux/void-packages/pull/12433
Close https://github.com/void-linux/void-packages/pull/12433
Close https://github.com/void-linux/void-packages/pull/11282
2019-07-05 08:53:51 +02:00
Piotr Wójcik
c3cfeb56e8
update-check: find versions with more components
2019-07-03 00:36:00 +02:00
Juan RP
e0e48d6f6a
xbps-src/chroot.sh: sanitize PATH.
2019-07-02 19:14:56 +02:00
Juan RP
b52aae3114
xbps-src: do not ignore EEXIST rval from xbps-install(1).
...
Due to -I it cannot return EEXIST, and this error value shall
be treated as a real error.
Does not change the current behaviour but will do if we drop -I.
2019-06-26 12:52:59 +02:00
Juan RP
67cd850ebf
xbps-src: introduce XBPS_REPO_COMPTYPE for etc/conf.
...
This sets the repository data compression format, as explained
in xbps-rindex(1). By default set to `gzip'.
2019-06-25 10:52:37 +02:00
Juan RP
e2f098b972
xbps-src: print detected file conflicts.
2019-06-21 18:46:14 +02:00
Juan RP
2127bd2e00
xbps-src: require xbps>=0.55.
...
Build dependencies are now installed with -I, --ignore-file-conflicts.
A new option introduced in xbps-0.55 that just prints
conflicting files but does not error out.
Switch to xbps-fetch and xbps-digest.
2019-06-21 17:21:38 +02:00
Juan RP
d778cbdc70
Revert "xbps-src: require xbps>=0.54."
...
This reverts commit 198acb8e39
.
I'm reverting this until I fix the issue properly.
2019-06-21 13:04:43 +02:00
Juan RP
198acb8e39
xbps-src: require xbps>=0.54.
...
if xbps-install(1) returns EEXIST, treat it as an error,
do not ignore it.
xbps-install(1) now returns only EEXIST for file conflicts
in transaction, so that it should not be ignored.
2019-06-21 11:47:15 +02:00
Duncaen
0639ff03da
xbps-src: simplify set_build_options
2019-06-19 11:33:54 +02:00
Duncaen
dd9c7a967e
xbps-src: less forking in get_subpkgs and unset_package_funcs
2019-06-19 11:30:22 +02:00
Duncaen
f1ec7fac9f
xbps-src: open $XBPS_MASTERDIR/etc/xbps/xbps-src.conf only once
2019-06-19 11:15:26 +02:00
Duncaen
6d3c739c9a
xbps-src: use substitutions instead of sed for xbps-shell
2019-06-19 11:12:29 +02:00
Duncaen
723170541d
xbps-src: don't check if base-chroot is installed for every single sourced template
2019-06-19 11:08:39 +02:00
Juan RP
7b7d7c13a1
xbps-src: exit properly if mktemp(1) fails, not from its subshell.
...
Thanks @huglovefan
2019-06-17 17:38:07 +02:00
Juan RP
f59b295903
xbps-src: cleaned up usage of mktemp(1).
...
This one was on my TODO for a long while... fixes unportable
arguments (checked with the NetBSD's manual page).
2019-06-17 15:23:20 +02:00
Doan Tran Cong Danh
37ed8cb67b
common: add BUILD_{CXX,CPP,FC,LD} flags
2019-06-15 16:31:53 +02:00
Juan RP
d18cd13b16
xbps-src/cross.sh: require cross-vpkg-dummy>=0.30.
...
Signed-off-by: Juan RP <xtraeme@gmail.com>
2019-06-13 19:35:05 +02:00
Piotr Wójcik
b8039ef838
update-check: download each url once
2019-06-12 18:06:27 +02:00
Piotr Wójcik
95e3a60feb
update-check: recognize all gitlab instances
2019-06-01 14:23:37 +02:00
Piotr Wójcik
e3e08a087a
update-check: skip version directories checking when specialized check exists
2019-05-14 22:48:46 +02:00
Piotr Wójcik
7ae9417947
update-check: allow to disable checking version directories
2019-05-14 22:48:46 +02:00
Piotr Wójcik
906f339d6a
update-check: generalize checking version directories
2019-05-14 22:48:46 +02:00
Piotr Wójcik
79273c05d9
update-check: only check newer directories
2019-05-14 22:48:46 +02:00
Piotr Wójcik
bb0b85060c
update-check: never omit specified site
2019-05-14 22:48:46 +02:00
Piotr Wójcik
795902b028
update-check: add crates.io
2019-05-14 07:48:39 +02:00
John
edad3f9f9f
xbps-src/build-dependencies.sh: check for instead of
2019-04-17 16:44:19 +02:00
John
9ae512bbbb
xbps-src: only detect host build loops when not cross compiling
2019-04-17 16:39:23 +02:00
maxice8
5f0333baa9
xbps-src-dopkg.sh: avoid useless use of cat
2019-04-15 12:18:00 -03:00
maxice8
8fff9cee19
update_hash_cache.sh: avoid useless use of cat
2019-04-15 12:18:00 -03:00
Juan RP
35a8e8c6b6
xbps-src: detect two types of build loops and abort()
...
- depends on itself
- dep depends on targetpkg
2019-04-15 10:54:04 -03:00
maxice8
9c39291c28
consistency_check.sh: fix dirname
2019-04-14 09:36:15 -03:00
maxice8
372ae10639
consistency_check.sh: remove dirname usage
2019-04-14 06:22:09 -03:00
Juan RP
1ee6a3174f
xbps-src: reduce basename(1) usage.
...
This saves a few exec()s.
2019-04-14 01:47:16 -03:00
q66
3c47efa808
common: expose build profile in cross env
...
[ci skip]
2019-04-09 19:26:59 -03:00
maxice8
7416477a64
purge_distfiles.sh: forcefully remove files
2019-04-09 19:19:50 -03:00
yopito
8944a9130e
xbps-src: update_check.sh: check distfile existence for kde
...
* KDE distfile storage is based on versionned "folder".
An existing folder_version does not mean that the corresponding
distifile exists, so let's check its existence.
* wider scope for KDE urls that will use that rule.
Fine for plenty other packages, except kdb that don't follow
this hierarchy (yet)
2019-04-09 17:45:44 +02:00
John
01d11a4938
build-style/cmake: set CMAKE_CROSSCOMPILING_EMULATOR
2019-04-05 23:04:14 +02:00
maxice8
fadca94b98
common: add chroot-style 'ethereal'
2019-04-05 05:49:34 -03:00
maxice8
b95a49b243
meta: remove last bits.
2019-03-14 19:25:00 -03:00
maxice8
a5bc81adf7
meta: remove supporting code for noarch
2019-03-14 19:22:06 -03:00
maxice8
415e6cd701
meta: remove support code for only_for_archs=
2019-03-14 19:20:07 -03:00
maxice8
8101f76f9f
meta: rewrite dopatch to use run_step
2019-03-03 13:08:23 -03:00
maxice8
166b70f35b
meta: also run do-$step_name hooks when run_step is called.
2019-03-03 13:08:23 -03:00
maxice8
79172bd8dc
meta: also run actions in chroot when calling for patch phase.
2019-03-03 12:16:41 -03:00
maxice8
8a028866dc
meta: make do-patch run hooks regardless
2019-02-28 07:44:58 -03:00
maxice8
2c4a329a13
meta: Add support for running the patch phase
2019-02-27 22:56:19 -03:00
maxice8
5f4d77c78a
meta: add patch() build phase.
2019-02-27 22:56:19 -03:00
maxice8
f683b0aa08
meta: fix build-class -> build-helper
2019-02-26 17:28:12 -03:00
John
5313faabfd
common: add compatibility code for noarch also for prepkg and doinstall
2019-02-21 23:25:54 +01:00
John
1c4edc0826
common: add compatibility code for noarch in do-pkg stage
...
resolves #9016
2019-02-21 16:41:51 +01:00
Piotr Wójcik
2a0c3434fb
xbps-src: update-check: switch sourceforge to https
2019-02-18 14:16:52 -03:00
maxice8
c8129e7d38
shutils/pkgtarget.sh: fix check for noarch
2019-02-15 12:14:53 -02:00
Enno Boland
38c457e1aa
add compatibility code for noarch/only_for_archs
2019-02-15 13:19:44 +01:00
Enno Boland
6eb37e35b2
common: merge only_for_archs and noarch=yes into one.
...
* noarch=yes is replaced with archs=noarch
* only_for_archs= is renamed to archs=
* archs= allows the use of wildcards and negations; first matching rule applies:
* archs="*-musl" will build the pkg only for musl-libcs
* archs="~*-musl" will build the pkg only on non-musl-libc
* archs="x86_64-musl ~*-musl" will build for x86_64-musl and any non-musl
arch.
* archs= defaults to "*"
2019-02-15 13:19:44 +01:00
Johannes
026ebc069e
common: unset rust-cross specific variables for native builds
2019-02-08 19:16:39 +01:00
maxice8
5850b188b4
shutils/build_dependencies.sh: also show build_helper that are set.
2019-01-27 09:15:17 +01:00
Cameron Nemo
2b569f1ef8
xbps-src: add show host/makedepends subcommand
2019-01-26 21:41:10 -02:00
maxice8
24efa877cd
shutils/common.sh: Remove variables that are now in build-helper/rust.sh
2019-01-25 20:44:42 -02:00
maxice8
a4f786276a
shutils/show.sh: add support for showing build_helper
2019-01-25 20:44:41 -02:00
maxice8
e30a9c8908
shutils/common.sh: add support for source build-helper files
2019-01-25 20:44:41 -02:00
maxice8
027cdb5bb8
shutils/common.sh: export CARGO_BUILD_TARGET
2019-01-20 19:41:18 -02:00
maxice8
54040e4b1b
shutils/common.sh: define CARGO_BUILD_JOBS and
...
CARGO_TARGE_${RUST_TAGRGET}_LINKER.
2019-01-20 15:33:10 -02:00
maxice8
1fcdcdd959
shutils/common.sh: fix typo
2019-01-19 08:03:10 -02:00
maxice8
57ce5bc8e5
consistency_check.sh: use return instead of continue when appropiate.
...
Those are not meant to be continue as they are not in a loop they are in
a subshell.
2019-01-18 20:00:54 -02:00
maxice8
9964ac65d3
common.sh: don't export XBPS_GCC_*
2019-01-18 05:42:18 -02:00
Piotr Wójcik
9c8ef3d6a9
update-check: handle python3-only modules from pypi
2019-01-07 18:28:36 -02:00
Piotr Wójcik
1bbbd55871
update-check: add gitlab.freedesktop.org
2018-12-08 19:54:15 +01:00
maxice8
56b6e7b240
shutils/update_check.sh: be more strict with rubygem update checks
...
try to match the whole line from
href="/gems/${pkgname#ruby-}/versions/[VERSION NUMBERS]"
matching until the quote avoids problems like the travis gem that has
special versions like
1.8.10.travis.921.11
before it would match until 1.8.10., now it doesn't match.
2018-11-19 02:29:28 -02:00
maxice8
9ead6eef92
update_check: add support for rubygems.org
2018-11-06 15:51:46 -02:00
Rasmus Thomsen
9141df9698
cross-profiles: set XBPS_CROSS_RUST_FLAGS&XBPS_CROSS_RUST_TARGET
...
only added to platforms which support rust
2018-10-15 08:20:10 +02:00
newbluemoon
de83d6fdb1
xbps-src/shutils/update-check.sh: accept RSS MIME type
...
This fixes update-check for sourceforge.net.
2018-10-02 11:34:16 +02:00
Enno Boland
77a4b3d163
common/xbps-src: fix: cut by colon
2018-09-07 15:54:26 +02:00
Enno Boland
50e86ef640
common/libexec/build.sh: register all packages at once to prevent inconistent staging
2018-09-07 11:19:55 +02:00
Piotr
205f75cefe
gucharmap: update to 11.0.2, fix update ( #2347 )
...
* gucharmap: update to 11.0.2.
* xbps-src: update-check: versions >=10 at ftp.gnome.org
2018-09-05 20:18:07 +02:00
Michael Aldridge
a4dd50388a
xbps-src: Always enable the gocache
...
[ci_skip]
2018-09-01 22:05:07 -07:00
John
68a11770aa
common/update_check.sh: accpeted mime types
2018-08-16 21:18:27 -03:00
John
8687925d70
shutils/update_check.sh: add kde plasma update check
2018-07-13 11:46:07 -03:00
Enno Boland
08d510ab87
common/shutils: fix configuration loading during setup_pkgs
2018-06-29 11:26:37 +02:00
Jürgen Buchmüller
87779af6c8
purge-distfiles: grep instead of sourcing template
...
To catch all SHA256 hashes from a template, even the ones which
are used only under certain preconditions, use grep [0-9a-f]{64} to
find all hashes in a template.
The may be some false positives which does not hurt the intended
purpose to purge obsolete distfiles.
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2018-06-23 16:30:10 +02:00
John
36da56d20a
update_check.sh: add update check for kde
2018-06-21 10:57:34 -03:00
Alessio Sergi
d9f67bcb36
Revert "common/xbps: make unset_package_funcs and run_pkg_hooks nonfatal"
...
This reverts commit f3d4dc20d7
.
2018-06-05 16:17:23 +02:00
Enno Boland
f3d4dc20d7
common/xbps: make unset_package_funcs and run_pkg_hooks nonfatal
2018-06-05 09:22:30 +02:00
John
b996b25d67
common/update_check: add gnome.gitlab.org
...
Closes #14671 .
Signed-off-by: Enno Boland <gottox@voidlinux.eu>
2018-05-26 14:54:39 +02:00
Piotr Wójcik
40af6e0fd5
xbps-src: update-check: update gitlab
2018-05-25 13:02:59 +02:00
Duncaen
94ed33657b
Revert "common/: add support for changelog field."
...
This reverts commit 8599efd9fd
.
2018-05-04 16:46:46 +02:00
maxice8
8599efd9fd
common/: add support for changelog field.
...
This commits allows ./xbps-src show to show the changelog field and for
changelog to be included with the -c/--changelog option via xbps-create.
Closes : #14102 [via git-merge-pr]
2018-05-03 22:58:27 -04:00
maxice8
ac4a294ba4
common: show value of nocross when it is set.
...
Manual.md says:
"This should be set to a string describing why it fails, or a link to
a travis buildlog demonstrating the failure."
2018-05-01 19:20:30 -04:00
Alessio Sergi
d58e50477e
update_check.sh: pypi.io -> pypi.org
2018-04-20 19:34:04 +02:00
Piotr Wójcik
e2b63458be
xbps-src: update-check: handle underscores in upstream version string
2018-04-18 11:08:56 +02:00
Enno Boland
7e55558944
common/xbps-src: add stacktraces on build errors
2018-03-28 22:06:51 +02:00
Piotr Wójcik
02049148bf
xbps-src: update-check: allow any compression on bitbucket
2018-03-27 12:15:06 +02:00
Leah Neukirchen
699d070492
common/xbps-src/shutils/chroot.sh: configure locale also when using -t.
2018-02-20 15:35:35 +01:00
Juan RP
4cf05ab32b
xbps-src: remove_pkg_autodeps: avoid interactivity.
2018-01-25 09:30:47 +01:00
Piotr Wójcik
a634456691
xbps-src: support gitlab in update-check
...
Closes : #10928 [via git-merge-pr]
2018-01-18 14:13:16 +01:00
Jürgen Buchmüller
63db848413
build_dependencies: print $build_style, if any
...
To make it more obvious what is going to happen next print the
build_style, if set, when emitting the "building ..." messages.
2018-01-16 05:31:32 +01:00
Jürgen Buchmüller
6c320e98ba
ruby: retry to build for *-musl
...
chroot: copy UTC as localtime as fallback if /etc/localtime does not exist.
It looks as if ruby's rdoc was failing in a function using /etc/localtime.
2017-12-16 17:55:18 +01:00
Michael Gehring
e40b057c09
common/xbps-src/shutils/show.sh: don't expand conf_files patterns
...
Fixes #9628
2017-11-30 10:46:41 +00:00
Enno Boland
f5239598d5
common/xbps-src: change directory before each phase.
...
fixes #9313 .
2017-11-29 15:02:10 +01:00
Michael Gehring
75d5240c5b
xbps-src: evaluate build_options before setting default flags
...
Fixes #9454
2017-11-24 07:48:24 +01:00
Enno Boland
3b1f35c07e
common: do_build is optional
2017-11-20 21:56:09 +01:00
Michael Gehring
9ffc64e20c
common: drop 0/no logic from XBPS_{CHECK_PKGS,BUILD_ONLY_ONE_PKG}
...
use the common convention as described in etc/defaults.conf
2017-11-20 21:12:54 +01:00
Michael Gehring
565de75a06
xbps-src: flip logic of -Q
2017-11-20 13:02:30 +00:00
Enno Boland
2810b865cb
common/xbps-src: use ch_wrksrc in doinstall.
2017-11-18 14:15:55 +01:00
Enno Boland
2059f871fd
common/xbps-src: make docheck use run_step.
...
This allows a build_style to define a generic do_check function.
2017-11-18 13:29:34 +01:00
Enno Boland
ba84655a13
common/libexec: remove redundant pre/do/post preparation code
...
This pullrequest removes redundant codepaths in
xbps-src-do{build,configure,install}.sh and joins the code in the
run_step function. This causes slightly different behavior to
do_install:
Do install will chdir to wrksrc only _before_ the first step. The
current behavior is that pre_install will run without a chdir, do_ and
post_ is runned with a chdir. This is a subtle but breaking change and
may cause some templates to break at install phase.
2017-11-18 09:44:47 +01:00
Duncan Overbruck
570842f4a5
xbps-src: add etc/xbps.conf for extra xbps options ( #8304 )
2017-10-19 11:38:14 +02:00
Toyam Cox
bfbfbf2cab
xbps-src: use -1 to trigger errors on missing deps
2017-09-04 16:34:18 -04:00
Toyam Cox
41cadcf1d6
xbps-src: now pass -q for quiet, -Q for no-check
...
Previously -q was passed to sub processes. When I changed
-q's meaning, this made everything quiet. -Q is now passed
for those instances, and -q is passed for quieting.
2017-08-29 15:18:48 -04:00
Toyam Cox
debdd551f4
xbps-src: add quiet mode
2017-08-29 13:23:54 -04:00
Toyam Cox
04f489e839
xbps-src: expand usage of ignore-problems in reading pkgs
2017-08-29 13:23:54 -04:00
Toyam Cox
5a7e73b89a
xbps-src: add informative run mode
2017-08-29 13:23:54 -04:00
Florian Wagner
f2c0f7885e
Add and document R-cran build style; support CRAN in update-check.
2017-06-08 13:32:40 +02:00
Enno Boland
33c1040159
Merge branch 'master' into check
2017-06-05 14:58:57 +02:00
Duncaen
c32fb6e0d1
xbps-src: portability fixes
2017-06-05 01:48:19 +02:00
Duncaen
13b96bc7cf
xbps-src: Revert "add -- to env for portability"
...
This reverts commit a01afa1d56
.
2017-06-03 22:57:51 +02:00
Duncaen
a01afa1d56
xbps-src: add -- to env for portability
2017-06-03 20:45:43 +02:00