mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-10 09:00:30 +08:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6bb61fa057 | ||
|
|
d79ee1b027 | ||
|
|
bdf04f705a | ||
|
|
69c0debc5d | ||
|
|
1d87b18f46 | ||
|
|
12e9f1e583 | ||
|
|
53643faf8f | ||
|
|
3cd8f80d1b | ||
|
|
314afb81d0 | ||
|
|
0ecefe0230 | ||
|
|
247595b762 | ||
|
|
8311504e19 | ||
|
|
5149abf0f9 | ||
|
|
15a9a14dff | ||
|
|
629a71433c | ||
|
|
e2a8980bee | ||
|
|
89d097db42 | ||
|
|
93e94db57a | ||
|
|
cb29cc9c18 | ||
|
|
3d2542b16d |
31
Makefile
31
Makefile
@@ -1,17 +1,38 @@
|
|||||||
# Get the version name first by seeing if HEAD is tagged
|
# Get the version name first by seeing if HEAD is tagged
|
||||||
version := $(shell git tag --points-at HEAD)
|
version := $(shell git tag --points-at HEAD -l '0.*.*' | head -1)
|
||||||
# And if it wasn't use a git hash
|
# And if it wasn't use a git hash
|
||||||
ifeq ($(version),)
|
ifeq ($(version),)
|
||||||
version := $(shell git log -1 --abbrev=8 --pretty=git%h)
|
version := $(shell git log -1 --abbrev=8 --pretty=git%h)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
DESTDIR := /usr
|
||||||
|
|
||||||
|
DATADIR := $(DESTDIR)/share
|
||||||
|
|
||||||
|
DOCDIR := $(DATADIR)/doc
|
||||||
|
|
||||||
|
name := spin-kickstarts
|
||||||
|
|
||||||
all: dist
|
all: dist
|
||||||
|
|
||||||
clean:
|
install:
|
||||||
rm -f spin-kickstarts-*.tar.gz
|
mkdir -p -m 755 $(DATADIR)/$(name)
|
||||||
|
install *.ks* -m 644 $(DATADIR)/$(name)
|
||||||
|
mkdir -p -m 755 $(DATADIR)/$(name)/custom
|
||||||
|
install -m 644 custom/* $(DATADIR)/$(name)/custom
|
||||||
|
mkdir -p -m 755 $(DATADIR)/$(name)/l10n
|
||||||
|
install -m 644 l10n/* $(DATADIR)/$(name)/l10n
|
||||||
|
|
||||||
dist:
|
clean:
|
||||||
git archive --format=tar --prefix=spin-kickstarts-$(version)/ HEAD | gzip > spin-kickstarts.tar-$(version).gz
|
rm -f $(name)-*.tar.gz
|
||||||
|
|
||||||
|
dist: $(name)-$(version).tar.gz
|
||||||
|
|
||||||
|
$(name)-$(version).tar.gz:
|
||||||
|
git archive --format=tar --prefix=$(name)-$(version)/ HEAD | gzip > $(name)-$(version).tar.gz
|
||||||
|
|
||||||
|
publish: $(name)-$(version).tar.gz
|
||||||
|
scp $(name)-$(version).tar.gz fedorahosted.org:$(name)
|
||||||
|
|
||||||
dist-clean:
|
dist-clean:
|
||||||
git clean -f -d
|
git clean -f -d
|
||||||
|
|||||||
4
README
4
README
@@ -15,9 +15,9 @@ cd spin-kickstarts
|
|||||||
git checkout BRANCHNAME
|
git checkout BRANCHNAME
|
||||||
# No tag has been added yet tag HEAD with
|
# No tag has been added yet tag HEAD with
|
||||||
git tag VERSION
|
git tag VERSION
|
||||||
git push tag VERSION
|
git push --tags
|
||||||
make
|
make
|
||||||
# Publish the released tar ball
|
# Publish the released tar ball
|
||||||
scp spin-kickstarts-*.tar.gz fedorahosted.org:spin-kickstarts
|
make publish
|
||||||
# Clean up the generated files:
|
# Clean up the generated files:
|
||||||
make clean
|
make clean
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ uboot-smdkv310
|
|||||||
uboot-uevm
|
uboot-uevm
|
||||||
uboot-wandboard_dl
|
uboot-wandboard_dl
|
||||||
uboot-wandboard_solo
|
uboot-wandboard_solo
|
||||||
|
uboot-wandboard_quad
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# - A Spin targeted towards professional designers
|
# - A Spin targeted towards professional designers
|
||||||
# Website: http://fedoraproject.org/wiki/Design_Suite
|
# Website: http://fedoraproject.org/wiki/Design_Suite
|
||||||
# Maintainers:
|
# Maintainers:
|
||||||
# - Luya Tshimbalanga <sdz AT fedoraproject DOT org>
|
# - Luya Tshimbalanga <luya AT fedoraproject DOT org>
|
||||||
# - Previous maintainer Sebastian Dziallas
|
# - Previous maintainer Sebastian Dziallas
|
||||||
|
|
||||||
%include fedora-live-desktop.ks
|
%include fedora-live-desktop.ks
|
||||||
@@ -17,7 +17,7 @@ part / --size 8192
|
|||||||
# graphics
|
# graphics
|
||||||
blender
|
blender
|
||||||
bluefish
|
bluefish
|
||||||
cinepaint
|
#cinepaint
|
||||||
cmyktool
|
cmyktool
|
||||||
darktable
|
darktable
|
||||||
dia
|
dia
|
||||||
@@ -33,8 +33,6 @@ inkscape
|
|||||||
mypaint
|
mypaint
|
||||||
nautilus-image-converter
|
nautilus-image-converter
|
||||||
optipng
|
optipng
|
||||||
# pinta # is huge because it needs mono
|
|
||||||
# postr # dropped because shotwell support flickr upload
|
|
||||||
scribus
|
scribus
|
||||||
colord-extra-profiles
|
colord-extra-profiles
|
||||||
synfigstudio
|
synfigstudio
|
||||||
@@ -42,7 +40,7 @@ synfigstudio
|
|||||||
xournal
|
xournal
|
||||||
|
|
||||||
# office
|
# office
|
||||||
gnote
|
bijiben # replaces gnote
|
||||||
pdfshuffler
|
pdfshuffler
|
||||||
|
|
||||||
# internet
|
# internet
|
||||||
@@ -53,8 +51,6 @@ audacity
|
|||||||
pitivi
|
pitivi
|
||||||
|
|
||||||
# system
|
# system
|
||||||
# gtk-recordmydesktop # dropped for space (#887991)
|
|
||||||
# network-manager-applet #part of Gnome Desktop
|
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
aajohan-comfortaa-fonts
|
aajohan-comfortaa-fonts
|
||||||
@@ -89,22 +85,21 @@ overpass-fonts
|
|||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
#%post
|
%post
|
||||||
|
|
||||||
# Add link to the Inkscape Course
|
# Add link to the Inkscape Course
|
||||||
#cat >> /usr/share/applications/inkscape-course.desktop << FOE
|
cat >> /usr/share/applications/inkscape-course.desktop << FOE
|
||||||
#[Desktop Entry]
|
[Desktop Entry]
|
||||||
#Name=Introduction To Inkscape
|
Name=Introduction To Inkscape
|
||||||
#GenericName=Inkscape Course
|
GenericName=Inkscape Course
|
||||||
#Comment=Materials from Máirín Duffy's Inkscape Class
|
Comment=Materials from Máirín Duffy's Inkscape Class
|
||||||
#Exec=xdg-open http://linuxgrrl.com/learn/Introduction_To_Inkscape
|
Exec=xdg-open http://linuxgrrl.com/learn/Introduction_To_Inkscape
|
||||||
#Type=Application
|
Type=Application
|
||||||
#Icon=fedora-logo-icon
|
Icon=fedora-logo-icon
|
||||||
#Categories=Graphics;Documentation;
|
Categories=Graphics;Documentation;
|
||||||
#FOE
|
FOE
|
||||||
#chmod a+x /usr/share/applications/inkscape-course.desktop
|
chmod a+x /usr/share/applications/inkscape-course.desktop
|
||||||
|
|
||||||
#EOF
|
EOF
|
||||||
|
|
||||||
#%end
|
|
||||||
|
|
||||||
|
%end
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# - Bruno Wolff III <bruno@wolff.to>
|
# - Bruno Wolff III <bruno@wolff.to>
|
||||||
# - Formerly maintained by Rahul Sundaram
|
# - Formerly maintained by Rahul Sundaram
|
||||||
|
|
||||||
%include fedora-livecd-desktop.ks
|
%include fedora-livecd-xfce.ks
|
||||||
|
|
||||||
# The recommended part size for DVDs is too close to use for the games spin
|
# The recommended part size for DVDs is too close to use for the games spin
|
||||||
part / --size 10240
|
part / --size 10240
|
||||||
|
|||||||
@@ -54,7 +54,6 @@ rkward
|
|||||||
qtoctave
|
qtoctave
|
||||||
|
|
||||||
# IDEs for the IDE folks
|
# IDEs for the IDE folks
|
||||||
netbeans
|
|
||||||
eclipse
|
eclipse
|
||||||
spyder
|
spyder
|
||||||
|
|
||||||
@@ -63,7 +62,7 @@ emacs
|
|||||||
emacs-color-theme
|
emacs-color-theme
|
||||||
vim
|
vim
|
||||||
scribus
|
scribus
|
||||||
scite
|
#scite
|
||||||
lyx
|
lyx
|
||||||
kile
|
kile
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name=updates --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-$releasever&arch=$basearch
|
||||||
|
#repo --name=updates-testing --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-testing-$releasever&arch=$basearch
|
||||||
|
|||||||
1
fedora-repo-rawhide.ks
Normal file
1
fedora-repo-rawhide.ks
Normal file
@@ -0,0 +1 @@
|
|||||||
|
repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch
|
||||||
Reference in New Issue
Block a user