Browse Source

initial commit

bmallred 10 years ago
parent
commit
3da63eac70
6 changed files with 355 additions and 0 deletions
  1. 3 0
      .gitignore
  2. 14 0
      README.md
  3. 58 0
      build.sh
  4. 140 0
      makepkg32.conf
  5. 140 0
      makepkg64.conf
  6. 0 0
      packages.list

+ 3 - 0
.gitignore

1
packages/*
2
x86_64/*
3
i686/*

+ 14 - 0
README.md

2
=================
2
=================
3
3
4
Build custom repository of Arch AUR packages for use with the live CD
4
Build custom repository of Arch AUR packages for use with the live CD
5
6
choosing your packages
7
----------------------
8
9
You must specifically name each of the AUR packages you wish to include in
10
the repository inside of the `packages.list` file. The format is meant to
11
be simple and human readable so just one package name per line.
12
13
building the repository
14
-----------------------
15
16
Execute the script `build.sh` to clean the previous contents and build the
17
packages. The dependency on `wget` and `makepkg` are present and it is assumed
18
it is being ran on a 64-bit system.

+ 58 - 0
build.sh

1
#!/bin/zsh
2
3
# Pull the packages in from a more human readable file
4
packages=("${(@f)$(cat packages.list)}")
5
6
# Clean everything up
7
if [[ -d ./packages ]]; then
8
    if [[ -e ./packages/* ]]; then
9
        rm -rf ./packages/*
10
    fi
11
else
12
    mkdir ./packages
13
fi
14
15
if [[ -d ./x86_64 ]]; then
16
    if [[ -e ./x86_64/* ]]; then
17
        rm -rf ./x86_64/*
18
    fi
19
else
20
    mkdir ./x86_64
21
fi
22
23
if [[ -d ./i686 ]]; then
24
    if [[ -e ./i686/* ]]; then
25
        rm -rf ./i686/*
26
    fi
27
else
28
    mkdir ./i686
29
fi
30
31
# Move to our working directory
32
cd packages
33
34
for p in $packages;
35
do
36
    # Grab the most recent packages
37
    wget https://aur.archlinux.org/packages/$p[0,2]/$p/$p.tar.gz
38
    
39
    # Unpackage the compressed packages
40
    tar -xvf $p.tar.gz
41
    
42
    # Make the Arch packages
43
    cd $p
44
    makepkg --config ../../makepkg64.conf && mv *.pkg.tar.xz ../../x86_64
45
    linux32 makepkg --config ../../makepkg32.conf && mv *.pkg.tar.xz ../../i686
46
    cd ..
47
done
48
49
50
# Add the Arch packages to the repositories
51
cd ..
52
if [[ -e ./x86_64/*.tar.xz ]]; then
53
    repo-add -n ./x86_64/customrepo.db.tar.gz ./x86_64/*.tar.xz
54
fi
55
56
if [[ -e ./i686/*.tar.xz ]]; then
57
    repo-add -n ./i686/customrepo.db.tar.gz ./i686/*.tar.xz
58
fi

+ 140 - 0
makepkg32.conf

1
#
2
# /etc/makepkg.conf
3
#
4
5
#########################################################################
6
# SOURCE ACQUISITION
7
#########################################################################
8
#
9
#-- The download utilities that makepkg should use to acquire sources
10
#  Format: 'protocol::agent'
11
DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
12
          'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
13
          'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
14
          'rsync::/usr/bin/rsync --no-motd -z %u %o'
15
          'scp::/usr/bin/scp -C %u %o')
16
17
# Other common tools:
18
# /usr/bin/snarf
19
# /usr/bin/lftpget -c
20
# /usr/bin/wget
21
22
#########################################################################
23
# ARCHITECTURE, COMPILE FLAGS
24
#########################################################################
25
#
26
CARCH="i686"
27
CHOST="i686-unknown-linux-gnu"
28
29
#-- Compiler and Linker Flags
30
# -march (or -mcpu) builds exclusively for an architecture
31
# -mtune optimizes for an architecture, but builds for whole processor family
32
CPPFLAGS="-D_FORTIFY_SOURCE=2"
33
CFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
34
CXXFLAGS="-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
35
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
36
#-- Make Flags: change this for DistCC/SMP systems
37
#MAKEFLAGS="-j2"
38
#-- Debugging flags
39
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
40
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
41
42
#########################################################################
43
# BUILD ENVIRONMENT
44
#########################################################################
45
#
46
# Defaults: BUILDENV=(fakeroot !distcc color !ccache check !sign)
47
#  A negated environment option will do the opposite of the comments below.
48
#
49
#-- fakeroot: Allow building packages as a non-root user
50
#-- distcc:   Use the Distributed C/C++/ObjC compiler
51
#-- color:    Colorize output messages
52
#-- ccache:   Use ccache to cache compilation
53
#-- check:    Run the check() function if present in the PKGBUILD
54
#-- sign:     Generate PGP signature file
55
#
56
BUILDENV=(fakeroot !distcc color !ccache check !sign)
57
#
58
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
59
#-- specify a space-delimited list of hosts running in the DistCC cluster.
60
#DISTCC_HOSTS=""
61
#
62
#-- Specify a directory for package building.
63
#BUILDDIR=/tmp/makepkg
64
65
#########################################################################
66
# GLOBAL PACKAGE OPTIONS
67
#   These are default values for the options=() settings
68
#########################################################################
69
#
70
# Default: OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
71
#  A negated option will do the opposite of the comments below.
72
#
73
#-- strip:      Strip symbols from binaries/libraries
74
#-- docs:       Save doc directories specified by DOC_DIRS
75
#-- libtool:    Leave libtool (.la) files in packages
76
#-- staticlibs: Leave static library (.a) files in packages
77
#-- emptydirs:  Leave empty directories in packages
78
#-- zipman:     Compress manual (man and info) pages in MAN_DIRS with gzip
79
#-- purge:      Remove files specified by PURGE_TARGETS
80
#-- upx:        Compress binary executable files using UPX
81
#-- debug:      Add debugging flags as specified in DEBUG_* variables
82
#
83
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
84
85
#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
86
INTEGRITY_CHECK=(md5)
87
#-- Options to be used when stripping binaries. See `man strip' for details.
88
STRIP_BINARIES="--strip-all"
89
#-- Options to be used when stripping shared libraries. See `man strip' for details.
90
STRIP_SHARED="--strip-unneeded"
91
#-- Options to be used when stripping static libraries. See `man strip' for details.
92
STRIP_STATIC="--strip-debug"
93
#-- Manual (man and info) directories to compress (if zipman is specified)
94
MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
95
#-- Doc directories to remove (if !docs is specified)
96
DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
97
#-- Files to be removed from all packages (if purge is specified)
98
PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
99
100
#########################################################################
101
# PACKAGE OUTPUT
102
#########################################################################
103
#
104
# Default: put built package and cached source in build directory
105
#
106
#-- Destination: specify a fixed directory where all packages will be placed
107
#PKGDEST=/home/bryan/customrepo/i686
108
#-- Source cache: specify a fixed directory where source files will be cached
109
#SRCDEST=/home/sources
110
#-- Source packages: specify a fixed directory where all src packages will be placed
111
#SRCPKGDEST=/home/srcpackages
112
#-- Log files: specify a fixed directory where all log files will be placed
113
#LOGDEST=/home/makepkglogs
114
#-- Packager: name/email of the person or organization building packages
115
#PACKAGER="John Doe <john@doe.com>"
116
#-- Specify a key to use for package signing
117
#GPGKEY=""
118
119
#########################################################################
120
# COMPRESSION DEFAULTS
121
#########################################################################
122
#
123
COMPRESSGZ=(gzip -c -f -n)
124
COMPRESSBZ2=(bzip2 -c -f)
125
COMPRESSXZ=(xz -c -z -)
126
COMPRESSLRZ=(lrzip -q)
127
COMPRESSLZO=(lzop -q)
128
COMPRESSZ=(compress -c -f)
129
130
#########################################################################
131
# EXTENSION DEFAULTS
132
#########################################################################
133
#
134
# WARNING: Do NOT modify these variables unless you know what you are
135
#          doing.
136
#
137
PKGEXT='.pkg.tar.xz'
138
SRCEXT='.src.tar.gz'
139
140
# vim: set ft=sh ts=2 sw=2 et:

+ 140 - 0
makepkg64.conf

1
#
2
# /etc/makepkg.conf
3
#
4
5
#########################################################################
6
# SOURCE ACQUISITION
7
#########################################################################
8
#
9
#-- The download utilities that makepkg should use to acquire sources
10
#  Format: 'protocol::agent'
11
DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
12
          'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
13
          'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
14
          'rsync::/usr/bin/rsync --no-motd -z %u %o'
15
          'scp::/usr/bin/scp -C %u %o')
16
17
# Other common tools:
18
# /usr/bin/snarf
19
# /usr/bin/lftpget -c
20
# /usr/bin/wget
21
22
#########################################################################
23
# ARCHITECTURE, COMPILE FLAGS
24
#########################################################################
25
#
26
CARCH="x86_64"
27
CHOST="x86_64-unknown-linux-gnu"
28
29
#-- Compiler and Linker Flags
30
# -march (or -mcpu) builds exclusively for an architecture
31
# -mtune optimizes for an architecture, but builds for whole processor family
32
CPPFLAGS="-D_FORTIFY_SOURCE=2"
33
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
34
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
35
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
36
#-- Make Flags: change this for DistCC/SMP systems
37
#MAKEFLAGS="-j2"
38
#-- Debugging flags
39
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
40
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
41
42
#########################################################################
43
# BUILD ENVIRONMENT
44
#########################################################################
45
#
46
# Defaults: BUILDENV=(fakeroot !distcc color !ccache check !sign)
47
#  A negated environment option will do the opposite of the comments below.
48
#
49
#-- fakeroot: Allow building packages as a non-root user
50
#-- distcc:   Use the Distributed C/C++/ObjC compiler
51
#-- color:    Colorize output messages
52
#-- ccache:   Use ccache to cache compilation
53
#-- check:    Run the check() function if present in the PKGBUILD
54
#-- sign:     Generate PGP signature file
55
#
56
BUILDENV=(fakeroot !distcc color !ccache check !sign)
57
#
58
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
59
#-- specify a space-delimited list of hosts running in the DistCC cluster.
60
#DISTCC_HOSTS=""
61
#
62
#-- Specify a directory for package building.
63
#BUILDDIR=/tmp/makepkg
64
65
#########################################################################
66
# GLOBAL PACKAGE OPTIONS
67
#   These are default values for the options=() settings
68
#########################################################################
69
#
70
# Default: OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
71
#  A negated option will do the opposite of the comments below.
72
#
73
#-- strip:      Strip symbols from binaries/libraries
74
#-- docs:       Save doc directories specified by DOC_DIRS
75
#-- libtool:    Leave libtool (.la) files in packages
76
#-- staticlibs: Leave static library (.a) files in packages
77
#-- emptydirs:  Leave empty directories in packages
78
#-- zipman:     Compress manual (man and info) pages in MAN_DIRS with gzip
79
#-- purge:      Remove files specified by PURGE_TARGETS
80
#-- upx:        Compress binary executable files using UPX
81
#-- debug:      Add debugging flags as specified in DEBUG_* variables
82
#
83
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
84
85
#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
86
INTEGRITY_CHECK=(md5)
87
#-- Options to be used when stripping binaries. See `man strip' for details.
88
STRIP_BINARIES="--strip-all"
89
#-- Options to be used when stripping shared libraries. See `man strip' for details.
90
STRIP_SHARED="--strip-unneeded"
91
#-- Options to be used when stripping static libraries. See `man strip' for details.
92
STRIP_STATIC="--strip-debug"
93
#-- Manual (man and info) directories to compress (if zipman is specified)
94
MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
95
#-- Doc directories to remove (if !docs is specified)
96
DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
97
#-- Files to be removed from all packages (if purge is specified)
98
PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
99
100
#########################################################################
101
# PACKAGE OUTPUT
102
#########################################################################
103
#
104
# Default: put built package and cached source in build directory
105
#
106
#-- Destination: specify a fixed directory where all packages will be placed
107
#PKGDEST=/home/bryan/customrepo/x86_64
108
#-- Source cache: specify a fixed directory where source files will be cached
109
#SRCDEST=/home/sources
110
#-- Source packages: specify a fixed directory where all src packages will be placed
111
#SRCPKGDEST=/home/srcpackages
112
#-- Log files: specify a fixed directory where all log files will be placed
113
#LOGDEST=/home/makepkglogs
114
#-- Packager: name/email of the person or organization building packages
115
#PACKAGER="John Doe <john@doe.com>"
116
#-- Specify a key to use for package signing
117
#GPGKEY=""
118
119
#########################################################################
120
# COMPRESSION DEFAULTS
121
#########################################################################
122
#
123
COMPRESSGZ=(gzip -c -f -n)
124
COMPRESSBZ2=(bzip2 -c -f)
125
COMPRESSXZ=(xz -c -z -)
126
COMPRESSLRZ=(lrzip -q)
127
COMPRESSLZO=(lzop -q)
128
COMPRESSZ=(compress -c -f)
129
130
#########################################################################
131
# EXTENSION DEFAULTS
132
#########################################################################
133
#
134
# WARNING: Do NOT modify these variables unless you know what you are
135
#          doing.
136
#
137
PKGEXT='.pkg.tar.xz'
138
SRCEXT='.src.tar.gz'
139
140
# vim: set ft=sh ts=2 sw=2 et:

+ 0 - 0
packages.list