mirror of
https://github.com/novatiq/packages.git
synced 2026-07-30 15:23:07 +01:00
The user defined in order to own and admin gitolite directories needs to not be expired else logins such SSH access will not be allowed for that user. So we unexpire user git by default. Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
65 lines
2.0 KiB
Makefile
65 lines
2.0 KiB
Makefile
#
|
|
# Copyright (C) 2009-2016 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=gitolite
|
|
PKG_VERSION:=3.6.8
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.xz
|
|
PKG_MIRROR_HASH:=652d3b3f8ed93b8ef56153337465cc7260974e5cd2653e949da1bb97a8421ea0
|
|
|
|
PKG_SOURCE_URL:=https://github.com/sitaramc/gitolite.git
|
|
PKG_SOURCE_VERSION:=e126e97a4d5575821f89ae80dac402b017db94aa
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/gitolite
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Version Control Systems
|
|
DEPENDS:=+perlbase-essential +perlbase-sys +perlbase-data +perlbase-digest +perlbase-env +perlbase-time +git +perlbase-findbin +perlbase-storable +perlbase-text +perlbase-getopt +perlbase-utf8 +openssh-keygen +openssh-server +openssh-moduli perl
|
|
TITLE:=Easy administration of git repositories
|
|
URL:=http://gitolite.com/gitlolite
|
|
MAINTAINER:=Daniel Dickinson <cshored@thecshore.com>
|
|
USERID:=git=382:git=382
|
|
endef
|
|
|
|
define Package/gitolite/description
|
|
Gitolite is a system for managing access to git repositories. Note you will need to make
|
|
sure dropbear does not interfere with OpenSSH as gitolite depends on feature not in
|
|
dropbear (to my knowledge).
|
|
endef
|
|
|
|
define Package/gitolite/postinst
|
|
sed -i -e 's,/var/run/git,/srv/git,' $${IPKG_INSTROOT}/etc/passwd
|
|
sed -i -e 's,git:\(.*\):/bin/false,git:\1:/bin/ash,' $${IPKG_INSTROOT}/etc/passwd
|
|
sed -i -e 's,git:x:0:\(.*\)$$,git:x:99999:\1,' $${IPKG_INSTROOT}/etc/shadow
|
|
endef
|
|
|
|
define Build/Configure
|
|
true
|
|
endef
|
|
|
|
define Build/Compile
|
|
mkdir -p $(PKG_INSTALL_DIR)/usr/libexec/gitolite
|
|
$(PKG_BUILD_DIR)/install -to $(PKG_INSTALL_DIR)/usr/libexec/gitolite
|
|
mkdir -p $(PKG_INSTALL_DIR)/usr/bin
|
|
ln -sf /usr/libexec/gitolite/gitolite $(PKG_INSTALL_DIR)/usr/bin/gitolite
|
|
endef
|
|
|
|
define Package/gitolite/install
|
|
$(INSTALL_DIR) $(1)
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,gitolite))
|