this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove older packaging artifacts

-151
-6
debian/changelog.in
··· 1 - tumble (==VERSION==-1) stable unstable testing; urgency=low 2 - 3 - * Initial package 4 - 5 - -- Michael Stahnke <stahnma@websages.com> Thu, 27 Mar 2014 21:35:39 +0000 6 -
-1
debian/compat
··· 1 - 7
-14
debian/control
··· 1 - Source: tumble 2 - Section: web 3 - Priority: optional 4 - Maintainer: Michael Stahnke <stahnma@websages.com> 5 - Build-Depends: cdbs, debhelper (>> 7) 6 - Build-Depends-Indep: perl 7 - Standards-Version: 3.8.4 8 - Homepage: http://github.com/websages/tumble 9 - 10 - Package: tumble 11 - Architecture: all 12 - Depends: ${shlibs:Depends}, ${misc:Depends}, libcrypt-ssleay-perl, apache2, libapache2-mod-perl2, libdbd-mysql-perl, libcgi-application-perl 13 - Description: Web application used by websages. 14 - A classic tumblelog written in Perl in something like 2004.
-37
debian/fixshebang.sh
··· 1 - #!/bin/bash 2 - 3 - for target_dir in $@ 4 - do 5 - for f in `find "$target_dir" -type f 2>/dev/null` 6 - do 7 - textflag=0 8 - filetype="`file -b $f`" 9 - for ft in $filetype 10 - do 11 - if [ "${#ft}" -lt 4 ] 12 - then 13 - continue 14 - fi 15 - if [ "${ft:0:4}" == "text" ] 16 - then 17 - textflag=1 18 - break 19 - fi 20 - done 21 - 22 - if [ "$textflag" -eq 0 ] 23 - then 24 - continue 25 - fi 26 - 27 - cp -pf $f $f.tmp 28 - sed -e '1,1s,^#![ ]*\([^ ]*\)/\(ruby\|env ruby\)$,#!/opt/puppet/bin/ruby,' \ 29 - -e '1,1s,^#![ ]*\([^ ]*\)/\(wish\|perl\)$,#!/usr/bin/\2,' < $f > $f.tmp 30 - if ! cmp $f $f.tmp >/dev/null 31 - then 32 - mv -f $f.tmp $f 33 - else 34 - rm -f $f.tmp 35 - fi 36 - done 37 - done
-16
debian/rules
··· 1 - #!/usr/bin/make -f 2 - 3 - include /usr/share/cdbs/1/rules/debhelper.mk 4 - include /usr/share/cdbs/1/rules/buildcore.mk 5 - 6 - 7 - binary-install/tumble:: 8 - env DESTDIR=$(CURDIR)/debian/$(cdbs_curpkg) make install 9 - # for file in `find $(CURDIR)/debian/tmp -type f`; do; echo $$file ; sed -i -e '1s,^#!.*perl,#!%{_bindir}/perl,' $$file; done 10 - 11 - binary-post-install/tumble:: 12 - bash $(CURDIR)/debian/fixshebang.sh \ 13 - '$(CURDIR)/debian/$(cdbs_curpkg)/srv/www' 14 - 15 - 16 - clean::
-77
tumble.spec
··· 1 - 2 - Name: tumble 3 - Version: ==VERSION== 4 - Release: 1%{?dist} 5 - Summary: A classic tumblelog application. 6 - 7 - Group: Internet/Applications 8 - License: ASL 2.0 9 - URL: http://tumble.wcyd.org 10 - Source0: %{name}-%{version}.tar.gz 11 - BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(id -un) 12 - 13 - Requires: perl(DBD::mysql) 14 - Requires: httpd mod_perl 15 - Requires: perl-CGI-Application 16 - Requires: perl-Crypt-SSLeay 17 - # Only when running on localhost, but that's what's hard-coded for now. 18 - Requires: mysql-server 19 - BuildRequires: httpd 20 - #BuildRequires: golang 21 - BuildArch: noarch 22 - 23 - %description 24 - A classic tumblelog written in Perl in something like 2004. 25 - 26 - %prep 27 - %setup -q 28 - rm -rf debian 29 - 30 - %build 31 - 32 - 33 - %install 34 - rm -rf $RPM_BUILD_ROOT 35 - make install DESTDIR=%{buildroot} 36 - 37 - # Fix shebang line of scripts 38 - for file in `find $RPM_BUILD_ROOT -type f`; do 39 - echo $file 40 - sed -i -e '1s,^#!.*perl,#!%{_bindir}/perl,' $file 41 - done 42 - 43 - mkdir -p %{buildroot}%{_sysconfdir}/tumble 44 - pushd %{buildroot}/srv/www/%{name}/htdocs; ln -fs ../../../..%{_sysconfdir}/tumble/config.yaml .; popd 45 - if /usr/sbin/httpd -v | head -1 | awk '{print $3}' | cut -d/ -f2 | grep 2.2 &> /dev/null ; then 46 - cp -pr conf/tumble_22.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d/tumble.conf 47 - else 48 - cp -pr conf/tumble_24.conf %{buildroot}/%{_sysconfdir}/httpd/conf.d 49 - fi 50 - 51 - 52 - 53 - %files 54 - %doc sql README.md 55 - %dir %{_sysconfdir}/tumble 56 - %config(noreplace)%{_sysconfdir}/tumble/* 57 - %config(noreplace)%{_sysconfdir}/httpd/conf.d/* 58 - /srv/www/%{name}/htdocs/2202 59 - /srv/www/%{name}/htdocs/*.png 60 - /srv/www/%{name}/htdocs/buttons 61 - /srv/www/%{name}/htdocs/css 62 - /srv/www/%{name}/htdocs/favicon.ico 63 - /srv/www/%{name}/htdocs/img 64 - /srv/www/%{name}/htdocs/index.cgi 65 - /srv/www/%{name}/htdocs/irclink 66 - /srv/www/%{name}/htdocs/lib 67 - /srv/www/%{name}/htdocs/quote 68 - /srv/www/%{name}/htdocs/search.cgi 69 - /srv/www/%{name}/htdocs/thtml 70 - /srv/www/%{name}/htdocs/config.yaml 71 - #/usr/local/bin/* 72 - #%config(noreplace)%{_sysconfdir}/cron.hourly/* 73 - 74 - 75 - %changelog 76 - * Sun Oct 27 2013 <stahnma@websages.com> - 1.0.0-1 77 - - First packaging