search for: gitmodul

Displaying 20 results from an estimated 31 matches for "gitmodul".

Did you mean: getmodule
2014 Mar 10
2
[LLVMdev] Shouldn't tools and projects in .gitignore go to .gitmodules?
I think it is erroneous to have the subrepository projects and tools listed in .gitignore. Instead of being ignored, methinks they should be listed as submodules in .gitmodules: [submodule "tools/clang"] path = tools/clang url = ../clang.git [submodule "projects/compiler-rt"] path = projects/compiler-rt url = ../compiler-rt.git [submodule "projects/test-suite"] path = projects/test-suite url...
2010 Jun 16
1
febootstrap git empty /lib dir
On Wed, Jun 16, 2010 at 03:38:22PM -0700, Dwayne Fontenot <dwayne.fontenot at att.net> wrote: > Is lib/ supposed to be empty in febootstrap git HEAD? Yes. Run ./autogen.sh to populate it with gnulib stuff. Actually, this may not work too well unless you have gnulib checked out exactly in ../gnulib. I need to ask Jim Meyering nicely if he'll make gnulib into a submodule of
2015 Sep 08
1
[PATCH] build: improve maintainer-check-extra-dist target
...$(PACKAGE_NAME)-$(VERSION).tar.gz | tar tf - | sort | \ sed 's,^$(PACKAGE_NAME)-$(VERSION)/,,' > tmp/tarfiles - git ls-files | sort > tmp/gitfiles - diff -ur tmp/tarfiles tmp/gitfiles | \ - grep '^\+' | \ - grep -v '^\+intltool-.*\.in' | \ - grep -v '^\+.gitmodules' | \ - grep -v '^\+.gnulib' ||: - rm tmp/tarfiles tmp/gitfiles + git ls-files | \ + grep -v '^intltool-.*\.in' | \ + grep -v '^\.gitmodules' | \ + grep -v '^\.gnulib' | \ + sort > tmp/gitfiles + comm -13 tmp/tarfiles tmp/gitfiles > tmp/comm-out...
2019 Nov 27
5
[v2v PATCH v2 0/5] Various build cleanups
...he libguestfs universe in a while" saga -- now with working test suite. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am | 2 - bootstrap | 61 +-------------------------- configure.ac | 2 - m4/guestfs-c.m4 | 12 ------ m4/guestfs-libraries.m4 | 90 +--------------------------------------- m4/guestfs-perl.m4 | 27 +---------...
2023 Mar 17
1
[V2V PATCH v3 5/6] v2v, in-place: introduce --block-driver command line option
.../ supermin -- -> guestfs-tools - (And this diagram doesn't even show the libguestfs-common submodule, which is shared by libguestfs, guestfs-tools and virt-v2v. If you want to test common submodule changes, you need to play with superproject patches like diff --git a/.gitmodules b/.gitmodules index 1343142128f6..7b1a84418c2b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,4 @@ [submodule "common"] path = common - url = https://github.com/libguestfs/libguestfs-common + url = file:///home/lacos/src/v2v/libguestfs-common + branch =...
2019 Nov 27
6
[v2v PATCH 0/5] Various build cleanups
..."I haven't rebuilt the libguestfs universe in a while" saga. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am | 2 - bootstrap | 61 +------------------------- configure.ac | 2 - m4/guestfs-c.m4 | 12 ----- m4/guestfs-find-db-tool.m4 | 43 ------------------ m4/guestfs-libraries.m4 | 90 +-------------------...
2009 Mar 28
2
Git and vendor/rails
This is really a git question but the problem is with rails using git and others may have come across the problem. I have a branch on my application''s git repository with edge rails as a subproject checked out into vendor/rails. this allows me to keep my application edge-compliant by checking out the branch (which creates the rails folder in vendor), pulling the latest edge rails and
2010 Oct 01
0
[FEBOOTSTRAP] Add gnulib as a submodule
--- .gitmodules | 3 +++ autogen.sh | 4 +--- gnulib | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 .gitmodules create mode 160000 gnulib -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Add-gnulib-as-a-submodule.patch Type: te...
2012 Aug 27
1
Hidden files in source packages
...eftovers, ._.DS_store is from an Apple filesystem and .tex .log .aux .pdf .png are junk (as file names, not extensions). However, is there ever any reason for any of .Renviron .Rprofile .Rproj.user .backups .cvsignore .cproject .directory .dropbox .exrc .gdb.history .gitattributes .gitignore .gitmodules .hgignore .hqtags .htaccess .latex2html-init .project .seed .settings to be in a source package tarball? (For some of these it is not clear where they come from since there are multiple possible origins.) If you know of a reason to retain any of these, please let CRAN at r-project.org know (...
2008 Jun 02
3
GiT and RSpec
...(delta 33241), reused 46530 (delta 33241) Receiving objects: 100% (46530/46530), 5.94 MiB | 63 KiB/s, done. Resolving deltas: 100% (33241/33241), done. $ git-status # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # modified: .gitmodules # new file: vendor/plugins/rspec # new file: vendor/plugins/rspec-rails # $ git-submodule init Submodule ''vendor/plugins/rspec'' (git://github.com/dchelimsky/rspec.git) registered for path ''vendor/plugins/rspec'' Submodule ''vendor/plugi...
2009 Aug 03
1
use gnulib, and begin to pass its "make syntax-check" tests
...o.h> #include <stdlib.h> #include <string.h> -- 1.6.3.3 >From e0c33625431f7533ed5ae928032353017ebd27fa Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Mon, 3 Aug 2009 05:18:10 -0400 Subject: [PATCH 3/4] maint: use a git submodule for gnulib * .gitmodules: New file, to track gnulib. * .gnulib: Submodule directory. * Makefile.am (EXTRA_DIST): Don't list config.rpath or gitlog-to-changelog. * autogen.sh: Adapt to use the new submodule. * cfg.mk: New file. (SUBDIRS): Add gnulib/lib and gnulib/tests. (dist-hook): Reflect new location of getlog-to-...
2018 Apr 10
6
[PATCH 0/5] Some improvements in bootstrap, m4 and configure.ac
Lin Ma (5): configure: error out if using libvirt backend and no header files configure: output the default backend in summary configure: try pcre-config if pcre pkg-config file not found configure: output clearer message when missing libmagic configure: support using local gnulib src directory as $GNULIB_SRCDIR bootstrap | 78
2008 Apr 28
16
GiT and Edge/Trunk Rails
I have a sub-application project that I had previously converted to edge rails under svn. Originally, vendor/rails was set up with svn:externals so that an svn update at the project''s root would pull the latest trunk along with all the other updates. Since Rails has moved to GiT and depreciated svn I decided to remove the svn:externals reference for vendor/rails and reinstall trunk using
2019 Nov 17
1
Re: Building libguestfs from git
On Sun, Nov 17, 2019 at 7:05 PM Richard W.M. Jones <rjones@redhat.com> wrote: > > On Sun, Nov 17, 2019 at 06:22:20PM +0200, Nir Soffer wrote: > > Looks like libguestfs build is broken, or not documented properly. > > > > I tried (based on http://libguestfs.org/guestfs-building.1.html): > > Quite possibly, it's early days. One thing you will definitely need
2019 Dec 17
0
[v2v PATCH 5/3] build: exclude common/windows from distcheck
...++ b/Makefile.am @@ -199,6 +199,7 @@ maintainer-check-extra-dist: grep -v '^common/protocol/' | \ grep -v '^common/structs/' | \ grep -v '^common/visit/' | \ + grep -v '^common/windows/' | \ grep -v '^intltool-.*\.in' | \ grep -v '^\.gitmodules' | \ grep -v '^\.gnulib' | \ -- 2.23.0
2019 Dec 17
0
[PATCH 4/3] build: exclude common/mlv2v from distcheck
...efile.am +++ b/Makefile.am @@ -580,6 +580,7 @@ maintainer-check-extra-dist: ( git ls-files ; \ cd common; git ls-files | sed 's,^,common/,' ) | \ grep -v '^common$$' | \ + grep -v '^common/mlv2v/' | \ grep -v '^intltool-.*\.in' | \ grep -v '^\.gitmodules' | \ grep -v '^\.gnulib' | \ @@ -589,7 +590,7 @@ maintainer-check-extra-dist: cat tmp/comm-out [ ! -s tmp/comm-out ] @echo Checking for generated files missing from the tarball ... - @for f in `cat generator/files-generated.txt`; do \ + @for f in `cat generator/files-generat...
2016 May 31
1
[cfe-dev] GitHub anyone?
...me tooling. The magic command to update everything to the current commit pointed by each submodule : git submodules update --init --recursive To get the latest version you can do: git submodules --init --recursive --remote This by default will get the latest version of master, but a change in the .gitmodules file can make it point to release branches. If you want a stable version from days ago, you can have a bot updating the submodules everyday and pushing the submodules update, then use that commit. With a bot like this, manual submodule bumps should be rare and people non familiar with git will s...
2016 May 31
2
[cfe-dev] GitHub anyone?
On 31 May 2016 at 21:24, Aaron Ballman <aaron at aaronballman.com> wrote: > Are we sure that github's svn integration works with common tools on > Windows, like TortoiseSVN? That's a good question. Can you try them out and report back? cheers, --renato
2016 May 31
0
[cfe-dev] GitHub anyone?
On Tue, May 31, 2016 at 4:27 PM, Renato Golin <renato.golin at linaro.org> wrote: > On 31 May 2016 at 21:24, Aaron Ballman <aaron at aaronballman.com> wrote: >> Are we sure that github's svn integration works with common tools on >> Windows, like TortoiseSVN? > > That's a good question. Can you try them out and report back? >From my very simple testing,
2015 Nov 23
2
git clone of syslinux with http - submodule issue
On Sun, Nov 22, 2015 at 5:49 PM, Ady via Syslinux <syslinux at zytor.com> wrote: > >> The wiki: >> http://www.zytor.com/mailman/listinfo/syslinux > As of the moment I am writing this email, the current version of the > page you are actually referring to: > > http://www.syslinux.org/wiki/index.php?title=Development&oldid=4419 > > was last edited on