[jenkinsci/jira-plugin] b92f18: Bump org.jenkins-ci.plugins:plugin from 4.76 to 4.82

2024-06-02 Thread 'dependabot[bot]' via Jenkins Commits
m 4.76 to 4.82. - [Release notes](https://github.com/jenkinsci/plugin-pom/releases) - [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md) - [Commits](https://github.com/jenkinsci/plugin-pom/compare/plugin-4.76...plugin-4.82) --- updated-dependencies: - dependenc

[jenkinsci/jira-plugin] 8de4f9: Bump org.apache.maven:maven-artifact from 3.9.6 to...

2024-06-02 Thread 'Radek Antoniuk' via Jenkins Commits
ub.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.9.6...maven-3.9.7) --- updated-dependencies: - dependency-name: org.apache.maven:maven-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependab

[jenkinsci/github-plugin]

2024-06-02 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang] [clang-repl] Support wasm execution (PR #86402)

2024-06-02 Thread Vassil Vassilev via cfe-commits
dif // __EMSCRIPTEN__ + +#include "IncrementalExecutor.h" + +namespace clang { + +class WasmIncrementalExecutor : public IncrementalExecutor { +public: + WasmIncrementalExecutor(llvm::orc::ThreadSafeContext ); + + llvm::Error addModule(PartialTranslationUnit ) override; + llvm::Error removeModule(PartialTranslationUnit ) override; + llvm::Error runCtors() const override; + + ~WasmIncrementalExecutor() override; +}; + +} // namespace clang + +#endif // LLVM_CLANG_LIB_INTERPRETER_WASM_H ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-repl] Support wasm execution (PR #86402)

2024-06-02 Thread Vassil Vassilev via cfe-commits
ject.", llvm::inconvertibleErrorCode()); } @@ -107,5 +112,3 @@ llvm::Error WasmIncrementalExecutor::runCtors() const { WasmIncrementalExecutor::~WasmIncrementalExecutor() = default; } // namespace clang - -#endif // __EMSCRIPTEN__ diff --git a/clang/lib/Interpreter/Wasm.h b/clang/lib/Interpreter/Wasm.h index 98acd4c14e240..b1fd88024f14d 100644 --- a/clang/lib/Interpreter/Wasm.h +++ b/clang/lib/Interpreter/Wasm.h @@ -13,6 +13,10 @@ #ifndef LLVM_CLANG_LIB_INTERPRETER_WASM_H #define LLVM_CLANG_LIB_INTERPRETER_WASM_H +#ifndef __EMSCRIPTEN__ +#error "This requires emscripten." +#endif // __EMSCRIPTEN__ + #include "IncrementalExecutor.h" namespace clang { ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-repl] Teach clang-repl how to load PCHs. (PR #94166)

2024-06-02 Thread Vassil Vassilev via cfe-commits
could do? https://github.com/llvm/llvm-project/pull/94166 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-repl] Teach clang-repl how to load PCHs. (PR #94166)

2024-06-02 Thread via cfe-commits
CK: f_pch = 5 `` https://github.com/llvm/llvm-project/pull/94166 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-repl] Teach clang-repl how to load PCHs. (PR #94166)

2024-06-02 Thread Vassil Vassilev via cfe-commits
"' | FileCheck %s + +#ifdef PCH +int f_pch() { return 5; } +#endif // PCH + +extern "C" int printf(const char *, ...); +auto r1 = printf("f_pch = %d\n", f_pch()); +// CHECK: f_pch = 5 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-tools-extra] [libcxx] [clang][Modules] Remove unnecessary includes of `Module.h` (PR #93417)

2024-06-02 Thread David Stone via cfe-commits
davidstone wrote: Is there any additional work needed on this before it can be merged? https://github.com/llvm/llvm-project/pull/93417 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [lldb] [clang][Modules] Move `ASTSourceDescriptor` into its own file (PR #67930)

2024-06-02 Thread David Stone via cfe-commits
davidstone wrote: Could I get someone to merge this for me if there are no other changes required? https://github.com/llvm/llvm-project/pull/67930 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo

[Lldb-commits] [clang] [lldb] [clang][Modules] Move `ASTSourceDescriptor` into its own file (PR #67930)

2024-06-02 Thread David Stone via lldb-commits
davidstone wrote: Could I get someone to merge this for me if there are no other changes required? https://github.com/llvm/llvm-project/pull/67930 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman

[Lldb-commits] [lldb] [lldb] Disable find-module.test in case of a remote target (PR #94165)

2024-06-02 Thread via lldb-commits
-module.dmp.yaml -o %T/find-module.dmp RUN: %lldb -O "settings set target.exec-search-paths %T" \ `` https://github.com/llvm/llvm-project/pull/94165 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-b

[Lldb-commits] [lldb] [lldb] Disable find-module.test in case of a remote target (PR #94165)

2024-06-02 Thread Dmitry Vasilyev via lldb-commits
exec-search-paths %T" \ ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[jenkinsci/github-plugin]

2024-06-02 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[jenkinsci/github-plugin]

2024-06-02 Thread 'Kanstantsin Shautsou' via Jenkins Commits
to the Google Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang] [X86] Enable constexpr on LZCNT & BMI intrinsics (PR #94161)

2024-06-02 Thread via cfe-commits
https://github.com/aniplcc converted_to_draft https://github.com/llvm/llvm-project/pull/94161 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] c26a993 - [clang][NFC] Update CWG issues list

2024-06-02 Thread Vlad Serebrennikov via cfe-commits
WG/issues/2896.html;>2896 +open +Template argument deduction involving exception specifications +Not resolved ___________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [X86] Enable constexpr on LZCNT & BMI intrinsics (PR #94161)

2024-06-02 Thread via cfe-commits
aniplcc wrote: forgot to update ExprConstant with builtins https://github.com/llvm/llvm-project/pull/94161 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang-format] Handle attributes before lambda return arrow (PR #94119)

2024-06-02 Thread via cfe-commits
https://github.com/mydeveloperday approved this pull request. https://github.com/llvm/llvm-project/pull/94119 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [X86] Enable constexpr on LZCNT & BMI intrinsics (PR #94161)

2024-06-02 Thread via cfe-commits
N_ATTRS_CONSTEXPR -__blsr_u64(unsigned long long __X) -{ +__blsr_u64(unsigned long long __X) { return __X & (__X - 1); } `` https://github.com/llvm/llvm-project/pull/94161 ___________ cfe-commits mailing list cfe-commits@lists.llvm.org

[clang] 197c3a3 - Use llvm::less_first (NFC) (#94136)

2024-06-02 Thread via cfe-commits
eturn lhs.first < rhs.first; }); +llvm::sort(deps, llvm::less_first()); dependentLvlMap[tid][l] = std::move(deps); unsigned depends = dependentLvlMap[tid][l].size(); _______ cfe-commits mailing list cfe-commits@lists.llvm.org

[clang] [llvm] [mlir] Use llvm::less_first (NFC) (PR #94136)

2024-06-02 Thread Kazu Hirata via cfe-commits
https://github.com/kazutakahirata closed https://github.com/llvm/llvm-project/pull/94136 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [X86] Enable constexpr on LZCNT & BMI intrinsics (PR #94161)

2024-06-02 Thread via cfe-commits
D_FN_ATTRS +#endif /// Counts the number of trailing zero bits in the operand. /// @@ -176,6 +177,7 @@ _mm_tzcnt_64(unsigned long long __X) #define __DEFAULT_FN_ATTRS_CONSTEXPR __DEFAULT_FN_ATTRS constexpr #else #define __DEFAULT_FN_ATTRS_CONSTEXPR __DEFAULT_FN_ATTRS +#endif /// Performs a bitwise AND

[clang] [X86] Enable constexpr on LZCNT & BMI intrinsics (PR #94161)

2024-06-02 Thread via cfe-commits
x0101ULL) == 7 ? 1 : -1]; +#endif + +#endif +#endif `` https://github.com/llvm/llvm-project/pull/94161 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [X86] Enable constexpr on LZCNT & BMI intrinsics (PR #94161)

2024-06-02 Thread via cfe-commits
tin_ia32_lzcnt_u32(__X); } @@ -99,8 +97,7 @@ _lzcnt_u32(unsigned int __X) ///bits in the operand. /// \see __lzcnt64 static __inline__ unsigned long long __DEFAULT_FN_ATTRS_CONSTEXPR -_lzcnt_u64(unsigned long long __X) -{ +_lzcnt_u64(unsigned long long __X) { return __builtin_ia32_lzcnt_u64(__X); } #endif ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/github-plugin]

2024-06-02 Thread 'Kanstantsin Shautsou' via Jenkins Commits
Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/github-plugin

[clang] [clang] Fix-it hint for `++this` -> `++*this` when deref is modifiable (PR #94159)

2024-06-02 Thread via cfe-commits
0: + case 1: +int i = 3; + case 2: +break; + } + switch (x) { + case 0: + case 1: +int i = 3; + case 2: +break; + } } `` https://github.com/llvm/llvm-project/pull/94159 ___ cfe-commits mailing list cfe-commits

[clang] [clang] Fix-it hint for `++this` -> `++*this` when deref is modifiable (PR #94159)

2024-06-02 Thread Rajveer Singh Bharadwaj via cfe-commits
ence the pointer to modify}} + } + + void g() const { +++this; + // expected-error@-1 {{expression is not assignable}} + } +}; _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [clang] Fix-it hint for `++this` -> `++*this` when deref is modifiable (PR #94159)

2024-06-02 Thread Rajveer Singh Bharadwaj via cfe-commits
v/null +++ b/debug-84072.cpp @@ -0,0 +1,16 @@ +void Func(int x) { +switch (x) { +[[likely]] case 0: +case 1: +int i = 3; +case 2: +break; +} +switch (x) { +case 0: +case 1: + int i = 3; + case 2: +

[clang] [clang] Fix-it hint for `++this` -> `++*this` when deref is modifiable (PR #94159)

2024-06-02 Thread Rajveer Singh Bharadwaj via cfe-commits
Rajveer100 wrote: cc @Sirraide https://github.com/llvm/llvm-project/pull/94159 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang] Fix-it hint for `++this` -> `++*this` when deref is modifiable (PR #94159)

2024-06-02 Thread via cfe-commits
-2 {{dereference the pointer to modify}} + } + + void g() const { +++this; +// expected-error@-1 {{expression is not assignable}} + } +}; `````` https://github.com/llvm/llvm-project/pull/94159 _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [clang] Fix-it hint for `++this` -> `++*this` when deref is modifiable (PR #94159)

2024-06-02 Thread Rajveer Singh Bharadwaj via cfe-commits
ence the pointer to modify}} + } + + void g() const { +++this; + // expected-error@-1 {{expression is not assignable}} + } +}; _______ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Clang] Fix __is_trivially_equality_comparable returning true with ineligebile defaulted overloads (PR #93113)

2024-06-02 Thread Nikolas Klauser via cfe-commits
edOp)); + +struct EqualityComparableBase { + bool operator==(const EqualityComparableBase&) const = default; +}; + +struct ComparingBaseOnly : EqualityComparableBase { + int j_ = 0; +}; +static_assert(!__is_trivially_equality_comparable(ComparingBaseOnly)); + namespace hidden_friend { struct TriviallyEqualityComparable { ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[jenkinsci/ansible-plugin]

2024-06-02 Thread 'dependabot[bot]' via Jenkins Commits
this message because you are subscribed to the Google Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commits+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid

[jenkinsci/ansible-plugin] e410c6: Bump jenkins core

2024-06-02 Thread 'Valentin Delaye' via Jenkins Commits
at https://github.com/jenkinsci/ansible-plugin/settings/notifications -- You received this message because you are subscribed to the Google Groups "Jenkins Commits" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-commit

[clang] [z/OS] Set the default arch for z/OS to be arch10 (PR #89854)

2024-06-02 Thread Dimitri John Ledkov via cfe-commits
for RHEL SUSE and Ubuntu. Please call out this change in release notes. https://github.com/llvm/llvm-project/pull/89854 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

branch master updated: Revert "services: home: Use pairs instead of lists."

2024-06-02 Thread guix-commits
This is an automated email from the git hooks/post-receive script. abcdw pushed a commit to branch master in repository guix. The following commit(s) were added to refs/heads/master by this push: new eac5171246 Revert "services: home: Use pairs instead of lists." eac5171246 is described

[jenkins-infra/jenkins-infra] edf94a: chore: Bump container agent image jenkinsciinfra/b...

2024-06-02 Thread 'jenkins-infra-bot' via Jenkins Commits
Made with ❤️️ by updatecli To unsubscribe from these emails, change your notification settings at https://github.com/jenkins-infra/jenkins-infra/settings/notifications -- You received this message because you are subscribed to the Google Groups "Jenkins Commits" group. To unsubscribe

20/71: gnu: Add texlive-dvicopy-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit c44fad47368f1a8de3a51480686b46fda8554020 Author: Nicolas Goaziou AuthorDate: Mon May 27 16:29:53 2024 +0200 gnu: Add texlive-dvicopy-bin. * gnu/packages/tex.scm (texlive-dvicopy-bin): New variable.

58/71: gnu: texlive-texdoctk: Fix runtime error.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit c6380fef26f39335f4c1485b93bcb8a29b24968f Author: Nicolas Goaziou AuthorDate: Tue May 28 16:39:15 2024 +0200 gnu: texlive-texdoctk: Fix runtime error. * gnu/packages/tex.scm (texlive-texdoctk)[arguments]<#:phases>:

53/71: gnu: Add texlive-lcdftypetools-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit b3d167eea7f9e18f260f4900c09a9b5749544e7f Author: Nicolas Goaziou AuthorDate: Tue May 28 16:16:48 2024 +0200 gnu: Add texlive-lcdftypetools-bin. * gnu/packages/tex.scm (texlive-lcdftypetools-bin): New variable.

56/71: gnu: Add texlive-ps2eps-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 3fc00d1afcb2d40eeb5c7139ca446497a92ab4c7 Author: Nicolas Goaziou AuthorDate: Tue May 28 16:27:52 2024 +0200 gnu: Add texlive-ps2eps-bin. * gnu/packages/tex.scm (texlive-ps2eps-bin): New variable.

36/71: gnu: Add texlive-xdvi-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 60253c9fce12e81dc1eadbeb34e78050bc8463d4 Author: Nicolas Goaziou AuthorDate: Tue May 28 00:22:08 2024 +0200 gnu: Add texlive-xdvi-bin. * gnu/packages/tex.scm (texlive-xdvi-bin): New variable.

38/71: gnu: Add texlive-ttfutils-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 53f5d25a7313cf16173e858411b9807ae63a118e Author: Nicolas Goaziou AuthorDate: Tue May 28 00:38:29 2024 +0200 gnu: Add texlive-ttfutils-bin. * gnu/packages/tex.scm (texlive-ttfutils-bin): New variable.

12/71: gnu: Add texlive-mfware-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit abc350cccf5e3ff0520c8835da2eabd0ca404227 Author: Nicolas Goaziou AuthorDate: Mon May 27 15:27:49 2024 +0200 gnu: Add texlive-mfware-bin. * gnu/packages/tex.scm (texlive-mfware-bin): New variable.

13/71: gnu: Add texlive-omegaware-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit e769bb6c2e0d6a706c7c8231052021b059a66c22 Author: Nicolas Goaziou AuthorDate: Mon May 27 16:09:34 2024 +0200 gnu: Add texlive-omegaware-bin. * gnu/packages/tex.scm (texlive-omegaware-bin): New variable.

33/71: gnu: Add texlive-dvips-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 149787f0e1d17b629947b623587d377feb3e2f81 Author: Nicolas Goaziou AuthorDate: Tue May 28 00:02:13 2024 +0200 gnu: Add texlive-dvips-bin. * gnu/packages/tex.scm (texlive-dvips-bin): New variable.

19/71: gnu: Add texlive-bibtex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 52f0dee3cdadd6770466e86c015c7a551f7628ae Author: Nicolas Goaziou AuthorDate: Mon May 27 16:27:22 2024 +0200 gnu: Add texlive-bibtex-bin. * gnu/packages/tex.scm (texlive-bibtex-bin): New variable.

69/71: gnu: texlive-xindy: Build binary separately.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit c4ef28180e279e0deebe96dd8bb52edb32b1f171 Author: Nicolas Goaziou AuthorDate: Tue May 28 22:07:11 2024 +0200 gnu: texlive-xindy: Build binary separately. * gnu/packages/tex.scm (texlive-xindy-bin): New variable.

11/71: gnu: texlive-latex-bin: Create symlinks for "latex" variants.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 06270f83b59dbc63a5bb48d3d90504279698 Author: Nicolas Goaziou AuthorDate: Thu May 30 23:45:32 2024 +0200 gnu: texlive-latex-bin: Create symlinks for "latex" variants. * gnu/packages/tex.scm

22/71: gnu: Add texlive-xetex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 366490a6a5bdaf5d27d4e1e4e1d190f932657040 Author: Nicolas Goaziou AuthorDate: Mon May 27 18:39:32 2024 +0200 gnu: Add texlive-xetex-bin. * gnu/packages/tex.scm (texlive-xetex-bin): New variable.

14/71: gnu: Add texlive-fontware-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 4fb667879e7f7541d69be8cacdb6dbd20e3d6c4d Author: Nicolas Goaziou AuthorDate: Mon May 27 16:11:20 2024 +0200 gnu: Add texlive-fontware-bin. * gnu/packages/tex.scm (texlive-fontware-bin): New variable.

61/71: gnu: Add texlive-xml2pmx-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit dca91b5dc4c04188fc1ee4f74ce9d6c62374d319 Author: Nicolas Goaziou AuthorDate: Tue May 28 18:26:02 2024 +0200 gnu: Add texlive-xml2pmx-bin. * gnu/packages/tex.scm (texlive-xml2pmx-bin): New variable.

67/71: gnu: texlive-musixtnt: Build binary separately.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit b33d75ca9705bc611c894e50ae04c22b043966f9 Author: Nicolas Goaziou AuthorDate: Tue May 28 21:44:18 2024 +0200 gnu: texlive-musixtnt: Build binary separately. * gnu/packages/tex.scm (texlive-musixtnt-bin): New variable.

15/71: gnu: Add texlive-texware-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 15f00a85e3407e672a418bbf05b499fa712345a1 Author: Nicolas Goaziou AuthorDate: Mon May 27 16:11:40 2024 +0200 gnu: Add texlive-texware-bin. * gnu/packages/tex.scm (texlive-texware-bin): New variable.

16/71: gnu: Add texlive-patgen-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 41631de4f33a259acdc6f0a0d433b935784274af Author: Nicolas Goaziou AuthorDate: Mon May 27 16:13:52 2024 +0200 gnu: Add texlive-patgen-bin. * gnu/packages/tex.scm (texlive-patgen-bin): New variable.

62/71: gnu: Add texlive-luajittex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 45d5f4db9aa5d374d8ebd11a4c907c70d03da645 Author: Nicolas Goaziou AuthorDate: Sun Jun 2 01:02:06 2024 +0200 gnu: Add texlive-luajittex-bin. * gnu/packages/tex.scm (texlive-luajittex-bin): New variable.

51/71: gnu: Add texlive-dvipng-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 02a4b49dcda21fb2461e6f8a90fe8974acee1260 Author: Nicolas Goaziou AuthorDate: Tue May 28 16:02:19 2024 +0200 gnu: Add texlive-dvipng-bin. * gnu/packages/tex.scm (texlive-dvipng-bin): New variable.

18/71: gnu: Add texlive-ptex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit def3b0b1aa0caabe5cbcbd8bb080de02076fdd6f Author: Nicolas Goaziou AuthorDate: Mon May 27 16:24:46 2024 +0200 gnu: Add texlive-ptex-bin. * gnu/packages/tex.scm (texlive-ptex-bin): New variable.

26/71: gnu: Add texlive-m-tx-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit c0c1ea7fda1103b0f37ae13691ba7b4c2125f23f Author: Nicolas Goaziou AuthorDate: Mon May 27 22:55:19 2024 +0200 gnu: Add texlive-m-tx-bin. * gnu/packages/tex.scm (texlive-m-tx-bin): New variable.

54/71: gnu: Add texlive-lacheck-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 6b47bfd4e723ecb956248766ecb13547022b37cd Author: Nicolas Goaziou AuthorDate: Tue May 28 16:19:31 2024 +0200 gnu: Add texlive-lacheck-bin. * gnu/packages/tex.scm (texlive-lacheck-bin): New variable.

65/71: gnu: texlive-ps2pk: Build binaries separately.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 5c2f93c064395158c19f20c385c3e143e58597a5 Author: Nicolas Goaziou AuthorDate: Tue May 28 18:40:16 2024 +0200 gnu: texlive-ps2pk: Build binaries separately. * gnu/packages/tex.scm (texlive-ps2pk-bin): New variable.

48/71: gnu: Add texlive-dvi2tty-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit b56046f651e2139e6af4dd766d773575f77b03b6 Author: Nicolas Goaziou AuthorDate: Tue May 28 15:46:27 2024 +0200 gnu: Add texlive-dvi2tty-bin. * gnu/packages/tex.scm (texlive-dvi2tty-bin): New variable.

63/71: gnu: Add texlive-mflua-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 3a7855dd22243cede69aa816eb1f1808d9b396d7 Author: Nicolas Goaziou AuthorDate: Sun Jun 2 12:12:21 2024 +0200 gnu: Add texlive-mflua-bin. * gnu/packages/tex.scm (texlive-mflua-bin): New variable.

27/71: gnu: Add texlive-autosp-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 35146b09354b6884f3fe7c62de934a97b2faa3df Author: Nicolas Goaziou AuthorDate: Mon May 27 23:04:13 2024 +0200 gnu: Add texlive-autosp-bin. * gnu/packages/tex.scm (texlive-autosp-bin): New variable.

64/71: gnu: texlive-dviout-util: Build binaries separately.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit c3c41cfa4056cb45638cde882fae72d688f73e15 Author: Nicolas Goaziou AuthorDate: Tue May 28 18:29:02 2024 +0200 gnu: texlive-dviout-util: Build binaries separately. * gnu/packages/tex.scm (texlive-dviout-util-bin): New

17/71: gnu: Add texlive-uptex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit cb869476285936a6c3bb811bd263cda3727671e7 Author: Nicolas Goaziou AuthorDate: Mon May 27 16:24:10 2024 +0200 gnu: Add texlive-uptex-bin. * gnu/packages/tex.scm (texlive-uptex-bin): New variable.

46/71: gnu: Add texlive-detex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 112567e879b5fa8241f1125734fa16f8a2b7fbcd Author: Nicolas Goaziou AuthorDate: Tue May 28 15:31:51 2024 +0200 gnu: Add texlive-detex-bin. * gnu/packages/tex.scm (texlive-detex-bin): New variable.

08/71: gnu: Add texlive-libptexenc.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit f155aad23dce6575b11cb87234408027d7f96809 Author: Nicolas Goaziou AuthorDate: Mon May 27 10:50:04 2024 +0200 gnu: Add texlive-libptexenc. * gnu/packages/tex.scm (texlive-libptexenc): New variable. Change-Id:

49/71: gnu: Add texlive-dvidvi-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 80450fd4f58eba89193322139a274b7bffd297dd Author: Nicolas Goaziou AuthorDate: Tue May 28 15:49:35 2024 +0200 gnu: Add texlive-dvidvi-bin. * gnu/packages/tex.scm (texlive-dvidvi-bin): New variable.

42/71: gnu: Add texlive-metapost-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 8c56479c09d104aff8cc979172ca0ec0cced07dd Author: Nicolas Goaziou AuthorDate: Tue May 28 07:20:20 2024 +0200 gnu: Add texlive-metapost-bin. * gnu/packages/tex.scm (texlive-metapost-bin): New variable.

10/71: gnu: tex.scm: Remove completed TODO.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 91952212d83b9c06e244a7929a2e852303101580 Author: Nicolas Goaziou AuthorDate: Tue May 28 18:32:18 2024 +0200 gnu: tex.scm: Remove completed TODO. * gnu/packages/tex.scm (texlive-axodraw2): Remove TODO.

60/71: gnu: texlive-kpathsea: Propagate the binaries.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit a07117abcb32b7c5947ab7497c15c9bf0d1b64c4 Author: Nicolas Goaziou AuthorDate: Tue May 28 18:23:00 2024 +0200 gnu: texlive-kpathsea: Propagate the binaries. * gnu/packages/tex.scm (texlive-kpathsea)[propagated-inputs]:

52/71: gnu: Add texlive-dvisvgm-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 8a6b4957ba72820fda22c4223840bac5744f9293 Author: Nicolas Goaziou AuthorDate: Tue May 28 16:13:48 2024 +0200 gnu: Add texlive-dvisvgm-bin. * gnu/packages/tex.scm (texlive-dvisvgm-bin): New variable.

21/71: gnu: Add texlive-dvipdfmx-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit a778aeb116e955f9d5a656c2f091ea4f4b0391c1 Author: Nicolas Goaziou AuthorDate: Mon May 27 18:46:41 2024 +0200 gnu: Add texlive-dvipdfmx-bin. * gnu/packages/tex.scm (texlive-dvipdfmx-bin): New variable.

50/71: gnu: Add texlive-dviljk-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 8fe6178757e7a11ae7c99989e74c25639c9b6bed Author: Nicolas Goaziou AuthorDate: Tue May 28 15:59:06 2024 +0200 gnu: Add texlive-dviljk-bin. * gnu/packages/tex.scm (texlive-dviljk-bin): New variable.

43/71: gnu: Add texlive-vlna-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 518236786505d2447b0af1aace27531be546d554 Author: Nicolas Goaziou AuthorDate: Tue May 28 07:24:36 2024 +0200 gnu: Add texlive-vlna-bin. * gnu/packages/tex.scm (texlive-vlna-bin): New variable.

55/71: gnu: Add texlive-seetexk-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit c91c3ea0680ca504486a335cb1c5d6e084c41448 Author: Nicolas Goaziou AuthorDate: Tue May 28 16:24:10 2024 +0200 gnu: Add texlive-seetexk-bin. * gnu/packages/tex.scm (texlive-seetexk-bin): New variable.

68/71: gnu: texlive-axodraw2: Build binary separately.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 14d62b8c65a8e86912c92ee1c05fd608233fb536 Author: Nicolas Goaziou AuthorDate: Tue May 28 21:55:12 2024 +0200 gnu: texlive-axodraw2: Build binary separately. * gnu/packages/tex.scm (texlive-axodraw2-bin): New variable.

71/71: gnu: Update commentary section in "tex.scm".

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 625847c944467e9d314e4db26fe9add45ae022b4 Author: Nicolas Goaziou AuthorDate: Tue May 28 15:33:49 2024 +0200 gnu: Update commentary section in "tex.scm". * gnu/packages/tex.scm: Describe new bootstrap story in

66/71: gnu: texlive-dvipos: Build binaries separately.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 45c410524a0a3b9d34bedebe8441f390e3a8cdec Author: Nicolas Goaziou AuthorDate: Tue May 28 21:38:35 2024 +0200 gnu: texlive-dvipos: Build binaries separately. * gnu/packages/tex.scm (texlive-dvipos-bin): New variable.

07/71: gnu: texlive-context: Fix "context" call.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 23dec0109d4a9a55f2240ad18a5e51645e5f4d08 Author: Nicolas Goaziou AuthorDate: Tue May 28 21:19:59 2024 +0200 gnu: texlive-context: Fix "context" call. * gnu/packages/tex.scm (texlive-context)[arguments]<#:phases>: Add

57/71: gnu: Add texlive-t1utils-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit a4c098df65cde8c270210af3c234e5639766ad59 Author: Nicolas Goaziou AuthorDate: Tue May 28 16:34:14 2024 +0200 gnu: Add texlive-t1utils-bin. * gnu/packages/tex.scm (texlive-t1utils-bin): New variable.

44/71: gnu: Add texlive-cjkutils-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit e96013f73204b7f1e8263065e1e664b76096502a Author: Nicolas Goaziou AuthorDate: Tue May 28 15:26:07 2024 +0200 gnu: Add texlive-cjkutils-bin. * gnu/packages/tex.scm (texlive-cjkutils-bin): New variable.

30/71: gnu: Add texlive-velthuis-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 27a1de4a824d6d27a93ca764620ec08847fa0554 Author: Nicolas Goaziou AuthorDate: Mon May 27 23:48:23 2024 +0200 gnu: Add texlive-velthuis-bin. * gnu/packages/tex.scm (texlive-velthuis-bin): New variable.

28/71: gnu: Add texlive-gregoriotex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 50dd57e46e65a074aec66c2152dec80682b63583 Author: Nicolas Goaziou AuthorDate: Mon May 27 23:08:36 2024 +0200 gnu: Add texlive-gregoriotex-bin. * gnu/packages/tex.scm (texlive-gregoriotex-bin): New variable.

34/71: gnu: Add texlive-psutils-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 6fcfd6b9ad2fdae3ec16cda15455f09acd70bfe4 Author: Nicolas Goaziou AuthorDate: Tue May 28 00:05:17 2024 +0200 gnu: Add texlive-psutils-bin. * gnu/packages/tex.scm (texlive-psutils-bin): New variable.

40/71: gnu: Add texlive-gsftopk-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 5062546a6895d5b922e5324bf35b75afcda7bb97 Author: Nicolas Goaziou AuthorDate: Tue May 28 00:49:34 2024 +0200 gnu: Add texlive-gsftopk-bin. * gnu/packages/tex.scm (texlive-gsftopk-bin): New variable.

59/71: gnu: Add texlive-xpdfopen-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit ff2ac1929515c0460d344ad25998683bf93995a4 Author: Nicolas Goaziou AuthorDate: Tue May 28 18:22:12 2024 +0200 gnu: Add texlive-xpdfopen-bin. * gnu/packages/tex.scm (texlive-xpdfopen-bin): New variable.

31/71: gnu: Add texlive-bibtex8-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 7795ab1db81ac69918db18a23db8426a06e8489e Author: Nicolas Goaziou AuthorDate: Mon May 27 23:53:04 2024 +0200 gnu: Add texlive-bibtex8-bin. * gnu/packages/tex.scm (texlive-bibtex8-bin): New variable.

29/71: gnu: Add texlive-pmx-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 30c4268ee73ba92fa369c46851442b732f7f0eb0 Author: Nicolas Goaziou AuthorDate: Mon May 27 23:34:59 2024 +0200 gnu: Add texlive-pmx-bin. * gnu/packages/tex.scm (texlive-pmx-bin): New variable.

39/71: gnu: Add texlive-upmendex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 40cbd0ecd3a45318cce160b89ab7fba6da610eb0 Author: Nicolas Goaziou AuthorDate: Tue May 28 00:39:50 2024 +0200 gnu: Add texlive-upmendex-bin. * gnu/packages/tex.scm (texlive-upmendex-bin): New variable.

35/71: gnu: Add texlive-tex4ht-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 86a735a91c143c239d86937e8500079828c89d1a Author: Nicolas Goaziou AuthorDate: Tue May 28 00:17:13 2024 +0200 gnu: Add texlive-tex4ht-bin. * gnu/packages/tex.scm (texlive-tex4ht-bin): New variable.

25/71: gnu: Add texlive-afm2pl-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit d639068b67bdb27fb672a71da4e41371f6450f12 Author: Nicolas Goaziou AuthorDate: Mon May 27 19:24:03 2024 +0200 gnu: Add texlive-afm2pl-bin. * gnu/packages/tex.scm (texlive-afm2pl-bin): New variable.

37/71: gnu: Add texlive-tpic2pdftex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit e73c4ea417a44afccc367b42cef213fe53252a30 Author: Nicolas Goaziou AuthorDate: Tue May 28 00:33:02 2024 +0200 gnu: Add texlive-tpic2pdftex-bin. * gnu/packages/tex.scm (texlive-tpic2pdftex-bin): New variable.

47/71: gnu: Add texlive-dtl-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 3a00af9313a25b7ae2a8bf482c6753454d52ff1e Author: Nicolas Goaziou AuthorDate: Tue May 28 15:37:22 2024 +0200 gnu: Add texlive-dtl-bin. * gnu/packages/tex.scm (texlive-dtl-bin): New variable.

32/71: gnu: Add texlive-bibtexu-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit e2e70875309680ef1db785a63cb67b26cfecc445 Author: Nicolas Goaziou AuthorDate: Mon May 27 23:56:13 2024 +0200 gnu: Add texlive-bibtexu-bin. * gnu/packages/tex.scm (texlive-bibtexu-bin): New variable.

41/71: gnu: Add texlive-makeindex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 2fc12c15d76111d3bfe518f422242b33476f3425 Author: Nicolas Goaziou AuthorDate: Tue May 28 07:18:47 2024 +0200 gnu: Add texlive-makeindex-bin. * gnu/packages/tex.scm (texlive-makeindex-bin): New variable.

24/71: gnu: Add texlive-hitex-bin.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 175e13882c1fe0e6fafa194ee6feb4710659d360 Author: Nicolas Goaziou AuthorDate: Mon May 27 18:54:32 2024 +0200 gnu: Add texlive-hitex-bin. * gnu/packages/tex.scm (texlive-hitex-bin): New variable.

04/71: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE.

2024-06-02 Thread guix-commits
ngz pushed a commit to branch tex-team in repository guix. commit 8242755f05612fa0e964d2c9dc82bb8ad98b59b0 Author: Nicolas Goaziou AuthorDate: Mon May 27 10:42:34 2024 +0200 gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE. * gnu/packages/tex.scm (texlive-libkpathsea)[version]: Refer

  1   2   3   4   5   6   7   8   9   10   >