List of commits:
Subject Hash Author Date (UTC)
cleanup some filename generations 18ab65b24ea12f070e054c4f189bb1de946df8c5 Sylvain BERTRAND 2017-07-25 09:53:14
increase included utils and add pkg-config file c495204f3e0812e4574e04274c8aa4c461e8d4a2 Sylvain BERTRAND 2017-07-22 19:23:36
cleanup dc65b2d30a049cf5160109e23c373fc52425e82c Sylvain BERTRAND 2017-07-20 21:31:31
fix some of make help eda2aac9e1d9b9a716602a7269e587b5fef96b93 Sylvain BERTRAND 2017-07-20 19:21:18
sync with util-linux 2.30.1 and its udf work 6190f52b0030d80e83414246908878cc5b92ddad Sylvain BERTRAND 2017-07-20 16:34:30
first release of code extraction 4cf6461453cef6973570fae855a1a0652ef9e78f Sylvain BERTRAND 2017-07-19 02:31:19
Commit 18ab65b24ea12f070e054c4f189bb1de946df8c5 - cleanup some filename generations
Author: Sylvain BERTRAND
Author date (UTC): 2017-07-25 09:53
Committer name: Sylvain BERTRAND
Committer date (UTC): 2017-07-25 09:53
Parent(s): c495204f3e0812e4574e04274c8aa4c461e8d4a2
Signer:
Signing key:
Signing status: N
Tree: 655c8db7b0431fe1e6d35a7164c4c3066c5ff445
File Lines added Lines deleted
make.blkid.sh 2 3
make.libblkid.sh 4 6
File make.blkid.sh changed (mode: 100644) (index 44f9740..9eaf3c0)
... ... sep_start;echo 'dblkid:compile src files'
4 4 for blkid_src_file in $blkid_src_files for blkid_src_file in $blkid_src_files
5 5 do do
6 6 # build an object name which is prefixed with 'd', "Dynamic" # build an object name which is prefixed with 'd', "Dynamic"
7 dblkid_o_file=${blkid_src_file%.c}
8 dblkid_o_file_name=$(basename $dblkid_o_file)
9 dblkid_o_file=$(dirname $dblkid_o_file)/d${dblkid_o_file_name}.o
7 dblkid_o_file_name=$(basename $dblkid_src_file .c)
8 dblkid_o_file=$(dirname $dblkid_src_file)/d${dblkid_o_file_name}.o
10 9
11 10 echo "DBIN_CC $blkid_src_file-->$dblkid_o_file" echo "DBIN_CC $blkid_src_file-->$dblkid_o_file"
12 11 mkdir -p -- $(dirname $dblkid_o_file) mkdir -p -- $(dirname $dblkid_o_file)
File make.libblkid.sh changed (mode: 100644) (index b64812a..2668f24)
... ... sep_start;echo 'slibblkid:compile src files'
4 4 for libblkid_src_file in $libblkid_src_files for libblkid_src_file in $libblkid_src_files
5 5 do do
6 6 # build an object name which is prefixed with 's', "Shared" # build an object name which is prefixed with 's', "Shared"
7 slibblkid_o_file=${libblkid_src_file%.c}
8 slibblkid_o_file_name=$(basename $slibblkid_o_file)
9 slibblkid_o_file=$(dirname $slibblkid_o_file)/s${slibblkid_o_file_name}.o
7 slibblkid_o_file_name=$(basename $slibblkid_src_file .c)
8 slibblkid_o_file=$(dirname $slibblkid_src_file)/s${slibblkid_o_file_name}.o
10 9
11 10 echo "SLIBBLKID_CC $libblkid_src_file-->$slibblkid_o_file" echo "SLIBBLKID_CC $libblkid_src_file-->$slibblkid_o_file"
12 11 mkdir -p -- $(dirname $slibblkid_o_file) mkdir -p -- $(dirname $slibblkid_o_file)
 
... ... sep_start;echo 'libblkid:compile src files'
48 47 for libblkid_src_file in $libblkid_src_files for libblkid_src_file in $libblkid_src_files
49 48 do do
50 49 # build an object name which is prefixed with 'a', "Archive/lib.A" # build an object name which is prefixed with 'a', "Archive/lib.A"
51 libblkid_o_file=${libblkid_src_file%.c}
52 libblkid_o_file_name=$(basename $libblkid_o_file)
53 libblkid_o_file=$(dirname $libblkid_o_file)/a${libblkid_o_file_name}.o
50 libblkid_o_file_name=$(basename $libblkid_src_file .c)
51 libblkid_o_file=$(dirname $libblkid_src_file)/a${libblkid_o_file_name}.o
54 52
55 53 echo "LIBBLKID_CC $libblkid_src_file-->$libblkid_o_file" echo "LIBBLKID_CC $libblkid_src_file-->$libblkid_o_file"
56 54 mkdir -p -- $(dirname $libblkid_o_file) mkdir -p -- $(dirname $libblkid_o_file)
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/sylware/nyanblkid

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/sylware/nyanblkid

Clone this repository using git:
git clone git://git.rocketgit.com/user/sylware/nyanblkid

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main